├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 1_bug_report.md │ ├── 1_bug_report.md.license │ ├── 2_feature_request.md │ ├── 2_feature_request.md.license │ └── config.yml ├── dependabot.yml └── workflows │ ├── appstore-build-publish.yml │ ├── fixup.yml │ ├── integration.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── phpunit-mariadb.yml │ ├── phpunit-mysql.yml │ ├── phpunit-oci.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── phpunit-summary-when-unrelated.yml │ ├── pr-feedback.yml │ ├── psalm.yml │ └── reuse.yml ├── .gitignore ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .tx └── config ├── AUTHORS.md ├── LICENSE ├── LICENSES ├── AGPL-3.0-or-later.txt ├── CC0-1.0.txt └── MIT.txt ├── Makefile ├── README.md ├── REUSE.toml ├── appinfo └── info.xml ├── composer.json ├── composer.lock ├── composer └── autoload.php ├── img └── app.svg ├── krankerl.toml ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── an.js ├── an.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── bg.js ├── bg.json ├── bn_BD.js ├── bn_BD.json ├── br.js ├── br.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── km.js ├── km.json ├── kn.js ├── kn.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib-vendor-organizer.php ├── lib ├── AppInfo │ └── Application.php ├── Backend │ ├── Backend.php │ └── Provider.php ├── Client.php ├── ClientFactory.php ├── Command │ └── ListLibraries.php ├── ContextsFactory.php ├── Listener │ └── ExternalStoragesRegistrationListener.php ├── NotFoundException.php └── Storage │ └── Storage.php ├── phpunit.xml ├── psalm.xml ├── scoper.inc.php ├── screenshots ├── configuration.png └── configuration.png.license ├── tests ├── Integration │ ├── composer.json │ ├── composer.lock │ ├── config │ │ └── behat.yml │ └── features │ │ ├── bootstrap │ │ └── FeatureContext.php │ │ └── log.feature ├── Unit │ ├── ClientTest.php │ └── StorageTest.php ├── bootstrap.php ├── phpunit.xml └── stub.phpstub └── vendor-bin └── php-scoper ├── composer.json └── composer.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | # App maintainer 4 | /appinfo/info.xml @blizzz 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🐞 Bug report 3 | about: Help us to improve by reporting a bug 4 | labels: 0. Needs triage, bug 5 | --- 6 | 7 | 8 | 9 | ### How to use GitHub 10 | 11 | * Please use the 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to show that you are affected by the same issue. 12 | * Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue. 13 | * Subscribe to receive notifications on status change and new comments. 14 | 15 | --- 16 | 17 | ### Steps to reproduce 18 | 1. 19 | 2. 20 | 3. 21 | 22 | ### Expected behaviour 23 | Tell us what should happen 24 | 25 | ### Actual behaviour 26 | Tell us what happens instead, if possible also add a screenshot 27 | 28 | ### Server configuration 29 | 30 | **Web server:** Apache/Nginx 31 | 32 | **Database:** MySQL/Maria/SQLite/PostgreSQL 33 | 34 | **PHP version:** 8.1/8.2/8.3 35 | 36 | **Nextcloud version:** (see Nextcloud admin page) 37 | 38 |
39 | List of activated apps 40 | 41 | ``` 42 | If you have access to your command line run e.g.: 43 | sudo -u www-data php occ app:list 44 | from within your Nextcloud installation folder 45 | ``` 46 |
47 | 48 |
49 | Nextcloud configuration 50 | 51 | ``` 52 | If you have access to your command line run e.g.: 53 | sudo -u www-data php occ config:list system 54 | from within your Nextcloud installation folder 55 | ``` 56 |
57 | 58 | ### Browser 59 | 60 | **Browser name:** Firefox/Chrome/Safari/… 61 | 62 | **Browser version:** 124/125/… 63 | 64 | **Operating system:** Windows/Ubuntu/Mac/… 65 | 66 |
67 | Browser log 68 | 69 | ``` 70 | Insert your browser log here, this could for example include: 71 | a) The javascript console log 72 | b) The network log 73 | c) ... 74 | ``` 75 | 76 |
77 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.md.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🚀 Feature request 3 | about: Suggest an idea for this app 4 | labels: 0. Needs triage, enhancement 5 | --- 6 | 7 | 8 | 9 | ### How to use GitHub 10 | 11 | * Please use the 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to show that you are interested into the same feature. 12 | * Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue. 13 | * Subscribe to receive notifications on status change and new comments. 14 | 15 | --- 16 | 17 | ## Feature request 18 | 19 | **Which Nextcloud Version are you currently using:** (see administration page) 20 | 21 | **Is your feature request related to a problem? Please describe.** 22 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 23 | 24 | **Describe the solution you'd like** 25 | A clear and concise description of what you want to happen. 26 | 27 | **Describe alternatives you've considered** 28 | A clear and concise description of any alternative solutions or features you've considered. 29 | 30 | **Additional context** 31 | Add any other context or screenshots about the feature request here. 32 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.md.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | contact_links: 4 | - name: 🚨 Report a security or privacy issue 5 | url: https://hackerone.com/nextcloud 6 | about: Report security and privacy related issues privately to the Nextcloud team, so we can coordinate the fix and release without potentially exposing all Nextcloud servers and users in the meantime. 7 | - name: ❓ Community Support and Help 8 | url: https://help.nextcloud.com/ 9 | about: Configuration, webserver/proxy or performance issues and other questions 10 | - name: 💼 Nextcloud Enterprise 11 | url: https://portal.nextcloud.com/ 12 | about: If you are a Nextcloud Enterprise customer, or need Professional support, so it can be resolved directly by our dedicated engineers more quickly 13 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | version: 2 4 | updates: 5 | # Composer: Code-Dependencies 6 | - package-ecosystem: composer 7 | directory: "/" 8 | commit-message: 9 | prefix: "build" 10 | include: "scope" 11 | versioning-strategy: "increase" 12 | schedule: 13 | interval: weekly 14 | day: saturday 15 | time: "03:00" 16 | timezone: Europe/Berlin 17 | 18 | - package-ecosystem: composer 19 | target-branch: stable31 20 | directory: "/" 21 | commit-message: 22 | prefix: "build" 23 | include: "scope" 24 | versioning-strategy: "increase" 25 | ignore: 26 | - dependency-name: "*" 27 | update-types: ["version-update:semver-major", "version-update:semver-minor"] 28 | schedule: 29 | interval: weekly 30 | day: saturday 31 | time: "03:00" 32 | timezone: Europe/Berlin 33 | 34 | - package-ecosystem: composer 35 | target-branch: stable30 36 | directory: "/" 37 | commit-message: 38 | prefix: "build" 39 | include: "scope" 40 | versioning-strategy: "increase" 41 | ignore: 42 | - dependency-name: "*" 43 | update-types: ["version-update:semver-major", "version-update:semver-minor"] 44 | schedule: 45 | interval: weekly 46 | day: saturday 47 | time: "03:00" 48 | timezone: Europe/Berlin 49 | 50 | - package-ecosystem: composer 51 | target-branch: stable29 52 | directory: "/" 53 | commit-message: 54 | prefix: "build" 55 | include: "scope" 56 | versioning-strategy: "increase" 57 | ignore: 58 | - dependency-name: "*" 59 | update-types: ["version-update:semver-major", "version-update:semver-minor"] 60 | schedule: 61 | interval: weekly 62 | day: saturday 63 | time: "03:00" 64 | timezone: Europe/Berlin 65 | 66 | # Composer: Tooling 67 | - package-ecosystem: composer 68 | directories: 69 | - "/tests/integration" 70 | - "/vendor-bin/php-scoper" 71 | commit-message: 72 | prefix: "ci" 73 | include: "scope" 74 | versioning-strategy: "increase" 75 | schedule: 76 | interval: weekly 77 | day: saturday 78 | time: "03:00" 79 | timezone: Europe/Berlin 80 | -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | # 6 | # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 7 | # SPDX-License-Identifier: MIT 8 | 9 | name: Block fixup and squash commits 10 | 11 | on: 12 | pull_request: 13 | types: [opened, ready_for_review, reopened, synchronize] 14 | 15 | permissions: 16 | contents: read 17 | 18 | concurrency: 19 | group: fixup-${{ github.head_ref || github.run_id }} 20 | cancel-in-progress: true 21 | 22 | jobs: 23 | commit-message-check: 24 | if: github.event.pull_request.draft == false 25 | 26 | permissions: 27 | pull-requests: write 28 | name: Block fixup and squash commits 29 | 30 | runs-on: ubuntu-latest-low 31 | 32 | steps: 33 | - name: Run check 34 | uses: skjnldsv/block-fixup-merge-action@c138ea99e45e186567b64cf065ce90f7158c236a # v2 35 | with: 36 | repo-token: ${{ secrets.GITHUB_TOKEN }} 37 | -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | # 6 | # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 7 | # SPDX-License-Identifier: MIT 8 | 9 | name: Lint info.xml 10 | 11 | on: pull_request 12 | 13 | permissions: 14 | contents: read 15 | 16 | concurrency: 17 | group: lint-info-xml-${{ github.head_ref || github.run_id }} 18 | cancel-in-progress: true 19 | 20 | jobs: 21 | xml-linters: 22 | runs-on: ubuntu-latest-low 23 | 24 | name: info.xml lint 25 | steps: 26 | - name: Checkout 27 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 28 | with: 29 | persist-credentials: false 30 | 31 | - name: Download schema 32 | run: wget https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/info.xsd 33 | 34 | - name: Lint info.xml 35 | uses: ChristophWurst/xmllint-action@36f2a302f84f8c83fceea0b9c59e1eb4a616d3c1 # v1.2 36 | with: 37 | xml-file: ./appinfo/info.xml 38 | xml-schema-file: ./info.xsd 39 | -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | # 6 | # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 7 | # SPDX-License-Identifier: MIT 8 | 9 | name: Lint php-cs 10 | 11 | on: pull_request 12 | 13 | permissions: 14 | contents: read 15 | 16 | concurrency: 17 | group: lint-php-cs-${{ github.head_ref || github.run_id }} 18 | cancel-in-progress: true 19 | 20 | jobs: 21 | lint: 22 | runs-on: ubuntu-latest 23 | 24 | name: php-cs 25 | 26 | steps: 27 | - name: Checkout 28 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 29 | with: 30 | persist-credentials: false 31 | 32 | - name: Get php version 33 | id: versions 34 | uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 35 | 36 | - name: Set up php${{ steps.versions.outputs.php-min }} 37 | uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 38 | with: 39 | php-version: ${{ steps.versions.outputs.php-min }} 40 | extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite 41 | coverage: none 42 | ini-file: development 43 | env: 44 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 45 | 46 | - name: Install dependencies 47 | run: | 48 | composer remove nextcloud/ocp --dev 49 | composer i 50 | 51 | - name: Lint 52 | run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 ) 53 | -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | # 6 | # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 7 | # SPDX-License-Identifier: MIT 8 | 9 | name: Lint php 10 | 11 | on: pull_request 12 | 13 | permissions: 14 | contents: read 15 | 16 | concurrency: 17 | group: lint-php-${{ github.head_ref || github.run_id }} 18 | cancel-in-progress: true 19 | 20 | jobs: 21 | matrix: 22 | runs-on: ubuntu-latest-low 23 | outputs: 24 | php-versions: ${{ steps.versions.outputs.php-versions }} 25 | steps: 26 | - name: Checkout app 27 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 28 | with: 29 | persist-credentials: false 30 | 31 | - name: Get version matrix 32 | id: versions 33 | uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.0.0 34 | 35 | php-lint: 36 | runs-on: ubuntu-latest 37 | needs: matrix 38 | strategy: 39 | matrix: 40 | php-versions: ${{fromJson(needs.matrix.outputs.php-versions)}} 41 | 42 | name: php-lint 43 | 44 | steps: 45 | - name: Checkout 46 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 47 | with: 48 | persist-credentials: false 49 | 50 | - name: Set up php ${{ matrix.php-versions }} 51 | uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 52 | with: 53 | php-version: ${{ matrix.php-versions }} 54 | extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite 55 | coverage: none 56 | ini-file: development 57 | env: 58 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 59 | 60 | - name: Lint 61 | run: composer run lint 62 | 63 | summary: 64 | permissions: 65 | contents: none 66 | runs-on: ubuntu-latest-low 67 | needs: php-lint 68 | 69 | if: always() 70 | 71 | name: php-lint-summary 72 | 73 | steps: 74 | - name: Summary status 75 | run: if ${{ needs.php-lint.result != 'success' && needs.php-lint.result != 'skipped' }}; then exit 1; fi 76 | -------------------------------------------------------------------------------- /.github/workflows/phpunit-summary-when-unrelated.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | # 6 | # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 7 | # SPDX-License-Identifier: MIT 8 | 9 | name: PHPUnit summary 10 | 11 | on: 12 | pull_request: 13 | paths-ignore: 14 | - '.github/workflows/**' 15 | - 'appinfo/**' 16 | - 'lib/**' 17 | - 'templates/**' 18 | - 'tests/**' 19 | - 'vendor/**' 20 | - 'vendor-bin/**' 21 | - '.php-cs-fixer.dist.php' 22 | - 'composer.json' 23 | - 'composer.lock' 24 | 25 | permissions: 26 | contents: read 27 | 28 | jobs: 29 | summary-mysql: 30 | permissions: 31 | contents: none 32 | runs-on: ubuntu-latest 33 | 34 | name: phpunit-mysql-summary 35 | 36 | steps: 37 | - name: Summary status 38 | run: 'echo "No PHP files changed, skipped PHPUnit"' 39 | 40 | summary-oci: 41 | permissions: 42 | contents: none 43 | runs-on: ubuntu-latest 44 | 45 | name: phpunit-oci-summary 46 | 47 | steps: 48 | - name: Summary status 49 | run: 'echo "No PHP files changed, skipped PHPUnit"' 50 | 51 | summary-pgsql: 52 | permissions: 53 | contents: none 54 | runs-on: ubuntu-latest 55 | 56 | name: phpunit-pgsql-summary 57 | 58 | steps: 59 | - name: Summary status 60 | run: 'echo "No PHP files changed, skipped PHPUnit"' 61 | 62 | summary-sqlite: 63 | permissions: 64 | contents: none 65 | runs-on: ubuntu-latest 66 | 67 | name: phpunit-sqlite-summary 68 | 69 | steps: 70 | - name: Summary status 71 | run: 'echo "No PHP files changed, skipped PHPUnit"' 72 | -------------------------------------------------------------------------------- /.github/workflows/psalm.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | # 6 | # SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors 7 | # SPDX-License-Identifier: MIT 8 | 9 | name: Static analysis 10 | 11 | on: pull_request 12 | 13 | concurrency: 14 | group: psalm-${{ github.head_ref || github.run_id }} 15 | cancel-in-progress: true 16 | 17 | jobs: 18 | static-analysis: 19 | runs-on: ubuntu-latest 20 | 21 | name: static-psalm-analysis 22 | steps: 23 | - name: Checkout 24 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 25 | with: 26 | persist-credentials: false 27 | 28 | - name: Get php version 29 | id: versions 30 | uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 31 | 32 | - name: Check enforcement of minimum PHP version ${{ steps.versions.outputs.php-min }} in psalm.xml 33 | run: grep 'phpVersion="${{ steps.versions.outputs.php-min }}' psalm.xml 34 | 35 | - name: Set up php${{ steps.versions.outputs.php-available }} 36 | uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 37 | with: 38 | php-version: ${{ steps.versions.outputs.php-available }} 39 | extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite 40 | coverage: none 41 | ini-file: development 42 | env: 43 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 44 | 45 | - name: Install dependencies 46 | run: | 47 | composer remove nextcloud/ocp --dev 48 | composer i 49 | 50 | - name: Install nextcloud/ocp 51 | run: composer require --dev nextcloud/ocp:dev-${{ steps.versions.outputs.branches-max }} --ignore-platform-reqs --with-dependencies 52 | 53 | - name: Run coding standards check 54 | run: composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github 55 | -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- 1 | # This workflow is provided via the organization template repository 2 | # 3 | # https://github.com/nextcloud/.github 4 | # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization 5 | 6 | # SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. 7 | # 8 | # SPDX-License-Identifier: CC0-1.0 9 | 10 | name: REUSE Compliance Check 11 | 12 | on: [pull_request] 13 | 14 | jobs: 15 | reuse-compliance-check: 16 | runs-on: ubuntu-latest 17 | steps: 18 | - name: Checkout 19 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 20 | with: 21 | persist-credentials: false 22 | 23 | - name: REUSE Compliance Check 24 | uses: fsfe/reuse-action@bb774aa972c2a89ff34781233d275075cbddf542 # v5.0.0 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | composer.phar 4 | vendor/ 5 | lib/Vendor/ 6 | .php-cs-fixer.cache 7 | -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | composer.* 4 | .drone.yml 5 | .git 6 | .github 7 | .gitignore 8 | issue_template.md 9 | krankerl.toml 10 | lib-vendor-organizer.php 11 | Makefile 12 | .nextcloudignore 13 | phpunit.* 14 | .php-cs-fixer.dist.php 15 | .php_cs.dist 16 | scoper.inc.php 17 | screenshots 18 | .scrutinizer.yml 19 | tests 20 | .travis.yml 21 | .tx 22 | vendor-bin 23 | vendor/bin 24 | vendor/bamarni 25 | -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | getFinder() 17 | ->ignoreVCSIgnored(true) 18 | ->notPath('build') 19 | ->notPath('l10n') 20 | ->notPath('src') 21 | ->notPath('vendor') 22 | ->in(__DIR__); 23 | return $config; 24 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | lang_map = fi_FI: fi, hu_HU: hu, nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja, bg_BG: bg, cs_CZ: cs 4 | 5 | [o:nextcloud:p:nextcloud:r:sharepoint] 6 | file_filter = translationfiles//sharepoint.po 7 | source_file = translationfiles/templates/sharepoint.pot 8 | source_lang = en 9 | type = PO 10 | 11 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | 5 | # Authors 6 | 7 | - Andy Scherzinger 8 | - Arthur Schiwon 9 | - Côme Chilliet 10 | - DaphneMuller <86835268+DaphneMuller@users.noreply.github.com> 11 | - ecavaud 12 | - Jan-Christoph Borchardt 13 | - Joas Schilling 14 | - John Molakvoæ 15 | - Jos Poortvliet 16 | - Julius Knorr 17 | - Lukas Reschke 18 | - Morris Jobke 19 | - Muhammad Afzal Tahir <64379149+afzl-wtu@users.noreply.github.com> 20 | - newmaka50 <43097142+newmaka50@users.noreply.github.com> 21 | - rakekniven <2069590+rakekniven@users.noreply.github.com> 22 | - Roeland Jago Douma 23 | - Valdnet <47037905+Valdnet@users.noreply.github.com> 24 | - Vincent Petry 25 | -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 6 | associated documentation files (the "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the 9 | following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all copies or substantial 12 | portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 15 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 16 | EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 17 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 18 | USE OR OTHER DEALINGS IN THE SOFTWARE. 19 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | app_name=sharepoint 4 | 5 | project_dir=$(CURDIR)/../$(app_name) 6 | build_dir=$(CURDIR)/build/artifacts 7 | appstore_dir=$(build_dir)/appstore 8 | source_dir=$(build_dir)/source 9 | sign_dir=$(build_dir)/sign 10 | package_name=$(app_name) 11 | cert_dir=$(HOME)/.nextcloud/certificates 12 | version+=1.4.0 13 | 14 | all: appstore 15 | 16 | release: appstore create-tag 17 | 18 | create-tag: 19 | git tag -s -a v$(version) -m "Tagging the $(version) release." 20 | git push origin v$(version) 21 | 22 | clean: 23 | rm -rf $(build_dir) 24 | rm -rf node_modules 25 | 26 | appstore: clean 27 | mkdir -p $(sign_dir) 28 | rsync -a \ 29 | --exclude=/build \ 30 | --exclude=/docs \ 31 | --exclude=/translationfiles \ 32 | --exclude=/.tx \ 33 | --exclude=/tests \ 34 | --exclude=.git \ 35 | --exclude=/.github \ 36 | --exclude=/l10n/l10n.pl \ 37 | --exclude=/CONTRIBUTING.md \ 38 | --exclude=/issue_template.md \ 39 | --exclude=/README.md \ 40 | --exclude=/.gitattributes \ 41 | --exclude=/.gitignore \ 42 | --exclude=/.scrutinizer.yml \ 43 | --exclude=/.travis.yml \ 44 | --exclude=phpunit*.xml \ 45 | --exclude=composer.* \ 46 | --exclude=vendor/cweagans \ 47 | --exclude=vendor/vrem/php-spo \ 48 | --exclude=/Makefile \ 49 | --include=vendor/vrem/php-spo/src \ 50 | --include=vendor/vrem/php-spo/LICENSE.md \ 51 | $(project_dir)/ $(sign_dir)/$(app_name) 52 | tar -czf $(build_dir)/$(app_name)-$(version).tar.gz \ 53 | -C $(sign_dir) $(app_name) 54 | @if [ -f $(cert_dir)/$(app_name).key ]; then \ 55 | echo "Signing package…"; \ 56 | openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name)-$(version).tar.gz | openssl base64; \ 57 | fi 58 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 5 | # SharePoint 6 | 7 | [![REUSE status](https://api.reuse.software/badge/github.com/nextcloud/sharepoint)](https://api.reuse.software/info/github.com/nextcloud/sharepoint) 8 | 9 | 💾 Nextcloud SharePoint Backend for External storages 10 | 11 | The SharePoint Backend allows administrators to add SharePoint document libraries as folders in Nextcloud. This offers an easy way for users to access SharePoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on SharePoint just like with any other data on Nextcloud. 12 | 13 | ![screenshot](screenshots/configuration.png) 14 | 15 | Supports SharePoint 2013, 2016, 2019 (experimental) and SharePoint Online (Office 365). Nextcloud accesses SharePoint through the SharePoint REST API and uses SAML Token authentication, with a fallback to NTLM auth. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud. 16 | 17 | # How To Add Office 365 Onedrive 18 | Make sure you have enabled [External storage support](https://docs.nextcloud.com/server/24/go.php?to=admin-external-storage) and the Sharepoint app. Then go to Administration 19 | Settings and select External Storage and add Sharepoint as follow: 20 | First, you need to get your remote's URL: 21 | 22 | Go [here](https://onedrive.live.com/about/en-us/signin/) to open your OneDrive or to sign in 23 | Now take a look at your address bar, the URL should look like this: https://[YOUR-DOMAIN]-my.sharepoint.com/personal/[YOUR-EMAIL]/_layouts/15/onedrive.aspx 24 | You'll only need this URL up to the email address as "Host". After that, you'll most likely want to add "Documents" as "Document Library". That subdirectory contains the actual data stored on your OneDrive. Then enter your email as "Username" and password and you are good to go. Credit goes to [rclone](https://rclone.org/webdav/#sharepoint-online). 25 | 26 | Learn more about External Storage and SharePoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/) 27 | -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | version = 1 4 | SPDX-PackageName = "sharepoint" 5 | SPDX-PackageSupplier = "Nextcloud " 6 | SPDX-PackageDownloadLocation = "https://github.com/nextcloud/sharepoint" 7 | 8 | [[annotations]] 9 | path = ["composer.json", "composer.lock"] 10 | precedence = "aggregate" 11 | SPDX-FileCopyrightText = "2017 Nextcloud GmbH and Nextcloud contributors" 12 | SPDX-License-Identifier = "AGPL-3.0-or-later" 13 | 14 | [[annotations]] 15 | path = ["l10n/**.js", "l10n/**.json"] 16 | precedence = "aggregate" 17 | SPDX-FileCopyrightText = "2018-2024 Nextcloud translators" 18 | SPDX-License-Identifier = "AGPL-3.0-or-later" 19 | 20 | [[annotations]] 21 | path = ".tx/config" 22 | precedence = "aggregate" 23 | SPDX-FileCopyrightText = "2018 Nextcloud GmbH and Nextcloud contributors" 24 | SPDX-License-Identifier = "AGPL-3.0-or-later" 25 | 26 | [[annotations]] 27 | path = ["tests/Integration/composer.json", "tests/Integration/composer.lock"] 28 | precedence = "aggregate" 29 | SPDX-FileCopyrightText = "2022 Nextcloud GmbH and Nextcloud contributors" 30 | SPDX-License-Identifier = "AGPL-3.0-or-later" 31 | 32 | [[annotations]] 33 | path = ["vendor-bin/php-scoper/composer.json", "vendor-bin/php-scoper/composer.lock"] 34 | precedence = "aggregate" 35 | SPDX-FileCopyrightText = "2023 Nextcloud GmbH and Nextcloud contributors" 36 | SPDX-License-Identifier = "AGPL-3.0-or-later" 37 | 38 | [[annotations]] 39 | path = "img/app.svg" 40 | precedence = "aggregate" 41 | SPDX-FileCopyrightText = "2019 Microsoft, Teo.raff " 42 | SPDX-License-Identifier = "CC0-1.0" 43 | -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | sharepoint 9 | SharePoint Backend 10 | SharePoint Backend for External storages 11 | 16 | 2.0.0-dev.0 17 | agpl 18 | Arthur Schiwon 19 | SharePoint 20 | 21 | 22 | 23 | files 24 | https://github.com/nextcloud/sharepoint/issues/ 25 | https://raw.githubusercontent.com/nextcloud/sharepoint/master/screenshots/configuration.png 26 | 27 | 28 | 29 | 30 | OCA\SharePoint\Command\ListLibraries 31 | 32 | 33 | -------------------------------------------------------------------------------- /composer/autoload.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krankerl.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | [package] 4 | before_cmds = [ 5 | "composer install --no-dev", 6 | ] 7 | -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/sharepoint/9a2ac23bf72aace6ab76d6b73b28fb2d8b4ed56c/l10n/.gitkeep -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Gasheer" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Gasheer" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/an.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Host" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/an.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Host" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "أفرض المصادقة عبر NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "تتمّ تلقائيّاً محاولة الحصول على أَمَارَة SAML token أوّلاّ.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "المضيف", 8 | "Document Library" : "مكتب المستندات", 9 | "SharePoint Backend" : "خلفية SharePoint", 10 | "SharePoint Backend for External storages" : "خلفية SharePoint لوحدات التخزين الخارجية", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "تسمح خلفية Sharepoint للمسؤولين بإضافة مكتبات مستندات Sharepoint كمجلدات في Nextcloud. يُوفّر هذا طريقة سهلة للمستخدمين للوصول إلى بيانات Sharepoint في نفس المكان الذي يعثرون فيه على ملفاتهم الأخرى، مما يسهل التعاون والمشاركة داخل وخارج حدود المؤسسة. \n\nيمكن للمستخدمين استخدام عميل سطح المكتب أو تطبيقات الهاتف المحمول أو واجهة الويب والتعليق على الملفات ووضع علامة عليها ومشاركتها وتحريرها بشكل تعاوني على Sharepoint تمامًا كما هو الحال مع أي بيانات أخرى على Nextcloud. \n\nيدعم Sharepoint 2013 و 2016 و 365. يصل Nextcloud إلى Sharepoint من خلال Sharepoint REST API ويستخدم مصادقة NTLM. يحترم Nextcloud أذونات الوصول إلى الملفات المرتبطة ببيانات اعتماد المستخدم التي تم تكوينها. تتولى Nextcloud معالجة الإصدار والمشاركة. \n\nتعرف على المزيد حول التخزين الخارجي و Sharepoint على [https://nextcloud.com/storage/](https://nextcloud.com/storage/) " 12 | }, 13 | "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); 14 | -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "أفرض المصادقة عبر NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "تتمّ تلقائيّاً محاولة الحصول على أَمَارَة SAML token أوّلاّ.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "المضيف", 6 | "Document Library" : "مكتب المستندات", 7 | "SharePoint Backend" : "خلفية SharePoint", 8 | "SharePoint Backend for External storages" : "خلفية SharePoint لوحدات التخزين الخارجية", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "تسمح خلفية Sharepoint للمسؤولين بإضافة مكتبات مستندات Sharepoint كمجلدات في Nextcloud. يُوفّر هذا طريقة سهلة للمستخدمين للوصول إلى بيانات Sharepoint في نفس المكان الذي يعثرون فيه على ملفاتهم الأخرى، مما يسهل التعاون والمشاركة داخل وخارج حدود المؤسسة. \n\nيمكن للمستخدمين استخدام عميل سطح المكتب أو تطبيقات الهاتف المحمول أو واجهة الويب والتعليق على الملفات ووضع علامة عليها ومشاركتها وتحريرها بشكل تعاوني على Sharepoint تمامًا كما هو الحال مع أي بيانات أخرى على Nextcloud. \n\nيدعم Sharepoint 2013 و 2016 و 365. يصل Nextcloud إلى Sharepoint من خلال Sharepoint REST API ويستخدم مصادقة NTLM. يحترم Nextcloud أذونات الوصول إلى الملفات المرتبطة ببيانات اعتماد المستخدم التي تم تكوينها. تتولى Nextcloud معالجة الإصدار والمشاركة. \n\nتعرف على المزيد حول التخزين الخارجي و Sharepoint على [https://nextcloud.com/storage/](https://nextcloud.com/storage/) " 10 | },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" 11 | } -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Agospiador", 6 | "Document Library" : "Biblioteca de documentos", 7 | "SharePoint Backend" : "Backend de SharePoint", 8 | "SharePoint Backend for External storages" : "Backend de SharePoint p'almacenamientos esternos" 9 | }, 10 | "nplurals=2; plural=(n != 1);"); 11 | -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Agospiador", 4 | "Document Library" : "Biblioteca de documentos", 5 | "SharePoint Backend" : "Backend de SharePoint", 6 | "SharePoint Backend for External storages" : "Backend de SharePoint p'almacenamientos esternos" 7 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 8 | } -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Şəbəkədə ünvan" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Şəbəkədə ünvan" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Прилагане на NTLM удостоверяване", 5 | "Acquiring a SAML token is attempted first by default." : "По подразбиране първо се прави опит за придобиване на SAML токен.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Хост", 8 | "Document Library" : "Библиотека с документи", 9 | "SharePoint Backend" : "SharePoint Сървър", 10 | "SharePoint Backend for External storages" : "Сървър на SharePoint за външни хранилища", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Сървърът на Sharepoint позволява на администраторите да добавят библиотеки с документи на Sharepoint, като папки в Nextcloud. Това предлага на потребителите лесен начин за достъп до данни на Sharepoint, на същото място, където намират другите си файлове, като улесняват сътрудничеството и споделянето в рамките на и извън границите на организацията. Потребителите могат да използват настолен клиент, мобилни приложения или уеб интерфейс и да коментират, да слагат етикет, споделят и съвместно да редактират файлове в Sharepoint точно както с всички други данни в Nextcloud.\n\nПоддържат се Sharepoint 2013, 2016 и 365. Nextcloud осъществява достъп до Sharepoint чрез API на Sharepoint REST и използва NTLM удостоверяване. Nextcloud зачита права за достъп до файлове, свързани с неговите конфигурирани потребителски идентификационни данни. Създаването на версии и споделянето се обработват от Nextcloud.\n\nНаучете повече за външното хранилище и Sharepoint на [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Прилагане на NTLM удостоверяване", 3 | "Acquiring a SAML token is attempted first by default." : "По подразбиране първо се прави опит за придобиване на SAML токен.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Хост", 6 | "Document Library" : "Библиотека с документи", 7 | "SharePoint Backend" : "SharePoint Сървър", 8 | "SharePoint Backend for External storages" : "Сървър на SharePoint за външни хранилища", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Сървърът на Sharepoint позволява на администраторите да добавят библиотеки с документи на Sharepoint, като папки в Nextcloud. Това предлага на потребителите лесен начин за достъп до данни на Sharepoint, на същото място, където намират другите си файлове, като улесняват сътрудничеството и споделянето в рамките на и извън границите на организацията. Потребителите могат да използват настолен клиент, мобилни приложения или уеб интерфейс и да коментират, да слагат етикет, споделят и съвместно да редактират файлове в Sharepoint точно както с всички други данни в Nextcloud.\n\nПоддържат се Sharepoint 2013, 2016 и 365. Nextcloud осъществява достъп до Sharepoint чрез API на Sharepoint REST и използва NTLM удостоверяване. Nextcloud зачита права за достъп до файлове, свързани с неговите конфигурирани потребителски идентификационни данни. Създаването на версии и споделянето се обработват от Nextcloud.\n\nНаучете повече за външното хранилище и Sharepoint на [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "হোস্ট" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "হোস্ট" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Ostiz", 6 | "Document Library" : "Lervdi diell", 7 | "SharePoint Backend" : "Backend SharePoint", 8 | "SharePoint Backend for External storages" : "Backend SharePoint evit ar bern diavaez" 9 | }, 10 | "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);"); 11 | -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Ostiz", 4 | "Document Library" : "Lervdi diell", 5 | "SharePoint Backend" : "Backend SharePoint", 6 | "SharePoint Backend for External storages" : "Backend SharePoint evit ar bern diavaez" 7 | },"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);" 8 | } -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de documents", 7 | "SharePoint Backend" : "Rerefons de SharePoint", 8 | "SharePoint Backend for External storages" : "Rerefons de SharePoint per a l'emmagatzematge extern" 9 | }, 10 | "nplurals=2; plural=(n != 1);"); 11 | -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de documents", 5 | "SharePoint Backend" : "Rerefons de SharePoint", 6 | "SharePoint Backend for External storages" : "Rerefons de SharePoint per a l'emmagatzematge extern" 7 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 8 | } -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Vynutit NTLM ověřování se", 5 | "Acquiring a SAML token is attempted first by default." : "Ve výchozím stavu je nejprve vyzkoušeno získání SAML tokenu.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Stroj", 8 | "Document Library" : "Knihovna dokumentů", 9 | "SharePoint Backend" : "Podpůrná vrstva pro SharePoint", 10 | "SharePoint Backend for External storages" : "Podpůrná vrstva pro SharePoint v roli externího úložiště", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Podpůrná vrstva pro Sharepoint umožňuje správcům přidávat knihovny dokumentů z Sharepoint jako složky do Nextcloud. To nabízí snadný způsob jak mohou uživatelé přistupovat k datům na Sharepoint, ze stejného místa, na kterém přistupují k ostatním souborům. Tím je dosaženo spolupráce a sdílení v rámci a mezi organizacemi. Uživatelé mohou použít desktopového klienta, mobilní aplikaci nebo webové rozhraní a komentovat, opatřovat štítky, sdílet a týmově upravovat soubory na Sharepoint úplně stejně, jako jakákoli jiná data na Nextcloud.\n\nVyžaduje Nextcloud 10 nebo novější. Podporuje Sharepoint 2013, 2016 a 365. Nextcloud k Sharepoint přistupuje prostřednictvím Sharepoint REST API a používá NTLM ověřování. Nextcloud ctí souborová přístupová práva náležející uživatelskému účtu v Sharepoint, kterým k nim přistupuje. Verzování a sdílení je obsluhováno Nextcloud.\n\nVíce o externím úložišti a Sharepoint se můžete dozvědět na [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); 14 | -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Vynutit NTLM ověřování se", 3 | "Acquiring a SAML token is attempted first by default." : "Ve výchozím stavu je nejprve vyzkoušeno získání SAML tokenu.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Stroj", 6 | "Document Library" : "Knihovna dokumentů", 7 | "SharePoint Backend" : "Podpůrná vrstva pro SharePoint", 8 | "SharePoint Backend for External storages" : "Podpůrná vrstva pro SharePoint v roli externího úložiště", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Podpůrná vrstva pro Sharepoint umožňuje správcům přidávat knihovny dokumentů z Sharepoint jako složky do Nextcloud. To nabízí snadný způsob jak mohou uživatelé přistupovat k datům na Sharepoint, ze stejného místa, na kterém přistupují k ostatním souborům. Tím je dosaženo spolupráce a sdílení v rámci a mezi organizacemi. Uživatelé mohou použít desktopového klienta, mobilní aplikaci nebo webové rozhraní a komentovat, opatřovat štítky, sdílet a týmově upravovat soubory na Sharepoint úplně stejně, jako jakákoli jiná data na Nextcloud.\n\nVyžaduje Nextcloud 10 nebo novější. Podporuje Sharepoint 2013, 2016 a 365. Nextcloud k Sharepoint přistupuje prostřednictvím Sharepoint REST API a používá NTLM ověřování. Nextcloud ctí souborová přístupová práva náležející uživatelskému účtu v Sharepoint, kterým k nim přistupuje. Verzování a sdílení je obsluhováno Nextcloud.\n\nVíce o externím úložišti a Sharepoint se můžete dozvědět na [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" 11 | } -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Vært", 6 | "Document Library" : "Dokumentbibliotek" 7 | }, 8 | "nplurals=2; plural=(n != 1);"); 9 | -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Vært", 4 | "Document Library" : "Dokumentbibliotek" 5 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 6 | } -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTLM-Auth erzwingen", 5 | "Acquiring a SAML token is attempted first by default." : "Standardmäßig wird zuerst versucht, ein SAML-Token zu erhalten.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Hostcomputer", 8 | "Document Library" : "Dokumentbibliothek", 9 | "SharePoint Backend" : "SharePoint Backend", 10 | "SharePoint Backend for External storages" : "Sharepoint-Backend für externen Speicher", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Das Sharepoint-Backend ermöglicht Administratoren, Sharepoint-Dokument-Bibliotheken als Ordner in Nextcloud einzubinden. Damit wird Nutzern eine einfache Möglichkeit geboten, auf Sharepoint-Daten dort zuzugreifen, wo sie auch ihre anderen Dateien gespeichert haben, um so Zusammenarbeit und Teilen von Daten zu vereinfachen. Nutzer können den Dektop-Client, die Mobil-Apps oder die Web-Oberfläche verwenden um die Dateien genau so die Sharepoint-Daten ebenso zu bearbeiten wie alle anderen auf der Nextcloud gespeicherte Dateien.\n\nUnterstützt Sharepoint 2013, 2016 und 365. Nextcloud greift auf Sharepoint über die Sharepoint-REST-API zu und verwendet die NTLM-Authentifizierung. Nextcloud beachtet die gesetzten Zugriffsberechtigungen die mit den eingerichteten Benutzerdaten korrespondieren. Versionsverwaltung und Freigaben werden von Nextcloud abgewickelt.\n\nWeitere Infos: [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTLM-Auth erzwingen", 3 | "Acquiring a SAML token is attempted first by default." : "Standardmäßig wird zuerst versucht, ein SAML-Token zu erhalten.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Hostcomputer", 6 | "Document Library" : "Dokumentbibliothek", 7 | "SharePoint Backend" : "SharePoint Backend", 8 | "SharePoint Backend for External storages" : "Sharepoint-Backend für externen Speicher", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Das Sharepoint-Backend ermöglicht Administratoren, Sharepoint-Dokument-Bibliotheken als Ordner in Nextcloud einzubinden. Damit wird Nutzern eine einfache Möglichkeit geboten, auf Sharepoint-Daten dort zuzugreifen, wo sie auch ihre anderen Dateien gespeichert haben, um so Zusammenarbeit und Teilen von Daten zu vereinfachen. Nutzer können den Dektop-Client, die Mobil-Apps oder die Web-Oberfläche verwenden um die Dateien genau so die Sharepoint-Daten ebenso zu bearbeiten wie alle anderen auf der Nextcloud gespeicherte Dateien.\n\nUnterstützt Sharepoint 2013, 2016 und 365. Nextcloud greift auf Sharepoint über die Sharepoint-REST-API zu und verwendet die NTLM-Authentifizierung. Nextcloud beachtet die gesetzten Zugriffsberechtigungen die mit den eingerichteten Benutzerdaten korrespondieren. Versionsverwaltung und Freigaben werden von Nextcloud abgewickelt.\n\nWeitere Infos: [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTLM-Authentifizierung erzwingen", 5 | "Acquiring a SAML token is attempted first by default." : "Standardmäßig wird zuerst versucht, ein SAML-Token zu erhalten.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Host", 8 | "Document Library" : "Dokumentenbibliothek", 9 | "SharePoint Backend" : "SharePoint-Backend", 10 | "SharePoint Backend for External storages" : "SharePoint-Backend für externen Speicher", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Das Sharepoint-Backend ermöglicht Administratoren, Sharepoint-Dokument-Bibliotheken als Ordner in Nextcloud einzubinden. Damit wird Nutzern eine einfache Möglichkeit geboten, auf Sharepoint-Daten dort zuzugreifen, wo Sie auch ihre anderen Dateien gespeichert haben, um so Zusammenarbeit und Teilen von Daten zu vereinfachen. Nutzer können den Dektop-Client, die Mobil-Apps oder die Web-Oberfläche verwenden um die Dateien genau so die Sharepoint-Daten ebenso zu bearbeiten wie alle anderen auf der Nextcloud gespeicherte Dateien.\n\nUnterstützt Sharepoint 2013, 2016 und 365. Nextcloud greift auf Sharepoint über die Sharepoint-REST-API zu und verwendet die NTLM-Authentifizierung. Nextcloud beachtet die gesetzten Zugriffsberechtigungen die mit den eingerichteten Benutzerdaten korrespondieren. Versionsverwaltung und Freigaben werden von Nextcloud abgewickelt.\n\nWeitere Infos: [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTLM-Authentifizierung erzwingen", 3 | "Acquiring a SAML token is attempted first by default." : "Standardmäßig wird zuerst versucht, ein SAML-Token zu erhalten.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Host", 6 | "Document Library" : "Dokumentenbibliothek", 7 | "SharePoint Backend" : "SharePoint-Backend", 8 | "SharePoint Backend for External storages" : "SharePoint-Backend für externen Speicher", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Das Sharepoint-Backend ermöglicht Administratoren, Sharepoint-Dokument-Bibliotheken als Ordner in Nextcloud einzubinden. Damit wird Nutzern eine einfache Möglichkeit geboten, auf Sharepoint-Daten dort zuzugreifen, wo Sie auch ihre anderen Dateien gespeichert haben, um so Zusammenarbeit und Teilen von Daten zu vereinfachen. Nutzer können den Dektop-Client, die Mobil-Apps oder die Web-Oberfläche verwenden um die Dateien genau so die Sharepoint-Daten ebenso zu bearbeiten wie alle anderen auf der Nextcloud gespeicherte Dateien.\n\nUnterstützt Sharepoint 2013, 2016 und 365. Nextcloud greift auf Sharepoint über die Sharepoint-REST-API zu und verwendet die NTLM-Authentifizierung. Nextcloud beachtet die gesetzten Zugriffsberechtigungen die mit den eingerichteten Benutzerdaten korrespondieren. Versionsverwaltung und Freigaben werden von Nextcloud abgewickelt.\n\nWeitere Infos: [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Επιβολή πιστοποίησης NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "Η απόκτηση ενός διακριτικού SAML επιχειρείται πρώτα από προεπιλογή.", 6 | "SharePoint" : "Κοινόχρηστο Σημείο", 7 | "Host" : "Υπολογιστής φιλοξενίας", 8 | "Document Library" : "Βιβλιοθήκη Εγγράφων", 9 | "SharePoint Backend" : "Σύστημα υποστήριξης SharePoint", 10 | "SharePoint Backend for External storages" : "Σύστημα υποστήριξης SharePoint για εξωτερικά μέσα αποθήκευσης" 11 | }, 12 | "nplurals=2; plural=(n != 1);"); 13 | -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Επιβολή πιστοποίησης NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "Η απόκτηση ενός διακριτικού SAML επιχειρείται πρώτα από προεπιλογή.", 4 | "SharePoint" : "Κοινόχρηστο Σημείο", 5 | "Host" : "Υπολογιστής φιλοξενίας", 6 | "Document Library" : "Βιβλιοθήκη Εγγράφων", 7 | "SharePoint Backend" : "Σύστημα υποστήριξης SharePoint", 8 | "SharePoint Backend for External storages" : "Σύστημα υποστήριξης SharePoint για εξωτερικά μέσα αποθήκευσης" 9 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 10 | } -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Enforce NTLM auth", 5 | "Acquiring a SAML token is attempted first by default." : "Acquiring a SAML token is attempted first by default.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Host", 8 | "Document Library" : "Document Library", 9 | "SharePoint Backend" : "SharePoint Backend", 10 | "SharePoint Backend for External storages" : "SharePoint Backend for External storages", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Enforce NTLM auth", 3 | "Acquiring a SAML token is attempted first by default." : "Acquiring a SAML token is attempted first by default.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Host", 6 | "Document Library" : "Document Library", 7 | "SharePoint Backend" : "SharePoint Backend", 8 | "SharePoint Backend for External storages" : "SharePoint Backend for External storages", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Gastigo" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Gastigo" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Forzar autenticación NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "La obtención de un token SAML se intenta primero por defecto.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Servidor", 8 | "Document Library" : "Biblioteca de documentos", 9 | "SharePoint Backend" : "Motor de SharePoint", 10 | "SharePoint Backend for External storages" : "Backend de SharePoint para almacentamientos externos", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "El backend de Sharepoint permite a los administradores añadir bibliotecas de documentos de Sharepoint como carpetas en Nextcloud. Esto ofrece una forma sencilla de que los usuarios accedan a los datos de Sharepoint en el mismo lugar en el que encuentran sus otros archivos, facilitando la colaboración y el intercambio dentro y fuera de las fronteras de la organización. Los usuarios pueden usar el cliente de escritorio, las aplicaciones móviles o la interfaz web y comentar, etiquetar, compartir y editar de forma colaborativa los archivos de Sharepoint al igual que con cualquier otro dato en Nextcloud.\n\nEs compatible con Sharepoint 2013, 2016 y 365. Nextcloud accede a Sharepoint a través de la API REST de Sharepoint y usa la autenticación NTLM. Nextcloud respeta los permisos de acceso a los archivos asociados a sus credenciales de usuario configuradas. El control de versiones y el uso compartido son gestionados por Nextcloud.\n\nMás información sobre el almacenamiento externo y Sharepoint en [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Forzar autenticación NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "La obtención de un token SAML se intenta primero por defecto.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de documentos", 7 | "SharePoint Backend" : "Motor de SharePoint", 8 | "SharePoint Backend for External storages" : "Backend de SharePoint para almacentamientos externos", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "El backend de Sharepoint permite a los administradores añadir bibliotecas de documentos de Sharepoint como carpetas en Nextcloud. Esto ofrece una forma sencilla de que los usuarios accedan a los datos de Sharepoint en el mismo lugar en el que encuentran sus otros archivos, facilitando la colaboración y el intercambio dentro y fuera de las fronteras de la organización. Los usuarios pueden usar el cliente de escritorio, las aplicaciones móviles o la interfaz web y comentar, etiquetar, compartir y editar de forma colaborativa los archivos de Sharepoint al igual que con cualquier otro dato en Nextcloud.\n\nEs compatible con Sharepoint 2013, 2016 y 365. Nextcloud accede a Sharepoint a través de la API REST de Sharepoint y usa la autenticación NTLM. Nextcloud respeta los permisos de acceso a los archivos asociados a sus credenciales de usuario configuradas. El control de versiones y el uso compartido son gestionados por Nextcloud.\n\nMás información sobre el almacenamiento externo y Sharepoint en [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 8 | }, 9 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 10 | -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 6 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 7 | } -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 8 | }, 9 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 10 | -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 6 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 7 | } -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 8 | }, 9 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 10 | -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 6 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 7 | } -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 8 | }, 9 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 10 | -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 6 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 7 | } -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Imponer autenticación NTLM ", 5 | "Acquiring a SAML token is attempted first by default." : "Por defecto, primero se intenta obtener un token SAML. ", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Servidor", 8 | "Document Library" : "Biblioteca de Documentos", 9 | "SharePoint Backend" : "Sistema de soporte de SharePoint", 10 | "SharePoint Backend for External storages" : "Backend de SharePoint para almacenamiento externo.", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "El backend de Sharepoint permite a los administradores agregar bibliotecas de documentos de Sharepoint como carpetas en Nextcloud. Esto ofrece una forma sencilla para que los usuarios accedan a los datos de Sharepoint en el mismo lugar donde encuentran sus otros archivos, facilitando la colaboración y el intercambio dentro y fuera de la organización. Los usuarios pueden utilizar el cliente de escritorio, las aplicaciones móviles o la interfaz web y comentar, etiquetar, compartir y editar archivos en Sharepoint de manera colaborativa, igual que con cualquier otro dato en Nextcloud.\n\nCompatible con Sharepoint 2013, 2016 y 365. Nextcloud accede a Sharepoint a través de la API REST de Sharepoint y utiliza la autenticación NTLM. Nextcloud respeta los permisos de acceso a archivos asociados con las credenciales de usuario configuradas. La versión y el intercambio de archivos son manejados por Nextcloud.\n\nObtén más información sobre Almacenamiento Externo y Sharepoint en [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Imponer autenticación NTLM ", 3 | "Acquiring a SAML token is attempted first by default." : "Por defecto, primero se intenta obtener un token SAML. ", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint", 8 | "SharePoint Backend for External storages" : "Backend de SharePoint para almacenamiento externo.", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "El backend de Sharepoint permite a los administradores agregar bibliotecas de documentos de Sharepoint como carpetas en Nextcloud. Esto ofrece una forma sencilla para que los usuarios accedan a los datos de Sharepoint en el mismo lugar donde encuentran sus otros archivos, facilitando la colaboración y el intercambio dentro y fuera de la organización. Los usuarios pueden utilizar el cliente de escritorio, las aplicaciones móviles o la interfaz web y comentar, etiquetar, compartir y editar archivos en Sharepoint de manera colaborativa, igual que con cualquier otro dato en Nextcloud.\n\nCompatible con Sharepoint 2013, 2016 y 365. Nextcloud accede a Sharepoint a través de la API REST de Sharepoint y utiliza la autenticación NTLM. Nextcloud respeta los permisos de acceso a archivos asociados con las credenciales de usuario configuradas. La versión y el intercambio de archivos son manejados por Nextcloud.\n\nObtén más información sobre Almacenamiento Externo y Sharepoint en [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 8 | }, 9 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 10 | -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 6 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 7 | } -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint", 8 | "SharePoint Backend for External storages" : "Backend de SharePoint para Almacentamiento externo" 9 | }, 10 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 11 | -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint", 6 | "SharePoint Backend for External storages" : "Backend de SharePoint para Almacentamiento externo" 7 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 8 | } -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 8 | }, 9 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 10 | -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Servidor", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Sistema de soporte de SharePoint" 6 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 7 | } -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Servidor" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Servidor" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Host" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Host" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTLM autentifikazioa aplikatu", 5 | "Acquiring a SAML token is attempted first by default." : "SAML token bat eskuratzen lehen modu lehenetsian saiatzen da.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Ostalaria", 8 | "Document Library" : "Dokumentuen liburutegia", 9 | "SharePoint Backend" : "Sharepoint zerbitzaria", 10 | "SharePoint Backend for External storages" : "Kanpo biltegiratzerako SharePoint zerbitzaria", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint-atzealdekoak administratzaileei Sharepoint dokumentu liburutegiak karpeta gisa gehitzeko aukera ematen die Nextcloud-en. Honek erabiltzaileei modu erraz bat eskaintzen die Sharepoint-eko datuak beste fitxategi batzuk aurkitzen dituzten leku berean sartzeko, elkarlana eta partekatzea erraztuz erakundearen ertz zein ertzetan zehar. Erabiltzaileek mahaigaineko bezeroa, mugikorreko aplikazioak edo web interfazea erabil dezakete eta iruzkinak egin, etiketatu, partekatu eta elkarlanean editatu fitxategiak Sharepoint-en Nextcloud-eko beste edozein datuekin bezala.\n\nSharepoint 2013, 2016 eta 365 onartzen ditu. Nextcloud Sharepoint-era sartzen da Sharepoint REST APIaren bidez eta NTLM autentifikazioa erabiltzen du. Nextcloud-ek errespetatzen ditu konfiguratutako erabiltzaile kredentzialekin lotutako fitxategietarako sarbide baimenak . Nextcloud-ek kudeatzen ditu bertsioen kontrolatze eta partekatzea.\n\nKanpoko biltegiratzeari eta Sharepoint-i buruzko informazio gehiago lortu hemen: [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTLM autentifikazioa aplikatu", 3 | "Acquiring a SAML token is attempted first by default." : "SAML token bat eskuratzen lehen modu lehenetsian saiatzen da.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Ostalaria", 6 | "Document Library" : "Dokumentuen liburutegia", 7 | "SharePoint Backend" : "Sharepoint zerbitzaria", 8 | "SharePoint Backend for External storages" : "Kanpo biltegiratzerako SharePoint zerbitzaria", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint-atzealdekoak administratzaileei Sharepoint dokumentu liburutegiak karpeta gisa gehitzeko aukera ematen die Nextcloud-en. Honek erabiltzaileei modu erraz bat eskaintzen die Sharepoint-eko datuak beste fitxategi batzuk aurkitzen dituzten leku berean sartzeko, elkarlana eta partekatzea erraztuz erakundearen ertz zein ertzetan zehar. Erabiltzaileek mahaigaineko bezeroa, mugikorreko aplikazioak edo web interfazea erabil dezakete eta iruzkinak egin, etiketatu, partekatu eta elkarlanean editatu fitxategiak Sharepoint-en Nextcloud-eko beste edozein datuekin bezala.\n\nSharepoint 2013, 2016 eta 365 onartzen ditu. Nextcloud Sharepoint-era sartzen da Sharepoint REST APIaren bidez eta NTLM autentifikazioa erabiltzen du. Nextcloud-ek errespetatzen ditu konfiguratutako erabiltzaile kredentzialekin lotutako fitxategietarako sarbide baimenak . Nextcloud-ek kudeatzen ditu bertsioen kontrolatze eta partekatzea.\n\nKanpoko biltegiratzeari eta Sharepoint-i buruzko informazio gehiago lortu hemen: [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Enforce NTLM auth", 5 | "Acquiring a SAML token is attempted first by default." : "Acquiring a SAML token is attempted first by default.", 6 | "SharePoint" : "شیرپوینت", 7 | "Host" : "میزبان", 8 | "Document Library" : "کتابخانه اسناد", 9 | "SharePoint Backend" : "Backend شیرپوینت", 10 | "SharePoint Backend for External storages" : "خروجی شیرپوینت برای فضای خارجی", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n > 1);"); 14 | -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Enforce NTLM auth", 3 | "Acquiring a SAML token is attempted first by default." : "Acquiring a SAML token is attempted first by default.", 4 | "SharePoint" : "شیرپوینت", 5 | "Host" : "میزبان", 6 | "Document Library" : "کتابخانه اسناد", 7 | "SharePoint Backend" : "Backend شیرپوینت", 8 | "SharePoint Backend for External storages" : "خروجی شیرپوینت برای فضای خارجی", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 11 | } -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Pakota NTLM-todennus", 5 | "SharePoint" : "SharePoint", 6 | "Host" : "Isäntä", 7 | "Document Library" : "Dokumenttikirjasto", 8 | "SharePoint Backend" : "SharePoint-taustaosa", 9 | "SharePoint Backend for External storages" : "SharePoint-taustaosa erillisiä tallennustiloja varten" 10 | }, 11 | "nplurals=2; plural=(n != 1);"); 12 | -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Pakota NTLM-todennus", 3 | "SharePoint" : "SharePoint", 4 | "Host" : "Isäntä", 5 | "Document Library" : "Dokumenttikirjasto", 6 | "SharePoint Backend" : "SharePoint-taustaosa", 7 | "SharePoint Backend for External storages" : "SharePoint-taustaosa erillisiä tallennustiloja varten" 8 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 9 | } -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Imposer l’authentification NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "L'acquisition d'un jeton SAML est tentée en premier par défaut.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Hôte", 8 | "Document Library" : "Bibliothèque de documents", 9 | "SharePoint Backend" : "Serveur SharePoint", 10 | "SharePoint Backend for External storages" : "Serveur SharePoint pour le stockage externe", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Le backend Sharepoint permet aux administrateurs d'ajouter des bibliothèques de documents Sharepoint comme dossiers dans Nextcloud. Cela offre aux utilisateurs un moyen facile d'accéder aux données Sharepoint au même endroit que leurs autres fichiers, facilitant la collaboration et le partage à l'intérieur et à l'extérieur des frontières de l'organisation. Les utilisateurs peuvent utiliser le client de bureau, les applications mobiles ou l'interface Web et commenter, marquer, partager et éditer collaborativement des fichiers sur Sharepoint comme avec n'importe quelle autre donnée sur Nextcloud.\n\nGère Sharepoint 2013, 2016 et 365. Nextcloud accède à Sharepoint via l'API REST Sharepoint et utilise l'authentification NTLM. Nextcloud respecte les autorisations d'accès aux fichiers associées aux informations d'identification utilisateur configurées. La gestion des versions et le partage sont gérés par Nextcloud.\n\nEn savoir plus sur le stockage externe et Sharepoint sur [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Imposer l’authentification NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "L'acquisition d'un jeton SAML est tentée en premier par défaut.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Hôte", 6 | "Document Library" : "Bibliothèque de documents", 7 | "SharePoint Backend" : "Serveur SharePoint", 8 | "SharePoint Backend for External storages" : "Serveur SharePoint pour le stockage externe", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Le backend Sharepoint permet aux administrateurs d'ajouter des bibliothèques de documents Sharepoint comme dossiers dans Nextcloud. Cela offre aux utilisateurs un moyen facile d'accéder aux données Sharepoint au même endroit que leurs autres fichiers, facilitant la collaboration et le partage à l'intérieur et à l'extérieur des frontières de l'organisation. Les utilisateurs peuvent utiliser le client de bureau, les applications mobiles ou l'interface Web et commenter, marquer, partager et éditer collaborativement des fichiers sur Sharepoint comme avec n'importe quelle autre donnée sur Nextcloud.\n\nGère Sharepoint 2013, 2016 et 365. Nextcloud accède à Sharepoint via l'API REST Sharepoint et utilise l'authentification NTLM. Nextcloud respecte les autorisations d'accès aux fichiers associées aux informations d'identification utilisateur configurées. La gestion des versions et le partage sont gérés par Nextcloud.\n\nEn savoir plus sur le stockage externe et Sharepoint sur [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Údar NTLM a fhorfheidhmiú", 5 | "Acquiring a SAML token is attempted first by default." : "Déantar iarracht ar dtús chun comhartha SAML a fháil de réir réamhshocraithe.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Óstach", 8 | "Document Library" : "Leabharlann Doiciméad", 9 | "SharePoint Backend" : "Inneall SharePoint", 10 | "SharePoint Backend for External storages" : "Inneall SharePoint le haghaidh stórais sheachtracha", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Ceadaíonn Inneall Sharepoint do riarthóirí leabharlanna doiciméad Sharepoint a chur leis mar fhillteáin i Nextcloud. Tugann sé seo bealach éasca d’úsáideoirí rochtain a fháil ar shonraí Sharepoint san áit chéanna ina n-aimsíonn siad a gcuid comhad eile, ag éascú comhoibriú agus comhroinnt laistigh de agus thar theorainneacha na heagraíochta. Is féidir le húsáideoirí an cliant deisce, aipeanna móibíleacha nó comhéadan gréasáin a úsáid agus trácht a dhéanamh, comhaid a chlibeáil, a roinnt agus a chur in eagar go comhoibríoch ar Sharepoint díreach mar atá le haon sonraí eile ar Nextcloud.\n\nTacaíonn sé le Sharepoint 2013, 2016 agus 365. Faigheann Nextcloud rochtain ar Sharepoint tríd an Sharepoint REST API agus úsáideann sé fíordheimhniú NTLM. Tá meas ag Nextcloud ar na ceadanna rochtana comhad a bhaineann lena dintiúir úsáideora cumraithe. Is é Nextcloud a láimhseálann leagan agus roinnt.\n\nFoghlaim tuilleadh faoi Stóráil Sheachtrach agus Sharepoint ar [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); 14 | -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Údar NTLM a fhorfheidhmiú", 3 | "Acquiring a SAML token is attempted first by default." : "Déantar iarracht ar dtús chun comhartha SAML a fháil de réir réamhshocraithe.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Óstach", 6 | "Document Library" : "Leabharlann Doiciméad", 7 | "SharePoint Backend" : "Inneall SharePoint", 8 | "SharePoint Backend for External storages" : "Inneall SharePoint le haghaidh stórais sheachtracha", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Ceadaíonn Inneall Sharepoint do riarthóirí leabharlanna doiciméad Sharepoint a chur leis mar fhillteáin i Nextcloud. Tugann sé seo bealach éasca d’úsáideoirí rochtain a fháil ar shonraí Sharepoint san áit chéanna ina n-aimsíonn siad a gcuid comhad eile, ag éascú comhoibriú agus comhroinnt laistigh de agus thar theorainneacha na heagraíochta. Is féidir le húsáideoirí an cliant deisce, aipeanna móibíleacha nó comhéadan gréasáin a úsáid agus trácht a dhéanamh, comhaid a chlibeáil, a roinnt agus a chur in eagar go comhoibríoch ar Sharepoint díreach mar atá le haon sonraí eile ar Nextcloud.\n\nTacaíonn sé le Sharepoint 2013, 2016 agus 365. Faigheann Nextcloud rochtain ar Sharepoint tríd an Sharepoint REST API agus úsáideann sé fíordheimhniú NTLM. Tá meas ag Nextcloud ar na ceadanna rochtana comhad a bhaineann lena dintiúir úsáideora cumraithe. Is é Nextcloud a láimhseálann leagan agus roinnt.\n\nFoghlaim tuilleadh faoi Stóráil Sheachtrach agus Sharepoint ar [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" 11 | } -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Impor a autenticación NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "A adquisición dun testemuño SAML téntase antes de xeito predeterminado.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Servidor", 8 | "Document Library" : "Biblioteca de documentos", 9 | "SharePoint Backend" : "Infraestrutura do SharePoint", 10 | "SharePoint Backend for External storages" : "Infraestrutura de SharePoint para Almacenamento externo", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "A infraestrutura do SharePoint permítelle aos administradores engadir bibliotecas de documentos de SharePoint como cartafoles en Nextcloud. Isto ofrécelle un xeito doado para os usuarios de acceder aos datos de Sharepoint no mesmo lugar onde atopan os seus outros ficheiros, facilitando a colaboración e o intercambio dentro e fóra das fronteiras da organización. Os usuarios poden empregar o cliente de escritorio, as aplicacións móbiles ou a interface web e comentar, etiquetar, compartir e editar de xeito colaborativo ficheiros en Sharepoint igual que con calquera outro dato de Nextcloud.\n\nAdmite ShaprePoint 2013, 2016 e 365. Nexcloud accede a SharePoint a través da API REST do ShaprePoint e emprega autenticación NTLM. Nextcloud respecta os permisos de acceso a ficheiros asociados coas credenciais do usuario configuradas. As versións e as comparticións son controladas por Nextcloud.\n\nDispón de máis información sobre almacenamento externo e SharePoint en [https://nextcloud.com/storage/](https://nextcloud.com/storage/)." 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Impor a autenticación NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "A adquisición dun testemuño SAML téntase antes de xeito predeterminado.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Servidor", 6 | "Document Library" : "Biblioteca de documentos", 7 | "SharePoint Backend" : "Infraestrutura do SharePoint", 8 | "SharePoint Backend for External storages" : "Infraestrutura de SharePoint para Almacenamento externo", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "A infraestrutura do SharePoint permítelle aos administradores engadir bibliotecas de documentos de SharePoint como cartafoles en Nextcloud. Isto ofrécelle un xeito doado para os usuarios de acceder aos datos de Sharepoint no mesmo lugar onde atopan os seus outros ficheiros, facilitando a colaboración e o intercambio dentro e fóra das fronteiras da organización. Os usuarios poden empregar o cliente de escritorio, as aplicacións móbiles ou a interface web e comentar, etiquetar, compartir e editar de xeito colaborativo ficheiros en Sharepoint igual que con calquera outro dato de Nextcloud.\n\nAdmite ShaprePoint 2013, 2016 e 365. Nexcloud accede a SharePoint a través da API REST do ShaprePoint e emprega autenticación NTLM. Nextcloud respecta os permisos de acceso a ficheiros asociados coas credenciais do usuario configuradas. As versións e as comparticións son controladas por Nextcloud.\n\nDispón de máis información sobre almacenamento externo e SharePoint en [https://nextcloud.com/storage/](https://nextcloud.com/storage/)." 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "מארח", 6 | "Document Library" : "ספריית מסמכים", 7 | "SharePoint Backend" : "מנגנון SharePoint", 8 | "SharePoint Backend for External storages" : "מנגנון SharePoint להתקני אחסון חיצוניים" 9 | }, 10 | "nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); 11 | -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "מארח", 4 | "Document Library" : "ספריית מסמכים", 5 | "SharePoint Backend" : "מנגנון SharePoint", 6 | "SharePoint Backend for External storages" : "מנגנון SharePoint להתקני אחסון חיצוניים" 7 | },"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" 8 | } -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Primijeni NTLM autorizaciju", 5 | "Acquiring a SAML token is attempted first by default." : "Prema zadanim postavkama prvo se pokušava dohvatiti SAML token.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Glavno računalo", 8 | "Document Library" : "Biblioteka dokumenata", 9 | "SharePoint Backend" : "SharePoint Backend", 10 | "SharePoint Backend for External storages" : "SharePoint Backend za vanjske pohrane" 11 | }, 12 | "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); 13 | -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Primijeni NTLM autorizaciju", 3 | "Acquiring a SAML token is attempted first by default." : "Prema zadanim postavkama prvo se pokušava dohvatiti SAML token.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Glavno računalo", 6 | "Document Library" : "Biblioteka dokumenata", 7 | "SharePoint Backend" : "SharePoint Backend", 8 | "SharePoint Backend for External storages" : "SharePoint Backend za vanjske pohrane" 9 | },"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;" 10 | } -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Az NTLM hitelesítés kikényszerítése", 5 | "Acquiring a SAML token is attempted first by default." : "Alapértelmezés szerint először SAML tokent próbál szerezni.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Kiszolgáló", 8 | "Document Library" : "Dokumentumtár", 9 | "SharePoint Backend" : "SharePoint háttérszolgáltatás", 10 | "SharePoint Backend for External storages" : "SharePoint háttérszolgáltatás a külső tárolókhoz", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "A Sharepoint Backend lehetővé teszi a rendszergazdák számára, hogy a Sharepoint dokumentumkönyvtárakat mappaként adják hozzá a Nextcloudhoz. Ez egyszerű módot kínál a felhasználók számára a Sharepoint adatokhoz való hozzáférésre ugyanazon a helyen, ahol más fájljaikat megtalálják, megkönnyítve az együttműködést és a megosztást a szervezet határain belül és túl. A felhasználók használhatják az asztali klienst, mobilalkalmazásokat vagy webes felületet, és megjegyzéseket fűzhetnek, címkézhetnek, megoszthatnak és szerkeszthetnek fájlokat a Sharepoint-on, csakúgy, mint a Nextcloud bármely más adatait.\n\nA progam a Sharepoint 2013-at, 2016-ot és 365-öt támogatja. A Nextcloud a Sharepoint REST API-n keresztül éri el a Sharepointot, és NTLM hitelesítést használ. A Nextcloud megtartja a konfigurált felhasználói hitelesítő adatokhoz társított fájlhozzáférési engedélyeket. A verziószámosítást és a megosztást a Nextcloud kezeli.\n\nTudjon meg többet a külső tárhelyről és a Sharepointról a [https://nextcloud.com/storage/](https://nextcloud.com/storage/) oldalon." 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Az NTLM hitelesítés kikényszerítése", 3 | "Acquiring a SAML token is attempted first by default." : "Alapértelmezés szerint először SAML tokent próbál szerezni.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Kiszolgáló", 6 | "Document Library" : "Dokumentumtár", 7 | "SharePoint Backend" : "SharePoint háttérszolgáltatás", 8 | "SharePoint Backend for External storages" : "SharePoint háttérszolgáltatás a külső tárolókhoz", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "A Sharepoint Backend lehetővé teszi a rendszergazdák számára, hogy a Sharepoint dokumentumkönyvtárakat mappaként adják hozzá a Nextcloudhoz. Ez egyszerű módot kínál a felhasználók számára a Sharepoint adatokhoz való hozzáférésre ugyanazon a helyen, ahol más fájljaikat megtalálják, megkönnyítve az együttműködést és a megosztást a szervezet határain belül és túl. A felhasználók használhatják az asztali klienst, mobilalkalmazásokat vagy webes felületet, és megjegyzéseket fűzhetnek, címkézhetnek, megoszthatnak és szerkeszthetnek fájlokat a Sharepoint-on, csakúgy, mint a Nextcloud bármely más adatait.\n\nA progam a Sharepoint 2013-at, 2016-ot és 365-öt támogatja. A Nextcloud a Sharepoint REST API-n keresztül éri el a Sharepointot, és NTLM hitelesítést használ. A Nextcloud megtartja a konfigurált felhasználói hitelesítő adatokhoz társított fájlhozzáférési engedélyeket. A verziószámosítást és a megosztást a Nextcloud kezeli.\n\nTudjon meg többet a külső tárhelyről és a Sharepointról a [https://nextcloud.com/storage/](https://nextcloud.com/storage/) oldalon." 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Hospite" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Hospite" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Host" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Host" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Hýsitölva", 6 | "Document Library" : "Skjalasafn", 7 | "SharePoint Backend" : "SharePoint bakendi", 8 | "SharePoint Backend for External storages" : "SharePoint bakendi fyrir ytri gagnageymslur" 9 | }, 10 | "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); 11 | -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Hýsitölva", 4 | "Document Library" : "Skjalasafn", 5 | "SharePoint Backend" : "SharePoint bakendi", 6 | "SharePoint Backend for External storages" : "SharePoint bakendi fyrir ytri gagnageymslur" 7 | },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" 8 | } -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Applica l'autenticazione NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "Viene prima tentata l'acquisizione del token SAML in modo predefinito.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Host", 8 | "Document Library" : "Raccolta documenti", 9 | "SharePoint Backend" : "Motore SharePoint", 10 | "SharePoint Backend for External storages" : "Motore SharePoint per archiviazioni esterne", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Il Backend Sharepoint permette agli amministratori di aggiungere librerie di documenti Sharepoint come cartelle in Nextcloud. Ciò offre agli utenti un modo facile di accedere ai dati di Sharepoint nello stesso posto dove trovano gli altri file, semplificando la collaborazione e la condivisione all'interno e oltre i confini dell'organizzazione. Gli utenti possono usare il client desktop, le app mobile o l'interfaccia web e commentare, etichettare, condividere e modificare collaborativamente i file su Sharepoint esattamente come tutti gli altri dati su Nextcloud.\n\nSupporta Sharepoint 2013, 2016 e 365. Nextcloud accede a Sharepoint attraverso le API REST di Sharepoint ed usa l'autenticazione NTLM. Nextcloud rispetta i permessi di accesso ai file associati con le sue credenziali utente configurate. Il versionamento e la condivisione sono gestiti da Nextcloud.\n\nMaggiori informazioni riguardo l'Archiviazione Esterna e Sharepoint su [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Applica l'autenticazione NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "Viene prima tentata l'acquisizione del token SAML in modo predefinito.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Host", 6 | "Document Library" : "Raccolta documenti", 7 | "SharePoint Backend" : "Motore SharePoint", 8 | "SharePoint Backend for External storages" : "Motore SharePoint per archiviazioni esterne", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Il Backend Sharepoint permette agli amministratori di aggiungere librerie di documenti Sharepoint come cartelle in Nextcloud. Ciò offre agli utenti un modo facile di accedere ai dati di Sharepoint nello stesso posto dove trovano gli altri file, semplificando la collaborazione e la condivisione all'interno e oltre i confini dell'organizzazione. Gli utenti possono usare il client desktop, le app mobile o l'interfaccia web e commentare, etichettare, condividere e modificare collaborativamente i file su Sharepoint esattamente come tutti gli altri dati su Nextcloud.\n\nSupporta Sharepoint 2013, 2016 e 365. Nextcloud accede a Sharepoint attraverso le API REST di Sharepoint ed usa l'autenticazione NTLM. Nextcloud rispetta i permessi di accesso ai file associati con le sue credenziali utente configurate. Il versionamento e la condivisione sono gestiti da Nextcloud.\n\nMaggiori informazioni riguardo l'Archiviazione Esterna e Sharepoint su [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTLM認証を強制", 5 | "Acquiring a SAML token is attempted first by default." : "SAMLトークン取得を最初にまず試みる。", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "ホスト", 8 | "Document Library" : "ドキュメントライブラリー", 9 | "SharePoint Backend" : "SharePointバックエンド", 10 | "SharePoint Backend for External storages" : "外部ストレージのためのSharePointバックエンド", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backendでは、管理者はSharepointのドキュメントライブラリをNextcloudのフォルダとして追加することができます。これにより、ユーザーは他のファイルと同じ場所でSharepointのデータに簡単にアクセスできるようになり、組織内および組織間のコラボレーションと共有が容易になります。ユーザーは、デスクトップクライアント、モバイルアプリ、Webインターフェイスを使用して、Nextcloud上の他のデータと同様に、Sharepoint上のファイルにコメント、タグ付け、共有、共同編集を行うことができます。\n\nSharepoint2013、2016、365に対応しています。Nextcloudは、Sharepoint REST APIを通じてSharepointにアクセスし、NTLM認証を使用します。Nextcloudは、設定されたユーザー認証情報に関連付けられたファイルアクセス許可を尊重します。バージョン管理と共有はNextcloudが行います。\n\n外部ストレージとSharepointの詳細については、[https://nextcloud.com/storage/](https://nextcloud.com/storage/) をご覧ください。" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTLM認証を強制", 3 | "Acquiring a SAML token is attempted first by default." : "SAMLトークン取得を最初にまず試みる。", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "ホスト", 6 | "Document Library" : "ドキュメントライブラリー", 7 | "SharePoint Backend" : "SharePointバックエンド", 8 | "SharePoint Backend for External storages" : "外部ストレージのためのSharePointバックエンド", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backendでは、管理者はSharepointのドキュメントライブラリをNextcloudのフォルダとして追加することができます。これにより、ユーザーは他のファイルと同じ場所でSharepointのデータに簡単にアクセスできるようになり、組織内および組織間のコラボレーションと共有が容易になります。ユーザーは、デスクトップクライアント、モバイルアプリ、Webインターフェイスを使用して、Nextcloud上の他のデータと同様に、Sharepoint上のファイルにコメント、タグ付け、共有、共同編集を行うことができます。\n\nSharepoint2013、2016、365に対応しています。Nextcloudは、Sharepoint REST APIを通じてSharepointにアクセスし、NTLM認証を使用します。Nextcloudは、設定されたユーザー認証情報に関連付けられたファイルアクセス許可を尊重します。バージョン管理と共有はNextcloudが行います。\n\n外部ストレージとSharepointの詳細については、[https://nextcloud.com/storage/](https://nextcloud.com/storage/) をご覧ください。" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Host" 5 | }, 6 | "nplurals=2; plural=(n!=1);"); 7 | -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Host" 3 | },"pluralForm" :"nplurals=2; plural=(n!=1);" 4 | } -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "ჰოსტი", 6 | "Document Library" : "დოკუმენტ ბიბლიოთეკა", 7 | "SharePoint Backend" : "SharePoint ბექენდი" 8 | }, 9 | "nplurals=2; plural=(n!=1);"); 10 | -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "ჰოსტი", 4 | "Document Library" : "დოკუმენტ ბიბლიოთეკა", 5 | "SharePoint Backend" : "SharePoint ბექენდი" 6 | },"pluralForm" :"nplurals=2; plural=(n!=1);" 7 | } -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "ម៉ាស៊ីន​ផ្ទុក" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "ម៉ាស៊ីន​ផ្ទុក" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/kn.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "ಅತಿಥೆಯ-ಗಣಕ" 5 | }, 6 | "nplurals=2; plural=(n > 1);"); 7 | -------------------------------------------------------------------------------- /l10n/kn.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "ಅತಿಥೆಯ-ಗಣಕ" 3 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 4 | } -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "호스트", 6 | "Document Library" : "문서 라이브러리", 7 | "SharePoint Backend" : "SharePoint 백엔드", 8 | "SharePoint Backend for External storages" : "외부 저장소 SharePoint 백엔드" 9 | }, 10 | "nplurals=1; plural=0;"); 11 | -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "호스트", 4 | "Document Library" : "문서 라이브러리", 5 | "SharePoint Backend" : "SharePoint 백엔드", 6 | "SharePoint Backend for External storages" : "외부 저장소 SharePoint 백엔드" 7 | },"pluralForm" :"nplurals=1; plural=0;" 8 | } -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Host" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Host" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Serveris", 5 | "Document Library" : "Dokumentų biblioteka" 6 | }, 7 | "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); 8 | -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Serveris", 3 | "Document Library" : "Dokumentų biblioteka" 4 | },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" 5 | } -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Resursdators", 6 | "Document Library" : "Dokumentu bibliotēka", 7 | "SharePoint Backend" : "SharePoint aizmugursistēma", 8 | "SharePoint Backend for External storages" : "SharePoint aizmugursistēma ārējām krātuvēm" 9 | }, 10 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); 11 | -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Resursdators", 4 | "Document Library" : "Dokumentu bibliotēka", 5 | "SharePoint Backend" : "SharePoint aizmugursistēma", 6 | "SharePoint Backend for External storages" : "SharePoint aizmugursistēma ārējām krātuvēm" 7 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" 8 | } -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Домаќин" 5 | }, 6 | "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); 7 | -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Домаќин" 3 | },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" 4 | } -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "хост" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "хост" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Håndhev NTLM-auth", 5 | "Acquiring a SAML token is attempted first by default." : "Anskaffelse av et SAML-token forsøkes først som standard.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Vert", 8 | "Document Library" : "Dokumentbibliotek", 9 | "SharePoint Backend" : "SharePoint-server", 10 | "SharePoint Backend for External storages" : "SharePoint-server for ekstern lagring", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "SharePoint-backend lar administratorer legge til SharePoint-dokumentbiblioteker som mapper i Nextcloud. Dette gjør det enkelt for brukere å få tilgang til SharePoint-data på samme sted som de finner de andre filene på, noe som forenkler samarbeid og deling innenfor og på tvers av organisasjonens grenser. Brukere kan bruke skrivebordsklienten, mobilappene eller nettgrensesnittet og kommentere, merke, dele og samarbeide om å redigere filer på Sharepoint, akkurat som med alle andre data på Nextcloud.\n\nStøtter Sharepoint 2013, 2016 og 365. Nextcloud får tilgang til Sharepoint via Sharepoint REST API og bruker NTLM-godkjenning. Nextcloud respekterer filtilgangstillatelser knyttet til den konfigurerte brukerlegitimasjonen. Versjonskontroll og deling håndteres av Nextcloud.\n\nFinn ut mer om ekstern lagring og SharePoint på [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Håndhev NTLM-auth", 3 | "Acquiring a SAML token is attempted first by default." : "Anskaffelse av et SAML-token forsøkes først som standard.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Vert", 6 | "Document Library" : "Dokumentbibliotek", 7 | "SharePoint Backend" : "SharePoint-server", 8 | "SharePoint Backend for External storages" : "SharePoint-server for ekstern lagring", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "SharePoint-backend lar administratorer legge til SharePoint-dokumentbiblioteker som mapper i Nextcloud. Dette gjør det enkelt for brukere å få tilgang til SharePoint-data på samme sted som de finner de andre filene på, noe som forenkler samarbeid og deling innenfor og på tvers av organisasjonens grenser. Brukere kan bruke skrivebordsklienten, mobilappene eller nettgrensesnittet og kommentere, merke, dele og samarbeide om å redigere filer på Sharepoint, akkurat som med alle andre data på Nextcloud.\n\nStøtter Sharepoint 2013, 2016 og 365. Nextcloud får tilgang til Sharepoint via Sharepoint REST API og bruker NTLM-godkjenning. Nextcloud respekterer filtilgangstillatelser knyttet til den konfigurerte brukerlegitimasjonen. Versjonskontroll og deling håndteres av Nextcloud.\n\nFinn ut mer om ekstern lagring og SharePoint på [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTLM auth afdwingen", 5 | "Acquiring a SAML token is attempted first by default." : "Standaard wordt geprobeerd om eerst een SAML-token op te halen.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Host", 8 | "Document Library" : "Documentenportaal", 9 | "SharePoint Backend" : "SharePoint Backend", 10 | "SharePoint Backend for External storages" : "SharePoint Backend voor externe opslag", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "De Sharepoint Backend laat beheerders Sharepoint documentbibliotheken als mappen in Nextcloud toevoegen. Dit biedt een eenvoudige manier om toegang te krijgen tot Sharepoint op dezelfde manier als al hun andere gegevens, waardoor samenwerken en delen binnen en over organisaties heen mogelijk wordt. Gebruikers kunnen de desktop client, de mobiele apps of web interfaces gebruiken voor reageren, taggen, delen en samen documenten bewerken op Sharepoint net als op Nextcloud.\n\nOndersteunt Sharepoint 2013, 2016 en 365. Nextcloud benadert Sharepoint via de REST API en gebruikt NTLM authenticatie. Nextcloud respecteert de bestandsmachtigingen die gelden voor de geconfigueerde inloggegevens. Versiebeheer en delen worden afgehandeld door Nextcloud.\n\nLees meer over Externe Opslag en Sharepoint op [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTLM auth afdwingen", 3 | "Acquiring a SAML token is attempted first by default." : "Standaard wordt geprobeerd om eerst een SAML-token op te halen.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Host", 6 | "Document Library" : "Documentenportaal", 7 | "SharePoint Backend" : "SharePoint Backend", 8 | "SharePoint Backend for External storages" : "SharePoint Backend voor externe opslag", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "De Sharepoint Backend laat beheerders Sharepoint documentbibliotheken als mappen in Nextcloud toevoegen. Dit biedt een eenvoudige manier om toegang te krijgen tot Sharepoint op dezelfde manier als al hun andere gegevens, waardoor samenwerken en delen binnen en over organisaties heen mogelijk wordt. Gebruikers kunnen de desktop client, de mobiele apps of web interfaces gebruiken voor reageren, taggen, delen en samen documenten bewerken op Sharepoint net als op Nextcloud.\n\nOndersteunt Sharepoint 2013, 2016 en 365. Nextcloud benadert Sharepoint via de REST API en gebruikt NTLM authenticatie. Nextcloud respecteert de bestandsmachtigingen die gelden voor de geconfigueerde inloggegevens. Versiebeheer en delen worden afgehandeld door Nextcloud.\n\nLees meer over Externe Opslag en Sharepoint op [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Tenar" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Tenar" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Òste", 6 | "Document Library" : "Bibliotèca de documents", 7 | "SharePoint Backend" : "SharePoint Backend" 8 | }, 9 | "nplurals=2; plural=(n > 1);"); 10 | -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Òste", 4 | "Document Library" : "Bibliotèca de documents", 5 | "SharePoint Backend" : "SharePoint Backend" 6 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 7 | } -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Wymuś uwierzytelnianie NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "Domyślnie w pierwszej kolejności następuje próba uzyskania tokenu SAML.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Host", 6 | "Document Library" : "Biblioteka Dokumenty", 7 | "SharePoint Backend" : "Backend SharePoint", 8 | "SharePoint Backend for External storages" : "Backend SharePoint dla magazynów zewnętrznych", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backend umożliwia administratorom dodawanie bibliotek dokumentów Sharepoint jako katalogów w Nextcloud. Daje to użytkownikom łatwy sposób uzyskiwania dostępu do danych Sharepoint w tym samym miejscu, w którym znajdują swoje inne pliki, ułatwiając współpracę i udostępnianie w obrębie organizacji i poza jej granicami. Użytkownicy mogą korzystać z klienta stacjonarnego, aplikacji mobilnych lub interfejsu internetowego i komentować, oznaczać, udostępniać i wspólnie edytować pliki w Sharepoint, tak jak w przypadku innych danych w Nextcloud.\n\nObsługuje Sharepoint 2013 i 2016 i 365. Nextcloud uzyskuje dostęp do Sharepoint za pośrednictwem Sharepoint REST API i używa uwierzytelniania NTLM. Nextcloud respektuje uprawnienia dostępu do plików związane z jego skonfigurowanymi poświadczeniami użytkownika. Wersjonowanie i udostępnianie są obsługiwane przez Nextcloud.\n\nDowiedz się więcej o pamięci zewnętrznej i Sharepoint na [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" 11 | } -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Impor autenticação NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "A aquisição de um token SAML é tentada primeiro por padrão. ", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Host", 8 | "Document Library" : "Biblioteca de Documentos", 9 | "SharePoint Backend" : "Back-end SharePoint", 10 | "SharePoint Backend for External storages" : "Back-end SharePoint para Armazenamentos externos", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "O Back-end Sharepoint permite que os administradores adicionem bibliotecas de documentos do Sharepoint como pastas no Nextcloud. Isso oferece uma maneira fácil para os usuários acessarem os dados do Sharepoint no mesmo local onde encontram seus outros arquivos, facilitando a colaboração e o compartilhamento dentro e fora das fronteiras da organização. Os usuários podem usar o cliente de desktop, aplicativos móveis ou interface da web e comentar, marcar, compartilhar e editar arquivos de forma colaborativa no Sharepoint, assim como qualquer outro dado no Nextcloud.\n\nSuporta Sharepoint 2013, 2016 e 365. O Nextcloud acessa o Sharepoint por meio da API REST do Sharepoint e usa autenticação NTLM. O Nextcloud respeita as permissões de acesso a arquivos associadas às credenciais de usuário configuradas. O controle de versão e o compartilhamento são gerenciados pelo Nextcloud.\n\nSaiba mais sobre armazenamento externo e Sharepoint em [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Impor autenticação NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "A aquisição de um token SAML é tentada primeiro por padrão. ", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Host", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Back-end SharePoint", 8 | "SharePoint Backend for External storages" : "Back-end SharePoint para Armazenamentos externos", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "O Back-end Sharepoint permite que os administradores adicionem bibliotecas de documentos do Sharepoint como pastas no Nextcloud. Isso oferece uma maneira fácil para os usuários acessarem os dados do Sharepoint no mesmo local onde encontram seus outros arquivos, facilitando a colaboração e o compartilhamento dentro e fora das fronteiras da organização. Os usuários podem usar o cliente de desktop, aplicativos móveis ou interface da web e comentar, marcar, compartilhar e editar arquivos de forma colaborativa no Sharepoint, assim como qualquer outro dado no Nextcloud.\n\nSuporta Sharepoint 2013, 2016 e 365. O Nextcloud acessa o Sharepoint por meio da API REST do Sharepoint e usa autenticação NTLM. O Nextcloud respeita as permissões de acesso a arquivos associadas às credenciais de usuário configuradas. O controle de versão e o compartilhamento são gerenciados pelo Nextcloud.\n\nSaiba mais sobre armazenamento externo e Sharepoint em [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Anfitrião", 6 | "Document Library" : "Biblioteca de Documentos", 7 | "SharePoint Backend" : "Backend do Sharepoint", 8 | "SharePoint Backend for External storages" : "Backend do Sharepoint para armazenamento externo" 9 | }, 10 | "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 11 | -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Anfitrião", 4 | "Document Library" : "Biblioteca de Documentos", 5 | "SharePoint Backend" : "Backend do Sharepoint", 6 | "SharePoint Backend for External storages" : "Backend do Sharepoint para armazenamento externo" 7 | },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 8 | } -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Gazdă" 6 | }, 7 | "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); 8 | -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Gazdă" 4 | },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" 5 | } -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Принудительно использовать NTLM-аутентификацию", 5 | "Acquiring a SAML token is attempted first by default." : "По умолчанию сначала выполняется попытка получения токена SAML.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Сервер", 8 | "Document Library" : "Библиотека", 9 | "SharePoint Backend" : "SharePoint бэкэнд", 10 | "SharePoint Backend for External storages" : "SharePoint бэкэнд для внешних хранилищ", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backend позволяет администраторам добавлять библиотеки документов Sharepoint в качестве папок в Nextcloud. Это позволяет пользователям получить доступ к данным Sharepoint в том же месте, где они хранят свои другие файлы, что облегчает совместное использование внутри организации и за её пределами. Пользователи могут использовать настольный клиент, мобильные приложения или веб-интерфейс и комментировать, помечать, делиться и совместно редактировать файлы Sharepoint так же, как и любые другие данные в Nextcloud.\n\nПоддерживаются Sharepoint 2013, 2016 и 365. Nextcloud получает доступ к Sharepoint через API Sharepoint REST и использует аутентификацию NTLM. Nextcloud соблюдает разрешения на доступ к файлам, связанные с настроенными учётными данными пользователя. Контроль версий и совместное использование обрабатываются Nextcloud.\n\nПодробнее о внешнем хранилище и Sharepoint на [https://nextcloud.com/storage/](https://nextcloud.com/storage/)." 12 | }, 13 | "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);"); 14 | -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Принудительно использовать NTLM-аутентификацию", 3 | "Acquiring a SAML token is attempted first by default." : "По умолчанию сначала выполняется попытка получения токена SAML.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Сервер", 6 | "Document Library" : "Библиотека", 7 | "SharePoint Backend" : "SharePoint бэкэнд", 8 | "SharePoint Backend for External storages" : "SharePoint бэкэнд для внешних хранилищ", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backend позволяет администраторам добавлять библиотеки документов Sharepoint в качестве папок в Nextcloud. Это позволяет пользователям получить доступ к данным Sharepoint в том же месте, где они хранят свои другие файлы, что облегчает совместное использование внутри организации и за её пределами. Пользователи могут использовать настольный клиент, мобильные приложения или веб-интерфейс и комментировать, помечать, делиться и совместно редактировать файлы Sharepoint так же, как и любые другие данные в Nextcloud.\n\nПоддерживаются Sharepoint 2013, 2016 и 365. Nextcloud получает доступ к Sharepoint через API Sharepoint REST и использует аутентификацию NTLM. Nextcloud соблюдает разрешения на доступ к файлам, связанные с настроенными учётными данными пользователя. Контроль версий и совместное использование обрабатываются Nextcloud.\n\nПодробнее о внешнем хранилище и Sharepoint на [https://nextcloud.com/storage/](https://nextcloud.com/storage/)." 10 | },"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);" 11 | } -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Àplica s'identificatzione NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "B'est prima sa tentada achistzione de su token SAML in modalidade predefinida.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Retzidore", 8 | "Document Library" : "Archìviu de is documentos", 9 | "SharePoint Backend" : "SharePoint Backend ", 10 | "SharePoint Backend for External storages" : "SharePoint Backend pro memòrias esternas" 11 | }, 12 | "nplurals=2; plural=(n != 1);"); 13 | -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Àplica s'identificatzione NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "B'est prima sa tentada achistzione de su token SAML in modalidade predefinida.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Retzidore", 6 | "Document Library" : "Archìviu de is documentos", 7 | "SharePoint Backend" : "SharePoint Backend ", 8 | "SharePoint Backend for External storages" : "SharePoint Backend pro memòrias esternas" 9 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 10 | } -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : " ධාරකය" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : " ධාරකය" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Vynútiť NTLM autentikáciu", 5 | "Acquiring a SAML token is attempted first by default." : "Získanie SAML tokenu je predvolené ako prvé.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Adresa servera", 8 | "Document Library" : "Knižnica dokumentov", 9 | "SharePoint Backend" : "Podporná vrstva pre SharePoint", 10 | "SharePoint Backend for External storages" : "SharePoint Backend pre externé úložiská", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backend umožňuje správcom pridávať knižnice dokumentov Sharepoint ako priečinky do Nextcloudu. To používateľom ponúka jednoduchý spôsob prístupu k údajom Sharepointu na rovnakom mieste, kde nájdu svoje ďalšie súbory, čo uľahčuje spoluprácu a zdieľanie v rámci organizácie aj za jej hranicami. Používatelia môžu používať desktopového klienta, mobilné aplikácie alebo webové rozhranie a komentovať, označovať, zdieľať a spoločne upravovať súbory v službe Sharepoint rovnako ako pri akýchkoľvek iných údajoch v službe Nextcloud.\n\nPodporuje Sharepoint 2013, 2016 a 365. Nextcloud pristupuje k Sharepointu prostredníctvom Sharepoint REST API a používa autentifikáciu NTLM. Nextcloud rešpektuje povolenia na prístup k súborom spojené s nakonfigurovanými užívateľskými oprávneniami. Správa verzií a zdieľanie je riešená programom Nextcloud.\n\nViac informácií o externom úložisku a Sharepointe nájdete na [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); 14 | -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Vynútiť NTLM autentikáciu", 3 | "Acquiring a SAML token is attempted first by default." : "Získanie SAML tokenu je predvolené ako prvé.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Adresa servera", 6 | "Document Library" : "Knižnica dokumentov", 7 | "SharePoint Backend" : "Podporná vrstva pre SharePoint", 8 | "SharePoint Backend for External storages" : "SharePoint Backend pre externé úložiská", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint Backend umožňuje správcom pridávať knižnice dokumentov Sharepoint ako priečinky do Nextcloudu. To používateľom ponúka jednoduchý spôsob prístupu k údajom Sharepointu na rovnakom mieste, kde nájdu svoje ďalšie súbory, čo uľahčuje spoluprácu a zdieľanie v rámci organizácie aj za jej hranicami. Používatelia môžu používať desktopového klienta, mobilné aplikácie alebo webové rozhranie a komentovať, označovať, zdieľať a spoločne upravovať súbory v službe Sharepoint rovnako ako pri akýchkoľvek iných údajoch v službe Nextcloud.\n\nPodporuje Sharepoint 2013, 2016 a 365. Nextcloud pristupuje k Sharepointu prostredníctvom Sharepoint REST API a používa autentifikáciu NTLM. Nextcloud rešpektuje povolenia na prístup k súborom spojené s nakonfigurovanými užívateľskými oprávneniami. Správa verzií a zdieľanie je riešená programom Nextcloud.\n\nViac informácií o externom úložisku a Sharepointe nájdete na [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" 11 | } -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Vsili overitev NTLM", 5 | "Acquiring a SAML token is attempted first by default." : "Pridobivanje žetona SAML je privzeto izvedeno prvo.", 6 | "SharePoint" : "Okolje SharePoint", 7 | "Host" : "Gostitelj", 8 | "Document Library" : "Knjižnica dokumentov", 9 | "SharePoint Backend" : "Ozadnji program SharePoint", 10 | "SharePoint Backend for External storages" : "Ozadnji program SharePoint za zunanje shrambe" 11 | }, 12 | "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); 13 | -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Vsili overitev NTLM", 3 | "Acquiring a SAML token is attempted first by default." : "Pridobivanje žetona SAML je privzeto izvedeno prvo.", 4 | "SharePoint" : "Okolje SharePoint", 5 | "Host" : "Gostitelj", 6 | "Document Library" : "Knjižnica dokumentov", 7 | "SharePoint Backend" : "Ozadnji program SharePoint", 8 | "SharePoint Backend for External storages" : "Ozadnji program SharePoint za zunanje shrambe" 9 | },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" 10 | } -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Strehë" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Strehë" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "Форсирај NTLM аутентификацију", 5 | "Acquiring a SAML token is attempted first by default." : "Подразумевано се најпре покушава добављање SAML жетона.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Домаћин", 8 | "Document Library" : "Библиотека докумената", 9 | "SharePoint Backend" : "SharePoint позадински мотор", 10 | "SharePoint Backend for External storages" : "SharePoint позадински мотор за спољашња складишта", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint позадински механизам омогућава администраторима да додају Sharepoint библиотеке докумената као фолдере у Nextcloud. Ово корисницима нуди једноставан начин да приступе Sharepoint подацима на истом месту на којем се налазе и њихови остали подаци, чиме се обезбеђује сарадња и дељење унутар и ван граница организације. Корисници могу да употребљавају десктоп клијент, мобилне апликације или веб интерфејс и да заједнички уређују фајлове на Sharepoint исто као и било које друге податке на Nextcloud.\n\nПодржава се Sharepoint 2013, 2016 и 365. Nextcloud приступа Sharepoint серверу преко Sharepoint REST API и користи NTLM аутетификацију. Nextcloud поштује дозволе за приступ фајловима придружене уз конфигурисане корисничке креденцијале. Управљање верзијама и дељење врши Nextcloud.\n\nСазнајте више о Спољном складишту и Sharepoint на [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); 14 | -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "Форсирај NTLM аутентификацију", 3 | "Acquiring a SAML token is attempted first by default." : "Подразумевано се најпре покушава добављање SAML жетона.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Домаћин", 6 | "Document Library" : "Библиотека докумената", 7 | "SharePoint Backend" : "SharePoint позадински мотор", 8 | "SharePoint Backend for External storages" : "SharePoint позадински мотор за спољашња складишта", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint позадински механизам омогућава администраторима да додају Sharepoint библиотеке докумената као фолдере у Nextcloud. Ово корисницима нуди једноставан начин да приступе Sharepoint подацима на истом месту на којем се налазе и њихови остали подаци, чиме се обезбеђује сарадња и дељење унутар и ван граница организације. Корисници могу да употребљавају десктоп клијент, мобилне апликације или веб интерфејс и да заједнички уређују фајлове на Sharepoint исто као и било које друге податке на Nextcloud.\n\nПодржава се Sharepoint 2013, 2016 и 365. Nextcloud приступа Sharepoint серверу преко Sharepoint REST API и користи NTLM аутетификацију. Nextcloud поштује дозволе за приступ фајловима придружене уз конфигурисане корисничке креденцијале. Управљање верзијама и дељење врши Nextcloud.\n\nСазнајте више о Спољном складишту и Sharepoint на [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"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);" 11 | } -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Värd", 6 | "Document Library" : "Dokumentbibliotek", 7 | "SharePoint Backend" : "SharePoint Backend", 8 | "SharePoint Backend for External storages" : "SharePoint Backend för externa lager" 9 | }, 10 | "nplurals=2; plural=(n != 1);"); 11 | -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "SharePoint" : "SharePoint", 3 | "Host" : "Värd", 4 | "Document Library" : "Dokumentbibliotek", 5 | "SharePoint Backend" : "SharePoint Backend", 6 | "SharePoint Backend for External storages" : "SharePoint Backend för externa lager" 7 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 8 | } -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "ஓம்புனர்" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "ஓம்புனர்" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "โฮสต์" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "โฮสต์" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTML kimlik doğrulaması dayatılsın", 5 | "Acquiring a SAML token is attempted first by default." : "Önce varsayılan olarak bir SAML kodu alınmaya çalışılır", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "Sunucu", 8 | "Document Library" : "Belge kitaplığı", 9 | "SharePoint Backend" : "SharePoint yönetimi", 10 | "SharePoint Backend for External storages" : "Bu uygulama dış depolama kaynakları için bir SharePoint arka yüzü sağlar.", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint arka yüzü ile yöneticiler Sharepoint belge kitaplıklarını klasör olarak Nextcloud üzerine ekleyebilir. Böylece kullanıcılar Sharepoint verilerine de diğer dosyalarının bulunduğu tek bir yerden kolayca erişebilir ve kuruluşun sınırlarını aşarak iş birliği ve paylaşımda bulunabilir. Kullanıcılar masaüstü uygulamasını, mobil uygulamaları ya da site arayüzünü kullanarak, Nextcloud üzerindeki diğer veriler gibi, Sharepoint üzerindeki dosyalar üzerinde yorum yapabilir, etiket atayabilir, paylaşımda bulunabilir ve diğer kullanıcılar ile birlikte düzenleyebilir.\n\nSharepoint 2013 ve 2016 ve 365 sürümleri desteklenir. Nextcloud sunucusu, Sharepoint verilerine REST API üzerinden NTLM kimlik doğrulamasını kullanarak erişir. Nextcloud için, kimlik doğrulamasında kullanılan kullanıcının dosyalara erişme izinleri geçerli olur. Dosya sürümlerinin tutulması ve paylaşım işlemleri Nextcloud tarafından yapılır.\n\nDış Depolama ve Sharepoint hakkında ayrıntılı bilgi almak için [https://nextcloud.com/storage/](https://nextcloud.com/storage/) adresine bakabilirsiniz." 12 | }, 13 | "nplurals=2; plural=(n > 1);"); 14 | -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTML kimlik doğrulaması dayatılsın", 3 | "Acquiring a SAML token is attempted first by default." : "Önce varsayılan olarak bir SAML kodu alınmaya çalışılır", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "Sunucu", 6 | "Document Library" : "Belge kitaplığı", 7 | "SharePoint Backend" : "SharePoint yönetimi", 8 | "SharePoint Backend for External storages" : "Bu uygulama dış depolama kaynakları için bir SharePoint arka yüzü sağlar.", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint arka yüzü ile yöneticiler Sharepoint belge kitaplıklarını klasör olarak Nextcloud üzerine ekleyebilir. Böylece kullanıcılar Sharepoint verilerine de diğer dosyalarının bulunduğu tek bir yerden kolayca erişebilir ve kuruluşun sınırlarını aşarak iş birliği ve paylaşımda bulunabilir. Kullanıcılar masaüstü uygulamasını, mobil uygulamaları ya da site arayüzünü kullanarak, Nextcloud üzerindeki diğer veriler gibi, Sharepoint üzerindeki dosyalar üzerinde yorum yapabilir, etiket atayabilir, paylaşımda bulunabilir ve diğer kullanıcılar ile birlikte düzenleyebilir.\n\nSharepoint 2013 ve 2016 ve 365 sürümleri desteklenir. Nextcloud sunucusu, Sharepoint verilerine REST API üzerinden NTLM kimlik doğrulamasını kullanarak erişir. Nextcloud için, kimlik doğrulamasında kullanılan kullanıcının dosyalara erişme izinleri geçerli olur. Dosya sürümlerinin tutulması ve paylaşım işlemleri Nextcloud tarafından yapılır.\n\nDış Depolama ve Sharepoint hakkında ayrıntılı bilgi almak için [https://nextcloud.com/storage/](https://nextcloud.com/storage/) adresine bakabilirsiniz." 10 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 11 | } -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "NTLM auth نى ئىجرا قىلىڭ", 5 | "Acquiring a SAML token is attempted first by default." : "SAML بەلگىسىگە ئېرىشىش ئالدى بىلەن سۈكۈتتە سىناق قىلىنىدۇ.", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "باش ئاپپارات", 8 | "Document Library" : "ھۆججەت ئامبىرى", 9 | "SharePoint Backend" : "SharePoint ئارقا سەھنىسى", 10 | "SharePoint Backend for External storages" : "سىرتقى دۇكانلارنىڭ SharePoint ئارقا سەھنىسى", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint ئارقا سۇپىسى باشقۇرغۇچىلارنىڭ Nextcloud دىكى قىسقۇچ سۈپىتىدە Sharepoint ھۆججەت ئامبىرىنى قوشۇشىغا يول قويىدۇ. بۇ ئىشلەتكۈچىلەرنىڭ باشقا ھۆججەتلەرنى تاپقان جايدا Sharepoint سانلىق مەلۇماتلىرىنى زىيارەت قىلىشىغا قۇلايلىق يول بىلەن تەمىنلەيدۇ ، تەشكىلاتنىڭ ئىچى ۋە سىرتىدىكى ھەمكارلىق ۋە ئورتاقلىشىشنى ئاسانلاشتۇرىدۇ. ئىشلەتكۈچىلەر ئۈستەل يۈزى خېرىدارى ، كۆچمە ئەپ ياكى تور كۆرۈنمە يۈزىنى ئىشلىتىپ ، Nextcloud دىكى باشقا سانلىق مەلۇماتلارغا ئوخشاش Sharepoint دىكى ھۆججەتلەرنى باھا ، بەلگە ، ھەمبەھىرلەش ۋە ھەمكارلىشىپ تەھرىرلىيەلەيدۇ.\n\nSharepoint 2013 ، 2016 ۋە 365 نى قوللايدۇ. Nextcloud Sharepoint REST API ئارقىلىق Sharepoint نى زىيارەت قىلىدۇ ۋە NTLM دەلىللەشنى ئىشلىتىدۇ. Nextcloud سەپلىمە ئىشلەتكۈچى سالاھىيىتى بىلەن مۇناسىۋەتلىك ھۆججەتلەرنى زىيارەت قىلىش ھوقۇقىغا ھۆرمەت قىلىدۇ. نەشىر قىلىش ۋە ئورتاقلىشىشنى Nextcloud بىر تەرەپ قىلىدۇ.\n\nسىرتقى ساقلاش ۋە Sharepoint ھەققىدىكى تەپسىلاتلارنى [https://nextcloud.com/storage/)(https://nextcloud.com/storage/) دىن كۆرۈڭ." 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "NTLM auth نى ئىجرا قىلىڭ", 3 | "Acquiring a SAML token is attempted first by default." : "SAML بەلگىسىگە ئېرىشىش ئالدى بىلەن سۈكۈتتە سىناق قىلىنىدۇ.", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "باش ئاپپارات", 6 | "Document Library" : "ھۆججەت ئامبىرى", 7 | "SharePoint Backend" : "SharePoint ئارقا سەھنىسى", 8 | "SharePoint Backend for External storages" : "سىرتقى دۇكانلارنىڭ SharePoint ئارقا سەھنىسى", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "Sharepoint ئارقا سۇپىسى باشقۇرغۇچىلارنىڭ Nextcloud دىكى قىسقۇچ سۈپىتىدە Sharepoint ھۆججەت ئامبىرىنى قوشۇشىغا يول قويىدۇ. بۇ ئىشلەتكۈچىلەرنىڭ باشقا ھۆججەتلەرنى تاپقان جايدا Sharepoint سانلىق مەلۇماتلىرىنى زىيارەت قىلىشىغا قۇلايلىق يول بىلەن تەمىنلەيدۇ ، تەشكىلاتنىڭ ئىچى ۋە سىرتىدىكى ھەمكارلىق ۋە ئورتاقلىشىشنى ئاسانلاشتۇرىدۇ. ئىشلەتكۈچىلەر ئۈستەل يۈزى خېرىدارى ، كۆچمە ئەپ ياكى تور كۆرۈنمە يۈزىنى ئىشلىتىپ ، Nextcloud دىكى باشقا سانلىق مەلۇماتلارغا ئوخشاش Sharepoint دىكى ھۆججەتلەرنى باھا ، بەلگە ، ھەمبەھىرلەش ۋە ھەمكارلىشىپ تەھرىرلىيەلەيدۇ.\n\nSharepoint 2013 ، 2016 ۋە 365 نى قوللايدۇ. Nextcloud Sharepoint REST API ئارقىلىق Sharepoint نى زىيارەت قىلىدۇ ۋە NTLM دەلىللەشنى ئىشلىتىدۇ. Nextcloud سەپلىمە ئىشلەتكۈچى سالاھىيىتى بىلەن مۇناسىۋەتلىك ھۆججەتلەرنى زىيارەت قىلىش ھوقۇقىغا ھۆرمەت قىلىدۇ. نەشىر قىلىش ۋە ئورتاقلىشىشنى Nextcloud بىر تەرەپ قىلىدۇ.\n\nسىرتقى ساقلاش ۋە Sharepoint ھەققىدىكى تەپسىلاتلارنى [https://nextcloud.com/storage/)(https://nextcloud.com/storage/) دىن كۆرۈڭ." 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Document Library" : "Document Library" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Document Library" : "Document Library" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Host" : "Máy chủ" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Host" : "Máy chủ" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "强制 NTLM 验证", 5 | "Acquiring a SAML token is attempted first by default." : "默认情况下,首先尝试获取 SAML令牌。", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "主机", 8 | "Document Library" : "文档库", 9 | "SharePoint Backend" : "SharePoint 后端", 10 | "SharePoint Backend for External storages" : "外部存储的 SharePoint 后端", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "使用 SharePoint 作为后端,管理员可以将 SharePoint 文档库添加为 Nextcloud 中的文件夹。这为用户提供了一种便捷方式,让他们在查找各种文件的同时也能访问 SharePoint 数据,从而促进组织内和跨组织的协作与共享。用户可以通过桌面客户端、移动应用或 Web 界面访问文件,并像管理其他 Nextcloud 数据一样,在 SharePoint 上进行批注、标记、共享和协同编辑。\n\n支持 SharePoint 2013、2016 和 Office 365。Nextcloud 通过 SharePoint REST API,并使用 NTLM 认证访问 SharePoint,同时遵循 Nextcloud 中设置的用户身份验证配置和文件访问权限。文件的历史版本和共享功能由 Nextcloud 负责管理。\n\n要了解更多关于外部存储和 SharePoint 的信息,请访问 [https://nextcloud.com/storage/](https://nextcloud.com/storage/)。" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "强制 NTLM 验证", 3 | "Acquiring a SAML token is attempted first by default." : "默认情况下,首先尝试获取 SAML令牌。", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "主机", 6 | "Document Library" : "文档库", 7 | "SharePoint Backend" : "SharePoint 后端", 8 | "SharePoint Backend for External storages" : "外部存储的 SharePoint 后端", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "使用 SharePoint 作为后端,管理员可以将 SharePoint 文档库添加为 Nextcloud 中的文件夹。这为用户提供了一种便捷方式,让他们在查找各种文件的同时也能访问 SharePoint 数据,从而促进组织内和跨组织的协作与共享。用户可以通过桌面客户端、移动应用或 Web 界面访问文件,并像管理其他 Nextcloud 数据一样,在 SharePoint 上进行批注、标记、共享和协同编辑。\n\n支持 SharePoint 2013、2016 和 Office 365。Nextcloud 通过 SharePoint REST API,并使用 NTLM 认证访问 SharePoint,同时遵循 Nextcloud 中设置的用户身份验证配置和文件访问权限。文件的历史版本和共享功能由 Nextcloud 负责管理。\n\n要了解更多关于外部存储和 SharePoint 的信息,请访问 [https://nextcloud.com/storage/](https://nextcloud.com/storage/)。" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "實施 NTLM 驗證", 5 | "Acquiring a SAML token is attempted first by default." : "默認情況下,首先嘗試獲取 SAML 權杖。", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "主機", 8 | "Document Library" : "文件庫", 9 | "SharePoint Backend" : "SharePoint 後端系統", 10 | "SharePoint Backend for External storages" : "外部存儲的 SharePoint 後端系統", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "使用 Sharepoint 後端,管理員可以將 Sharepoint 文檔庫添加為Nextcloud 中的資料夾。這為用戶提供了一種在找到其他檔案的相同位置存取 Sharepoint 數據的簡便方法,從而促進了組織內和跨組織的協作和共享。用戶可以使用桌面客戶端,流動應用程式或 Web 界面,並在 Nextpoint上 註釋,標記,共享和協作編輯檔案,就像 Nextcloud 上的任何其他數據一樣。\n\n支援 Sharepoint 2013,2016 和 365。Nextcloud 通過 Sharepoint REST API,使用 NTLM 認證存取 Sharepoint。Nextcloud 遵循它所配置的用戶身分驗證所具有的檔案存取權限。多版本和共享由 Nextcloud 處理。\n\n要了解更多關於外部存儲和 Sharepoint 的信息,請前往[https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "實施 NTLM 驗證", 3 | "Acquiring a SAML token is attempted first by default." : "默認情況下,首先嘗試獲取 SAML 權杖。", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "主機", 6 | "Document Library" : "文件庫", 7 | "SharePoint Backend" : "SharePoint 後端系統", 8 | "SharePoint Backend for External storages" : "外部存儲的 SharePoint 後端系統", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "使用 Sharepoint 後端,管理員可以將 Sharepoint 文檔庫添加為Nextcloud 中的資料夾。這為用戶提供了一種在找到其他檔案的相同位置存取 Sharepoint 數據的簡便方法,從而促進了組織內和跨組織的協作和共享。用戶可以使用桌面客戶端,流動應用程式或 Web 界面,並在 Nextpoint上 註釋,標記,共享和協作編輯檔案,就像 Nextcloud 上的任何其他數據一樣。\n\n支援 Sharepoint 2013,2016 和 365。Nextcloud 通過 Sharepoint REST API,使用 NTLM 認證存取 Sharepoint。Nextcloud 遵循它所配置的用戶身分驗證所具有的檔案存取權限。多版本和共享由 Nextcloud 處理。\n\n要了解更多關於外部存儲和 Sharepoint 的信息,請前往[https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "sharepoint", 3 | { 4 | "Enforce NTLM auth" : "強制執行 NTLM 驗證", 5 | "Acquiring a SAML token is attempted first by default." : "預設情況下,先嘗試取得 SAML 權杖。", 6 | "SharePoint" : "SharePoint", 7 | "Host" : "主機", 8 | "Document Library" : "文件媒體庫", 9 | "SharePoint Backend" : "SharePoint 後端", 10 | "SharePoint Backend for External storages" : "用於外部儲存空間的 SharePoint 後端", 11 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "使用 Sharepoint 後端,管理員可以將 Sharepoint 文件存放庫新增為 Nextcloud 中的資料夾。這為用戶提供了一種在找到各種檔案的同時,還能存取 Sharepoint 資料的便利方法,從而促進了組織內和跨組織的協作和共享。用戶可以使用桌面用戶端,行動應用程式或 Web 介面,並在 Sharepoint 上 註釋,標記,共享和協作編輯檔案,就像 Nextcloud 上的任何其他資料一樣。\n\n支援 Sharepoint 2013,2016 和 365。Nextcloud 通過 Sharepoint REST API,使用 NTLM 認證存取 Sharepoint。Nextcloud 遵循它所設定的用戶身分驗證組態所具有的檔案存取權限。歷史版本和共享由 Nextcloud 處理。\n\n要了解更多關於外部儲存空間和 Sharepoint 的資訊,請前往 [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Enforce NTLM auth" : "強制執行 NTLM 驗證", 3 | "Acquiring a SAML token is attempted first by default." : "預設情況下,先嘗試取得 SAML 權杖。", 4 | "SharePoint" : "SharePoint", 5 | "Host" : "主機", 6 | "Document Library" : "文件媒體庫", 7 | "SharePoint Backend" : "SharePoint 後端", 8 | "SharePoint Backend for External storages" : "用於外部儲存空間的 SharePoint 後端", 9 | "The Sharepoint Backend allows administrators to add Sharepoint document libraries as folders in Nextcloud. This offers an easy way for users to access Sharepoint data in the same place where they find their other files, facilitating collaboration and sharing within and across the borders of the organization. Users can use the desktop client, mobile apps or web interface and comment, tag, share and collaboratively edit files on Sharepoint just like with any other data on Nextcloud.\n\nSupports Sharepoint 2013, 2016 and 365. Nextcloud accesses Sharepoint through the Sharepoint REST API and uses NTLM authentication. Nextcloud respects file access permissions associated with its configured user credentials. Versioning and sharing are handled by Nextcloud.\n\nLearn more about External Storage and Sharepoint on [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" : "使用 Sharepoint 後端,管理員可以將 Sharepoint 文件存放庫新增為 Nextcloud 中的資料夾。這為用戶提供了一種在找到各種檔案的同時,還能存取 Sharepoint 資料的便利方法,從而促進了組織內和跨組織的協作和共享。用戶可以使用桌面用戶端,行動應用程式或 Web 介面,並在 Sharepoint 上 註釋,標記,共享和協作編輯檔案,就像 Nextcloud 上的任何其他資料一樣。\n\n支援 Sharepoint 2013,2016 和 365。Nextcloud 通過 Sharepoint REST API,使用 NTLM 認證存取 Sharepoint。Nextcloud 遵循它所設定的用戶身分驗證組態所具有的檔案存取權限。歷史版本和共享由 Nextcloud 處理。\n\n要了解更多關於外部儲存空間和 Sharepoint 的資訊,請前往 [https://nextcloud.com/storage/](https://nextcloud.com/storage/)" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- 1 | registerSensitiveMethods(SamlTokenProvider::class, ['acquireSecurityToken']); 25 | $context->registerSensitiveMethods(AuthenticationContext::class, ['acquireToken', 'acquireTokenForUser']); 26 | $context->registerEventListener('OCA\\Files_External::loadAdditionalBackends', ExternalStoragesRegistrationListener::class); 27 | } 28 | 29 | public function boot(IBootContext $context): void { 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /lib/Backend/Backend.php: -------------------------------------------------------------------------------- 1 | t('Enforce NTLM auth')); 19 | $forceNtlmParameter->setType(DefinitionParameter::VALUE_BOOLEAN); 20 | $forceNtlmParameter->setTooltip($l->t('Acquiring a SAML token is attempted first by default.')); 21 | 22 | $this 23 | ->setIdentifier('sharepoint') 24 | ->setStorageClass(Storage::class) 25 | ->setText($l->t('SharePoint')) 26 | ->addParameters([ 27 | (new DefinitionParameter('host', $l->t('Host'))), 28 | (new DefinitionParameter('documentLibrary', $l->t('Document Library'))), 29 | $forceNtlmParameter 30 | ]) 31 | ->addAuthScheme(AuthMechanism::SCHEME_PASSWORD) 32 | ->setLegacyAuthMechanism($legacyAuth) 33 | ; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /lib/Backend/Provider.php: -------------------------------------------------------------------------------- 1 | lFactory->get('sharepoint'), 29 | new Password($this->lFactory->get('files_external')) 30 | ); 31 | return [ $backend ]; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /lib/ClientFactory.php: -------------------------------------------------------------------------------- 1 | logger, 28 | $sharePointUrl, 29 | $credentials, 30 | $options 31 | ); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /lib/ContextsFactory.php: -------------------------------------------------------------------------------- 1 | getWithNtlm($clientContext, $credentials); 27 | } 28 | return $this->withCredentials($clientContext, $credentials); 29 | } 30 | 31 | /** 32 | * @throws \Exception 33 | */ 34 | protected function withCredentials( 35 | ClientContext $clientContext, 36 | UserCredentials $userCredentials, 37 | ): ClientContext { 38 | return $clientContext->withCredentials($userCredentials); 39 | } 40 | 41 | protected function getWithNtlm( 42 | ClientContext $clientContext, 43 | UserCredentials $userCredentials, 44 | ) { 45 | return $clientContext->withNtlm($userCredentials); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /lib/Listener/ExternalStoragesRegistrationListener.php: -------------------------------------------------------------------------------- 1 | 18 | */ 19 | class ExternalStoragesRegistrationListener implements IEventListener { 20 | 21 | public function __construct( 22 | private BackendService $backendService, 23 | private BackendProvider $backendProvider, 24 | ) { 25 | } 26 | 27 | public function handle(Event $event): void { 28 | $this->backendService->registerBackendProvider($this->backendProvider); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /lib/NotFoundException.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | ./tests/Unit 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /scoper.inc.php: -------------------------------------------------------------------------------- 1 | 'OCA\\SharePoint\\Vendor', 22 | 23 | // output-dir is only possible with php-scoper >= 0.18, but it is not compatible with other supported 24 | // PHP versions, breaking CI. So we stick with 0.17.0 until we can afford to drop testing on PHP < 8.2. 25 | // All other 0.17.* version are factually broken with PHP 8.0. 26 | //'output-dir' => 'lib/Vendor', 27 | 28 | // For more see: https://github.com/humbug/php-scoper/blob/master/docs/configuration.md#finders-and-paths 29 | 'finders' => [ 30 | Finder::create()->files() 31 | ->exclude([ 32 | 'test', 33 | 'composer', 34 | 'bin', 35 | ]) 36 | ->notName('autoload.php') 37 | ->in('vendor/vgrem'), 38 | Finder::create()->files() 39 | ->exclude([ 40 | 'test', 41 | 'composer', 42 | 'bin', 43 | ]) 44 | ->notName('autoload.php') 45 | ->in('vendor/firebase'), 46 | ], 47 | ]; 48 | -------------------------------------------------------------------------------- /screenshots/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/sharepoint/9a2ac23bf72aace6ab76d6b73b28fb2d8b4ed56c/screenshots/configuration.png -------------------------------------------------------------------------------- /screenshots/configuration.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /tests/Integration/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "platform": { 4 | "php": "7.4" 5 | } 6 | }, 7 | "require-dev": { 8 | "behat/behat": "^3.11", 9 | "jarnaiz/behat-junit-formatter": "^1.3", 10 | "guzzlehttp/guzzle": "^7.4" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /tests/Integration/config/behat.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | default: 4 | autoload: 5 | '': '%paths.base%/../features/bootstrap' 6 | suites: 7 | default: 8 | paths: 9 | - '%paths.base%/../features' 10 | contexts: 11 | - FeatureContext 12 | 13 | extensions: 14 | jarnaiz\JUnitFormatter\JUnitFormatterExtension: 15 | filename: report.xml 16 | outputDir: '%paths.base%/../output/' 17 | 18 | -------------------------------------------------------------------------------- /tests/Integration/features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- 1 | ocPath = __DIR__ . '/../../../../../../'; 21 | } 22 | 23 | /** 24 | * @Given /^a dummy storage with login "([^"]*)" and password "([^"]*)"$/ 25 | */ 26 | public function aDummyStorageWithLoginAndPassword(string $login, string $password): void { 27 | $code = $this->runOcc([ 28 | 'files_external:create', 29 | '--output=json', 30 | '-c', 'host=my.sharepoint.test', 31 | '-c', 'documentLibrary=QA Documents', 32 | '-c', 'user=' . $login, 33 | '-c', 'password=' . $password, 34 | '/Team QA', 35 | 'sharepoint', 36 | 'password::password', 37 | ]); 38 | if ($code === 0) { 39 | $this->latestCreatedStorage = (int)$this->lastStdOut; 40 | } else { 41 | throw new \RuntimeException('Storage was not created, output: ' . PHP_EOL . $this->lastStdOut); 42 | } 43 | } 44 | 45 | /** 46 | * @When /^verifying the latest created storage \(ignoring the result\)$/ 47 | */ 48 | public function verifyingTheLatestCreatedStorageIgnoringTheResult(): void { 49 | if (!isset($this->latestCreatedStorage)) { 50 | throw new \RuntimeException('No storage was created priorly'); 51 | } 52 | $this->runOcc([ 53 | 'files_external:verify', 54 | $this->latestCreatedStorage 55 | ]); 56 | } 57 | 58 | /** 59 | * @Then /^the string "([^"]*)" must not appear in the nextcloud\.log$/ 60 | */ 61 | public function theStringMustNotAppearInTheNextcloudLog(string $sensitiveString) { 62 | $logFile = __DIR__ . '/../../../../../../data/nextcloud.log'; 63 | if (!file_exists($logFile)) { 64 | throw new \RuntimeException('Log file does not exist :\'-('); 65 | } 66 | $log = \file_get_contents($logFile); 67 | if (strpos($log, $sensitiveString) !== false) { 68 | throw new \RuntimeException('Sensitive string was found in the log!'); 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /tests/Integration/features/log.feature: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later 3 | Feature: logging 4 | 5 | Scenario: ensure storage credentials are not leaked to nextcloud.log 6 | Given a dummy storage with login "alice@sharepoint.test" and password "53cr371v3" 7 | When verifying the latest created storage (ignoring the result) 8 | Then the string "53cr371v3" must not appear in the nextcloud.log 9 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | addValidRoot(OC::$SERVERROOT . '/tests'); 16 | 17 | // Fix for "Autoload path not allowed: .../sharepoint/tests/testcase.php" 18 | \OC_App::loadApp('sharepoint'); 19 | 20 | OC_Hook::clear(); 21 | -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 13 | 14 | . 15 | 16 | 17 | 18 | 19 | ../../sharepoint 20 | 21 | ../../sharepoint/tests 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /vendor-bin/php-scoper/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "humbug/php-scoper": "^0.18", 4 | "cweagans/composer-patches": "^1.7" 5 | }, 6 | "config": { 7 | "platform": { 8 | "php": "8.1" 9 | }, 10 | "allow-plugins": { 11 | "cweagans/composer-patches": true 12 | } 13 | }, 14 | "extra": { 15 | "patches": { 16 | "thecodingmachine/safe": { 17 | "PHP 8.4 compatibility, patch 1": "https://patch-diff.githubusercontent.com/raw/thecodingmachine/safe/pull/464.patch", 18 | "PHP 8.4 compatibility, patch 2": "https://patch-diff.githubusercontent.com/raw/thecodingmachine/safe/pull/466.patch", 19 | "PHP 8.4 compatibility, patch 3": "https://github.com/blizzz/safe/commit/6eeee2a20ffb2be3456ae8615b227c78e1ca8a20.patch" 20 | } 21 | } 22 | } 23 | } 24 | --------------------------------------------------------------------------------