diff --git a/.github/workflows/node-when-unrelated.yml b/.github/workflows/node-when-unrelated.yml deleted file mode 100644 index db32b0db..00000000 --- a/.github/workflows/node-when-unrelated.yml +++ /dev/null @@ -1,43 +0,0 @@ -# This workflow is provided via the organization template repository -# -# https://github.com/nextcloud/.github -# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization -# -# Use node together with node-when-unrelated to make eslint a required check for GitHub actions -# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks - -name: Node - -on: - pull_request: - paths-ignore: - - '.github/workflows/**' - - 'src/**' - - 'appinfo/info.xml' - - 'package.json' - - 'package-lock.json' - - 'tsconfig.json' - - '**.js' - - '**.ts' - - '**.vue' - push: - branches: - - main - - master - - stable* - -concurrency: - group: node-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -jobs: - build: - permissions: - contents: none - - runs-on: ubuntu-latest - - name: node - steps: - - name: Skip - run: 'echo "No JS/TS files changed, skipped Node"' diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 1774e0b2..24003484 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -2,26 +2,13 @@ # # https://github.com/nextcloud/.github # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization +# +# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: MIT name: Node -on: - pull_request: - paths: - - '.github/workflows/**' - - 'src/**' - - 'appinfo/info.xml' - - 'package.json' - - 'package-lock.json' - - 'tsconfig.json' - - '**.js' - - '**.ts' - - '**.vue' - push: - branches: - - main - - master - - stable* +on: pull_request permissions: contents: read @@ -31,35 +18,75 @@ concurrency: cancel-in-progress: true jobs: + changes: + runs-on: ubuntu-latest-low + permissions: + contents: read + pull-requests: read + + outputs: + src: ${{ steps.changes.outputs.src}} + + steps: + - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + id: changes + continue-on-error: true + with: + filters: | + src: + - '.github/workflows/**' + - 'src/**' + - 'appinfo/info.xml' + - 'package.json' + - 'package-lock.json' + - 'tsconfig.json' + - '**.js' + - '**.ts' + - '**.vue' + build: runs-on: ubuntu-latest - name: node + needs: changes + if: needs.changes.outputs.src != 'false' + + name: NPM build steps: - name: Checkout - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + persist-credentials: false - name: Read package.json node and npm engines version - uses: skjnldsv/read-package-engines-version-actions@0ce2ed60f6df073a62a77c0a4958dd0fc68e32e7 # v2.1 + uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3 id: versions with: - fallbackNode: '^16' - fallbackNpm: '^7' + fallbackNode: '^24' + fallbackNpm: '^11.3' - name: Set up node ${{ steps.versions.outputs.nodeVersion }} - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 + uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 with: node-version: ${{ steps.versions.outputs.nodeVersion }} - name: Set up npm ${{ steps.versions.outputs.npmVersion }} - run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" + run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' + + - name: Validate package-lock.json # See https://github.com/npm/cli/issues/4460 + run: | + npm i -g npm-package-lock-add-resolved@1.1.4 + npm-package-lock-add-resolved + git --no-pager diff --exit-code - name: Install dependencies & build + env: + CYPRESS_INSTALL_BINARY: 0 + PUPPETEER_SKIP_DOWNLOAD: true run: | npm ci npm run build --if-present - - name: Check webpack build changes + - name: Check build changes run: | bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)" @@ -69,3 +96,18 @@ jobs: git status git --no-pager diff exit 1 # make it red to grab attention + + summary: + permissions: + contents: none + runs-on: ubuntu-latest-low + needs: [changes, build] + + if: always() + + # This is the summary, we just avoid to rename it so that branch protection rules still match + name: node + + steps: + - name: Summary status + run: if ${{ needs.changes.outputs.src != 'false' && needs.build.result != 'success' }}; then exit 1; fi diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index da6c06e3..75604da6 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: php-versions: ['8.1', '8.2', '8.3'] - server-versions: ['master'] + server-versions: ['stable28', 'stable29'] services: mysql: diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml index 4ba78767..eb46c5b7 100644 --- a/.github/workflows/phpunit-oci.yml +++ b/.github/workflows/phpunit-oci.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: php-versions: ['8.1'] - server-versions: ['master'] + server-versions: ['stable28', 'stable29'] services: oracle: @@ -166,4 +166,4 @@ jobs: steps: - name: Summary status - run: if ${{ needs.phpunit-oci.result != 'success' }}; then exit 1; fi + run: exit 0 diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml index 15e5b6fe..3be3d10d 100644 --- a/.github/workflows/phpunit-pgsql.yml +++ b/.github/workflows/phpunit-pgsql.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: php-versions: ['8.1'] - server-versions: ['master'] + server-versions: ['stable28', 'stable29'] services: postgres: diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml index e570cdf2..cc7715f9 100644 --- a/.github/workflows/phpunit-sqlite.yml +++ b/.github/workflows/phpunit-sqlite.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: php-versions: ['8.1'] - server-versions: ['master'] + server-versions: ['stable28', 'stable29'] steps: - name: Set app env diff --git a/CHANGELOG.md b/CHANGELOG.md index 026ca0f1..8bc8c318 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,33 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [1.4.0] - 2026年04月28日 + +### Fixed + +- Share as the requester, not as the owner [#419](https://github.com/nextcloud/approval/pull/419) @julien-nc + +## [1.3.3] - 2026年04月14日 + +### Changed + +- Change api signature to require etag [#403](https://github.com/nextcloud/approval/pull/403) @lukasdotcom + +### Fixed + +- Add better error message on users side for failed approval [#365](https://github.com/nextcloud/approval/pull/365) @lukasdotcom + +## 1.3.2 – 2026年03月16日 + +### Fixed + +- Improve testing [#392](https://github.com/nextcloud/approval/pull/392) @lukasdotcom + +## 1.3.1 – 2025年10月08日 + +### Fixed + +- File ownership [#334](https://github.com/nextcloud/approval/pull/334) @lukasdotcom ## 1.3.0 – 2024年05月29日 diff --git a/appinfo/info.xml b/appinfo/info.xml index 7113bc76..b5fa8ef0 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -9,7 +9,7 @@ Approve/reject files based on workflows defined by admins. **Warning**: The DocuSign integration is no longer part of this app and can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign). ]]> - 1.3.0 + 1.4.0 agpl Julien Veyssier Approval @@ -28,7 +28,7 @@ and can be installed with [this app](https://apps.nextcloud.com/apps/integration https://github.com/nextcloud/approval/raw/main/img/screenshot_2.jpg https://github.com/nextcloud/approval/raw/main/img/screenshot_3.jpg - + OCA\Approval\Settings\Admin diff --git a/l10n/ar.js b/l10n/ar.js index 38a41c47..d2f9d2ad 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -19,7 +19,7 @@ OC.L10N.register( "%1$s approved %2$s" : "%1$s وافق على%2$s", "%1$s rejected %2$s" : "%1$s رفض %2$s", "{user} approved {node}" : "{user} وافق على {node}", - "{user} rejected {node}" : "{user} رفض {file}", + "{user} rejected {node}" : "{user} رفض {node}", "Your approval was requested" : "تمّ طلب موافقتك", "%2$s requested your approval for %1$s" : "%2$s طلب موافقتك على %1$s", "{user} requested your approval for {node}" : "{user} طلب موافقتك على {node}", @@ -28,49 +28,50 @@ OC.L10N.register( "Approval has already been requested with this rule for this file" : "تمّ سلفاً طلب الموافقة على هذا الملف تبعاً لهذا الشرط", "You are not authorized to request with this rule" : "غير مصرح لك بالطلب تبعاً لهذا الشرط", "Please check my approval request" : "رجاءً، راجع طلبي بالموافقة", - "Approval workflows" : "تدفُّقات إجراءات workflows الموافقة", + "Approval workflows" : "الموافقة على أتمتة سير العمل", "Let users approve or reject files" : "دعِ المستخدمين يوافقون على أو يرفضون الملفات", - "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "الموافقة على الملفات أو رفضها بناءً على سير العمل المحدد من قبل مشرف النظام. \n\n**تحذير**: لم يعد تكامل DocuSign جزءاً من هذا التطبيق \nو يمكن تثبيته باستعمال [هذا التطبيق](https://apps.nextcloud.com/apps/integration_docusign).", - "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "يحدد كل تدفُّق إجرائي WF مَنْ (مِنَ المستخدمين أو المجموعات أو الدوائر) يمكنه الموافقة على الملفات الموسومة بوسم \"مُعلّق\" pending tag معين، و أي وسم يوضع عليها في حال القبول و أي رسم يوضع عليها في حال الرفض.", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "الموافقة على الملفات أو رفضها بناءً على أتمتة سير العمل المحدد من قبل مشرف النظام. \n\n**تحذير**: لم يعد تكامل DocuSign جزءاً من هذا التطبيق \nو يمكن تثبيته باستعمال [هذا التطبيق](https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "يحدد كل أتمتة سير العمل من (من المستخدمين أو المجموعات أو الدوائر) يمكنه الموافقة على الملفات الموسومة بوسم \"معلق\" pending tag معين، و أيّ وسمٍ يُوضع عليها في حال القبول و أيّ وسمٍ يوضع عليها في حال الرفض.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "يمكن تحديد قائمة المستخدمين / المجموعات / الدوائر الذين يمكنهم طلب الموافقة يدويًا بشكل اختياري.", - "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "لكي يتم اعتبار الملف أو الدليل الذي يحتوي على عدد من سمات التعليق pending tags مُوافقاً عليه، يجب أن تتم الموافقة عليه من قِبَل جميع المهام tasks في التدفق الإجرائي WF الذي يتبعه.", - "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "يمكن وضع مجموعة موافقات في شكل سلسلة chain approval؛ و ذلك بوضع سمة التعليق pending tag على الملف عقب الموافقة عليه أو رفضه ليتم إرساله إلى التدفق الإجرائي WF التالي.", - "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "جميع السمات في التدفق الإجرائي الواحد WF tags يجب أن تكون مختلفة عن بعضها البعض. و سِمَة \"مُعلّق\" pending tag يمكن فقط استعمالها في تدفق إجرائي واحد.", - "Delete workflow" : "إحذِف التدفق الإجرائي Workflow", - "No workflow yet" : "لا يوجد تدفق إجرائي WF حتى الآن", - "New workflow" : "تدفُّق إجرائي WF جديد", - "Create new hidden tag" : "أنشِيء سِمَة جديدة مَخفيّة tag ", - "New tag name" : "اسم سِمَة جديدة ", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "لكي يتم اعتبار الملف أو الدليل الذي يحتوي على عدد من وسوم التعليق pending tags مُوافقاً عليه، يجب أن تتم الموافقة عليه من قِبَل جميع المهام tasks في أتمتة سير العمل الذي يتبعه.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "يمكن وضع مجموعة موافقات متتالية في شكل سلسلة chain approval؛ و ذلك بوضع وسم التعليق pending tag على الملف عقب الموافقة عليه أو رفضه ليتم إرساله إلى أتمتة سير عمل آخر.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "جميع الوسوم في أتمتة سير العمل الواحد WF tags يجب أن تكون مختلفة عن بعضها البعض. و سمة \"مُعلّق\" pending tag يمكن فقط استعمالها في أتمتة إجراء.", + "Delete workflow" : "حذف أتمتة سير العمل", + "No workflow yet" : "لا توجد أي أتمتة سير عمل مثبتة حتى الآن", + "New workflow" : "أتمتة سير عمل جديدة", + "Create new hidden tag" : "إنشاء وسم مخفي جديد", + "New tag name" : "اسم وسم جديد", "Create" : "إنشاء", "Cancel" : "إلغاء", "All fields are required" : "جميع الحقول مطلوبة", "All tags must be different" : "كل الوسوم يجب أن تكون مختلفة", - "Pending tag is already used in another workflow" : "سِمَة \"مُعلّق\" pending tag مستخدمةٌ سلفاً في تدفق إجرائي WF آخر", - "Create workflow" : "أنشِيءْ تدفُّقاً إجرائيّاً WF", - "Failed to get approval workflows" : "تعذّر تحصيل تدفُّقات الموافقة", - "Approval workflow saved" : "تمّ حفظ التدفُّق الإجرائي للموافقة WF", - "Failed to save approval workflow" : "تعذّر حفظ التدفُّق الإجرائي للموافقة WF", - "New approval workflow created" : "تمّ إنشاء تدفُّق إجرائي جديد للموافقة WF ", - "Failed to create approval workflow" : "تعذّر إنشاء تدفُّق إجرائي للموافقة WF ", - "Approval workflow deleted" : "تم حذف تدفُّق إجرائي للموافقة WF ", - "Failed to delete approval workflow" : "تعذّر حذف تدفُّق إجرائي للموافقة WF ", - "Tag \"{name}\" created" : "سمة \"{name}\" تمّ إنشاؤها", - "Failed to create tag \"{name}\"" : "تعذّر إنشاء السمة \"{name}\"", + "Pending tag is already used in another workflow" : "وسم \"معلّق\" pending tag مستخدم سلفاً في أتمتة سير عمل آخر", + "Create workflow" : "إنشاء أتمتة سير للعمل", + "Failed to get approval workflows" : "تعذر الحصول على أتمتة سير العمل الخاصة بالموافقات", + "Approval workflow saved" : "تم حفظ أتمتة سير العمل", + "Failed to save approval workflow" : "تعذّر حفظ أتمتة سير العمل", + "New approval workflow created" : "تمّ إنشاء أتمتة سير عمل جديدة للموافقات", + "Failed to create approval workflow" : "تعذر إنشاء أتمتة سير العمل الخاصة بالموافقات", + "Approval workflow deleted" : "تم حذف أتمتة سير العمل الخاصة بالموافقات", + "Failed to delete approval workflow" : "تعذّر حذف أتمتة سير العمل الخاصة بالموافقات", + "Tag \"{name}\" created" : "تم إنشاء الوسم \"{name}\" ", + "Failed to create tag \"{name}\"" : "فشل في إنشاء الوسم \"{name}\"", "Approve" : "موافقة", "Reject" : "رفض", - "Select pending tag" : "إختَر سِمَة \"مُعلّق\" pending tag", + "Select pending tag" : "إختَر وسم \"معلّق\" pending tag", "Who can request approval?" : "من له حق طلب الموافقة؟", "Who can approve?" : "من له حق الموافقة؟", - "Select approved tag" : "إختَر سِمَة \"تمّت الموافقة\" approved tag", - "Select rejected tag" : "إختَر سِمَة \"مرفوضٌ\" rejected tag", - "Who can request approval" : "من له حق طلب الموافقة", + "Select approved tag" : "إختَر وسم \"تمت الموافقة\" approved tag", + "Select rejected tag" : "إختَر وسم \"مرفوض\" rejected tag", + "Who can request approval" : "من له حق طلب الموافقة؟", "Who can approve" : "من له حق الموافقة", - "Tag to act on" : "سِمَة tag للتصرُّف بناءً عليها", - "Tag set on approval" : "سِمَة tag يتم تعيينها عند الموافقة", - "Tag set on rejection" : "سِمَة tag يتم تعيينها عند الرفض", - "Workflow title" : "عنوان التدفُّق الإجرائي WF", - "What is the purpose of this workflow?" : "ما الغاية من هذا التدفُّق الإجرائي WF؟", + "Tag to act on" : "وسم للتصرُّف بناءً عليه", + "Tag set on approval" : "وسم يتم تعيينه عند الموافقة", + "Tag set on rejection" : "وسم يتم تعيينه عند الرفض", + "Workflow title" : "عنوان أتمتة سير العمل", + "What is the purpose of this workflow?" : "ما الغاية من أتمتة سير العمل هذه؟", "Request approval" : "طلب موافقة", + "There is no approval workflow allowing you to request approval." : "لا يوجد سير عمل للموافقات ليسمح لك بطلب الموافقة", "Approved" : "مُوافَقٌ عليه", "Approved by" : "تمّ قبوله من قِبَل ", "Rejected" : "مرفوضٌ", @@ -78,19 +79,20 @@ OC.L10N.register( "Approval requested by" : "طَلَبُ الموافقة قُدِّم من قِبَل", "Approval requested" : "تمّ طلب الموافقة", "you" : "أنت", - "The related approval workflow is: {ruleDescription}" : "التدفق الإجرائي WF ذو الصلة هو: {ruleDescription}", + "The related approval workflow is: {ruleDescription}" : "أتمتة سير العمل الخاصة بالموافقات ذات الصلة هي: {ruleDescription}", "This user requested your approval" : "هذا المستخدِم طلب موافقتك", "Your approval was requested." : "تمّ تقديم لكم للموافقة", + "Approval information" : "معلومات الموافقة", "No recommendations. Start typing." : "ليس عندنا أي مقترحات لك. إبدإ الكتابة.", - "No result." : "لا توجد نتيجة", + "No result." : "لا توجد أي نتيجة", "Who?" : "من؟", "Impossible to get user/group/circle list" : "يستحيل الحصول على قائمة المستخدِمين أو المجموعات أو الدوائر.", - "Select approval workflow" : "إختَر التدفُّق الإجرائي المناسب للموافقة", + "Select approval workflow" : "إختر أتمتة سير العمل المناسبة والخاصة بالموافقات", "File will be automatically shared with everybody allowed to approve." : "ستتم مشاركة الملف تلقائيًا مع كل من له حق الموافقة.", "Can be approved by" : "يمكن الموافقة عليها من", "More files to approve" : "ملفات أخرى مطلوبٌ الموافقة عليها", "No files to approve!" : "لا توجد ملفات أخرى عليها طلبات موافقة", - "Failed to get approval pending files" : "تعذّر الحصول على الملفات المُعلّقة pending في انتظار الموافقة", + "Failed to get approval pending files" : "تعذّر الحصول على الملفات المعلقة pending في انتظار الموافقة", "by {name} at {date}" : "من قِبَل {name} عند {date}", "at {date}" : "في {date}", "Waiting for authorized users to approve this file" : "في انتظار المستخدِمين المخولين للموافقة على هذا الملف", @@ -99,55 +101,13 @@ OC.L10N.register( "This element was rejected" : "هذا العنصر تمّ رفضه", "Pending approval" : "في انتظار الموافقة", "Waiting for your approval" : "في انتظار موافقتك", - "Failed to check approval status" : "إخفاق في التحقُّق من حالة الموافقة", + "Failed to check approval status" : "فشل التحقُّق من حالة الموافقة", "Approval requested for {name}" : "تمّ طلب الموافقة على {name}", "Warning" : "تحذير", - "Failed to request approval for {name}" : "إخفاقٌ في طلب الموافقة على {name}", + "Failed to request approval for {name}" : "فشل في طلب الموافقة على {name}", "You approved {name}" : "أنت وافقت على {name}", - "Failed to approve {name}" : "إخفاقُ في الموافقة على {name}", + "Failed to approve {name}" : "فشل في الموافقة على {name}", "You rejected {name}" : "أنت رفضت {name}", - "Failed to reject {name}" : "إخفاقُ في رفض {name}", - "Error getting OAuth access token" : "خطأ أثناء محاولة الحصول على أَمَارَة token للتصديق المفتوح OAuth", - "Error during OAuth exchanges" : "خطأ أثناء تبادلات OAuth.", - "Signature of %s" : "توقيع %s", - "Bad HTTP method" : "وظيفة HTTP غير صحيحة", - "Bad credentials" : "حيثيّات الدخول credentials غير صحيحة", - "OAuth access token refused" : "أمَاَرَة token مرفوضة", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "الموافقة على أو رفض الملفات بناءً على سير العمل المُحدّد من قبل المشرفين.\nتنبيه: **سيتم إسقاط هذا التطبيق بدءاً من الإصدار 28 من نكست كلاود وما بعده. \nإذا كنت أحد عملاء نكست كلاود وتعتمد على هذا التطبيق، يرجى الانتظار حتى الترقية إلى الإصدار 28 و فتح تذكرة دعم حتى نتمكن من إيجاد حل لحالة الاستخدام الخاصة بك.**", - "Sign with DocuSign" : "تسجيل الدخول مع DocuSign", - "Sign with LibreSign" : "تسجيل الدخول مع LibreSign", - "Your approval was requested by {name}." : "طلب موافقتكم تمّ تقديمه من {name}.", - "The related approval workflow is:" : "التدفُّق الإجرائي للموافقة ذو الصلة هو:", - "Request a signature via DocuSign" : "طلب توقيع الكتروني عن طريق DocuSign", - "Users or email addresses" : "المستخدِمون أو عناوين البريد الالكتروني", - "Nextcloud users or email addresses" : "مستخدِمو نكست كلاود أو عناوين البريد الالكتروني", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "سيتلقى المستلمون بريدًا إلكترونيًا من DocuSign يحوي رابطاً link لتوقيع المستند. سيتم إخطارك عبر البريد الإلكتروني عندما يتم توقيع المستند من قبل جميع المستلمين.", - "Request signature" : "طلب توقيع", - "Recipients will receive an email from DocuSign to sign the document" : "سيتلقى المستلمون بريدًا إلكترونيًا من DocuSign للتوقيع على المستند", - "Failed to request signature with DocuSign" : "تعذّر طلب التوقيع عبر DocuSign", - "DocuSign integration" : "مُكاملة DocuSign", - "DocuSign is an electronic signature solution." : "Docusign هو حل للتوقيع الالكتروني", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "إذا كنت ترغب في استخدام DocuSign، فأنشئ تطبيقًا في إعدادات حساب مُطوِّر في DocuSign ـ \"My Apps & Keys\" وضع مُعرّف العميل أي مفتاح التكامل client ID (integration key) و كلمة السر أدناه.", - "Make sure you set this \"Redirect URI\":" : "تأكد من تعيين هذا \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "إذا كان حسابك كمستخدِم على DocuSign امرتبطًا بحسابات DocuSign متعددة، فسيتم استخدام الحساب الافتراضي.", - "Client ID (aka integration key)" : "مُعرّف العميل أي مفتاح التكامل client ID (aka integration key)", - "Client ID of your application" : "مُعرّف العميل client ID لتطبيقك", - "Application secret key" : "المفتاح السّري للتطبيق Application secret key", - "Secret key of your application" : "المفتاح السّري لتطبيقك", - "Connect to DocuSign" : "إتّصِل بـ DocuSign", - "Connected as {user} ({email})" : "متصلٌ بصفته {user} ({email})", - "Disconnect from DocuSign" : "إقطع الاتصال مع DocuSign", - "Successfully connected to DocuSign!" : "تمّ الاتصال مع DocuSign بنجاحٍ", - "OAuth access token could not be obtained:" : "تعذر الحصول على رمز التحقق المميز للوصول لتطبيق المصادقة OAuth:", - "DocuSign admin options saved" : "تمّ حفظ خيارات مشرف DocuSign", - "Failed to save DocuSign admin options" : "تعذّر حفظ خيارات مشرف DocuSign", - "Failed to save DocuSign OAuth state" : "تعذّر حفظ حالة التصديق المفتوح OAuth في DocuSign", - "You will receive an email from DocuSign to sign the document" : "سوف يصلك إيميل من DocuSign طالباً التوقيع على المستند", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "لم يتم العثور على المستخدم الذي طلب هذه الموافقة، تذكر إرسال أو مشاركة المستند المُوقّع بنفسك", - "Approval signature" : "التوقيع بالموافقة", - "{name} signature requested via LibreSign" : "توقيع {name} تمّ طلبه عبر LibreSign", - "Impossible to sign this document" : "يستحيل توقيع هذا المستند", - "Pending approval, you are authorized to approve." : "في انتظار الموافقة؛ و أنت مُخوّلٌ بالموافقة", - "Show approval details" : "أعرُض تفاصيل الموافقة" + "Failed to reject {name}" : "فشل في رفض {name}" }, "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;"); diff --git a/l10n/ar.json b/l10n/ar.json index a9eddfd8..d03afff9 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -17,7 +17,7 @@ "%1$s approved %2$s" : "%1$s وافق على%2$s", "%1$s rejected %2$s" : "%1$s رفض %2$s", "{user} approved {node}" : "{user} وافق على {node}", - "{user} rejected {node}" : "{user} رفض {file}", + "{user} rejected {node}" : "{user} رفض {node}", "Your approval was requested" : "تمّ طلب موافقتك", "%2$s requested your approval for %1$s" : "%2$s طلب موافقتك على %1$s", "{user} requested your approval for {node}" : "{user} طلب موافقتك على {node}", @@ -26,49 +26,50 @@ "Approval has already been requested with this rule for this file" : "تمّ سلفاً طلب الموافقة على هذا الملف تبعاً لهذا الشرط", "You are not authorized to request with this rule" : "غير مصرح لك بالطلب تبعاً لهذا الشرط", "Please check my approval request" : "رجاءً، راجع طلبي بالموافقة", - "Approval workflows" : "تدفُّقات إجراءات workflows الموافقة", + "Approval workflows" : "الموافقة على أتمتة سير العمل", "Let users approve or reject files" : "دعِ المستخدمين يوافقون على أو يرفضون الملفات", - "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "الموافقة على الملفات أو رفضها بناءً على سير العمل المحدد من قبل مشرف النظام. \n\n**تحذير**: لم يعد تكامل DocuSign جزءاً من هذا التطبيق \nو يمكن تثبيته باستعمال [هذا التطبيق](https://apps.nextcloud.com/apps/integration_docusign).", - "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "يحدد كل تدفُّق إجرائي WF مَنْ (مِنَ المستخدمين أو المجموعات أو الدوائر) يمكنه الموافقة على الملفات الموسومة بوسم \"مُعلّق\" pending tag معين، و أي وسم يوضع عليها في حال القبول و أي رسم يوضع عليها في حال الرفض.", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "الموافقة على الملفات أو رفضها بناءً على أتمتة سير العمل المحدد من قبل مشرف النظام. \n\n**تحذير**: لم يعد تكامل DocuSign جزءاً من هذا التطبيق \nو يمكن تثبيته باستعمال [هذا التطبيق](https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "يحدد كل أتمتة سير العمل من (من المستخدمين أو المجموعات أو الدوائر) يمكنه الموافقة على الملفات الموسومة بوسم \"معلق\" pending tag معين، و أيّ وسمٍ يُوضع عليها في حال القبول و أيّ وسمٍ يوضع عليها في حال الرفض.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "يمكن تحديد قائمة المستخدمين / المجموعات / الدوائر الذين يمكنهم طلب الموافقة يدويًا بشكل اختياري.", - "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "لكي يتم اعتبار الملف أو الدليل الذي يحتوي على عدد من سمات التعليق pending tags مُوافقاً عليه، يجب أن تتم الموافقة عليه من قِبَل جميع المهام tasks في التدفق الإجرائي WF الذي يتبعه.", - "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "يمكن وضع مجموعة موافقات في شكل سلسلة chain approval؛ و ذلك بوضع سمة التعليق pending tag على الملف عقب الموافقة عليه أو رفضه ليتم إرساله إلى التدفق الإجرائي WF التالي.", - "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "جميع السمات في التدفق الإجرائي الواحد WF tags يجب أن تكون مختلفة عن بعضها البعض. و سِمَة \"مُعلّق\" pending tag يمكن فقط استعمالها في تدفق إجرائي واحد.", - "Delete workflow" : "إحذِف التدفق الإجرائي Workflow", - "No workflow yet" : "لا يوجد تدفق إجرائي WF حتى الآن", - "New workflow" : "تدفُّق إجرائي WF جديد", - "Create new hidden tag" : "أنشِيء سِمَة جديدة مَخفيّة tag ", - "New tag name" : "اسم سِمَة جديدة ", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "لكي يتم اعتبار الملف أو الدليل الذي يحتوي على عدد من وسوم التعليق pending tags مُوافقاً عليه، يجب أن تتم الموافقة عليه من قِبَل جميع المهام tasks في أتمتة سير العمل الذي يتبعه.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "يمكن وضع مجموعة موافقات متتالية في شكل سلسلة chain approval؛ و ذلك بوضع وسم التعليق pending tag على الملف عقب الموافقة عليه أو رفضه ليتم إرساله إلى أتمتة سير عمل آخر.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "جميع الوسوم في أتمتة سير العمل الواحد WF tags يجب أن تكون مختلفة عن بعضها البعض. و سمة \"مُعلّق\" pending tag يمكن فقط استعمالها في أتمتة إجراء.", + "Delete workflow" : "حذف أتمتة سير العمل", + "No workflow yet" : "لا توجد أي أتمتة سير عمل مثبتة حتى الآن", + "New workflow" : "أتمتة سير عمل جديدة", + "Create new hidden tag" : "إنشاء وسم مخفي جديد", + "New tag name" : "اسم وسم جديد", "Create" : "إنشاء", "Cancel" : "إلغاء", "All fields are required" : "جميع الحقول مطلوبة", "All tags must be different" : "كل الوسوم يجب أن تكون مختلفة", - "Pending tag is already used in another workflow" : "سِمَة \"مُعلّق\" pending tag مستخدمةٌ سلفاً في تدفق إجرائي WF آخر", - "Create workflow" : "أنشِيءْ تدفُّقاً إجرائيّاً WF", - "Failed to get approval workflows" : "تعذّر تحصيل تدفُّقات الموافقة", - "Approval workflow saved" : "تمّ حفظ التدفُّق الإجرائي للموافقة WF", - "Failed to save approval workflow" : "تعذّر حفظ التدفُّق الإجرائي للموافقة WF", - "New approval workflow created" : "تمّ إنشاء تدفُّق إجرائي جديد للموافقة WF ", - "Failed to create approval workflow" : "تعذّر إنشاء تدفُّق إجرائي للموافقة WF ", - "Approval workflow deleted" : "تم حذف تدفُّق إجرائي للموافقة WF ", - "Failed to delete approval workflow" : "تعذّر حذف تدفُّق إجرائي للموافقة WF ", - "Tag \"{name}\" created" : "سمة \"{name}\" تمّ إنشاؤها", - "Failed to create tag \"{name}\"" : "تعذّر إنشاء السمة \"{name}\"", + "Pending tag is already used in another workflow" : "وسم \"معلّق\" pending tag مستخدم سلفاً في أتمتة سير عمل آخر", + "Create workflow" : "إنشاء أتمتة سير للعمل", + "Failed to get approval workflows" : "تعذر الحصول على أتمتة سير العمل الخاصة بالموافقات", + "Approval workflow saved" : "تم حفظ أتمتة سير العمل", + "Failed to save approval workflow" : "تعذّر حفظ أتمتة سير العمل", + "New approval workflow created" : "تمّ إنشاء أتمتة سير عمل جديدة للموافقات", + "Failed to create approval workflow" : "تعذر إنشاء أتمتة سير العمل الخاصة بالموافقات", + "Approval workflow deleted" : "تم حذف أتمتة سير العمل الخاصة بالموافقات", + "Failed to delete approval workflow" : "تعذّر حذف أتمتة سير العمل الخاصة بالموافقات", + "Tag \"{name}\" created" : "تم إنشاء الوسم \"{name}\" ", + "Failed to create tag \"{name}\"" : "فشل في إنشاء الوسم \"{name}\"", "Approve" : "موافقة", "Reject" : "رفض", - "Select pending tag" : "إختَر سِمَة \"مُعلّق\" pending tag", + "Select pending tag" : "إختَر وسم \"معلّق\" pending tag", "Who can request approval?" : "من له حق طلب الموافقة؟", "Who can approve?" : "من له حق الموافقة؟", - "Select approved tag" : "إختَر سِمَة \"تمّت الموافقة\" approved tag", - "Select rejected tag" : "إختَر سِمَة \"مرفوضٌ\" rejected tag", - "Who can request approval" : "من له حق طلب الموافقة", + "Select approved tag" : "إختَر وسم \"تمت الموافقة\" approved tag", + "Select rejected tag" : "إختَر وسم \"مرفوض\" rejected tag", + "Who can request approval" : "من له حق طلب الموافقة؟", "Who can approve" : "من له حق الموافقة", - "Tag to act on" : "سِمَة tag للتصرُّف بناءً عليها", - "Tag set on approval" : "سِمَة tag يتم تعيينها عند الموافقة", - "Tag set on rejection" : "سِمَة tag يتم تعيينها عند الرفض", - "Workflow title" : "عنوان التدفُّق الإجرائي WF", - "What is the purpose of this workflow?" : "ما الغاية من هذا التدفُّق الإجرائي WF؟", + "Tag to act on" : "وسم للتصرُّف بناءً عليه", + "Tag set on approval" : "وسم يتم تعيينه عند الموافقة", + "Tag set on rejection" : "وسم يتم تعيينه عند الرفض", + "Workflow title" : "عنوان أتمتة سير العمل", + "What is the purpose of this workflow?" : "ما الغاية من أتمتة سير العمل هذه؟", "Request approval" : "طلب موافقة", + "There is no approval workflow allowing you to request approval." : "لا يوجد سير عمل للموافقات ليسمح لك بطلب الموافقة", "Approved" : "مُوافَقٌ عليه", "Approved by" : "تمّ قبوله من قِبَل ", "Rejected" : "مرفوضٌ", @@ -76,19 +77,20 @@ "Approval requested by" : "طَلَبُ الموافقة قُدِّم من قِبَل", "Approval requested" : "تمّ طلب الموافقة", "you" : "أنت", - "The related approval workflow is: {ruleDescription}" : "التدفق الإجرائي WF ذو الصلة هو: {ruleDescription}", + "The related approval workflow is: {ruleDescription}" : "أتمتة سير العمل الخاصة بالموافقات ذات الصلة هي: {ruleDescription}", "This user requested your approval" : "هذا المستخدِم طلب موافقتك", "Your approval was requested." : "تمّ تقديم لكم للموافقة", + "Approval information" : "معلومات الموافقة", "No recommendations. Start typing." : "ليس عندنا أي مقترحات لك. إبدإ الكتابة.", - "No result." : "لا توجد نتيجة", + "No result." : "لا توجد أي نتيجة", "Who?" : "من؟", "Impossible to get user/group/circle list" : "يستحيل الحصول على قائمة المستخدِمين أو المجموعات أو الدوائر.", - "Select approval workflow" : "إختَر التدفُّق الإجرائي المناسب للموافقة", + "Select approval workflow" : "إختر أتمتة سير العمل المناسبة والخاصة بالموافقات", "File will be automatically shared with everybody allowed to approve." : "ستتم مشاركة الملف تلقائيًا مع كل من له حق الموافقة.", "Can be approved by" : "يمكن الموافقة عليها من", "More files to approve" : "ملفات أخرى مطلوبٌ الموافقة عليها", "No files to approve!" : "لا توجد ملفات أخرى عليها طلبات موافقة", - "Failed to get approval pending files" : "تعذّر الحصول على الملفات المُعلّقة pending في انتظار الموافقة", + "Failed to get approval pending files" : "تعذّر الحصول على الملفات المعلقة pending في انتظار الموافقة", "by {name} at {date}" : "من قِبَل {name} عند {date}", "at {date}" : "في {date}", "Waiting for authorized users to approve this file" : "في انتظار المستخدِمين المخولين للموافقة على هذا الملف", @@ -97,55 +99,13 @@ "This element was rejected" : "هذا العنصر تمّ رفضه", "Pending approval" : "في انتظار الموافقة", "Waiting for your approval" : "في انتظار موافقتك", - "Failed to check approval status" : "إخفاق في التحقُّق من حالة الموافقة", + "Failed to check approval status" : "فشل التحقُّق من حالة الموافقة", "Approval requested for {name}" : "تمّ طلب الموافقة على {name}", "Warning" : "تحذير", - "Failed to request approval for {name}" : "إخفاقٌ في طلب الموافقة على {name}", + "Failed to request approval for {name}" : "فشل في طلب الموافقة على {name}", "You approved {name}" : "أنت وافقت على {name}", - "Failed to approve {name}" : "إخفاقُ في الموافقة على {name}", + "Failed to approve {name}" : "فشل في الموافقة على {name}", "You rejected {name}" : "أنت رفضت {name}", - "Failed to reject {name}" : "إخفاقُ في رفض {name}", - "Error getting OAuth access token" : "خطأ أثناء محاولة الحصول على أَمَارَة token للتصديق المفتوح OAuth", - "Error during OAuth exchanges" : "خطأ أثناء تبادلات OAuth.", - "Signature of %s" : "توقيع %s", - "Bad HTTP method" : "وظيفة HTTP غير صحيحة", - "Bad credentials" : "حيثيّات الدخول credentials غير صحيحة", - "OAuth access token refused" : "أمَاَرَة token مرفوضة", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "الموافقة على أو رفض الملفات بناءً على سير العمل المُحدّد من قبل المشرفين.\nتنبيه: **سيتم إسقاط هذا التطبيق بدءاً من الإصدار 28 من نكست كلاود وما بعده. \nإذا كنت أحد عملاء نكست كلاود وتعتمد على هذا التطبيق، يرجى الانتظار حتى الترقية إلى الإصدار 28 و فتح تذكرة دعم حتى نتمكن من إيجاد حل لحالة الاستخدام الخاصة بك.**", - "Sign with DocuSign" : "تسجيل الدخول مع DocuSign", - "Sign with LibreSign" : "تسجيل الدخول مع LibreSign", - "Your approval was requested by {name}." : "طلب موافقتكم تمّ تقديمه من {name}.", - "The related approval workflow is:" : "التدفُّق الإجرائي للموافقة ذو الصلة هو:", - "Request a signature via DocuSign" : "طلب توقيع الكتروني عن طريق DocuSign", - "Users or email addresses" : "المستخدِمون أو عناوين البريد الالكتروني", - "Nextcloud users or email addresses" : "مستخدِمو نكست كلاود أو عناوين البريد الالكتروني", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "سيتلقى المستلمون بريدًا إلكترونيًا من DocuSign يحوي رابطاً link لتوقيع المستند. سيتم إخطارك عبر البريد الإلكتروني عندما يتم توقيع المستند من قبل جميع المستلمين.", - "Request signature" : "طلب توقيع", - "Recipients will receive an email from DocuSign to sign the document" : "سيتلقى المستلمون بريدًا إلكترونيًا من DocuSign للتوقيع على المستند", - "Failed to request signature with DocuSign" : "تعذّر طلب التوقيع عبر DocuSign", - "DocuSign integration" : "مُكاملة DocuSign", - "DocuSign is an electronic signature solution." : "Docusign هو حل للتوقيع الالكتروني", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "إذا كنت ترغب في استخدام DocuSign، فأنشئ تطبيقًا في إعدادات حساب مُطوِّر في DocuSign ـ \"My Apps & Keys\" وضع مُعرّف العميل أي مفتاح التكامل client ID (integration key) و كلمة السر أدناه.", - "Make sure you set this \"Redirect URI\":" : "تأكد من تعيين هذا \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "إذا كان حسابك كمستخدِم على DocuSign امرتبطًا بحسابات DocuSign متعددة، فسيتم استخدام الحساب الافتراضي.", - "Client ID (aka integration key)" : "مُعرّف العميل أي مفتاح التكامل client ID (aka integration key)", - "Client ID of your application" : "مُعرّف العميل client ID لتطبيقك", - "Application secret key" : "المفتاح السّري للتطبيق Application secret key", - "Secret key of your application" : "المفتاح السّري لتطبيقك", - "Connect to DocuSign" : "إتّصِل بـ DocuSign", - "Connected as {user} ({email})" : "متصلٌ بصفته {user} ({email})", - "Disconnect from DocuSign" : "إقطع الاتصال مع DocuSign", - "Successfully connected to DocuSign!" : "تمّ الاتصال مع DocuSign بنجاحٍ", - "OAuth access token could not be obtained:" : "تعذر الحصول على رمز التحقق المميز للوصول لتطبيق المصادقة OAuth:", - "DocuSign admin options saved" : "تمّ حفظ خيارات مشرف DocuSign", - "Failed to save DocuSign admin options" : "تعذّر حفظ خيارات مشرف DocuSign", - "Failed to save DocuSign OAuth state" : "تعذّر حفظ حالة التصديق المفتوح OAuth في DocuSign", - "You will receive an email from DocuSign to sign the document" : "سوف يصلك إيميل من DocuSign طالباً التوقيع على المستند", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "لم يتم العثور على المستخدم الذي طلب هذه الموافقة، تذكر إرسال أو مشاركة المستند المُوقّع بنفسك", - "Approval signature" : "التوقيع بالموافقة", - "{name} signature requested via LibreSign" : "توقيع {name} تمّ طلبه عبر LibreSign", - "Impossible to sign this document" : "يستحيل توقيع هذا المستند", - "Pending approval, you are authorized to approve." : "في انتظار الموافقة؛ و أنت مُخوّلٌ بالموافقة", - "Show approval details" : "أعرُض تفاصيل الموافقة" + "Failed to reject {name}" : "فشل في رفض {name}" },"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;" } \ No newline at end of file diff --git a/l10n/ast.js b/l10n/ast.js index 7926a514..c84489f7 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -67,14 +67,6 @@ OC.L10N.register( "You approved {name}" : "Aprobesti «{name}»", "Failed to approve {name}" : "Nun se pue aprobar «{name}»", "You rejected {name}" : "Refuguesti «{name}»", - "Failed to reject {name}" : "Nun se pue refugar «{name}»", - "Failed to request signature with DocuSign" : "Nun se pue solicitar la firma con DocuSign", - "DocuSign integration" : "Integración con DocuSign", - "Client ID (aka integration key)" : "ID de veceru (tamien llamada, clave d'integración)", - "Client ID of your application" : "La ID de veceru de la to aplicación", - "Application secret key" : "Clave secreta de l'aplicación", - "Secret key of your application" : "La clave secreata de la to aplicación", - "Approval signature" : "Firma d'aprobación", - "Impossible to sign this document" : "Ye imposible firmar esti documentu" + "Failed to reject {name}" : "Nun se pue refugar «{name}»" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ast.json b/l10n/ast.json index 020f6a1a..7b427466 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -65,14 +65,6 @@ "You approved {name}" : "Aprobesti «{name}»", "Failed to approve {name}" : "Nun se pue aprobar «{name}»", "You rejected {name}" : "Refuguesti «{name}»", - "Failed to reject {name}" : "Nun se pue refugar «{name}»", - "Failed to request signature with DocuSign" : "Nun se pue solicitar la firma con DocuSign", - "DocuSign integration" : "Integración con DocuSign", - "Client ID (aka integration key)" : "ID de veceru (tamien llamada, clave d'integración)", - "Client ID of your application" : "La ID de veceru de la to aplicación", - "Application secret key" : "Clave secreta de l'aplicación", - "Secret key of your application" : "La clave secreata de la to aplicación", - "Approval signature" : "Firma d'aprobación", - "Impossible to sign this document" : "Ye imposible firmar esti documentu" + "Failed to reject {name}" : "Nun se pue refugar «{name}»" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/bg.js b/l10n/bg.js index 6386296e..e4b8d00d 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -98,47 +98,6 @@ OC.L10N.register( "You approved {name}" : "Одобрихте {name}", "Failed to approve {name}" : "Одобряването на {name} беше неуспешно", "You rejected {name}" : "Отхвърлихте {name}", - "Failed to reject {name}" : "Отхвърлянето на {name} беше неуспешно", - "Error getting OAuth access token" : "Грешка при получаване на маркер за достъп до OAuth", - "Error during OAuth exchanges" : "Грешка по време на обмен на OAuth", - "Signature of %s" : "Подпис на %s", - "Bad HTTP method" : "Лош HTTP метод", - "Bad credentials" : "Лоши идентификационни данни", - "OAuth access token refused" : " Маркерът за достъп OAuth е отказан", - "Sign with DocuSign" : "Подписване с DocuSign", - "Sign with LibreSign" : "Подписване с DocuSign LibreSign", - "Your approval was requested by {name}." : "Беше Ви поискано одобрение от {name}.", - "The related approval workflow is:" : "Свързаният работен поток на одобрение е:", - "Request a signature via DocuSign" : "Искане за подпис чрез DocuSign", - "Users or email addresses" : "Потребители или имейл адреси", - "Nextcloud users or email addresses" : "Потребители или имейл адреси на Nextcloud", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Получателите ще получат имейл от DocuSign, с връзка за подписване на документа. Ще бъдете информирани по имейл, когато документът бъде подписан от всички получатели.", - "Request signature" : "Искане на подпис", - "Recipients will receive an email from DocuSign to sign the document" : "Получателите ще получат имейл от DocuSign за подписване на документа", - "Failed to request signature with DocuSign" : "Неуспешно искане на подпис с DocuSign", - "DocuSign integration" : "Интеграция с DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign е решение за електронен подпис.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ако искате да използвате DocuSign, създайте приложение в настройките на вашия профил за разработчици в DocuSign „Моите приложения и ключове" и поставете клиентския идентификатор (ключ за интеграция) и тайна по -долу.", - "Make sure you set this \"Redirect URI\":" : "Уверете се, че сте задали този „URI за пренасочване":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ако вашият потребител на DocuSign е свързан с множество профили в DocuSign, ще се използва този по подразбиране.", - "Client ID (aka integration key)" : "Клиентски идентификатор (aka ключ за интеграция)", - "Client ID of your application" : "Клиентски идентификатор на вашето приложение", - "Application secret key" : "Таен ключ на приложение", - "Secret key of your application" : "Таен ключ на вашето приложение", - "Connect to DocuSign" : "Свързване с DocuSign", - "Connected as {user} ({email})" : "Свързан като {user} ({email})", - "Disconnect from DocuSign" : "Прекъсване на връзката с DocuSign ", - "Successfully connected to DocuSign!" : "Успешно свързване с DocuSign!", - "OAuth access token could not be obtained:" : "Токенът за достъп OAuth не може да бъде получен:", - "DocuSign admin options saved" : "Опциите за администратор на DocuSign са запазени", - "Failed to save DocuSign admin options" : "Неуспешно записване на Опциите за администратор на DocuSign", - "Failed to save DocuSign OAuth state" : "Неуспешно записване на състоянието на OAuth в DocuSign", - "You will receive an email from DocuSign to sign the document" : "Ще получите имейл от DocuSign за подписване на документа", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Потребителят, който е поискал това одобрение, не е намерен, не забравяйте и Вие да изпратите или да споделите подписаният документ", - "Approval signature" : "Подпис за одобрение", - "{name} signature requested via LibreSign" : "{name} подписът е поискан чрез LibreSign", - "Impossible to sign this document" : "Подписването на този документ е невъзможно", - "Pending approval, you are authorized to approve." : "В очакване на одобрение, вие сте упълномощени да одобрите.", - "Show approval details" : "Показване на подробности за одобрението" + "Failed to reject {name}" : "Отхвърлянето на {name} беше неуспешно" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/bg.json b/l10n/bg.json index 7757fdc2..b011106e 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -96,47 +96,6 @@ "You approved {name}" : "Одобрихте {name}", "Failed to approve {name}" : "Одобряването на {name} беше неуспешно", "You rejected {name}" : "Отхвърлихте {name}", - "Failed to reject {name}" : "Отхвърлянето на {name} беше неуспешно", - "Error getting OAuth access token" : "Грешка при получаване на маркер за достъп до OAuth", - "Error during OAuth exchanges" : "Грешка по време на обмен на OAuth", - "Signature of %s" : "Подпис на %s", - "Bad HTTP method" : "Лош HTTP метод", - "Bad credentials" : "Лоши идентификационни данни", - "OAuth access token refused" : " Маркерът за достъп OAuth е отказан", - "Sign with DocuSign" : "Подписване с DocuSign", - "Sign with LibreSign" : "Подписване с DocuSign LibreSign", - "Your approval was requested by {name}." : "Беше Ви поискано одобрение от {name}.", - "The related approval workflow is:" : "Свързаният работен поток на одобрение е:", - "Request a signature via DocuSign" : "Искане за подпис чрез DocuSign", - "Users or email addresses" : "Потребители или имейл адреси", - "Nextcloud users or email addresses" : "Потребители или имейл адреси на Nextcloud", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Получателите ще получат имейл от DocuSign, с връзка за подписване на документа. Ще бъдете информирани по имейл, когато документът бъде подписан от всички получатели.", - "Request signature" : "Искане на подпис", - "Recipients will receive an email from DocuSign to sign the document" : "Получателите ще получат имейл от DocuSign за подписване на документа", - "Failed to request signature with DocuSign" : "Неуспешно искане на подпис с DocuSign", - "DocuSign integration" : "Интеграция с DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign е решение за електронен подпис.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ако искате да използвате DocuSign, създайте приложение в настройките на вашия профил за разработчици в DocuSign „Моите приложения и ключове" и поставете клиентския идентификатор (ключ за интеграция) и тайна по -долу.", - "Make sure you set this \"Redirect URI\":" : "Уверете се, че сте задали този „URI за пренасочване":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ако вашият потребител на DocuSign е свързан с множество профили в DocuSign, ще се използва този по подразбиране.", - "Client ID (aka integration key)" : "Клиентски идентификатор (aka ключ за интеграция)", - "Client ID of your application" : "Клиентски идентификатор на вашето приложение", - "Application secret key" : "Таен ключ на приложение", - "Secret key of your application" : "Таен ключ на вашето приложение", - "Connect to DocuSign" : "Свързване с DocuSign", - "Connected as {user} ({email})" : "Свързан като {user} ({email})", - "Disconnect from DocuSign" : "Прекъсване на връзката с DocuSign ", - "Successfully connected to DocuSign!" : "Успешно свързване с DocuSign!", - "OAuth access token could not be obtained:" : "Токенът за достъп OAuth не може да бъде получен:", - "DocuSign admin options saved" : "Опциите за администратор на DocuSign са запазени", - "Failed to save DocuSign admin options" : "Неуспешно записване на Опциите за администратор на DocuSign", - "Failed to save DocuSign OAuth state" : "Неуспешно записване на състоянието на OAuth в DocuSign", - "You will receive an email from DocuSign to sign the document" : "Ще получите имейл от DocuSign за подписване на документа", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Потребителят, който е поискал това одобрение, не е намерен, не забравяйте и Вие да изпратите или да споделите подписаният документ", - "Approval signature" : "Подпис за одобрение", - "{name} signature requested via LibreSign" : "{name} подписът е поискан чрез LibreSign", - "Impossible to sign this document" : "Подписването на този документ е невъзможно", - "Pending approval, you are authorized to approve." : "В очакване на одобрение, вие сте упълномощени да одобрите.", - "Show approval details" : "Показване на подробности за одобрението" + "Failed to reject {name}" : "Отхвърлянето на {name} беше неуспешно" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ca.js b/l10n/ca.js index 2ac8b81f..05c4e6e5 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -100,47 +100,6 @@ OC.L10N.register( "You approved {name}" : "Heu aprovat {name}", "Failed to approve {name}" : "No s'ha pogut aprovar {name}", "You rejected {name}" : "Heu rebutjat {name}", - "Failed to reject {name}" : "No s'ha pogut rebutjar {name}", - "Error getting OAuth access token" : "S'ha produït un error en obtenir el testimoni d'accés d'OAuth", - "Error during OAuth exchanges" : "S'ha produït un error durant els intercanvis d'OAuth", - "Signature of %s" : "Signatura de %s", - "Bad HTTP method" : "Mètode HTTP incorrecte", - "Bad credentials" : "Credencials dolentes", - "OAuth access token refused" : "S'ha rebutjat el testimoni d'accés d'OAuth", - "Sign with DocuSign" : "Signa amb DocuSign", - "Sign with LibreSign" : "Signa amb LibreSign", - "Your approval was requested by {name}." : "{name} ha sol·licitat la vostra aprovació.", - "The related approval workflow is:" : "El flux de treball d'aprovació relacionat és:", - "Request a signature via DocuSign" : "Sol·licitar una signatura via DocuSign", - "Users or email addresses" : "Usuaris o adreces electròniques", - "Nextcloud users or email addresses" : "Usuaris de Nextcloud o adreces electròniques", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Els destinataris rebran un correu electrònic de DocuSign amb un enllaç per signar el document. Se us informarà per correu electrònic quan el document hagi estat signat per tots els destinataris.", - "Request signature" : "Sol·licitar signatura", - "Recipients will receive an email from DocuSign to sign the document" : "Els destinataris rebran un correu electrònic de DocuSign per signar el document", - "Failed to request signature with DocuSign" : "No s'ha pogut sol·licitar la signatura amb DocuSign", - "DocuSign integration" : "Integració de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign és una solució de signatura electrònica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si voleu utilitzar DocuSign, creeu una aplicació al vostre compte de desenvolupador de DocuSign 'Les meves aplicacions i claus' i poseu l'identificador del client (clau d'integració) i el secret a continuació.", - "Make sure you set this \"Redirect URI\":" : "Assegureu-vos de definir l'\"URI de redirecció":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si el vostre usuari de DocuSign està associat amb diversos comptes de DocuSign, s'utilitzarà el valor per defecte.", - "Client ID (aka integration key)" : "ID del client (clau d'integració)", - "Client ID of your application" : "Identificador de client de la vostra aplicació", - "Application secret key" : "Clau secreta de l'aplicació", - "Secret key of your application" : "Clau secreta de la teva sol·licitud", - "Connect to DocuSign" : "Connecta't a DocuSign", - "Connected as {user} ({email})" : "S'ha connectat com a {user} ({email})", - "Disconnect from DocuSign" : "Desconnecta't de DocuSign", - "Successfully connected to DocuSign!" : "S'ha connectat correctament a DocuSign!", - "OAuth access token could not be obtained:" : "No s'ha pogut obtenir el testimoni d'accés oAuth:", - "DocuSign admin options saved" : "Opcions d'administració de DocuSign desades", - "Failed to save DocuSign admin options" : "No s'han pogut desar les opcions d'administració de DocuSign", - "Failed to save DocuSign OAuth state" : "No s'ha pogut desar l'estat OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Rebràs un correu electrònic de DocuSign per signar el document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "L'usuari que ha sol·licitat aquesta aprovació no s'ha trobat, recorda enviar o compartir tu mateix el document signat", - "Approval signature" : "Signatura d'aprovació", - "{name} signature requested via LibreSign" : "{name} signatura sol·licitada mitjançant LibreSign", - "Impossible to sign this document" : "Impossible signar aquest document", - "Pending approval, you are authorized to approve." : "Pendents d'aprovació, esteu autoritzats a aprovar-lo.", - "Show approval details" : "Mostra els detalls de l'aprovació" + "Failed to reject {name}" : "No s'ha pogut rebutjar {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ca.json b/l10n/ca.json index 40a4620b..5783dff1 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -98,47 +98,6 @@ "You approved {name}" : "Heu aprovat {name}", "Failed to approve {name}" : "No s'ha pogut aprovar {name}", "You rejected {name}" : "Heu rebutjat {name}", - "Failed to reject {name}" : "No s'ha pogut rebutjar {name}", - "Error getting OAuth access token" : "S'ha produït un error en obtenir el testimoni d'accés d'OAuth", - "Error during OAuth exchanges" : "S'ha produït un error durant els intercanvis d'OAuth", - "Signature of %s" : "Signatura de %s", - "Bad HTTP method" : "Mètode HTTP incorrecte", - "Bad credentials" : "Credencials dolentes", - "OAuth access token refused" : "S'ha rebutjat el testimoni d'accés d'OAuth", - "Sign with DocuSign" : "Signa amb DocuSign", - "Sign with LibreSign" : "Signa amb LibreSign", - "Your approval was requested by {name}." : "{name} ha sol·licitat la vostra aprovació.", - "The related approval workflow is:" : "El flux de treball d'aprovació relacionat és:", - "Request a signature via DocuSign" : "Sol·licitar una signatura via DocuSign", - "Users or email addresses" : "Usuaris o adreces electròniques", - "Nextcloud users or email addresses" : "Usuaris de Nextcloud o adreces electròniques", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Els destinataris rebran un correu electrònic de DocuSign amb un enllaç per signar el document. Se us informarà per correu electrònic quan el document hagi estat signat per tots els destinataris.", - "Request signature" : "Sol·licitar signatura", - "Recipients will receive an email from DocuSign to sign the document" : "Els destinataris rebran un correu electrònic de DocuSign per signar el document", - "Failed to request signature with DocuSign" : "No s'ha pogut sol·licitar la signatura amb DocuSign", - "DocuSign integration" : "Integració de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign és una solució de signatura electrònica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si voleu utilitzar DocuSign, creeu una aplicació al vostre compte de desenvolupador de DocuSign 'Les meves aplicacions i claus' i poseu l'identificador del client (clau d'integració) i el secret a continuació.", - "Make sure you set this \"Redirect URI\":" : "Assegureu-vos de definir l'\"URI de redirecció":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si el vostre usuari de DocuSign està associat amb diversos comptes de DocuSign, s'utilitzarà el valor per defecte.", - "Client ID (aka integration key)" : "ID del client (clau d'integració)", - "Client ID of your application" : "Identificador de client de la vostra aplicació", - "Application secret key" : "Clau secreta de l'aplicació", - "Secret key of your application" : "Clau secreta de la teva sol·licitud", - "Connect to DocuSign" : "Connecta't a DocuSign", - "Connected as {user} ({email})" : "S'ha connectat com a {user} ({email})", - "Disconnect from DocuSign" : "Desconnecta't de DocuSign", - "Successfully connected to DocuSign!" : "S'ha connectat correctament a DocuSign!", - "OAuth access token could not be obtained:" : "No s'ha pogut obtenir el testimoni d'accés oAuth:", - "DocuSign admin options saved" : "Opcions d'administració de DocuSign desades", - "Failed to save DocuSign admin options" : "No s'han pogut desar les opcions d'administració de DocuSign", - "Failed to save DocuSign OAuth state" : "No s'ha pogut desar l'estat OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Rebràs un correu electrònic de DocuSign per signar el document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "L'usuari que ha sol·licitat aquesta aprovació no s'ha trobat, recorda enviar o compartir tu mateix el document signat", - "Approval signature" : "Signatura d'aprovació", - "{name} signature requested via LibreSign" : "{name} signatura sol·licitada mitjançant LibreSign", - "Impossible to sign this document" : "Impossible signar aquest document", - "Pending approval, you are authorized to approve." : "Pendents d'aprovació, esteu autoritzats a aprovar-lo.", - "Show approval details" : "Mostra els detalls de l'aprovació" + "Failed to reject {name}" : "No s'ha pogut rebutjar {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/cs.js b/l10n/cs.js index 03cd6c79..f43c7f3b 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "Podívejte se prosím na moji žádost o schválení", "Approval workflows" : "Schvalovací postupy", "Let users approve or reject files" : "Nechte uživatele schvalovat či zamítat soubory", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Schvalujte/zamítejte soubory na základě pracovních postupů určených správci.\n\n**Varování**: Napojení na DocuSign už není součástí této aplikace\na je možné ho nainstalovat prostřednictvím [této aplikace](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Každý postup definuje kdo (kteří uživatelé, skupiny či okruhy) mohou schvalovat soubory pro daný štítek čekající a který štítek schválené/čekající má tím být přiřazen.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Volitelně může být definován seznam uživatelů/skupin/okruhů, které mohou ručně požádat o schválení.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Aby bylo považováno za schválené je třeba, aby soubor/složka, která má přiřazeno vícero štítků čekající, byla schválena ve všech souvisejících postupech.", @@ -70,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Název postupu", "What is the purpose of this workflow?" : "Jaký je účel tohoto postupu?", "Request approval" : "Požádat o schválení", + "There is no approval workflow allowing you to request approval." : "Neexistuje žádný pracovní postup schvalování, který by vám umožnil zažádat o schválení.", "Approved" : "Schváleno", "Approved by" : "Schválil(a)", "Rejected" : "Zamítnuto", @@ -77,7 +79,10 @@ OC.L10N.register( "Approval requested by" : "Schválení vyžádal(a)", "Approval requested" : "Vyžádáno schválení", "you" : "vy", + "The related approval workflow is: {ruleDescription}" : "Související schvalovací postup je: {ruleDescription}", + "This user requested your approval" : "Tento uživatel si vyžádal schválení od vás", "Your approval was requested." : "Bylo požádáno o vaše schválení.", + "Approval information" : "Informace o schválení", "No recommendations. Start typing." : "Žádná doporučení. Pište.", "No result." : "Bez výsledku.", "Who?" : "Kdo?", @@ -90,6 +95,8 @@ OC.L10N.register( "Failed to get approval pending files" : "Nepodařilo se načíst soubory čekající na schválení", "by {name} at {date}" : "od {name} dne {date}", "at {date}" : "dne {date}", + "Waiting for authorized users to approve this file" : "Čeká se až pověření uživatelé tento soubor schválí", + "Pending approval, you are authorized to approve" : "Čeká na schválení, máte pověření schválit", "This element was approved" : "Tento prvek byl schválen", "This element was rejected" : "Tento prvek byl odmítnut", "Pending approval" : "Čeká na schválení", @@ -101,47 +108,6 @@ OC.L10N.register( "You approved {name}" : "Schválili jste {name}", "Failed to approve {name}" : "Nepodařilo se schválit {name}", "You rejected {name}" : "Zamítli jste {name}", - "Failed to reject {name}" : "Nepodařilo se zamítnout {name}", - "Error getting OAuth access token" : "Chyba při získávání OAuth přístupového tokenu", - "Error during OAuth exchanges" : "Chyba při výměnách informací v rámci OAuth", - "Signature of %s" : "Podpis %s", - "Bad HTTP method" : "Nesprávná HTTP metoda", - "Bad credentials" : "Nesprávné přihlašovací údaje", - "OAuth access token refused" : "OAuth přístupový token odmítnut", - "Sign with DocuSign" : "Podepsat prostřednictvím DocuSign", - "Sign with LibreSign" : "Podepsat prostřednictvím LibreSign", - "Your approval was requested by {name}." : "{name} požádal o vaše schválení.", - "The related approval workflow is:" : "Související schvalovací postup je:", - "Request a signature via DocuSign" : "Požádat o podepsání prostřednictvím DocuSign", - "Users or email addresses" : "Uživatelé nebo e-mailová adresa", - "Nextcloud users or email addresses" : "Uživatelé v Nextcloud nebo e-mailové adresy", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Příjemci obdrží e-mail z DocuSign s odkazem na podepsání dokumentu. E-mailem budete informováni až bude dokument podepsán všemi příjemci.", - "Request signature" : "Požádat o podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Příjemci obdrží e-mail z DocuSign se žádostí o podepsání dokumentu", - "Failed to request signature with DocuSign" : "Nepodařilo se požádat o podepsání prostřednictvím DocuSign", - "DocuSign integration" : "Napojení na DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign je řešení pro elektronický podpis.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Pokud chcete používat DocuSign, vytvořte aplikaci ve svém DocuSign vývojářském účtu „Moje aplikace a klíče" a níže vložte identif. klienta (klíč k napojení) a tajemství.", - "Make sure you set this \"Redirect URI\":" : "Ověřte, že jste nastavili tento „URI identifikátor přesměrování":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "V případě, že je váš uživatel v DocuSign přiřazen k vícero účtům, bude použit ten výchozí.", - "Client ID (aka integration key)" : "Identif. klienta (neboli napojovací klíč)", - "Client ID of your application" : "Identif. klienta vaší aplikace", - "Application secret key" : "Tajný klíč aplikace", - "Secret key of your application" : "Tajný klíč vaší aplikace", - "Connect to DocuSign" : "Připojit se k DocuSign", - "Connected as {user} ({email})" : "Připojeni jako {user} ({email})", - "Disconnect from DocuSign" : "Odpojit od DocuSign", - "Successfully connected to DocuSign!" : "Úspěšně spojeno s DocuSign!", - "OAuth access token could not be obtained:" : "OAuth přístupový token se nepodařilo získat:", - "DocuSign admin options saved" : "Předvolby správy DocuSign uloženy", - "Failed to save DocuSign admin options" : "Nepodařilo se uložit předvolby správy DocuSign", - "Failed to save DocuSign OAuth state" : "Nepodařilo se uložit stav DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Obdržíte e-mail z DocuSign se žádostí o podepsání dokumentu", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Uživatel, který požádal o toto schválení nebyl nalezen – nezapomeňte poslat nebo nasdílet podepsaný dokument sami", - "Approval signature" : "Podpis schválení", - "{name} signature requested via LibreSign" : "{name} podpis vyžádán prostřednictvím LibreSign", - "Impossible to sign this document" : "Tento dokument není možné podepsat", - "Pending approval, you are authorized to approve." : "Čeká na schválení, máte pověření schválit.", - "Show approval details" : "Zobrazit podrobnosti schválení" + "Failed to reject {name}" : "Nepodařilo se zamítnout {name}" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n>= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/l10n/cs.json b/l10n/cs.json index 4690f8f9..866b6aea 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -28,6 +28,7 @@ "Please check my approval request" : "Podívejte se prosím na moji žádost o schválení", "Approval workflows" : "Schvalovací postupy", "Let users approve or reject files" : "Nechte uživatele schvalovat či zamítat soubory", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Schvalujte/zamítejte soubory na základě pracovních postupů určených správci.\n\n**Varování**: Napojení na DocuSign už není součástí této aplikace\na je možné ho nainstalovat prostřednictvím [této aplikace](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Každý postup definuje kdo (kteří uživatelé, skupiny či okruhy) mohou schvalovat soubory pro daný štítek čekající a který štítek schválené/čekající má tím být přiřazen.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Volitelně může být definován seznam uživatelů/skupin/okruhů, které mohou ručně požádat o schválení.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Aby bylo považováno za schválené je třeba, aby soubor/složka, která má přiřazeno vícero štítků čekající, byla schválena ve všech souvisejících postupech.", @@ -68,6 +69,7 @@ "Workflow title" : "Název postupu", "What is the purpose of this workflow?" : "Jaký je účel tohoto postupu?", "Request approval" : "Požádat o schválení", + "There is no approval workflow allowing you to request approval." : "Neexistuje žádný pracovní postup schvalování, který by vám umožnil zažádat o schválení.", "Approved" : "Schváleno", "Approved by" : "Schválil(a)", "Rejected" : "Zamítnuto", @@ -75,7 +77,10 @@ "Approval requested by" : "Schválení vyžádal(a)", "Approval requested" : "Vyžádáno schválení", "you" : "vy", + "The related approval workflow is: {ruleDescription}" : "Související schvalovací postup je: {ruleDescription}", + "This user requested your approval" : "Tento uživatel si vyžádal schválení od vás", "Your approval was requested." : "Bylo požádáno o vaše schválení.", + "Approval information" : "Informace o schválení", "No recommendations. Start typing." : "Žádná doporučení. Pište.", "No result." : "Bez výsledku.", "Who?" : "Kdo?", @@ -88,6 +93,8 @@ "Failed to get approval pending files" : "Nepodařilo se načíst soubory čekající na schválení", "by {name} at {date}" : "od {name} dne {date}", "at {date}" : "dne {date}", + "Waiting for authorized users to approve this file" : "Čeká se až pověření uživatelé tento soubor schválí", + "Pending approval, you are authorized to approve" : "Čeká na schválení, máte pověření schválit", "This element was approved" : "Tento prvek byl schválen", "This element was rejected" : "Tento prvek byl odmítnut", "Pending approval" : "Čeká na schválení", @@ -99,47 +106,6 @@ "You approved {name}" : "Schválili jste {name}", "Failed to approve {name}" : "Nepodařilo se schválit {name}", "You rejected {name}" : "Zamítli jste {name}", - "Failed to reject {name}" : "Nepodařilo se zamítnout {name}", - "Error getting OAuth access token" : "Chyba při získávání OAuth přístupového tokenu", - "Error during OAuth exchanges" : "Chyba při výměnách informací v rámci OAuth", - "Signature of %s" : "Podpis %s", - "Bad HTTP method" : "Nesprávná HTTP metoda", - "Bad credentials" : "Nesprávné přihlašovací údaje", - "OAuth access token refused" : "OAuth přístupový token odmítnut", - "Sign with DocuSign" : "Podepsat prostřednictvím DocuSign", - "Sign with LibreSign" : "Podepsat prostřednictvím LibreSign", - "Your approval was requested by {name}." : "{name} požádal o vaše schválení.", - "The related approval workflow is:" : "Související schvalovací postup je:", - "Request a signature via DocuSign" : "Požádat o podepsání prostřednictvím DocuSign", - "Users or email addresses" : "Uživatelé nebo e-mailová adresa", - "Nextcloud users or email addresses" : "Uživatelé v Nextcloud nebo e-mailové adresy", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Příjemci obdrží e-mail z DocuSign s odkazem na podepsání dokumentu. E-mailem budete informováni až bude dokument podepsán všemi příjemci.", - "Request signature" : "Požádat o podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Příjemci obdrží e-mail z DocuSign se žádostí o podepsání dokumentu", - "Failed to request signature with DocuSign" : "Nepodařilo se požádat o podepsání prostřednictvím DocuSign", - "DocuSign integration" : "Napojení na DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign je řešení pro elektronický podpis.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Pokud chcete používat DocuSign, vytvořte aplikaci ve svém DocuSign vývojářském účtu „Moje aplikace a klíče" a níže vložte identif. klienta (klíč k napojení) a tajemství.", - "Make sure you set this \"Redirect URI\":" : "Ověřte, že jste nastavili tento „URI identifikátor přesměrování":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "V případě, že je váš uživatel v DocuSign přiřazen k vícero účtům, bude použit ten výchozí.", - "Client ID (aka integration key)" : "Identif. klienta (neboli napojovací klíč)", - "Client ID of your application" : "Identif. klienta vaší aplikace", - "Application secret key" : "Tajný klíč aplikace", - "Secret key of your application" : "Tajný klíč vaší aplikace", - "Connect to DocuSign" : "Připojit se k DocuSign", - "Connected as {user} ({email})" : "Připojeni jako {user} ({email})", - "Disconnect from DocuSign" : "Odpojit od DocuSign", - "Successfully connected to DocuSign!" : "Úspěšně spojeno s DocuSign!", - "OAuth access token could not be obtained:" : "OAuth přístupový token se nepodařilo získat:", - "DocuSign admin options saved" : "Předvolby správy DocuSign uloženy", - "Failed to save DocuSign admin options" : "Nepodařilo se uložit předvolby správy DocuSign", - "Failed to save DocuSign OAuth state" : "Nepodařilo se uložit stav DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Obdržíte e-mail z DocuSign se žádostí o podepsání dokumentu", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Uživatel, který požádal o toto schválení nebyl nalezen – nezapomeňte poslat nebo nasdílet podepsaný dokument sami", - "Approval signature" : "Podpis schválení", - "{name} signature requested via LibreSign" : "{name} podpis vyžádán prostřednictvím LibreSign", - "Impossible to sign this document" : "Tento dokument není možné podepsat", - "Pending approval, you are authorized to approve." : "Čeká na schválení, máte pověření schválit.", - "Show approval details" : "Zobrazit podrobnosti schválení" + "Failed to reject {name}" : "Nepodařilo se zamítnout {name}" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n>= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js new file mode 100644 index 00000000..83943a64 --- /dev/null +++ b/l10n/cy_GB.js @@ -0,0 +1,11 @@ +OC.L10N.register( + "approval", + { + "Create" : "Creu", + "Cancel" : "Diddymu", + "Approve" : "Cymeradwyo", + "Reject" : "Gwrthod", + "Pending approval" : "Yn aros am gymeradwyaeth", + "Warning" : "Rhybudd" +}, +"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json new file mode 100644 index 00000000..10624820 --- /dev/null +++ b/l10n/cy_GB.json @@ -0,0 +1,9 @@ +{ "translations": { + "Create" : "Creu", + "Cancel" : "Diddymu", + "Approve" : "Cymeradwyo", + "Reject" : "Gwrthod", + "Pending approval" : "Yn aros am gymeradwyaeth", + "Warning" : "Rhybudd" +},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" +} \ No newline at end of file diff --git a/l10n/da.js b/l10n/da.js index 6715349f..e9685679 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -1,16 +1,113 @@ OC.L10N.register( "approval", { + "You approved {file}" : "Du godkendte {file}", + "{user} approved {file}" : "{user} godkendte {file}", + "You rejected {file}" : "Du afviste {file}", + "{user} rejected {file}" : "{user} afviste {file}", + "Your approval was requested on {file}" : "Din godkendelse blev efterspurgt på {file}", + "Your approval was requested on {file} by {who}" : "Din godkendelse blev efterspurgt på {file} af {who}", + "You requested approval on {file}" : "Du efterspurgte godkendelse på {file}", + "A guest user" : "En gæstebruger", + "Approval" : "Godkendelse", + "Approval events" : "Godkendelse begivenheder", + "Pending approvals" : "Afventende godkendelser", + "A file was approved" : "En fil blev godkendt", + "A file was rejected" : "En fil blev afvist", + "A directory was approved" : "En mappe blev godkendt", + "A directory was rejected" : "En mappe blev afvist", + "%1$s approved %2$s" : "%1$s godkendte %2$s", + "%1$s rejected %2$s" : "%1$s afviste %2$s", + "{user} approved {node}" : "{user} godkendte {node}", + "{user} rejected {node}" : "{user} afviste {node}", + "Your approval was requested" : "Din godkendelse blev efterspurgt", + "%2$s requested your approval for %1$s" : "%2$s efterspurgte din godkendelse af %1$s", + "{user} requested your approval for {node}" : "{user} efterspurgte din godkendelse af {node}", + "Rule does not exist" : "Regel eksisterer ikke", + "This element is not shared with any user who is authorized to approve it" : "Dette element er ikke delt med nogen brugere som er autoriseret til at godkende det", + "Approval has already been requested with this rule for this file" : "Godkendelse er allerede blevet efterspurgt med denne regel for denne fil", + "You are not authorized to request with this rule" : "Du er ikke autoriseret til at efterspørge med denne regel", + "Please check my approval request" : "Kontroller venligst min godkendelsesforespørgsel", + "Approval workflows" : "Godkendelsesarbejdsgange", + "Let users approve or reject files" : "Lad brugere godkende eller afvise filer", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Godkend/afvis filer baseret på arbejdsgange, defineret af admins.\n\n**Advarsel**: DocuSign integrationen er ikke længere en del af denne app\nog kan installeres med [this app](https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Hver arbejdsgang definerer hvem (hvilke brugere, grupper eller cirkler) som kan godkende filer for et givent afventende tag og hvilket godkendt/afvist tag der så skal tildeles.", + "A list of users/groups/circles who can manually request approval can be optionally defined." : "En liste med brugere/grupper/cirkler som manuelt kan efterspørge godkendelse, kan eventuelt defineres.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "For at blive taget i betragtning som godkendt, så skal en fil/mappe der har multiple afventende tags tilknyttet, godkendes af alle arbejdsgange der er involveret.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "Du kan sammenkæde godkendelsesarbejdsgange ved at anvende et afventende tag som godkendt/afvist tag i en anden arbejdsgang.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "Alle tags skal være forskellige i en arbejdsgang. Et afventende tag kan kun anvendes i én arbejdsgang.", + "Delete workflow" : "Slet arbejdsgang", + "No workflow yet" : "Endnu ingen arbejdsgang", + "New workflow" : "Ny arbejdsgang", + "Create new hidden tag" : "Opret et nyt skjult tag", + "New tag name" : "Navn på nyt tag", "Create" : "Opret", "Cancel" : "Annuller", + "All fields are required" : "Alle felter er krævede", + "All tags must be different" : "Alle tags skal være forskellige", + "Pending tag is already used in another workflow" : "Afventende tag er allerede anvendt i en anden arbejdsgang", + "Create workflow" : "Opret arbejdsgang", + "Failed to get approval workflows" : "Kunne ikke få godkendelsesarbejdsgange", + "Approval workflow saved" : "Godkendelsesarbejdsgang gemt", + "Failed to save approval workflow" : "Kunne ikke gemme godkendelsesarbejdsgang", + "New approval workflow created" : "Ny godkendelsesarbejdsgang oprettet", + "Failed to create approval workflow" : "Kunne ikke oprette godkendelsesarbejdsgang", + "Approval workflow deleted" : "Godkendelsesarbejdsgang slettet", + "Failed to delete approval workflow" : "Kunne ikke slette godkendelsesarbejdsgang", + "Tag \"{name}\" created" : "Tagget \"{name}\" oprettet", + "Failed to create tag \"{name}\"" : "Kunne ikke oprette tag \"{name}\"", "Approve" : "Godkend", "Reject" : "Afvis", + "Select pending tag" : "Vælg afventende tag", + "Who can request approval?" : "Hvem kan efterspørge godkendelse?", + "Who can approve?" : "Hvem kan godkende?", + "Select approved tag" : "Vælg godkendt tag", + "Select rejected tag" : "Vælg afvist tag", + "Who can request approval" : "Hvem kan efterspørge godkendelse", + "Who can approve" : "Hvem kan godkende", + "Tag to act on" : "Tag der skal handles på", + "Tag set on approval" : "Tag sat til godkendelse", + "Tag set on rejection" : "Tag sat til afvisning", + "Workflow title" : "Arbejdsgang titel", + "What is the purpose of this workflow?" : "Hvad er meningen med denne arbejdsgang?", + "Request approval" : "Efterspørg godkendelse", + "There is no approval workflow allowing you to request approval." : "Der er ingen godkendelsesarbejdsgang til tillader dig at efterspørge godkendelse.", "Approved" : "Godkendt", "Approved by" : "Godkendt af", + "Rejected" : "Afvist", + "Rejected by" : "Afvist af", + "Approval requested by" : "Godkendelse efterspurgt af", + "Approval requested" : "Godkendelse efterspurgt", "you" : "dig", + "The related approval workflow is: {ruleDescription}" : "Den relaterede godkendelsesarbejdsgang er: {ruleDescription}", + "This user requested your approval" : "Denne bruger efterspurgte din godkendelse", + "Your approval was requested." : "Din godkendelse blev efterspurgt.", + "Approval information" : "Godkendelsesinformation", "No recommendations. Start typing." : "Ingen anbefalinger. Begynd at skrive.", "No result." : "Intet resultat", + "Who?" : "Hvem?", + "Impossible to get user/group/circle list" : "Umuligt at hente bruger/gruppe/cirkel liste", + "Select approval workflow" : "Vælg godkendelsesarbejdsgang", + "File will be automatically shared with everybody allowed to approve." : "Filen vil automatisk blive delt med alle der har tilladelse til at godkende.", + "Can be approved by" : "Kan godkendes af", + "More files to approve" : "Flere filer til godkendelse", + "No files to approve!" : "Ingen filer til godkendelse!", + "Failed to get approval pending files" : "Kunne ikke hente filer til afventende godkendelse", + "by {name} at {date}" : "af {name} den {date}", + "at {date}" : "den {date}", + "Waiting for authorized users to approve this file" : "Venter på autoriserede brugere til at godkende denne fil", + "Pending approval, you are authorized to approve" : "Afventende godkendelse. Du er autoriseret til at godkende", + "This element was approved" : "Dette element blev godkendt", + "This element was rejected" : "Dette element blev afvist", "Pending approval" : "Afventer godkendelse", - "Warning" : "Advarsler" + "Waiting for your approval" : "Afventer din godkendelse", + "Failed to check approval status" : "Kunne ikke kontrollere godkendelsesstatus", + "Approval requested for {name}" : "Godkendelse efterspurgt for {name}", + "Warning" : "Advarsler", + "Failed to request approval for {name}" : "Kunne ikke efterspørge godkendelse for {name}", + "You approved {name}" : "Du godkendte {name}", + "Failed to approve {name}" : "Kunne ikke godkende {name}", + "You rejected {name}" : "Du afviste {name}", + "Failed to reject {name}" : "Kunne ikke afvise {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index b01413d2..45ce4b0d 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,14 +1,111 @@ { "translations": { + "You approved {file}" : "Du godkendte {file}", + "{user} approved {file}" : "{user} godkendte {file}", + "You rejected {file}" : "Du afviste {file}", + "{user} rejected {file}" : "{user} afviste {file}", + "Your approval was requested on {file}" : "Din godkendelse blev efterspurgt på {file}", + "Your approval was requested on {file} by {who}" : "Din godkendelse blev efterspurgt på {file} af {who}", + "You requested approval on {file}" : "Du efterspurgte godkendelse på {file}", + "A guest user" : "En gæstebruger", + "Approval" : "Godkendelse", + "Approval events" : "Godkendelse begivenheder", + "Pending approvals" : "Afventende godkendelser", + "A file was approved" : "En fil blev godkendt", + "A file was rejected" : "En fil blev afvist", + "A directory was approved" : "En mappe blev godkendt", + "A directory was rejected" : "En mappe blev afvist", + "%1$s approved %2$s" : "%1$s godkendte %2$s", + "%1$s rejected %2$s" : "%1$s afviste %2$s", + "{user} approved {node}" : "{user} godkendte {node}", + "{user} rejected {node}" : "{user} afviste {node}", + "Your approval was requested" : "Din godkendelse blev efterspurgt", + "%2$s requested your approval for %1$s" : "%2$s efterspurgte din godkendelse af %1$s", + "{user} requested your approval for {node}" : "{user} efterspurgte din godkendelse af {node}", + "Rule does not exist" : "Regel eksisterer ikke", + "This element is not shared with any user who is authorized to approve it" : "Dette element er ikke delt med nogen brugere som er autoriseret til at godkende det", + "Approval has already been requested with this rule for this file" : "Godkendelse er allerede blevet efterspurgt med denne regel for denne fil", + "You are not authorized to request with this rule" : "Du er ikke autoriseret til at efterspørge med denne regel", + "Please check my approval request" : "Kontroller venligst min godkendelsesforespørgsel", + "Approval workflows" : "Godkendelsesarbejdsgange", + "Let users approve or reject files" : "Lad brugere godkende eller afvise filer", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Godkend/afvis filer baseret på arbejdsgange, defineret af admins.\n\n**Advarsel**: DocuSign integrationen er ikke længere en del af denne app\nog kan installeres med [this app](https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Hver arbejdsgang definerer hvem (hvilke brugere, grupper eller cirkler) som kan godkende filer for et givent afventende tag og hvilket godkendt/afvist tag der så skal tildeles.", + "A list of users/groups/circles who can manually request approval can be optionally defined." : "En liste med brugere/grupper/cirkler som manuelt kan efterspørge godkendelse, kan eventuelt defineres.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "For at blive taget i betragtning som godkendt, så skal en fil/mappe der har multiple afventende tags tilknyttet, godkendes af alle arbejdsgange der er involveret.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "Du kan sammenkæde godkendelsesarbejdsgange ved at anvende et afventende tag som godkendt/afvist tag i en anden arbejdsgang.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "Alle tags skal være forskellige i en arbejdsgang. Et afventende tag kan kun anvendes i én arbejdsgang.", + "Delete workflow" : "Slet arbejdsgang", + "No workflow yet" : "Endnu ingen arbejdsgang", + "New workflow" : "Ny arbejdsgang", + "Create new hidden tag" : "Opret et nyt skjult tag", + "New tag name" : "Navn på nyt tag", "Create" : "Opret", "Cancel" : "Annuller", + "All fields are required" : "Alle felter er krævede", + "All tags must be different" : "Alle tags skal være forskellige", + "Pending tag is already used in another workflow" : "Afventende tag er allerede anvendt i en anden arbejdsgang", + "Create workflow" : "Opret arbejdsgang", + "Failed to get approval workflows" : "Kunne ikke få godkendelsesarbejdsgange", + "Approval workflow saved" : "Godkendelsesarbejdsgang gemt", + "Failed to save approval workflow" : "Kunne ikke gemme godkendelsesarbejdsgang", + "New approval workflow created" : "Ny godkendelsesarbejdsgang oprettet", + "Failed to create approval workflow" : "Kunne ikke oprette godkendelsesarbejdsgang", + "Approval workflow deleted" : "Godkendelsesarbejdsgang slettet", + "Failed to delete approval workflow" : "Kunne ikke slette godkendelsesarbejdsgang", + "Tag \"{name}\" created" : "Tagget \"{name}\" oprettet", + "Failed to create tag \"{name}\"" : "Kunne ikke oprette tag \"{name}\"", "Approve" : "Godkend", "Reject" : "Afvis", + "Select pending tag" : "Vælg afventende tag", + "Who can request approval?" : "Hvem kan efterspørge godkendelse?", + "Who can approve?" : "Hvem kan godkende?", + "Select approved tag" : "Vælg godkendt tag", + "Select rejected tag" : "Vælg afvist tag", + "Who can request approval" : "Hvem kan efterspørge godkendelse", + "Who can approve" : "Hvem kan godkende", + "Tag to act on" : "Tag der skal handles på", + "Tag set on approval" : "Tag sat til godkendelse", + "Tag set on rejection" : "Tag sat til afvisning", + "Workflow title" : "Arbejdsgang titel", + "What is the purpose of this workflow?" : "Hvad er meningen med denne arbejdsgang?", + "Request approval" : "Efterspørg godkendelse", + "There is no approval workflow allowing you to request approval." : "Der er ingen godkendelsesarbejdsgang til tillader dig at efterspørge godkendelse.", "Approved" : "Godkendt", "Approved by" : "Godkendt af", + "Rejected" : "Afvist", + "Rejected by" : "Afvist af", + "Approval requested by" : "Godkendelse efterspurgt af", + "Approval requested" : "Godkendelse efterspurgt", "you" : "dig", + "The related approval workflow is: {ruleDescription}" : "Den relaterede godkendelsesarbejdsgang er: {ruleDescription}", + "This user requested your approval" : "Denne bruger efterspurgte din godkendelse", + "Your approval was requested." : "Din godkendelse blev efterspurgt.", + "Approval information" : "Godkendelsesinformation", "No recommendations. Start typing." : "Ingen anbefalinger. Begynd at skrive.", "No result." : "Intet resultat", + "Who?" : "Hvem?", + "Impossible to get user/group/circle list" : "Umuligt at hente bruger/gruppe/cirkel liste", + "Select approval workflow" : "Vælg godkendelsesarbejdsgang", + "File will be automatically shared with everybody allowed to approve." : "Filen vil automatisk blive delt med alle der har tilladelse til at godkende.", + "Can be approved by" : "Kan godkendes af", + "More files to approve" : "Flere filer til godkendelse", + "No files to approve!" : "Ingen filer til godkendelse!", + "Failed to get approval pending files" : "Kunne ikke hente filer til afventende godkendelse", + "by {name} at {date}" : "af {name} den {date}", + "at {date}" : "den {date}", + "Waiting for authorized users to approve this file" : "Venter på autoriserede brugere til at godkende denne fil", + "Pending approval, you are authorized to approve" : "Afventende godkendelse. Du er autoriseret til at godkende", + "This element was approved" : "Dette element blev godkendt", + "This element was rejected" : "Dette element blev afvist", "Pending approval" : "Afventer godkendelse", - "Warning" : "Advarsler" + "Waiting for your approval" : "Afventer din godkendelse", + "Failed to check approval status" : "Kunne ikke kontrollere godkendelsesstatus", + "Approval requested for {name}" : "Godkendelse efterspurgt for {name}", + "Warning" : "Advarsler", + "Failed to request approval for {name}" : "Kunne ikke efterspørge godkendelse for {name}", + "You approved {name}" : "Du godkendte {name}", + "Failed to approve {name}" : "Kunne ikke godkende {name}", + "You rejected {name}" : "Du afviste {name}", + "Failed to reject {name}" : "Kunne ikke afvise {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/de.js b/l10n/de.js index 2b440241..631ae0cc 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "Bitte genehmige meine Anfrage", "Approval workflows" : "Arbeitsabläufe für Genehmigungen", "Let users approve or reject files" : "Lass Dateien von Benutzern genehmigen oder ablehnen", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Prüfen/Ablehnen von Dateien, basierend auf von der Administration definierten Workflows.\n\n**Warnung**: Die DocuSign-Integration ist nicht mehr Teil dieser App\nund kann mit [dieser App](https://apps.nextcloud.com/apps/integration_docusign) installiert werden.", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Jeder Arbeitsablauf definiert, wer (welche Benutzer, Gruppen oder Kreise) Dateien für ein bestimmtes ausstehendes Schlagwort genehmigen kann und welches genehmigte/abgelehnte Schlagwort dann zugewiesen werden soll.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Eine Liste von Benutzern/Gruppen/Kreisen die manuell Genehmigungen anfordern können, kann optional definiert werden.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Um als genehmigt zu gelten, muss eine Datei/ein Verzeichnis mit mehreren zugewiesenen ausstehenden Schlagworten von allen beteiligten Arbeitsabläufen genehmigt werden.", @@ -70,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Workflow Titel", "What is the purpose of this workflow?" : "Was ist der Zweck dieses Workflows?", "Request approval" : "Genehmigung anfragen", + "There is no approval workflow allowing you to request approval." : "Es gibt keinen Genehmigungsworkflow, mit dem du eine Genehmigung anfordern kannst.", "Approved" : "Zugestimmt", "Approved by" : "Zugestimmt von", "Rejected" : "Abgelehnt", @@ -77,7 +79,10 @@ OC.L10N.register( "Approval requested by" : "Genehmigung angefragt von", "Approval requested" : "Angeforderte Genehmigungen", "you" : "Du", + "The related approval workflow is: {ruleDescription}" : "Der zugehörige Überprüfungsworkflow ist: {ruleDescription}", + "This user requested your approval" : "Dieser Benutzer hat um deine Zustimmung gebeten", "Your approval was requested." : "Um deine Genehmigung wurde gebeten.", + "Approval information" : "Genehmigungsinformationen", "No recommendations. Start typing." : "Keine Empfehlungen. Beginne mit der Eingabe.", "No result." : "Kein Ergebnis.", "Who?" : "Wer?", @@ -90,7 +95,12 @@ OC.L10N.register( "Failed to get approval pending files" : "Fehler beim Aufrufen ausstehender Genehmigungen", "by {name} at {date}" : "von {name} am {date}", "at {date}" : "am {date}", + "Waiting for authorized users to approve this file" : "Warte auf die Genehmigung dieser Datei durch einen berechtigten Benutzer", + "Pending approval, you are authorized to approve" : "Überprüfung ausstehend. Du bist berechtigt, diese Datei zu genehmigen", + "This element was approved" : "Dieses Element wurde genehmigt.", + "This element was rejected" : "Dieses Element wurde zurückgewiesen", "Pending approval" : "Ausstehende Genehmigung", + "Waiting for your approval" : "Warte auf deine Überprüfung", "Failed to check approval status" : "Fehler beim Überprüfen des Genehmigungsstatus", "Approval requested for {name}" : "Genehmigung für {name} angefragt", "Warning" : "Warnung", @@ -98,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Du hast {name} genehmigt", "Failed to approve {name}" : "Fehler beim Genehmigen von {name}", "You rejected {name}" : "Du hast {name} abgelehnt", - "Failed to reject {name}" : "Fehler beim Ablehnen von {name}", - "Error getting OAuth access token" : "Fehler beim Abrufen des OAuth-Zugriffstokens", - "Error during OAuth exchanges" : "Fehler beim OAuth-Austausch", - "Signature of %s" : "Signatur von %s", - "Bad HTTP method" : "Ungültige HTTP-Methode", - "Bad credentials" : "Falsche Anmeldeinformationen", - "OAuth access token refused" : "OAuth-Zugriffstoken abgelehnt", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Dateien basierend auf von der Administration definierten Workflows genehmigen oder ablehnen.\n\n:Warnung: **Diese App wird ab Nextcloud 28 nicht mehr unterstützt.\nWenn du Nextcloud-Kunde bist und auf diese App setzt,\nwarte bitte mit der Aktualisierung auf Version 28 und eröffne ein Support-Ticket, damit wir eine Lösung für deinen Anwendungsfall finden können.**", - "Sign with DocuSign" : "Mit DocuSign Signieren", - "Sign with LibreSign" : "Mit LibreSign Signieren", - "Your approval was requested by {name}." : "{name} hat dich um Genehmigung gebeten.", - "The related approval workflow is:" : "Der zugehörige Arbeitsablauf für Genehmigungen ist:", - "Request a signature via DocuSign" : "Eine Signatur über DocuSign anfordern", - "Users or email addresses" : "Benutzernamen oder E-Mail-Adressen", - "Nextcloud users or email addresses" : "Nextcloud Benutzer oder E-Mail-Adressen", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Die Empfänger erhalten von DocuSign eine E-Mail mit einem Link zum Unterschreiben des Dokuments. Du wirst per E-Mail benachrichtigt, wenn das Dokument von allen Empfängern unterschrieben wurde.", - "Request signature" : "Signatur anfordern", - "Recipients will receive an email from DocuSign to sign the document" : "Die Empfänger erhalten eine E-Mail von DocuSign, um das Dokument zu signieren", - "Failed to request signature with DocuSign" : "Fehler beim Anfordern der Signatur mit DocuSign", - "DocuSign integration" : "DocuSign-Einbindung", - "DocuSign is an electronic signature solution." : "DocuSign ist eine elektronische Signaturlösung.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Wenn du DocuSign verwenden möchtest, erstelle in den Einstellungen deines DocuSign-Entwicklerkontos \"Meine Apps & Schlüssel\" eine Anwendung und gebe die Client-ID (Integrationsschlüssel) und das Geheimnis unten ein.", - "Make sure you set this \"Redirect URI\":" : "Stelle sicher, dass diese \"Weiterleitungs-URI\" gesetzt ist:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Wenn dein DocuSign-Benutzer mit mehreren DocuSign-Konten verknüpft ist, wird das Standardkonto verwendet.", - "Client ID (aka integration key)" : "Client-ID (auch bekannt als Integrationsschlüssel)", - "Client ID of your application" : "Client-ID deiner Anwendung", - "Application secret key" : "Geheimer Anwendungsschlüssel", - "Secret key of your application" : "Geheimer Schlüssel deiner Anwendung", - "Connect to DocuSign" : "Mit DocuSign verbinden", - "Connected as {user} ({email})" : "Verbunden als {user} ({email})", - "Disconnect from DocuSign" : "Von DocuSign trennen", - "Successfully connected to DocuSign!" : "Erfolgreich mit DocuSign verbunden!", - "OAuth access token could not be obtained:" : "OAuth-Zugriffstoken konnte nicht abgerufen werden:", - "DocuSign admin options saved" : "Verwaltungseinstellungen von DocuSign gespeichert", - "Failed to save DocuSign admin options" : "Fehler beim Speichern der DocuSign-Administratoroptionen", - "Failed to save DocuSign OAuth state" : "Fehler beim Speichern des DocuSign-OAuth-Status", - "You will receive an email from DocuSign to sign the document" : "Du erhältst eine E-Mail von DocuSign, um das Dokument zu unterschreiben", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Der Benutzer, der diese Genehmigung angefordert hat, wurde nicht gefunden. Denk daran, das signierte Dokument selbst zu senden oder zu teilen", - "Approval signature" : "Genehmigungs-Signatur", - "{name} signature requested via LibreSign" : "{name}-Signatur über LibreSign angefordert!", - "Impossible to sign this document" : "Dieses Dokument kann nicht signiert werden", - "Pending approval, you are authorized to approve." : "Offene Genehmigung, du bist zur Genehmigung berechtigt.", - "Show approval details" : "Genehmigungsdetails anzeigen" + "Failed to reject {name}" : "Fehler beim Ablehnen von {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de.json b/l10n/de.json index 0ecef93a..3aeb92ec 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -28,6 +28,7 @@ "Please check my approval request" : "Bitte genehmige meine Anfrage", "Approval workflows" : "Arbeitsabläufe für Genehmigungen", "Let users approve or reject files" : "Lass Dateien von Benutzern genehmigen oder ablehnen", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Prüfen/Ablehnen von Dateien, basierend auf von der Administration definierten Workflows.\n\n**Warnung**: Die DocuSign-Integration ist nicht mehr Teil dieser App\nund kann mit [dieser App](https://apps.nextcloud.com/apps/integration_docusign) installiert werden.", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Jeder Arbeitsablauf definiert, wer (welche Benutzer, Gruppen oder Kreise) Dateien für ein bestimmtes ausstehendes Schlagwort genehmigen kann und welches genehmigte/abgelehnte Schlagwort dann zugewiesen werden soll.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Eine Liste von Benutzern/Gruppen/Kreisen die manuell Genehmigungen anfordern können, kann optional definiert werden.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Um als genehmigt zu gelten, muss eine Datei/ein Verzeichnis mit mehreren zugewiesenen ausstehenden Schlagworten von allen beteiligten Arbeitsabläufen genehmigt werden.", @@ -68,6 +69,7 @@ "Workflow title" : "Workflow Titel", "What is the purpose of this workflow?" : "Was ist der Zweck dieses Workflows?", "Request approval" : "Genehmigung anfragen", + "There is no approval workflow allowing you to request approval." : "Es gibt keinen Genehmigungsworkflow, mit dem du eine Genehmigung anfordern kannst.", "Approved" : "Zugestimmt", "Approved by" : "Zugestimmt von", "Rejected" : "Abgelehnt", @@ -75,7 +77,10 @@ "Approval requested by" : "Genehmigung angefragt von", "Approval requested" : "Angeforderte Genehmigungen", "you" : "Du", + "The related approval workflow is: {ruleDescription}" : "Der zugehörige Überprüfungsworkflow ist: {ruleDescription}", + "This user requested your approval" : "Dieser Benutzer hat um deine Zustimmung gebeten", "Your approval was requested." : "Um deine Genehmigung wurde gebeten.", + "Approval information" : "Genehmigungsinformationen", "No recommendations. Start typing." : "Keine Empfehlungen. Beginne mit der Eingabe.", "No result." : "Kein Ergebnis.", "Who?" : "Wer?", @@ -88,7 +93,12 @@ "Failed to get approval pending files" : "Fehler beim Aufrufen ausstehender Genehmigungen", "by {name} at {date}" : "von {name} am {date}", "at {date}" : "am {date}", + "Waiting for authorized users to approve this file" : "Warte auf die Genehmigung dieser Datei durch einen berechtigten Benutzer", + "Pending approval, you are authorized to approve" : "Überprüfung ausstehend. Du bist berechtigt, diese Datei zu genehmigen", + "This element was approved" : "Dieses Element wurde genehmigt.", + "This element was rejected" : "Dieses Element wurde zurückgewiesen", "Pending approval" : "Ausstehende Genehmigung", + "Waiting for your approval" : "Warte auf deine Überprüfung", "Failed to check approval status" : "Fehler beim Überprüfen des Genehmigungsstatus", "Approval requested for {name}" : "Genehmigung für {name} angefragt", "Warning" : "Warnung", @@ -96,48 +106,6 @@ "You approved {name}" : "Du hast {name} genehmigt", "Failed to approve {name}" : "Fehler beim Genehmigen von {name}", "You rejected {name}" : "Du hast {name} abgelehnt", - "Failed to reject {name}" : "Fehler beim Ablehnen von {name}", - "Error getting OAuth access token" : "Fehler beim Abrufen des OAuth-Zugriffstokens", - "Error during OAuth exchanges" : "Fehler beim OAuth-Austausch", - "Signature of %s" : "Signatur von %s", - "Bad HTTP method" : "Ungültige HTTP-Methode", - "Bad credentials" : "Falsche Anmeldeinformationen", - "OAuth access token refused" : "OAuth-Zugriffstoken abgelehnt", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Dateien basierend auf von der Administration definierten Workflows genehmigen oder ablehnen.\n\n:Warnung: **Diese App wird ab Nextcloud 28 nicht mehr unterstützt.\nWenn du Nextcloud-Kunde bist und auf diese App setzt,\nwarte bitte mit der Aktualisierung auf Version 28 und eröffne ein Support-Ticket, damit wir eine Lösung für deinen Anwendungsfall finden können.**", - "Sign with DocuSign" : "Mit DocuSign Signieren", - "Sign with LibreSign" : "Mit LibreSign Signieren", - "Your approval was requested by {name}." : "{name} hat dich um Genehmigung gebeten.", - "The related approval workflow is:" : "Der zugehörige Arbeitsablauf für Genehmigungen ist:", - "Request a signature via DocuSign" : "Eine Signatur über DocuSign anfordern", - "Users or email addresses" : "Benutzernamen oder E-Mail-Adressen", - "Nextcloud users or email addresses" : "Nextcloud Benutzer oder E-Mail-Adressen", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Die Empfänger erhalten von DocuSign eine E-Mail mit einem Link zum Unterschreiben des Dokuments. Du wirst per E-Mail benachrichtigt, wenn das Dokument von allen Empfängern unterschrieben wurde.", - "Request signature" : "Signatur anfordern", - "Recipients will receive an email from DocuSign to sign the document" : "Die Empfänger erhalten eine E-Mail von DocuSign, um das Dokument zu signieren", - "Failed to request signature with DocuSign" : "Fehler beim Anfordern der Signatur mit DocuSign", - "DocuSign integration" : "DocuSign-Einbindung", - "DocuSign is an electronic signature solution." : "DocuSign ist eine elektronische Signaturlösung.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Wenn du DocuSign verwenden möchtest, erstelle in den Einstellungen deines DocuSign-Entwicklerkontos \"Meine Apps & Schlüssel\" eine Anwendung und gebe die Client-ID (Integrationsschlüssel) und das Geheimnis unten ein.", - "Make sure you set this \"Redirect URI\":" : "Stelle sicher, dass diese \"Weiterleitungs-URI\" gesetzt ist:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Wenn dein DocuSign-Benutzer mit mehreren DocuSign-Konten verknüpft ist, wird das Standardkonto verwendet.", - "Client ID (aka integration key)" : "Client-ID (auch bekannt als Integrationsschlüssel)", - "Client ID of your application" : "Client-ID deiner Anwendung", - "Application secret key" : "Geheimer Anwendungsschlüssel", - "Secret key of your application" : "Geheimer Schlüssel deiner Anwendung", - "Connect to DocuSign" : "Mit DocuSign verbinden", - "Connected as {user} ({email})" : "Verbunden als {user} ({email})", - "Disconnect from DocuSign" : "Von DocuSign trennen", - "Successfully connected to DocuSign!" : "Erfolgreich mit DocuSign verbunden!", - "OAuth access token could not be obtained:" : "OAuth-Zugriffstoken konnte nicht abgerufen werden:", - "DocuSign admin options saved" : "Verwaltungseinstellungen von DocuSign gespeichert", - "Failed to save DocuSign admin options" : "Fehler beim Speichern der DocuSign-Administratoroptionen", - "Failed to save DocuSign OAuth state" : "Fehler beim Speichern des DocuSign-OAuth-Status", - "You will receive an email from DocuSign to sign the document" : "Du erhältst eine E-Mail von DocuSign, um das Dokument zu unterschreiben", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Der Benutzer, der diese Genehmigung angefordert hat, wurde nicht gefunden. Denk daran, das signierte Dokument selbst zu senden oder zu teilen", - "Approval signature" : "Genehmigungs-Signatur", - "{name} signature requested via LibreSign" : "{name}-Signatur über LibreSign angefordert!", - "Impossible to sign this document" : "Dieses Dokument kann nicht signiert werden", - "Pending approval, you are authorized to approve." : "Offene Genehmigung, du bist zur Genehmigung berechtigt.", - "Show approval details" : "Genehmigungsdetails anzeigen" + "Failed to reject {name}" : "Fehler beim Ablehnen von {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 69d3c299..403a4919 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Titel des Arbeitsablaufs", "What is the purpose of this workflow?" : "Was ist der Zweck dieses Arbeitsablaufs?", "Request approval" : "Genehmigung anfordern", + "There is no approval workflow allowing you to request approval." : "Es gibt keinen Genehmigungsworkflow, mit dem Sie eine Genehmigung anfordern können.", "Approved" : "Genehmigt", "Approved by" : "Genehmigt durch", "Rejected" : "Abgelehnt", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "Der zugehörige Überprüfungsworkflow ist: {ruleDescription}", "This user requested your approval" : "Dieser Benutzer hat um Ihre Zustimmung gebeten", "Your approval was requested." : "Ihre Genehmigung wurde angefordert.", + "Approval information" : "Genehmigungsinformationen", "No recommendations. Start typing." : "Keine Empfehlungen. Beginnen Sie mit der Eingabe.", "No result." : "Kein Ergebnis.", "Who?" : "Wer?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Sie haben {name} genehmigt", "Failed to approve {name}" : "Fehler beim Genehmigen von {name}", "You rejected {name}" : "Sie haben {name} abgelehnt", - "Failed to reject {name}" : "Fehler beim Ablehnen von {name}", - "Error getting OAuth access token" : "Fehler beim Abrufen des OAuth-Zugriffstokens", - "Error during OAuth exchanges" : "Fehler beim OAuth-Austausch", - "Signature of %s" : "Signatur von %s", - "Bad HTTP method" : "Ungültige HTTP-Methode", - "Bad credentials" : "Falsche Anmeldeinformationen", - "OAuth access token refused" : "OAuth-Zugriffstoken abgelehnt", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Dateien basierend auf von der Administration definierten Workflows genehmigen oder ablehnen.\n\n:Warnung: **Diese App wird ab Nextcloud 28 nicht mehr unterstützt.\nWenn Sie Nextcloud-Kunde sind und auf diese App setzen,\nwarten Sie bitte mit der Aktualisierung auf Version 28 und eröffnen Sie ein Support-Ticket, damit wir eine Lösung für Ihren Anwendungsfall finden können.**", - "Sign with DocuSign" : "Mit DocuSign signieren", - "Sign with LibreSign" : "Mit LibreSign signieren", - "Your approval was requested by {name}." : "Ihre Genehmigung wurde von {name} angefordert.", - "The related approval workflow is:" : "Der zugehörige Arbeitsablauf für Genehmigungen ist:", - "Request a signature via DocuSign" : "Signatur über DocuSign anfordern", - "Users or email addresses" : "Benutzer oder E-Mail-Adressen", - "Nextcloud users or email addresses" : "Nextcloud-Benutzer oder E-Mail-Adressen", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Die Empfänger erhalten von DocuSign eine E-Mail mit einem Link zum Unterschreiben des Dokuments. Sie werden per E-Mail benachrichtigt, wenn das Dokument von allen Empfängern unterschrieben wurde.", - "Request signature" : "Signatur anfordern", - "Recipients will receive an email from DocuSign to sign the document" : "Die Empfänger erhalten eine E-Mail von DocuSign, um das Dokument zu signieren", - "Failed to request signature with DocuSign" : "Fehler beim Anfordern einer Signatur mit DocuSign", - "DocuSign integration" : "DocuSign-Einbindung", - "DocuSign is an electronic signature solution." : "DocuSign ist eine elektronische Signaturlösung.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Wenn Sie DocuSign verwenden möchten, erstellen Sie in den Einstellungen Ihres DocuSign-Entwicklerkontos \"Meine Apps & Schlüssel\" eine Anwendung und geben Sie die Client-ID (Integrationsschlüssel) und das Geheimnis unten ein.", - "Make sure you set this \"Redirect URI\":" : "Stellen Sie sicher, dass diese \"Weiterleitungs-URI\" gesetzt ist:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Wenn Ihr DocuSign-Benutzer mit mehreren DocuSign-Konten verknüpft ist, wird das Standardkonto verwendet.", - "Client ID (aka integration key)" : "Client-ID (auch bekannt als Integrationsschlüssel)", - "Client ID of your application" : "Client-ID Ihrer Anwendung", - "Application secret key" : "Geheimer Anwendungsschlüssel", - "Secret key of your application" : "Geheimer Schlüssel Ihrer Anwendung", - "Connect to DocuSign" : "Mit DocuSign verbinden", - "Connected as {user} ({email})" : "Verbunden als {user} ({email})", - "Disconnect from DocuSign" : "Von DocuSign trennen", - "Successfully connected to DocuSign!" : "Erfolgreich mit DocuSign verbunden!", - "OAuth access token could not be obtained:" : "OAuth-Zugriffstoken konnte nicht abgerufen werden:", - "DocuSign admin options saved" : "DocuSign Administrationseinstellungen gespeichert", - "Failed to save DocuSign admin options" : "Fehler beim Speichern der DocuSign-Administrationseinstellungen", - "Failed to save DocuSign OAuth state" : "Fehler beim Speichern des DocuSign-OAuth-Status", - "You will receive an email from DocuSign to sign the document" : "Sie erhalten eine E-Mail von DocuSign, um das Dokument zu signieren", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Der Benutzer, der diese Genehmigung angefordert hat, wurde nicht gefunden. Denken Sie daran, das signierte Dokument selbst zu senden oder zu teilen", - "Approval signature" : "Genehmigungssignatur", - "{name} signature requested via LibreSign" : "{name}-Signatur über LibreSign angefordert!", - "Impossible to sign this document" : "Dieses Dokument kann nicht signiert werden", - "Pending approval, you are authorized to approve." : "Offene Genehmigung, Sie sind zur Genehmigung berechtigt.", - "Show approval details" : "Genehmigungsdetails anzeigen" + "Failed to reject {name}" : "Fehler beim Ablehnen von {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 35738303..56bad959 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -69,6 +69,7 @@ "Workflow title" : "Titel des Arbeitsablaufs", "What is the purpose of this workflow?" : "Was ist der Zweck dieses Arbeitsablaufs?", "Request approval" : "Genehmigung anfordern", + "There is no approval workflow allowing you to request approval." : "Es gibt keinen Genehmigungsworkflow, mit dem Sie eine Genehmigung anfordern können.", "Approved" : "Genehmigt", "Approved by" : "Genehmigt durch", "Rejected" : "Abgelehnt", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "Der zugehörige Überprüfungsworkflow ist: {ruleDescription}", "This user requested your approval" : "Dieser Benutzer hat um Ihre Zustimmung gebeten", "Your approval was requested." : "Ihre Genehmigung wurde angefordert.", + "Approval information" : "Genehmigungsinformationen", "No recommendations. Start typing." : "Keine Empfehlungen. Beginnen Sie mit der Eingabe.", "No result." : "Kein Ergebnis.", "Who?" : "Wer?", @@ -104,48 +106,6 @@ "You approved {name}" : "Sie haben {name} genehmigt", "Failed to approve {name}" : "Fehler beim Genehmigen von {name}", "You rejected {name}" : "Sie haben {name} abgelehnt", - "Failed to reject {name}" : "Fehler beim Ablehnen von {name}", - "Error getting OAuth access token" : "Fehler beim Abrufen des OAuth-Zugriffstokens", - "Error during OAuth exchanges" : "Fehler beim OAuth-Austausch", - "Signature of %s" : "Signatur von %s", - "Bad HTTP method" : "Ungültige HTTP-Methode", - "Bad credentials" : "Falsche Anmeldeinformationen", - "OAuth access token refused" : "OAuth-Zugriffstoken abgelehnt", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Dateien basierend auf von der Administration definierten Workflows genehmigen oder ablehnen.\n\n:Warnung: **Diese App wird ab Nextcloud 28 nicht mehr unterstützt.\nWenn Sie Nextcloud-Kunde sind und auf diese App setzen,\nwarten Sie bitte mit der Aktualisierung auf Version 28 und eröffnen Sie ein Support-Ticket, damit wir eine Lösung für Ihren Anwendungsfall finden können.**", - "Sign with DocuSign" : "Mit DocuSign signieren", - "Sign with LibreSign" : "Mit LibreSign signieren", - "Your approval was requested by {name}." : "Ihre Genehmigung wurde von {name} angefordert.", - "The related approval workflow is:" : "Der zugehörige Arbeitsablauf für Genehmigungen ist:", - "Request a signature via DocuSign" : "Signatur über DocuSign anfordern", - "Users or email addresses" : "Benutzer oder E-Mail-Adressen", - "Nextcloud users or email addresses" : "Nextcloud-Benutzer oder E-Mail-Adressen", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Die Empfänger erhalten von DocuSign eine E-Mail mit einem Link zum Unterschreiben des Dokuments. Sie werden per E-Mail benachrichtigt, wenn das Dokument von allen Empfängern unterschrieben wurde.", - "Request signature" : "Signatur anfordern", - "Recipients will receive an email from DocuSign to sign the document" : "Die Empfänger erhalten eine E-Mail von DocuSign, um das Dokument zu signieren", - "Failed to request signature with DocuSign" : "Fehler beim Anfordern einer Signatur mit DocuSign", - "DocuSign integration" : "DocuSign-Einbindung", - "DocuSign is an electronic signature solution." : "DocuSign ist eine elektronische Signaturlösung.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Wenn Sie DocuSign verwenden möchten, erstellen Sie in den Einstellungen Ihres DocuSign-Entwicklerkontos \"Meine Apps & Schlüssel\" eine Anwendung und geben Sie die Client-ID (Integrationsschlüssel) und das Geheimnis unten ein.", - "Make sure you set this \"Redirect URI\":" : "Stellen Sie sicher, dass diese \"Weiterleitungs-URI\" gesetzt ist:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Wenn Ihr DocuSign-Benutzer mit mehreren DocuSign-Konten verknüpft ist, wird das Standardkonto verwendet.", - "Client ID (aka integration key)" : "Client-ID (auch bekannt als Integrationsschlüssel)", - "Client ID of your application" : "Client-ID Ihrer Anwendung", - "Application secret key" : "Geheimer Anwendungsschlüssel", - "Secret key of your application" : "Geheimer Schlüssel Ihrer Anwendung", - "Connect to DocuSign" : "Mit DocuSign verbinden", - "Connected as {user} ({email})" : "Verbunden als {user} ({email})", - "Disconnect from DocuSign" : "Von DocuSign trennen", - "Successfully connected to DocuSign!" : "Erfolgreich mit DocuSign verbunden!", - "OAuth access token could not be obtained:" : "OAuth-Zugriffstoken konnte nicht abgerufen werden:", - "DocuSign admin options saved" : "DocuSign Administrationseinstellungen gespeichert", - "Failed to save DocuSign admin options" : "Fehler beim Speichern der DocuSign-Administrationseinstellungen", - "Failed to save DocuSign OAuth state" : "Fehler beim Speichern des DocuSign-OAuth-Status", - "You will receive an email from DocuSign to sign the document" : "Sie erhalten eine E-Mail von DocuSign, um das Dokument zu signieren", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Der Benutzer, der diese Genehmigung angefordert hat, wurde nicht gefunden. Denken Sie daran, das signierte Dokument selbst zu senden oder zu teilen", - "Approval signature" : "Genehmigungssignatur", - "{name} signature requested via LibreSign" : "{name}-Signatur über LibreSign angefordert!", - "Impossible to sign this document" : "Dieses Dokument kann nicht signiert werden", - "Pending approval, you are authorized to approve." : "Offene Genehmigung, Sie sind zur Genehmigung berechtigt.", - "Show approval details" : "Genehmigungsdetails anzeigen" + "Failed to reject {name}" : "Fehler beim Ablehnen von {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/el.js b/l10n/el.js index b286d7fa..a5698118 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -68,29 +68,6 @@ OC.L10N.register( "You approved {name}" : "Έχετε εγκρίνει τον/την {name}", "Failed to approve {name}" : "Αποτυχία έγκρισης του/της {name}", "You rejected {name}" : "Απορρίψατε τον/την {name}", - "Failed to reject {name}" : "Αποτυχία απόρριψης του {name}", - "Error getting OAuth access token" : "Σφάλμα κατά τη λήψη διακριτικού πρόσβασης OAuth", - "Error during OAuth exchanges" : "Σφάλμα κατά την ανταλλαγή OAuth", - "Signature of %s" : "Υπογραφή του %s", - "Bad HTTP method" : "Κακή μέθοδος HTTP", - "Bad credentials" : "Εσφαλμένα διαπιστευτήρια", - "OAuth access token refused" : "Το διακριτικό πρόσβασης OAuth απορρίφθηκε", - "Sign with DocuSign" : "Υπογραφή με DocuSign", - "Sign with LibreSign" : "Υπογραφή με LibreSign", - "Users or email addresses" : "Χρήστες και διευθύνσεις ηλεκτρονικού ταχυδρομείου", - "Nextcloud users or email addresses" : "Χρήστες Nextcloud ή διευθύνσεις ηλεκτρονικού ταχυδρομείου", - "Request signature" : "Αίτηση υπογραφής", - "DocuSign integration" : "Ενσωμάτωση DocuSign", - "Application secret key" : "Κρυφό κλειδί εφαρμογής", - "Connect to DocuSign" : "Σύνδεση με DocuSign", - "Disconnect from DocuSign" : "Αποσύνδεση από DocuSign", - "Successfully connected to DocuSign!" : "Επιτυχής σύνδεση στο DocuSign!", - "OAuth access token could not be obtained:" : "Δεν ήταν δυνατή η λήψη διακριτικού πρόσβασης OAuth:", - "DocuSign admin options saved" : "Οι επιλογές διαχειριστή DocuSign αποθηκεύτηκαν", - "Failed to save DocuSign admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή DocuSign", - "You will receive an email from DocuSign to sign the document" : "Θα λάβετε ένα email από το DocuSign για να υπογράψετε το έγγραφο", - "Approval signature" : "Υπογραφή έγκρισης", - "Impossible to sign this document" : "Δεν είναι δυνατή η υπογραφή αυτού του εγγράφου", - "Show approval details" : "Εμφάνιση λεπτομερειών έγκρισης" + "Failed to reject {name}" : "Αποτυχία απόρριψης του {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/el.json b/l10n/el.json index 3c1aae16..08a48e52 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -66,29 +66,6 @@ "You approved {name}" : "Έχετε εγκρίνει τον/την {name}", "Failed to approve {name}" : "Αποτυχία έγκρισης του/της {name}", "You rejected {name}" : "Απορρίψατε τον/την {name}", - "Failed to reject {name}" : "Αποτυχία απόρριψης του {name}", - "Error getting OAuth access token" : "Σφάλμα κατά τη λήψη διακριτικού πρόσβασης OAuth", - "Error during OAuth exchanges" : "Σφάλμα κατά την ανταλλαγή OAuth", - "Signature of %s" : "Υπογραφή του %s", - "Bad HTTP method" : "Κακή μέθοδος HTTP", - "Bad credentials" : "Εσφαλμένα διαπιστευτήρια", - "OAuth access token refused" : "Το διακριτικό πρόσβασης OAuth απορρίφθηκε", - "Sign with DocuSign" : "Υπογραφή με DocuSign", - "Sign with LibreSign" : "Υπογραφή με LibreSign", - "Users or email addresses" : "Χρήστες και διευθύνσεις ηλεκτρονικού ταχυδρομείου", - "Nextcloud users or email addresses" : "Χρήστες Nextcloud ή διευθύνσεις ηλεκτρονικού ταχυδρομείου", - "Request signature" : "Αίτηση υπογραφής", - "DocuSign integration" : "Ενσωμάτωση DocuSign", - "Application secret key" : "Κρυφό κλειδί εφαρμογής", - "Connect to DocuSign" : "Σύνδεση με DocuSign", - "Disconnect from DocuSign" : "Αποσύνδεση από DocuSign", - "Successfully connected to DocuSign!" : "Επιτυχής σύνδεση στο DocuSign!", - "OAuth access token could not be obtained:" : "Δεν ήταν δυνατή η λήψη διακριτικού πρόσβασης OAuth:", - "DocuSign admin options saved" : "Οι επιλογές διαχειριστή DocuSign αποθηκεύτηκαν", - "Failed to save DocuSign admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή DocuSign", - "You will receive an email from DocuSign to sign the document" : "Θα λάβετε ένα email από το DocuSign για να υπογράψετε το έγγραφο", - "Approval signature" : "Υπογραφή έγκρισης", - "Impossible to sign this document" : "Δεν είναι δυνατή η υπογραφή αυτού του εγγράφου", - "Show approval details" : "Εμφάνιση λεπτομερειών έγκρισης" + "Failed to reject {name}" : "Αποτυχία απόρριψης του {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 205f93db..17c73a02 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Workflow title", "What is the purpose of this workflow?" : "What is the purpose of this workflow?", "Request approval" : "Request approval", + "There is no approval workflow allowing you to request approval." : "There is no approval workflow allowing you to request approval.", "Approved" : "Approved", "Approved by" : "Approved by", "Rejected" : "Rejected", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "The related approval workflow is: {ruleDescription}", "This user requested your approval" : "This user requested your approval", "Your approval was requested." : "Your approval was requested.", + "Approval information" : "Approval information", "No recommendations. Start typing." : "No recommendations. Start typing.", "No result." : "No result.", "Who?" : "Who?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "You approved {name}", "Failed to approve {name}" : "Failed to approve {name}", "You rejected {name}" : "You rejected {name}", - "Failed to reject {name}" : "Failed to reject {name}", - "Error getting OAuth access token" : "Error getting OAuth access token", - "Error during OAuth exchanges" : "Error during OAuth exchanges", - "Signature of %s" : "Signature of %s", - "Bad HTTP method" : "Bad HTTP method", - "Bad credentials" : "Bad credentials", - "OAuth access token refused" : "OAuth access token refused", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**", - "Sign with DocuSign" : "Sign with DocuSign", - "Sign with LibreSign" : "Sign with LibreSign", - "Your approval was requested by {name}." : "Your approval was requested by {name}.", - "The related approval workflow is:" : "The related approval workflow is:", - "Request a signature via DocuSign" : "Request a signature via DocuSign", - "Users or email addresses" : "Users or email addresses", - "Nextcloud users or email addresses" : "Nextcloud users or email addresses", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients.", - "Request signature" : "Request signature", - "Recipients will receive an email from DocuSign to sign the document" : "Recipients will receive an email from DocuSign to sign the document", - "Failed to request signature with DocuSign" : "Failed to request signature with DocuSign", - "DocuSign integration" : "DocuSign integration", - "DocuSign is an electronic signature solution." : "DocuSign is an electronic signature solution.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below.", - "Make sure you set this \"Redirect URI\":" : "Make sure you set this \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used.", - "Client ID (aka integration key)" : "Client ID (aka integration key)", - "Client ID of your application" : "Client ID of your application", - "Application secret key" : "Application secret key", - "Secret key of your application" : "Secret key of your application", - "Connect to DocuSign" : "Connect to DocuSign", - "Connected as {user} ({email})" : "Connected as {user} ({email})", - "Disconnect from DocuSign" : "Disconnect from DocuSign", - "Successfully connected to DocuSign!" : "Successfully connected to DocuSign!", - "OAuth access token could not be obtained:" : "OAuth access token could not be obtained:", - "DocuSign admin options saved" : "DocuSign admin options saved", - "Failed to save DocuSign admin options" : "Failed to save DocuSign admin options", - "Failed to save DocuSign OAuth state" : "Failed to save DocuSign OAuth state", - "You will receive an email from DocuSign to sign the document" : "You will receive an email from DocuSign to sign the document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "The user who requested this approval was not found, remember to send or share the signed document yourself", - "Approval signature" : "Approval signature", - "{name} signature requested via LibreSign" : "{name} signature requested via LibreSign", - "Impossible to sign this document" : "Impossible to sign this document", - "Pending approval, you are authorized to approve." : "Pending approval, you are authorised to approve.", - "Show approval details" : "Show approval details" + "Failed to reject {name}" : "Failed to reject {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 63f98710..63cadb5e 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -69,6 +69,7 @@ "Workflow title" : "Workflow title", "What is the purpose of this workflow?" : "What is the purpose of this workflow?", "Request approval" : "Request approval", + "There is no approval workflow allowing you to request approval." : "There is no approval workflow allowing you to request approval.", "Approved" : "Approved", "Approved by" : "Approved by", "Rejected" : "Rejected", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "The related approval workflow is: {ruleDescription}", "This user requested your approval" : "This user requested your approval", "Your approval was requested." : "Your approval was requested.", + "Approval information" : "Approval information", "No recommendations. Start typing." : "No recommendations. Start typing.", "No result." : "No result.", "Who?" : "Who?", @@ -104,48 +106,6 @@ "You approved {name}" : "You approved {name}", "Failed to approve {name}" : "Failed to approve {name}", "You rejected {name}" : "You rejected {name}", - "Failed to reject {name}" : "Failed to reject {name}", - "Error getting OAuth access token" : "Error getting OAuth access token", - "Error during OAuth exchanges" : "Error during OAuth exchanges", - "Signature of %s" : "Signature of %s", - "Bad HTTP method" : "Bad HTTP method", - "Bad credentials" : "Bad credentials", - "OAuth access token refused" : "OAuth access token refused", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**", - "Sign with DocuSign" : "Sign with DocuSign", - "Sign with LibreSign" : "Sign with LibreSign", - "Your approval was requested by {name}." : "Your approval was requested by {name}.", - "The related approval workflow is:" : "The related approval workflow is:", - "Request a signature via DocuSign" : "Request a signature via DocuSign", - "Users or email addresses" : "Users or email addresses", - "Nextcloud users or email addresses" : "Nextcloud users or email addresses", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients.", - "Request signature" : "Request signature", - "Recipients will receive an email from DocuSign to sign the document" : "Recipients will receive an email from DocuSign to sign the document", - "Failed to request signature with DocuSign" : "Failed to request signature with DocuSign", - "DocuSign integration" : "DocuSign integration", - "DocuSign is an electronic signature solution." : "DocuSign is an electronic signature solution.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below.", - "Make sure you set this \"Redirect URI\":" : "Make sure you set this \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used.", - "Client ID (aka integration key)" : "Client ID (aka integration key)", - "Client ID of your application" : "Client ID of your application", - "Application secret key" : "Application secret key", - "Secret key of your application" : "Secret key of your application", - "Connect to DocuSign" : "Connect to DocuSign", - "Connected as {user} ({email})" : "Connected as {user} ({email})", - "Disconnect from DocuSign" : "Disconnect from DocuSign", - "Successfully connected to DocuSign!" : "Successfully connected to DocuSign!", - "OAuth access token could not be obtained:" : "OAuth access token could not be obtained:", - "DocuSign admin options saved" : "DocuSign admin options saved", - "Failed to save DocuSign admin options" : "Failed to save DocuSign admin options", - "Failed to save DocuSign OAuth state" : "Failed to save DocuSign OAuth state", - "You will receive an email from DocuSign to sign the document" : "You will receive an email from DocuSign to sign the document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "The user who requested this approval was not found, remember to send or share the signed document yourself", - "Approval signature" : "Approval signature", - "{name} signature requested via LibreSign" : "{name} signature requested via LibreSign", - "Impossible to sign this document" : "Impossible to sign this document", - "Pending approval, you are authorized to approve." : "Pending approval, you are authorised to approve.", - "Show approval details" : "Show approval details" + "Failed to reject {name}" : "Failed to reject {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es.js b/l10n/es.js index 66fe5ac9..edebb5ad 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -106,48 +106,6 @@ OC.L10N.register( "You approved {name}" : "Aprobaste {name}", "Failed to approve {name}" : "No se pudo aprobar {name}", "You rejected {name}" : "Rechazaste {name}", - "Failed to reject {name}" : "No se pudo rechazar {name}", - "Error getting OAuth access token" : "Error al obtener el token de acceso OAuth", - "Error during OAuth exchanges" : "Error durante los intercambios OAuth", - "Signature of %s" : "Firma de %s", - "Bad HTTP method" : "Método HTTP erróneo", - "Bad credentials" : "Credenciales erróneas", - "OAuth access token refused" : "Se ha rechazado el token de acceso OAuth", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Aprobar/rechazar archivos basándose en flujos de trabajo definidos por los administradores.\n\n:advertencia: **Esta app será retirada a partir de Nextcloud 28 en adelante.\nSi Ud. es cliente de Nextcloud y depende de esta app,\nno actualice a 28 y abra un caso de soporte para conseguir una solución para su caso de uso.**", - "Sign with DocuSign" : "Firmar con DocuSign", - "Sign with LibreSign" : "Firmar con LibreSign", - "Your approval was requested by {name}." : "{name} solicitó tu aprobación.", - "The related approval workflow is:" : "El flujo de trabajo de aprobación relacionado es:", - "Request a signature via DocuSign" : "Solicita una firma a través de DocuSign", - "Users or email addresses" : "Usuarios o direcciones de correo electrónico", - "Nextcloud users or email addresses" : "Usuarios o direcciones de correo electrónico de Nextcloud", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Los destinatarios recibirán un correo electrónico de DocuSign con un enlace para firmar el documento. Se te informará por correo electrónico cuando el documento haya sido firmado por todos los destinatarios.", - "Request signature" : "Solicitar firma", - "Recipients will receive an email from DocuSign to sign the document" : "Los destinatarios recibirán un correo electrónico de DocuSign para firmar el documento.", - "Failed to request signature with DocuSign" : "No se pudo solicitar la firma con DocuSign", - "DocuSign integration" : "Integración con DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign es una solución de firma electrónica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si desea utilizar DocuSign, cree una aplicación en la configuración de la cuenta de desarrollador de \"Mis aplicaciones y claves\" de DocuSign y coloque el ID de cliente (clave de integración) y el secreto a continuación.", - "Make sure you set this \"Redirect URI\":" : "Asegúrese de configurar este \"URI de redireccionamiento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si su usuario de DocuSign está asociado con varias cuentas de DocuSign, se utilizará la predeterminada.", - "Client ID (aka integration key)" : "ID de cliente (también conocida como clave de integración)", - "Client ID of your application" : "ID de cliente de su aplicación", - "Application secret key" : "Clave secreta de la aplicación", - "Secret key of your application" : "Clave secreta de tu aplicación", - "Connect to DocuSign" : "Conectarse a DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectarse de DocuSign", - "Successfully connected to DocuSign!" : "¡Conectado con éxito a DocuSign!", - "OAuth access token could not be obtained:" : "No se ha podido obtener el token de acceso:", - "DocuSign admin options saved" : "Opciones de administración de DocuSign guardadas", - "Failed to save DocuSign admin options" : "No se pudieron guardar las opciones de administración de DocuSign", - "Failed to save DocuSign OAuth state" : "No se pudo guardar el estado de DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Recibirás un correo electrónico de DocuSign para firmar el documento.", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "No se encontró al usuario que solicitó esta aprobación, recuerde enviar o compartir el documento firmado usted mismo", - "Approval signature" : "Firma de aprobación", - "{name} signature requested via LibreSign" : "Firma de {name} solicitada a través de LibreSign", - "Impossible to sign this document" : "Imposible firmar este documento", - "Pending approval, you are authorized to approve." : "Pendiente de aprobación, estás autorizado a aprobar.", - "Show approval details" : "Mostrar detalles de aprobación" + "Failed to reject {name}" : "No se pudo rechazar {name}" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es.json b/l10n/es.json index ba206efa..002c6f28 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -104,48 +104,6 @@ "You approved {name}" : "Aprobaste {name}", "Failed to approve {name}" : "No se pudo aprobar {name}", "You rejected {name}" : "Rechazaste {name}", - "Failed to reject {name}" : "No se pudo rechazar {name}", - "Error getting OAuth access token" : "Error al obtener el token de acceso OAuth", - "Error during OAuth exchanges" : "Error durante los intercambios OAuth", - "Signature of %s" : "Firma de %s", - "Bad HTTP method" : "Método HTTP erróneo", - "Bad credentials" : "Credenciales erróneas", - "OAuth access token refused" : "Se ha rechazado el token de acceso OAuth", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Aprobar/rechazar archivos basándose en flujos de trabajo definidos por los administradores.\n\n:advertencia: **Esta app será retirada a partir de Nextcloud 28 en adelante.\nSi Ud. es cliente de Nextcloud y depende de esta app,\nno actualice a 28 y abra un caso de soporte para conseguir una solución para su caso de uso.**", - "Sign with DocuSign" : "Firmar con DocuSign", - "Sign with LibreSign" : "Firmar con LibreSign", - "Your approval was requested by {name}." : "{name} solicitó tu aprobación.", - "The related approval workflow is:" : "El flujo de trabajo de aprobación relacionado es:", - "Request a signature via DocuSign" : "Solicita una firma a través de DocuSign", - "Users or email addresses" : "Usuarios o direcciones de correo electrónico", - "Nextcloud users or email addresses" : "Usuarios o direcciones de correo electrónico de Nextcloud", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Los destinatarios recibirán un correo electrónico de DocuSign con un enlace para firmar el documento. Se te informará por correo electrónico cuando el documento haya sido firmado por todos los destinatarios.", - "Request signature" : "Solicitar firma", - "Recipients will receive an email from DocuSign to sign the document" : "Los destinatarios recibirán un correo electrónico de DocuSign para firmar el documento.", - "Failed to request signature with DocuSign" : "No se pudo solicitar la firma con DocuSign", - "DocuSign integration" : "Integración con DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign es una solución de firma electrónica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si desea utilizar DocuSign, cree una aplicación en la configuración de la cuenta de desarrollador de \"Mis aplicaciones y claves\" de DocuSign y coloque el ID de cliente (clave de integración) y el secreto a continuación.", - "Make sure you set this \"Redirect URI\":" : "Asegúrese de configurar este \"URI de redireccionamiento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si su usuario de DocuSign está asociado con varias cuentas de DocuSign, se utilizará la predeterminada.", - "Client ID (aka integration key)" : "ID de cliente (también conocida como clave de integración)", - "Client ID of your application" : "ID de cliente de su aplicación", - "Application secret key" : "Clave secreta de la aplicación", - "Secret key of your application" : "Clave secreta de tu aplicación", - "Connect to DocuSign" : "Conectarse a DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectarse de DocuSign", - "Successfully connected to DocuSign!" : "¡Conectado con éxito a DocuSign!", - "OAuth access token could not be obtained:" : "No se ha podido obtener el token de acceso:", - "DocuSign admin options saved" : "Opciones de administración de DocuSign guardadas", - "Failed to save DocuSign admin options" : "No se pudieron guardar las opciones de administración de DocuSign", - "Failed to save DocuSign OAuth state" : "No se pudo guardar el estado de DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Recibirás un correo electrónico de DocuSign para firmar el documento.", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "No se encontró al usuario que solicitó esta aprobación, recuerde enviar o compartir el documento firmado usted mismo", - "Approval signature" : "Firma de aprobación", - "{name} signature requested via LibreSign" : "Firma de {name} solicitada a través de LibreSign", - "Impossible to sign this document" : "Imposible firmar este documento", - "Pending approval, you are authorized to approve." : "Pendiente de aprobación, estás autorizado a aprobar.", - "Show approval details" : "Mostrar detalles de aprobación" + "Failed to reject {name}" : "No se pudo rechazar {name}" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_AR.js b/l10n/es_AR.js new file mode 100644 index 00000000..56cf6d3f --- /dev/null +++ b/l10n/es_AR.js @@ -0,0 +1,11 @@ +OC.L10N.register( + "approval", + { + "Create" : "Crear", + "Cancel" : "Cancelar", + "Approved" : "Aprovado", + "you" : "usted", + "No recommendations. Start typing." : "No hay sugerencias. Comenzar a escribir", + "Warning" : "Advertencia" +}, +"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_AR.json b/l10n/es_AR.json new file mode 100644 index 00000000..b1b80870 --- /dev/null +++ b/l10n/es_AR.json @@ -0,0 +1,9 @@ +{ "translations": { + "Create" : "Crear", + "Cancel" : "Cancelar", + "Approved" : "Aprovado", + "you" : "usted", + "No recommendations. Start typing." : "No hay sugerencias. Comenzar a escribir", + "Warning" : "Advertencia" +},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" +} \ No newline at end of file diff --git a/l10n/es_EC.js b/l10n/es_EC.js index 2063cfbe..40d10ef9 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -98,47 +98,6 @@ OC.L10N.register( "You approved {name}" : "Aprobaste {name}", "Failed to approve {name}" : "Error al aprobar {name}", "You rejected {name}" : "Rechazaste {name}", - "Failed to reject {name}" : "Error al rechazar {name}", - "Error getting OAuth access token" : "Error al obtener el token de acceso de OAuth", - "Error during OAuth exchanges" : "Error durante los intercambios de OAuth", - "Signature of %s" : "Firma de %s", - "Bad HTTP method" : "Método HTTP incorrecto", - "Bad credentials" : "Credenciales incorrectas", - "OAuth access token refused" : "Se rechazó el token de acceso de OAuth", - "Sign with DocuSign" : "Firmar con DocuSign", - "Sign with LibreSign" : "Firmar con LibreSign", - "Your approval was requested by {name}." : "Tu aprobación fue solicitada por {name}.", - "The related approval workflow is:" : "El flujo de trabajo de aprobación relacionado es:", - "Request a signature via DocuSign" : "Solicitar una firma a través de DocuSign", - "Users or email addresses" : "Usuarios o direcciones de correo electrónico", - "Nextcloud users or email addresses" : "Usuarios de Nextcloud o direcciones de correo electrónico", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Los destinatarios recibirán un correo electrónico de DocuSign con un enlace para firmar el documento. Se te informará por correo electrónico cuando el documento haya sido firmado por todos los destinatarios.", - "Request signature" : "Solicitar firma", - "Recipients will receive an email from DocuSign to sign the document" : "Los destinatarios recibirán un correo electrónico de DocuSign para firmar el documento", - "Failed to request signature with DocuSign" : "Error al solicitar la firma con DocuSign", - "DocuSign integration" : "Integración de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign es una solución de firma electrónica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si deseas utilizar DocuSign, crea una aplicación en la configuración de tu cuenta de desarrollador \"Mis aplicaciones y claves\" de DocuSign y coloca el ID de cliente (clave de integración) y el secreto a continuación.", - "Make sure you set this \"Redirect URI\":" : "Asegúrate de establecer esta \"URI de redireccionamiento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si tu usuario de DocuSign está asociado con varias cuentas de DocuSign, se utilizará la predeterminada.", - "Client ID (aka integration key)" : "ID de cliente (también conocido como clave de integración)", - "Client ID of your application" : "ID de cliente de tu aplicación", - "Application secret key" : "Clave secreta de la aplicación", - "Secret key of your application" : "Clave secreta de tu aplicación", - "Connect to DocuSign" : "Conectar con DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectar de DocuSign", - "Successfully connected to DocuSign!" : "¡Conexión a DocuSign realizada con éxito!", - "OAuth access token could not be obtained:" : "No se pudo obtener el token de acceso de OAuth:", - "DocuSign admin options saved" : "Opciones de administrador de DocuSign guardadas", - "Failed to save DocuSign admin options" : "Error al guardar las opciones de administrador de DocuSign", - "Failed to save DocuSign OAuth state" : "Error al guardar el estado de OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Recibirás un correo electrónico de DocuSign para firmar el documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "No se encontró el usuario que solicitó esta aprobación, recuerda enviar o compartir el documento firmado tú mismo", - "Approval signature" : "Firma de aprobación", - "{name} signature requested via LibreSign" : "{name} ha solicitado una firma a través de LibreSign", - "Impossible to sign this document" : "No es posible firmar este documento", - "Pending approval, you are authorized to approve." : "Aprobación pendiente, tienes autorización para aprobar.", - "Show approval details" : "Mostrar detalles de aprobación" + "Failed to reject {name}" : "Error al rechazar {name}" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_EC.json b/l10n/es_EC.json index e92eaf8f..68dbd88c 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -96,47 +96,6 @@ "You approved {name}" : "Aprobaste {name}", "Failed to approve {name}" : "Error al aprobar {name}", "You rejected {name}" : "Rechazaste {name}", - "Failed to reject {name}" : "Error al rechazar {name}", - "Error getting OAuth access token" : "Error al obtener el token de acceso de OAuth", - "Error during OAuth exchanges" : "Error durante los intercambios de OAuth", - "Signature of %s" : "Firma de %s", - "Bad HTTP method" : "Método HTTP incorrecto", - "Bad credentials" : "Credenciales incorrectas", - "OAuth access token refused" : "Se rechazó el token de acceso de OAuth", - "Sign with DocuSign" : "Firmar con DocuSign", - "Sign with LibreSign" : "Firmar con LibreSign", - "Your approval was requested by {name}." : "Tu aprobación fue solicitada por {name}.", - "The related approval workflow is:" : "El flujo de trabajo de aprobación relacionado es:", - "Request a signature via DocuSign" : "Solicitar una firma a través de DocuSign", - "Users or email addresses" : "Usuarios o direcciones de correo electrónico", - "Nextcloud users or email addresses" : "Usuarios de Nextcloud o direcciones de correo electrónico", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Los destinatarios recibirán un correo electrónico de DocuSign con un enlace para firmar el documento. Se te informará por correo electrónico cuando el documento haya sido firmado por todos los destinatarios.", - "Request signature" : "Solicitar firma", - "Recipients will receive an email from DocuSign to sign the document" : "Los destinatarios recibirán un correo electrónico de DocuSign para firmar el documento", - "Failed to request signature with DocuSign" : "Error al solicitar la firma con DocuSign", - "DocuSign integration" : "Integración de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign es una solución de firma electrónica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si deseas utilizar DocuSign, crea una aplicación en la configuración de tu cuenta de desarrollador \"Mis aplicaciones y claves\" de DocuSign y coloca el ID de cliente (clave de integración) y el secreto a continuación.", - "Make sure you set this \"Redirect URI\":" : "Asegúrate de establecer esta \"URI de redireccionamiento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si tu usuario de DocuSign está asociado con varias cuentas de DocuSign, se utilizará la predeterminada.", - "Client ID (aka integration key)" : "ID de cliente (también conocido como clave de integración)", - "Client ID of your application" : "ID de cliente de tu aplicación", - "Application secret key" : "Clave secreta de la aplicación", - "Secret key of your application" : "Clave secreta de tu aplicación", - "Connect to DocuSign" : "Conectar con DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectar de DocuSign", - "Successfully connected to DocuSign!" : "¡Conexión a DocuSign realizada con éxito!", - "OAuth access token could not be obtained:" : "No se pudo obtener el token de acceso de OAuth:", - "DocuSign admin options saved" : "Opciones de administrador de DocuSign guardadas", - "Failed to save DocuSign admin options" : "Error al guardar las opciones de administrador de DocuSign", - "Failed to save DocuSign OAuth state" : "Error al guardar el estado de OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Recibirás un correo electrónico de DocuSign para firmar el documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "No se encontró el usuario que solicitó esta aprobación, recuerda enviar o compartir el documento firmado tú mismo", - "Approval signature" : "Firma de aprobación", - "{name} signature requested via LibreSign" : "{name} ha solicitado una firma a través de LibreSign", - "Impossible to sign this document" : "No es posible firmar este documento", - "Pending approval, you are authorized to approve." : "Aprobación pendiente, tienes autorización para aprobar.", - "Show approval details" : "Mostrar detalles de aprobación" + "Failed to reject {name}" : "Error al rechazar {name}" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 76acdd09..1bf6c6a5 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -1,6 +1,22 @@ OC.L10N.register( "approval", { + "You approved {file}" : "Usted ha aprobado {file}", + "{user} approved {file}" : "{user} ha aprobado {file}", + "You rejected {file}" : "Usted ha rechazado {file}", + "{user} rejected {file}" : "{user} ha rechazado {file}", + "Your approval was requested on {file}" : "Se solicitó su aprobación en {file}", + "Your approval was requested on {file} by {who}" : "Se solicitó su aprobación en {file} por {who}", + "You requested approval on {file}" : "Usted ha solicitado aprobación en {file}", + "A guest user" : "Un usuario invitado", + "Approval" : "Aprobación", + "Approval events" : "Eventos de Aprobación", + "Pending approvals" : "Aprobaciones pendientes", + "A file was approved" : "Se ha aprobado un archivo", + "A file was rejected" : "Se ha rechazado un archivo", + "A directory was approved" : "Se ha aprobado un directorio", + "A directory was rejected" : "Se ha rechazado un directorio", + "%1$s approved %2$s" : "%1$s ha aprobado %2$s", "Create" : "Crear", "Cancel" : "Cancelar", "Approve" : "Aprobar", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 010fc97c..0fac1026 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -1,4 +1,20 @@ { "translations": { + "You approved {file}" : "Usted ha aprobado {file}", + "{user} approved {file}" : "{user} ha aprobado {file}", + "You rejected {file}" : "Usted ha rechazado {file}", + "{user} rejected {file}" : "{user} ha rechazado {file}", + "Your approval was requested on {file}" : "Se solicitó su aprobación en {file}", + "Your approval was requested on {file} by {who}" : "Se solicitó su aprobación en {file} por {who}", + "You requested approval on {file}" : "Usted ha solicitado aprobación en {file}", + "A guest user" : "Un usuario invitado", + "Approval" : "Aprobación", + "Approval events" : "Eventos de Aprobación", + "Pending approvals" : "Aprobaciones pendientes", + "A file was approved" : "Se ha aprobado un archivo", + "A file was rejected" : "Se ha rechazado un archivo", + "A directory was approved" : "Se ha aprobado un directorio", + "A directory was rejected" : "Se ha rechazado un directorio", + "%1$s approved %2$s" : "%1$s ha aprobado %2$s", "Create" : "Crear", "Cancel" : "Cancelar", "Approve" : "Aprobar", diff --git a/l10n/eu.js b/l10n/eu.js index a9776ac4..9526e4ec 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Lan-fluxuaren izenburua", "What is the purpose of this workflow?" : "Zein da lan-fluxu honen helburua?", "Request approval" : "Eskatu onarpena", + "There is no approval workflow allowing you to request approval." : "Ez dago onarpen-lan-fluxurik onarpena eskatzeko aukera ematen dizunik.", "Approved" : "Onartuta", "Approved by" : "Onartu duena", "Rejected" : "Baztertua", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "Dagokion onarpen lan-fluxua hau da: {ruleDescription}", "This user requested your approval" : "Erabiltzaile honek zure onarpena eskatu du", "Your approval was requested." : "Zure onarpen eskaera ondo egin da.", + "Approval information" : "Onarpenaren informazioa", "No recommendations. Start typing." : "Gomendiorik ez. Hasi idazten.", "No result." : "Emaitzarik ez.", "Who?" : "Nor?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "{name} onartu duzu", "Failed to approve {name}" : "{name} onartzeak huts egin du", "You rejected {name}" : "{name} ukatu duzu", - "Failed to reject {name}" : "{name} ukatzeak huts egin du", - "Error getting OAuth access token" : "Errorea OAuth sarbide tokena eskuratzen", - "Error during OAuth exchanges" : "Errorea OAuth trukeak egitean", - "Signature of %s" : "%s(r)en sinadura", - "Bad HTTP method" : "HTTP metodo okerra", - "Bad credentials" : "Kredentzial okerrak", - "OAuth access token refused" : "OAuth sarbide tokena ukatua izan da", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Onartu/baztertu fitxategiak administratzaileek definitutako lan-fluxuetan oinarrituta.\n\n:abisua: **Aplikazio hau zaharkituta egongo da Nextcloud 28tik aurrera.\nNextcloud bezeroa bazara eta aplikazio honetan oinarritzen bazara,\nMesedez, itxaron 28ra eguneratzearekin eta ireki laguntza-txartel bat, zure erabilera-kasurako irtenbide bat aurkitu ahal izateko.**", - "Sign with DocuSign" : "Hasi saioa DocuSign bidez", - "Sign with LibreSign" : "Hasi saioa LibreSign bidez", - "Your approval was requested by {name}." : "Zure eskaera {name} bidez eskatu da.", - "The related approval workflow is:" : "Dagokion onarpen lan-fluxua hau da:", - "Request a signature via DocuSign" : "Eskatu sinadura DocuSign bidez", - "Users or email addresses" : "Erabiltzaileak edo posta elektronikoak", - "Nextcloud users or email addresses" : "Nextcloud erabiltzaileak edo posta elektronikoak", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Hartzaileek DocuSign bidez mezu elektronikoa jasoko dute dokumentua sinatzeko esteka batekin. Zuk e-posta bidez jasoko duzu abisua dokumetua hartzaile guztiek sinatzen dutenean.", - "Request signature" : "Eskatu sinadura", - "Recipients will receive an email from DocuSign to sign the document" : "Hartzaileek DocuSign bidez mezu elektronikoa jasoko dute dokumentua sinatzeko", - "Failed to request signature with DocuSign" : "DocuSign bidez sinadura eskaera egiteak huts egin du", - "DocuSign integration" : "DocuSign integrazioa", - "DocuSign is an electronic signature solution." : "DocuSign sinadura elektronikoentzako irtenbide bat da.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "DocuSign erabili nahi baduzu, sortu DocuSign aplikazioa zure garatzaile kontuaren \"Nire aplikazioak eta gakoak\" ezarpenetan eta jarri ID bezeroa (integrazio gakoa) eta sekretua behean.", - "Make sure you set this \"Redirect URI\":" : "Ziurtatu \"Redirect URI\" hau konfiguratzen duzula:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Zure DocuSIgn erabiltzailea DocuSign kontu ugarirekin loturik baldin badago, lehenetsia dena erabiliko da.", - "Client ID (aka integration key)" : "Bezero IDa (integrazio gakoa)", - "Client ID of your application" : "Zure aplikazioaren bezero IDa", - "Application secret key" : "Aplikazioaren gako sekretua", - "Secret key of your application" : "Zure aplikazioaren gako sekretua", - "Connect to DocuSign" : "Konektatu DocuSign-ekin", - "Connected as {user} ({email})" : "{user} ({email}) gisa konektatuta", - "Disconnect from DocuSign" : "Deskonektatu DocuSign-etik", - "Successfully connected to DocuSign!" : "DocuSign-ekin konexioa ondo egin da!", - "OAuth access token could not be obtained:" : "Ezin izan da OAuth sarbide tokena lortu:", - "DocuSign admin options saved" : "DocuSign administratzaile aukerak ondo gorde dira", - "Failed to save DocuSign admin options" : "DocuSign administratzaile aukerak gordetzeak huts egin du", - "Failed to save DocuSign OAuth state" : "DocuSign OAuth egoera gordetzeak huts egin du", - "You will receive an email from DocuSign to sign the document" : "Mezu elektronikoa jasoko duzu DocuSign bidez, dokumentua sinatzeko.", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Onarpen eskaera hau egin zuen erabiltzailea ez da aurkitu, ez ahaztu zuk zeuk bidali edo partekatzea dokumentu sinatua.", - "Approval signature" : "Onarpen sinadura", - "{name} signature requested via LibreSign" : "{name} onarpena eskatu da LibreSign bidez", - "Impossible to sign this document" : "Ezin da dokumentu hau sinatu", - "Pending approval, you are authorized to approve." : "Ebazteke dagoen onarpena, onartzeko baimena daukazu.", - "Show approval details" : "Erakutsi onarpenaren xehetasunak" + "Failed to reject {name}" : "{name} ukatzeak huts egin du" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eu.json b/l10n/eu.json index bf862d99..8ca2cd68 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -69,6 +69,7 @@ "Workflow title" : "Lan-fluxuaren izenburua", "What is the purpose of this workflow?" : "Zein da lan-fluxu honen helburua?", "Request approval" : "Eskatu onarpena", + "There is no approval workflow allowing you to request approval." : "Ez dago onarpen-lan-fluxurik onarpena eskatzeko aukera ematen dizunik.", "Approved" : "Onartuta", "Approved by" : "Onartu duena", "Rejected" : "Baztertua", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "Dagokion onarpen lan-fluxua hau da: {ruleDescription}", "This user requested your approval" : "Erabiltzaile honek zure onarpena eskatu du", "Your approval was requested." : "Zure onarpen eskaera ondo egin da.", + "Approval information" : "Onarpenaren informazioa", "No recommendations. Start typing." : "Gomendiorik ez. Hasi idazten.", "No result." : "Emaitzarik ez.", "Who?" : "Nor?", @@ -104,48 +106,6 @@ "You approved {name}" : "{name} onartu duzu", "Failed to approve {name}" : "{name} onartzeak huts egin du", "You rejected {name}" : "{name} ukatu duzu", - "Failed to reject {name}" : "{name} ukatzeak huts egin du", - "Error getting OAuth access token" : "Errorea OAuth sarbide tokena eskuratzen", - "Error during OAuth exchanges" : "Errorea OAuth trukeak egitean", - "Signature of %s" : "%s(r)en sinadura", - "Bad HTTP method" : "HTTP metodo okerra", - "Bad credentials" : "Kredentzial okerrak", - "OAuth access token refused" : "OAuth sarbide tokena ukatua izan da", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Onartu/baztertu fitxategiak administratzaileek definitutako lan-fluxuetan oinarrituta.\n\n:abisua: **Aplikazio hau zaharkituta egongo da Nextcloud 28tik aurrera.\nNextcloud bezeroa bazara eta aplikazio honetan oinarritzen bazara,\nMesedez, itxaron 28ra eguneratzearekin eta ireki laguntza-txartel bat, zure erabilera-kasurako irtenbide bat aurkitu ahal izateko.**", - "Sign with DocuSign" : "Hasi saioa DocuSign bidez", - "Sign with LibreSign" : "Hasi saioa LibreSign bidez", - "Your approval was requested by {name}." : "Zure eskaera {name} bidez eskatu da.", - "The related approval workflow is:" : "Dagokion onarpen lan-fluxua hau da:", - "Request a signature via DocuSign" : "Eskatu sinadura DocuSign bidez", - "Users or email addresses" : "Erabiltzaileak edo posta elektronikoak", - "Nextcloud users or email addresses" : "Nextcloud erabiltzaileak edo posta elektronikoak", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Hartzaileek DocuSign bidez mezu elektronikoa jasoko dute dokumentua sinatzeko esteka batekin. Zuk e-posta bidez jasoko duzu abisua dokumetua hartzaile guztiek sinatzen dutenean.", - "Request signature" : "Eskatu sinadura", - "Recipients will receive an email from DocuSign to sign the document" : "Hartzaileek DocuSign bidez mezu elektronikoa jasoko dute dokumentua sinatzeko", - "Failed to request signature with DocuSign" : "DocuSign bidez sinadura eskaera egiteak huts egin du", - "DocuSign integration" : "DocuSign integrazioa", - "DocuSign is an electronic signature solution." : "DocuSign sinadura elektronikoentzako irtenbide bat da.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "DocuSign erabili nahi baduzu, sortu DocuSign aplikazioa zure garatzaile kontuaren \"Nire aplikazioak eta gakoak\" ezarpenetan eta jarri ID bezeroa (integrazio gakoa) eta sekretua behean.", - "Make sure you set this \"Redirect URI\":" : "Ziurtatu \"Redirect URI\" hau konfiguratzen duzula:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Zure DocuSIgn erabiltzailea DocuSign kontu ugarirekin loturik baldin badago, lehenetsia dena erabiliko da.", - "Client ID (aka integration key)" : "Bezero IDa (integrazio gakoa)", - "Client ID of your application" : "Zure aplikazioaren bezero IDa", - "Application secret key" : "Aplikazioaren gako sekretua", - "Secret key of your application" : "Zure aplikazioaren gako sekretua", - "Connect to DocuSign" : "Konektatu DocuSign-ekin", - "Connected as {user} ({email})" : "{user} ({email}) gisa konektatuta", - "Disconnect from DocuSign" : "Deskonektatu DocuSign-etik", - "Successfully connected to DocuSign!" : "DocuSign-ekin konexioa ondo egin da!", - "OAuth access token could not be obtained:" : "Ezin izan da OAuth sarbide tokena lortu:", - "DocuSign admin options saved" : "DocuSign administratzaile aukerak ondo gorde dira", - "Failed to save DocuSign admin options" : "DocuSign administratzaile aukerak gordetzeak huts egin du", - "Failed to save DocuSign OAuth state" : "DocuSign OAuth egoera gordetzeak huts egin du", - "You will receive an email from DocuSign to sign the document" : "Mezu elektronikoa jasoko duzu DocuSign bidez, dokumentua sinatzeko.", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Onarpen eskaera hau egin zuen erabiltzailea ez da aurkitu, ez ahaztu zuk zeuk bidali edo partekatzea dokumentu sinatua.", - "Approval signature" : "Onarpen sinadura", - "{name} signature requested via LibreSign" : "{name} onarpena eskatu da LibreSign bidez", - "Impossible to sign this document" : "Ezin da dokumentu hau sinatu", - "Pending approval, you are authorized to approve." : "Ebazteke dagoen onarpena, onartzeko baimena daukazu.", - "Show approval details" : "Erakutsi onarpenaren xehetasunak" + "Failed to reject {name}" : "{name} ukatzeak huts egin du" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/fa.js b/l10n/fa.js index 8e341a75..44602131 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -98,47 +98,6 @@ OC.L10N.register( "You approved {name}" : "You approved {name}", "Failed to approve {name}" : "Failed to approve {name}", "You rejected {name}" : "You rejected {name}", - "Failed to reject {name}" : "Failed to reject {name}", - "Error getting OAuth access token" : "Error getting OAuth access token", - "Error during OAuth exchanges" : "خطا در هنگام تبادل OAuth", - "Signature of %s" : "Signature of %s", - "Bad HTTP method" : "روش HTTP بد", - "Bad credentials" : "اعتبارنامه بد", - "OAuth access token refused" : "نشانه دسترسی OAuth رد شد", - "Sign with DocuSign" : "Sign with DocuSign", - "Sign with LibreSign" : "Sign with LibreSign", - "Your approval was requested by {name}." : "Your approval was requested by {name}.", - "The related approval workflow is:" : "The related approval workflow is:", - "Request a signature via DocuSign" : "Request a signature via DocuSign", - "Users or email addresses" : "Users or email addresses", - "Nextcloud users or email addresses" : "Nextcloud users or email addresses", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients.", - "Request signature" : "Request signature", - "Recipients will receive an email from DocuSign to sign the document" : "Recipients will receive an email from DocuSign to sign the document", - "Failed to request signature with DocuSign" : "Failed to request signature with DocuSign", - "DocuSign integration" : "DocuSign integration", - "DocuSign is an electronic signature solution." : "DocuSign is an electronic signature solution.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below.", - "Make sure you set this \"Redirect URI\":" : "Make sure you set this \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used.", - "Client ID (aka integration key)" : "Client ID (aka integration key)", - "Client ID of your application" : "Client ID of your application", - "Application secret key" : "Application secret key", - "Secret key of your application" : "Secret key of your application", - "Connect to DocuSign" : "Connect to DocuSign", - "Connected as {user} ({email})" : "Connected as {user} ({email})", - "Disconnect from DocuSign" : "Disconnect from DocuSign", - "Successfully connected to DocuSign!" : "Successfully connected to DocuSign!", - "OAuth access token could not be obtained:" : "نشانه دسترسی OAuth بدست نیامد:", - "DocuSign admin options saved" : "DocuSign admin options saved", - "Failed to save DocuSign admin options" : "Failed to save DocuSign admin options", - "Failed to save DocuSign OAuth state" : "Failed to save DocuSign OAuth state", - "You will receive an email from DocuSign to sign the document" : "You will receive an email from DocuSign to sign the document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "The user who requested this approval was not found, remember to send or share the signed document yourself", - "Approval signature" : "Approval signature", - "{name} signature requested via LibreSign" : "{name} signature requested via LibreSign", - "Impossible to sign this document" : "Impossible to sign this document", - "Pending approval, you are authorized to approve." : "Pending approval, you are authorized to approve.", - "Show approval details" : "Show approval details" + "Failed to reject {name}" : "Failed to reject {name}" }, "nplurals=2; plural=(n> 1);"); diff --git a/l10n/fa.json b/l10n/fa.json index d6362a75..b93e95dc 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -96,47 +96,6 @@ "You approved {name}" : "You approved {name}", "Failed to approve {name}" : "Failed to approve {name}", "You rejected {name}" : "You rejected {name}", - "Failed to reject {name}" : "Failed to reject {name}", - "Error getting OAuth access token" : "Error getting OAuth access token", - "Error during OAuth exchanges" : "خطا در هنگام تبادل OAuth", - "Signature of %s" : "Signature of %s", - "Bad HTTP method" : "روش HTTP بد", - "Bad credentials" : "اعتبارنامه بد", - "OAuth access token refused" : "نشانه دسترسی OAuth رد شد", - "Sign with DocuSign" : "Sign with DocuSign", - "Sign with LibreSign" : "Sign with LibreSign", - "Your approval was requested by {name}." : "Your approval was requested by {name}.", - "The related approval workflow is:" : "The related approval workflow is:", - "Request a signature via DocuSign" : "Request a signature via DocuSign", - "Users or email addresses" : "Users or email addresses", - "Nextcloud users or email addresses" : "Nextcloud users or email addresses", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients.", - "Request signature" : "Request signature", - "Recipients will receive an email from DocuSign to sign the document" : "Recipients will receive an email from DocuSign to sign the document", - "Failed to request signature with DocuSign" : "Failed to request signature with DocuSign", - "DocuSign integration" : "DocuSign integration", - "DocuSign is an electronic signature solution." : "DocuSign is an electronic signature solution.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below.", - "Make sure you set this \"Redirect URI\":" : "Make sure you set this \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used.", - "Client ID (aka integration key)" : "Client ID (aka integration key)", - "Client ID of your application" : "Client ID of your application", - "Application secret key" : "Application secret key", - "Secret key of your application" : "Secret key of your application", - "Connect to DocuSign" : "Connect to DocuSign", - "Connected as {user} ({email})" : "Connected as {user} ({email})", - "Disconnect from DocuSign" : "Disconnect from DocuSign", - "Successfully connected to DocuSign!" : "Successfully connected to DocuSign!", - "OAuth access token could not be obtained:" : "نشانه دسترسی OAuth بدست نیامد:", - "DocuSign admin options saved" : "DocuSign admin options saved", - "Failed to save DocuSign admin options" : "Failed to save DocuSign admin options", - "Failed to save DocuSign OAuth state" : "Failed to save DocuSign OAuth state", - "You will receive an email from DocuSign to sign the document" : "You will receive an email from DocuSign to sign the document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "The user who requested this approval was not found, remember to send or share the signed document yourself", - "Approval signature" : "Approval signature", - "{name} signature requested via LibreSign" : "{name} signature requested via LibreSign", - "Impossible to sign this document" : "Impossible to sign this document", - "Pending approval, you are authorized to approve." : "Pending approval, you are authorized to approve.", - "Show approval details" : "Show approval details" + "Failed to reject {name}" : "Failed to reject {name}" },"pluralForm" :"nplurals=2; plural=(n> 1);" } \ No newline at end of file diff --git a/l10n/fi.js b/l10n/fi.js index 264bb561..85cccf23 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -70,31 +70,6 @@ OC.L10N.register( "Pending approval" : "Odottaa hyväksyntää", "Warning" : "Varoitus", "You approved {name}" : "Hyväksyit {name}", - "You rejected {name}" : "Hylkäsit {name}", - "Error getting OAuth access token" : "Virhe OAuth-valtuutuksen hakemisessa", - "Error during OAuth exchanges" : "Virhe OAuth-tunnistautumisessa", - "Bad HTTP method" : "Virheellinen HTTP-metodi", - "Bad credentials" : "Virheelliset kirjautumistiedot", - "OAuth access token refused" : "OAuth-valtuutus hylätty", - "Sign with DocuSign" : "Allekirjoita DocuSignilla", - "Sign with LibreSign" : "Allekirjoita LibreSignilla", - "Your approval was requested by {name}." : "{name} pyysi hyväksyntääsi.", - "The related approval workflow is:" : "Liittyvä hyväksynnän työnkulku on:", - "Request a signature via DocuSign" : "Pyydä allekirjoitus DocuSignin kautta", - "Users or email addresses" : "Käyttäjät tai sähköpostiosoitteet", - "Nextcloud users or email addresses" : "Nextcloud-käyttäjät tai sähköpostiosoitteet", - "Request signature" : "Pyydä allekirjoitus", - "DocuSign integration" : "DocuSign-integraatio", - "DocuSign is an electronic signature solution." : "DocuSign on sähköisen allekirjoituksen ratkaisu.", - "Application secret key" : "Sovelluksen salainen avain", - "Connect to DocuSign" : "Yhdistä DocuSigniin", - "Connected as {user} ({email})" : "Yhdistetty käyttäjänä {user} ({email})", - "Disconnect from DocuSign" : "Katkaise yhteys DocuSigniin", - "Successfully connected to DocuSign!" : "Yhdistetty DocuSigniin!", - "DocuSign admin options saved" : "DocuSign-ylläpitäjän asetukset tallennettu", - "Approval signature" : "Hyväksynnän allekirjoitus", - "Impossible to sign this document" : "Tätä asiakirjaa ei voi allekirjoittaa", - "Pending approval, you are authorized to approve." : "Odottava hyväksyntä, sinulla on valtuus hyväksyä.", - "Show approval details" : "Näytä hyväksynnän tiedot" + "You rejected {name}" : "Hylkäsit {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/fi.json b/l10n/fi.json index e6bc196c..3902fdc9 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -68,31 +68,6 @@ "Pending approval" : "Odottaa hyväksyntää", "Warning" : "Varoitus", "You approved {name}" : "Hyväksyit {name}", - "You rejected {name}" : "Hylkäsit {name}", - "Error getting OAuth access token" : "Virhe OAuth-valtuutuksen hakemisessa", - "Error during OAuth exchanges" : "Virhe OAuth-tunnistautumisessa", - "Bad HTTP method" : "Virheellinen HTTP-metodi", - "Bad credentials" : "Virheelliset kirjautumistiedot", - "OAuth access token refused" : "OAuth-valtuutus hylätty", - "Sign with DocuSign" : "Allekirjoita DocuSignilla", - "Sign with LibreSign" : "Allekirjoita LibreSignilla", - "Your approval was requested by {name}." : "{name} pyysi hyväksyntääsi.", - "The related approval workflow is:" : "Liittyvä hyväksynnän työnkulku on:", - "Request a signature via DocuSign" : "Pyydä allekirjoitus DocuSignin kautta", - "Users or email addresses" : "Käyttäjät tai sähköpostiosoitteet", - "Nextcloud users or email addresses" : "Nextcloud-käyttäjät tai sähköpostiosoitteet", - "Request signature" : "Pyydä allekirjoitus", - "DocuSign integration" : "DocuSign-integraatio", - "DocuSign is an electronic signature solution." : "DocuSign on sähköisen allekirjoituksen ratkaisu.", - "Application secret key" : "Sovelluksen salainen avain", - "Connect to DocuSign" : "Yhdistä DocuSigniin", - "Connected as {user} ({email})" : "Yhdistetty käyttäjänä {user} ({email})", - "Disconnect from DocuSign" : "Katkaise yhteys DocuSigniin", - "Successfully connected to DocuSign!" : "Yhdistetty DocuSigniin!", - "DocuSign admin options saved" : "DocuSign-ylläpitäjän asetukset tallennettu", - "Approval signature" : "Hyväksynnän allekirjoitus", - "Impossible to sign this document" : "Tätä asiakirjaa ei voi allekirjoittaa", - "Pending approval, you are authorized to approve." : "Odottava hyväksyntä, sinulla on valtuus hyväksyä.", - "Show approval details" : "Näytä hyväksynnän tiedot" + "You rejected {name}" : "Hylkäsit {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/fr.js b/l10n/fr.js index 893a5b74..f0a4eb81 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Titre du workflow", "What is the purpose of this workflow?" : "Quel est l'objet de ce workflow ?", "Request approval" : "Demander l'approbation", + "There is no approval workflow allowing you to request approval." : "Il n'y a pas de processus d'approbation qui vous permette de demander l'approbation.", "Approved" : "Approuvé", "Approved by" : "Approuvé par", "Rejected" : "Rejeté", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "Le circuit de validation correspondant est : {ruleDescription}", "This user requested your approval" : "Cet utilisateur a demandé votre approbation", "Your approval was requested." : "Votre approbation a été demandée.", + "Approval information" : "Information sur l'approbation", "No recommendations. Start typing." : "Pas de suggestion. Commencez à écrire.", "No result." : "Aucun résultat.", "Who?" : "Qui ?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Vous avez approuvé {name}", "Failed to approve {name}" : "Impossible d'approuver {name}", "You rejected {name}" : "Vous avez refusé {name}", - "Failed to reject {name}" : "Impossible de rejeter {name}", - "Error getting OAuth access token" : "Erreur lors de l’obtention du jeton d’accès OAuth", - "Error during OAuth exchanges" : "Erreur pendant les échanges OAuth", - "Signature of %s" : "Signature de %s", - "Bad HTTP method" : "Mauvaise méthode HTTP", - "Bad credentials" : "Identifiants incorrects", - "OAuth access token refused" : "Jeton d’accès OAuth refusé", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Approuver/rejeter des fichiers en fonction de flux de travail définis par les administrateurs.\n\n:warning: **Cette application sera obsolète à partir de Nextcloud 28.\nSi vous êtes un client Nextcloud et que vous utilisez cette application,\nveuillez attendre avant de passer à la version 28 et d'ouvrir un ticket au support afin que nous puissions trouver une solution pour votre cas d'utilisation.**", - "Sign with DocuSign" : "Signer avec DocuSign", - "Sign with LibreSign" : "Signer avec LibreSign", - "Your approval was requested by {name}." : "Votre approbation a été demandée par {who}.", - "The related approval workflow is:" : "Le workflow d’approbation lié est :", - "Request a signature via DocuSign" : "Demander une signature via DocuSign", - "Users or email addresses" : "Utilisateurs ou adresses e-mail", - "Nextcloud users or email addresses" : "Utilisateurs Nextcloud ou adresses mail", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Les destinataires recevront un e-mail de DocuSign avec un lien pour signer le document. Vous serez informé(e) par e-mail quand le document aura été signé par tous les destinataires.", - "Request signature" : "Demander une signature", - "Recipients will receive an email from DocuSign to sign the document" : "Les destinataires recevront un e-mail de DocuSign pour signer le document", - "Failed to request signature with DocuSign" : "Impossible de demander la signature avec DocuSign", - "DocuSign integration" : "Intégration de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign est un service de signature électronique.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si vous voulez utiliser DocuSign, créez une application dans les paramètres « My Apps & Keys » de votre compte développeur DocuSign et indiquez les client ID (integration key) et secret ci-dessous.", - "Make sure you set this \"Redirect URI\":" : "Assurez-vous de définir cette « Adresse de redirection » :", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si votre utilisateur DocuSign est associé à plusieurs comptes DocuSign, le compte par défaut sera utilisé.", - "Client ID (aka integration key)" : "ID client (clé d’intégration)", - "Client ID of your application" : "ID client de votre application", - "Application secret key" : "Clé secrète d’application", - "Secret key of your application" : "Clé secrète de votre application", - "Connect to DocuSign" : "Se connecter à DocuSign", - "Connected as {user} ({email})" : "Connecté en tant que {user} ({email})", - "Disconnect from DocuSign" : "Déconnecté de DocuSign", - "Successfully connected to DocuSign!" : "Connecté à DocuSign !", - "OAuth access token could not be obtained:" : "Le jeton d’accès OAuth n’a pas pu être obtenu :", - "DocuSign admin options saved" : "Options d’administration DocuSign enregistrées", - "Failed to save DocuSign admin options" : "Impossible d’enregistrer les options d’administration DocuSign", - "Failed to save DocuSign OAuth state" : "Impossible d’enregistrer l’état OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Vous allez recevoir un e-mail de DocuSign pour signer ce document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "L’utilisateur qui a demandé cette approbation n’a pas été trouvé. Pensez à envoyer ou partager vous-même le document signé", - "Approval signature" : "Signature d’approbation", - "{name} signature requested via LibreSign" : "Signature de {name} requise via LibreSign", - "Impossible to sign this document" : "Impossible de signer ce document", - "Pending approval, you are authorized to approve." : "Approbation en attente, vous êtes autorisé(e) à valider.", - "Show approval details" : "Afficher les détails d’approbation" + "Failed to reject {name}" : "Impossible de rejeter {name}" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/fr.json b/l10n/fr.json index 7a9d5025..39af40c7 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -69,6 +69,7 @@ "Workflow title" : "Titre du workflow", "What is the purpose of this workflow?" : "Quel est l'objet de ce workflow ?", "Request approval" : "Demander l'approbation", + "There is no approval workflow allowing you to request approval." : "Il n'y a pas de processus d'approbation qui vous permette de demander l'approbation.", "Approved" : "Approuvé", "Approved by" : "Approuvé par", "Rejected" : "Rejeté", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "Le circuit de validation correspondant est : {ruleDescription}", "This user requested your approval" : "Cet utilisateur a demandé votre approbation", "Your approval was requested." : "Votre approbation a été demandée.", + "Approval information" : "Information sur l'approbation", "No recommendations. Start typing." : "Pas de suggestion. Commencez à écrire.", "No result." : "Aucun résultat.", "Who?" : "Qui ?", @@ -104,48 +106,6 @@ "You approved {name}" : "Vous avez approuvé {name}", "Failed to approve {name}" : "Impossible d'approuver {name}", "You rejected {name}" : "Vous avez refusé {name}", - "Failed to reject {name}" : "Impossible de rejeter {name}", - "Error getting OAuth access token" : "Erreur lors de l’obtention du jeton d’accès OAuth", - "Error during OAuth exchanges" : "Erreur pendant les échanges OAuth", - "Signature of %s" : "Signature de %s", - "Bad HTTP method" : "Mauvaise méthode HTTP", - "Bad credentials" : "Identifiants incorrects", - "OAuth access token refused" : "Jeton d’accès OAuth refusé", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Approuver/rejeter des fichiers en fonction de flux de travail définis par les administrateurs.\n\n:warning: **Cette application sera obsolète à partir de Nextcloud 28.\nSi vous êtes un client Nextcloud et que vous utilisez cette application,\nveuillez attendre avant de passer à la version 28 et d'ouvrir un ticket au support afin que nous puissions trouver une solution pour votre cas d'utilisation.**", - "Sign with DocuSign" : "Signer avec DocuSign", - "Sign with LibreSign" : "Signer avec LibreSign", - "Your approval was requested by {name}." : "Votre approbation a été demandée par {who}.", - "The related approval workflow is:" : "Le workflow d’approbation lié est :", - "Request a signature via DocuSign" : "Demander une signature via DocuSign", - "Users or email addresses" : "Utilisateurs ou adresses e-mail", - "Nextcloud users or email addresses" : "Utilisateurs Nextcloud ou adresses mail", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Les destinataires recevront un e-mail de DocuSign avec un lien pour signer le document. Vous serez informé(e) par e-mail quand le document aura été signé par tous les destinataires.", - "Request signature" : "Demander une signature", - "Recipients will receive an email from DocuSign to sign the document" : "Les destinataires recevront un e-mail de DocuSign pour signer le document", - "Failed to request signature with DocuSign" : "Impossible de demander la signature avec DocuSign", - "DocuSign integration" : "Intégration de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign est un service de signature électronique.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si vous voulez utiliser DocuSign, créez une application dans les paramètres « My Apps & Keys » de votre compte développeur DocuSign et indiquez les client ID (integration key) et secret ci-dessous.", - "Make sure you set this \"Redirect URI\":" : "Assurez-vous de définir cette « Adresse de redirection » :", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si votre utilisateur DocuSign est associé à plusieurs comptes DocuSign, le compte par défaut sera utilisé.", - "Client ID (aka integration key)" : "ID client (clé d’intégration)", - "Client ID of your application" : "ID client de votre application", - "Application secret key" : "Clé secrète d’application", - "Secret key of your application" : "Clé secrète de votre application", - "Connect to DocuSign" : "Se connecter à DocuSign", - "Connected as {user} ({email})" : "Connecté en tant que {user} ({email})", - "Disconnect from DocuSign" : "Déconnecté de DocuSign", - "Successfully connected to DocuSign!" : "Connecté à DocuSign !", - "OAuth access token could not be obtained:" : "Le jeton d’accès OAuth n’a pas pu être obtenu :", - "DocuSign admin options saved" : "Options d’administration DocuSign enregistrées", - "Failed to save DocuSign admin options" : "Impossible d’enregistrer les options d’administration DocuSign", - "Failed to save DocuSign OAuth state" : "Impossible d’enregistrer l’état OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Vous allez recevoir un e-mail de DocuSign pour signer ce document", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "L’utilisateur qui a demandé cette approbation n’a pas été trouvé. Pensez à envoyer ou partager vous-même le document signé", - "Approval signature" : "Signature d’approbation", - "{name} signature requested via LibreSign" : "Signature de {name} requise via LibreSign", - "Impossible to sign this document" : "Impossible de signer ce document", - "Pending approval, you are authorized to approve." : "Approbation en attente, vous êtes autorisé(e) à valider.", - "Show approval details" : "Afficher les détails d’approbation" + "Failed to reject {name}" : "Impossible de rejeter {name}" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ga.js b/l10n/ga.js new file mode 100644 index 00000000..eb0b6679 --- /dev/null +++ b/l10n/ga.js @@ -0,0 +1,113 @@ +OC.L10N.register( + "approval", + { + "You approved {file}" : "Cheadaigh tú {file}", + "{user} approved {file}" : "Cheadaigh {user} {file}", + "You rejected {file}" : "Dhiúltaigh tú {file}", + "{user} rejected {file}" : "Dhiúltaigh {user} {file}", + "Your approval was requested on {file}" : "Iarradh do cheadú ar {file}", + "Your approval was requested on {file} by {who}" : "D'iarr {who} do cheadú ar {file}", + "You requested approval on {file}" : "D'iarr tú ceadú ar {file}", + "A guest user" : "Aoi-úsáideoir", + "Approval" : "Ceadú", + "Approval events" : "Cead imeachta", + "Pending approvals" : "Ceaduithe ar feitheamh", + "A file was approved" : "Ceadaíodh comhad", + "A file was rejected" : "Diúltaíodh comhad", + "A directory was approved" : "Ceadaíodh eolaire", + "A directory was rejected" : "Diúltaíodh eolaire", + "%1$s approved %2$s" : "%1$s ceadaithe %2$s", + "%1$s rejected %2$s" : "%1$s dhiúltaigh %2$s", + "{user} approved {node}" : "Cheadaigh {user} {node}", + "{user} rejected {node}" : "Dhiúltaigh {user} {node}", + "Your approval was requested" : "Iarradh do cheadú", + "%2$s requested your approval for %1$s" : "%2$s d'iarr ceadú le haghaidh %1$s", + "{user} requested your approval for {node}" : "D'iarr {user} ceadú do {node}", + "Rule does not exist" : "Ní riail ann", + "This element is not shared with any user who is authorized to approve it" : "Ní roinntear an eilimint seo le haon úsáideoir atá údaraithe chun é a cheadú", + "Approval has already been requested with this rule for this file" : "Iarradh ceadú leis an riail seo don chomhad seo cheana féin", + "You are not authorized to request with this rule" : "Níl tú údaraithe iarratas a dhéanamh leis an riail seo", + "Please check my approval request" : "Seiceáil le do thoil m'iarratas formheasa", + "Approval workflows" : "Sreafaí oibre ceadaithe", + "Let users approve or reject files" : "Lig d'úsáideoirí comhaid a cheadú nó a dhiúltú", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Comhaid a cheadú/a dhiúltú bunaithe ar shreafaí oibre arna sainiú ag riarthóirí.\n\n**Rabhadh**: Níl comhtháthú DocuSign mar chuid den aip seo a thuilleadh\nagus is féidir é a shuiteáil leis [an aip seo] (https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Sainmhíníonn gach sreabhadh oibre cé (cé na húsáideoirí, na grúpaí nó na ciorcail) is féidir comhaid a cheadú do chlib ar feitheamh ar leith agus cén chlib cheadaithe/diúltaithe ar cheart a shannadh ansin.", + "A list of users/groups/circles who can manually request approval can be optionally defined." : "Is féidir liosta úsáideoirí/grúpaí/ciorcail ar féidir leo ceadú a iarraidh de láimh a shainiú go roghnach.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Chun go measfar é a bheith ceadaithe, ní mór do na sreafaí oibre go léir atá i gceist comhad/eolaire a bhfuil ilchlibeanna ar feitheamh sannta orthu a fhaomhadh.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "Is féidir leat sreafaí oibre faofa a shlabhra trí chlib atá ar feitheamh a úsáid mar chlib cheadaithe/diúltaithe i sreabhadh oibre eile.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "Caithfidh gach clib a bheith difriúil i sreabhadh oibre. Ní féidir clib ar feitheamh a úsáid ach i sreabhadh oibre amháin.", + "Delete workflow" : "Scrios sreabhadh oibre", + "No workflow yet" : "Níl aon sreabhadh oibre fós", + "New workflow" : "Sreabhadh oibre nua", + "Create new hidden tag" : "Cruthaigh clib nua i bhfolach", + "New tag name" : "Ainm clib nua", + "Create" : "Cruthaigh", + "Cancel" : "Cealaigh", + "All fields are required" : "Tá gach réimse ag teastáil", + "All tags must be different" : "Caithfidh gach clib a bheith difriúil", + "Pending tag is already used in another workflow" : "Úsáidtear clib ar feitheamh cheana féin i sreabhadh oibre eile", + "Create workflow" : "Cruthaigh sreabhadh oibre", + "Failed to get approval workflows" : "Theip ar sreafaí oibre faofa a fháil", + "Approval workflow saved" : "Sábháladh sreabhadh oibre formheasa", + "Failed to save approval workflow" : "Theip ar an sreabhadh oibre ceadaithe a shábháil", + "New approval workflow created" : "Cruthaíodh sreabhadh oibre faofa nua", + "Failed to create approval workflow" : "Theip ar shreabhadh oibre ceadaithe a chruthú", + "Approval workflow deleted" : "Scriosadh sreabhadh oibre an cheadaithe", + "Failed to delete approval workflow" : "Theip ar an sreabhadh oibre ceadaithe a scriosadh", + "Tag \"{name}\" created" : "Clib \"{name}\" cruthaithe", + "Failed to create tag \"{name}\"" : "Theip ar chruthú clib \"{name}\"", + "Approve" : "Cheadaigh", + "Reject" : "Diúltaigh", + "Select pending tag" : "Roghnaigh clib ar feitheamh", + "Who can request approval?" : "Cé atá in ann cead a iarraidh?", + "Who can approve?" : "Cé atá in ann a cheadú?", + "Select approved tag" : "Roghnaigh clib ceadaithe", + "Select rejected tag" : "Roghnaigh clib diúltaithe", + "Who can request approval" : "Cé atá in ann ceadú a iarraidh", + "Who can approve" : "Cé atá in ann a cheadú", + "Tag to act on" : "Clib chun gníomhú air", + "Tag set on approval" : "Clib socraithe ar cheadú", + "Tag set on rejection" : "Clib socraithe ar dhiúltú", + "Workflow title" : "Teideal sreabhadh oibre", + "What is the purpose of this workflow?" : "Cad é cuspóir an tsreafa oibre seo?", + "Request approval" : "Iarr ceadú", + "There is no approval workflow allowing you to request approval." : "Níl aon sreabhadh oibre ceadaithe a ligeann duit formheas a iarraidh.", + "Approved" : "Ceadaithe", + "Approved by" : "Ceadaithe ag", + "Rejected" : "Diúltaithe", + "Rejected by" : "Diúltaithe ag", + "Approval requested by" : "Faomhadh arna iarraidh ag", + "Approval requested" : "Faomhadh iarrtha", + "you" : "tú", + "The related approval workflow is: {ruleDescription}" : "Is é an sreabhadh oibre ceadaithe gaolmhar ná: {ruleDescription}", + "This user requested your approval" : "D'iarr an t-úsáideoir seo do cheadú", + "Your approval was requested." : "Iarradh do cheadú.", + "Approval information" : "Faisnéis cheadaithe", + "No recommendations. Start typing." : "Gan moltaí. Tosaigh ag clóscríobh.", + "No result." : "Gan toradh.", + "Who?" : "EDS?", + "Impossible to get user/group/circle list" : "Ní féidir liosta úsáideora/grúpa/ciorcail a fháil", + "Select approval workflow" : "Roghnaigh sreabhadh oibre formheasa", + "File will be automatically shared with everybody allowed to approve." : "Roinnfear an comhad go huathoibríoch le gach duine a bhfuil cead aige é a cheadú.", + "Can be approved by" : "Is féidir é a cheadú le", + "More files to approve" : "Tuilleadh comhad le faomhadh", + "No files to approve!" : "Níl aon chomhaid le faomhadh!", + "Failed to get approval pending files" : "Theip ar cheadú comhaid ar feitheamh a fháil", + "by {name} at {date}" : "le {name} ag {date}", + "at {date}" : "ag {date}", + "Waiting for authorized users to approve this file" : "Ag fanacht le húsáideoirí údaraithe an comhad seo a cheadú", + "Pending approval, you are authorized to approve" : "Ar feitheamh ceadaithe, tá tú údaraithe a cheadú", + "This element was approved" : "Ceadaíodh an eilimint seo", + "This element was rejected" : "Diúltaíodh don eilimint seo", + "Pending approval" : "Le ceadú", + "Waiting for your approval" : "Ag fanacht le do cheadú", + "Failed to check approval status" : "Theip ar stádas an cheadaithe a sheiceáil", + "Approval requested for {name}" : "Iarradh ceadú le haghaidh {name}", + "Warning" : "Rabhadh", + "Failed to request approval for {name}" : "Theip ar cheadú a iarraidh le haghaidh {name}", + "You approved {name}" : "Cheadaigh tú {name}", + "Failed to approve {name}" : "Theip ar cheadú {name}", + "You rejected {name}" : "Dhiúltaigh tú {name}", + "Failed to reject {name}" : "Theip ar {name} a dhiúltú" +}, +"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); diff --git a/l10n/ga.json b/l10n/ga.json new file mode 100644 index 00000000..b32611b3 --- /dev/null +++ b/l10n/ga.json @@ -0,0 +1,111 @@ +{ "translations": { + "You approved {file}" : "Cheadaigh tú {file}", + "{user} approved {file}" : "Cheadaigh {user} {file}", + "You rejected {file}" : "Dhiúltaigh tú {file}", + "{user} rejected {file}" : "Dhiúltaigh {user} {file}", + "Your approval was requested on {file}" : "Iarradh do cheadú ar {file}", + "Your approval was requested on {file} by {who}" : "D'iarr {who} do cheadú ar {file}", + "You requested approval on {file}" : "D'iarr tú ceadú ar {file}", + "A guest user" : "Aoi-úsáideoir", + "Approval" : "Ceadú", + "Approval events" : "Cead imeachta", + "Pending approvals" : "Ceaduithe ar feitheamh", + "A file was approved" : "Ceadaíodh comhad", + "A file was rejected" : "Diúltaíodh comhad", + "A directory was approved" : "Ceadaíodh eolaire", + "A directory was rejected" : "Diúltaíodh eolaire", + "%1$s approved %2$s" : "%1$s ceadaithe %2$s", + "%1$s rejected %2$s" : "%1$s dhiúltaigh %2$s", + "{user} approved {node}" : "Cheadaigh {user} {node}", + "{user} rejected {node}" : "Dhiúltaigh {user} {node}", + "Your approval was requested" : "Iarradh do cheadú", + "%2$s requested your approval for %1$s" : "%2$s d'iarr ceadú le haghaidh %1$s", + "{user} requested your approval for {node}" : "D'iarr {user} ceadú do {node}", + "Rule does not exist" : "Ní riail ann", + "This element is not shared with any user who is authorized to approve it" : "Ní roinntear an eilimint seo le haon úsáideoir atá údaraithe chun é a cheadú", + "Approval has already been requested with this rule for this file" : "Iarradh ceadú leis an riail seo don chomhad seo cheana féin", + "You are not authorized to request with this rule" : "Níl tú údaraithe iarratas a dhéanamh leis an riail seo", + "Please check my approval request" : "Seiceáil le do thoil m'iarratas formheasa", + "Approval workflows" : "Sreafaí oibre ceadaithe", + "Let users approve or reject files" : "Lig d'úsáideoirí comhaid a cheadú nó a dhiúltú", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Comhaid a cheadú/a dhiúltú bunaithe ar shreafaí oibre arna sainiú ag riarthóirí.\n\n**Rabhadh**: Níl comhtháthú DocuSign mar chuid den aip seo a thuilleadh\nagus is féidir é a shuiteáil leis [an aip seo] (https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Sainmhíníonn gach sreabhadh oibre cé (cé na húsáideoirí, na grúpaí nó na ciorcail) is féidir comhaid a cheadú do chlib ar feitheamh ar leith agus cén chlib cheadaithe/diúltaithe ar cheart a shannadh ansin.", + "A list of users/groups/circles who can manually request approval can be optionally defined." : "Is féidir liosta úsáideoirí/grúpaí/ciorcail ar féidir leo ceadú a iarraidh de láimh a shainiú go roghnach.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Chun go measfar é a bheith ceadaithe, ní mór do na sreafaí oibre go léir atá i gceist comhad/eolaire a bhfuil ilchlibeanna ar feitheamh sannta orthu a fhaomhadh.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "Is féidir leat sreafaí oibre faofa a shlabhra trí chlib atá ar feitheamh a úsáid mar chlib cheadaithe/diúltaithe i sreabhadh oibre eile.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "Caithfidh gach clib a bheith difriúil i sreabhadh oibre. Ní féidir clib ar feitheamh a úsáid ach i sreabhadh oibre amháin.", + "Delete workflow" : "Scrios sreabhadh oibre", + "No workflow yet" : "Níl aon sreabhadh oibre fós", + "New workflow" : "Sreabhadh oibre nua", + "Create new hidden tag" : "Cruthaigh clib nua i bhfolach", + "New tag name" : "Ainm clib nua", + "Create" : "Cruthaigh", + "Cancel" : "Cealaigh", + "All fields are required" : "Tá gach réimse ag teastáil", + "All tags must be different" : "Caithfidh gach clib a bheith difriúil", + "Pending tag is already used in another workflow" : "Úsáidtear clib ar feitheamh cheana féin i sreabhadh oibre eile", + "Create workflow" : "Cruthaigh sreabhadh oibre", + "Failed to get approval workflows" : "Theip ar sreafaí oibre faofa a fháil", + "Approval workflow saved" : "Sábháladh sreabhadh oibre formheasa", + "Failed to save approval workflow" : "Theip ar an sreabhadh oibre ceadaithe a shábháil", + "New approval workflow created" : "Cruthaíodh sreabhadh oibre faofa nua", + "Failed to create approval workflow" : "Theip ar shreabhadh oibre ceadaithe a chruthú", + "Approval workflow deleted" : "Scriosadh sreabhadh oibre an cheadaithe", + "Failed to delete approval workflow" : "Theip ar an sreabhadh oibre ceadaithe a scriosadh", + "Tag \"{name}\" created" : "Clib \"{name}\" cruthaithe", + "Failed to create tag \"{name}\"" : "Theip ar chruthú clib \"{name}\"", + "Approve" : "Cheadaigh", + "Reject" : "Diúltaigh", + "Select pending tag" : "Roghnaigh clib ar feitheamh", + "Who can request approval?" : "Cé atá in ann cead a iarraidh?", + "Who can approve?" : "Cé atá in ann a cheadú?", + "Select approved tag" : "Roghnaigh clib ceadaithe", + "Select rejected tag" : "Roghnaigh clib diúltaithe", + "Who can request approval" : "Cé atá in ann ceadú a iarraidh", + "Who can approve" : "Cé atá in ann a cheadú", + "Tag to act on" : "Clib chun gníomhú air", + "Tag set on approval" : "Clib socraithe ar cheadú", + "Tag set on rejection" : "Clib socraithe ar dhiúltú", + "Workflow title" : "Teideal sreabhadh oibre", + "What is the purpose of this workflow?" : "Cad é cuspóir an tsreafa oibre seo?", + "Request approval" : "Iarr ceadú", + "There is no approval workflow allowing you to request approval." : "Níl aon sreabhadh oibre ceadaithe a ligeann duit formheas a iarraidh.", + "Approved" : "Ceadaithe", + "Approved by" : "Ceadaithe ag", + "Rejected" : "Diúltaithe", + "Rejected by" : "Diúltaithe ag", + "Approval requested by" : "Faomhadh arna iarraidh ag", + "Approval requested" : "Faomhadh iarrtha", + "you" : "tú", + "The related approval workflow is: {ruleDescription}" : "Is é an sreabhadh oibre ceadaithe gaolmhar ná: {ruleDescription}", + "This user requested your approval" : "D'iarr an t-úsáideoir seo do cheadú", + "Your approval was requested." : "Iarradh do cheadú.", + "Approval information" : "Faisnéis cheadaithe", + "No recommendations. Start typing." : "Gan moltaí. Tosaigh ag clóscríobh.", + "No result." : "Gan toradh.", + "Who?" : "EDS?", + "Impossible to get user/group/circle list" : "Ní féidir liosta úsáideora/grúpa/ciorcail a fháil", + "Select approval workflow" : "Roghnaigh sreabhadh oibre formheasa", + "File will be automatically shared with everybody allowed to approve." : "Roinnfear an comhad go huathoibríoch le gach duine a bhfuil cead aige é a cheadú.", + "Can be approved by" : "Is féidir é a cheadú le", + "More files to approve" : "Tuilleadh comhad le faomhadh", + "No files to approve!" : "Níl aon chomhaid le faomhadh!", + "Failed to get approval pending files" : "Theip ar cheadú comhaid ar feitheamh a fháil", + "by {name} at {date}" : "le {name} ag {date}", + "at {date}" : "ag {date}", + "Waiting for authorized users to approve this file" : "Ag fanacht le húsáideoirí údaraithe an comhad seo a cheadú", + "Pending approval, you are authorized to approve" : "Ar feitheamh ceadaithe, tá tú údaraithe a cheadú", + "This element was approved" : "Ceadaíodh an eilimint seo", + "This element was rejected" : "Diúltaíodh don eilimint seo", + "Pending approval" : "Le ceadú", + "Waiting for your approval" : "Ag fanacht le do cheadú", + "Failed to check approval status" : "Theip ar stádas an cheadaithe a sheiceáil", + "Approval requested for {name}" : "Iarradh ceadú le haghaidh {name}", + "Warning" : "Rabhadh", + "Failed to request approval for {name}" : "Theip ar cheadú a iarraidh le haghaidh {name}", + "You approved {name}" : "Cheadaigh tú {name}", + "Failed to approve {name}" : "Theip ar cheadú {name}", + "You rejected {name}" : "Dhiúltaigh tú {name}", + "Failed to reject {name}" : "Theip ar {name} a dhiúltú" +},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" +} \ No newline at end of file diff --git a/l10n/gl.js b/l10n/gl.js index d4b8a405..9a7dfb90 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "Comprobe a miña solicitude de aprobación", "Approval workflows" : "Fluxos de traballo das aprobacións", "Let users approve or reject files" : "Permite aos usuarios aprobar ou rexeitar ficheiros", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Aprobar/rexeitar ficheiros en función dos fluxos de traballo\ndefinidos pola administración.\n\n**Advertencia**: a integración de DocuSign xa non forma parte desta\naplicación e pódese instalar con [esta aplicación](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Cada fluxo de traballo define quen (que usuarios, grupos ou círculos) pode aprobar ficheiros para unha determinada etiqueta pendente e que etiqueta aprobada/rexeitada se debe asignar.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Opcionalmente, pódese definir unha lista de usuarios/grupos/círculos que poden solicitar a aprobación manualmente.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Para que se considere aprobado, un ficheiro/directorio que teña asignadas varias etiquetas pendentes, debe ser aprobado por todos os fluxos de traballo implicados.", @@ -70,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Título do fluxo de traballo", "What is the purpose of this workflow?" : "Cal é o propósito deste fluxo de traballo?", "Request approval" : "Solicitar aprobación", + "There is no approval workflow allowing you to request approval." : "Non hai ningún fluxo de traballo de aprobación que lle permita solicitar a aprobación.", "Approved" : "Aprobado", "Approved by" : "Aprobado por", "Rejected" : "Rexeitado", @@ -77,7 +79,10 @@ OC.L10N.register( "Approval requested by" : "Aprobación solicitada por", "Approval requested" : "Aprobación solicitada", "you" : "Vde.", + "The related approval workflow is: {ruleDescription}" : "O fluxo de traballo de aprobación relacionado é: {ruleDescription}", + "This user requested your approval" : "Este usuario solicitou a súa aprobación", "Your approval was requested." : "Foi solicitada a súa aprobación.", + "Approval information" : "Información da aprobación", "No recommendations. Start typing." : "Non hai recomendacións. Comece a escribir.", "No result." : "Sen resultados.", "Who?" : "Quen?", @@ -90,7 +95,12 @@ OC.L10N.register( "Failed to get approval pending files" : "Produciuse un fallo ao obter a aprobación dos ficheiros pendentes", "by {name} at {date}" : "por {name} o {date}", "at {date}" : "o {date}", + "Waiting for authorized users to approve this file" : "Agardando a que os usuarios autorizados aproben este ficheiro", + "Pending approval, you are authorized to approve" : "Pendente de aprobación, Vde. está autorizado para aprobar", + "This element was approved" : "Este elemento foi aprobado", + "This element was rejected" : "Este elemento foi rexeitado", "Pending approval" : "Pendente de aprobación", + "Waiting for your approval" : "Agardando a súa aprobación", "Failed to check approval status" : "Produciuse un erro ao comprobar o estado de aprobación", "Approval requested for {name}" : "Aprobación solicitada para {name}", "Warning" : "Advertencia", @@ -98,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Vde. aprobou {name}", "Failed to approve {name}" : "Produciuse un fallo ao aprobar {name}", "You rejected {name}" : "Vde. rexeitou {name}", - "Failed to reject {name}" : "Produciuse un fallo ao rexeitar {name}", - "Error getting OAuth access token" : "Produciuse un erro ao obter o testemuño de acceso OAuth", - "Error during OAuth exchanges" : "Produciuse un erro durante os intercambios de OAuth", - "Signature of %s" : "Sinatura de %s", - "Bad HTTP method" : "Método HTTP incorrecto", - "Bad credentials" : "Credenciais incorrectas", - "OAuth access token refused" : "O testemuño de acceso de OAuth foi rexeitado", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Aprobar/rexeitar ficheiros en función dos fluxos de traballo definidos pola administración do sitio.\n\n:warning: **Esta aplicación quedará obsoleta a partir de Nextcloud 28.\nSe é cliente de Nextcloud e depende desta aplicación,\nagarde coa actualización a 28 e abra un billete de asistencia técnica para que poidamos atopar unha solución para o seu caso de uso.**", - "Sign with DocuSign" : "Asinar con DocuSign", - "Sign with LibreSign" : "Asinar con LibreSign", - "Your approval was requested by {name}." : "A súa aprobación foi solicitada por {name}.", - "The related approval workflow is:" : "O fluxo de traballo de aprobación relacionado é:", - "Request a signature via DocuSign" : "Solicitar unha sinatura a través de DocuSign", - "Users or email addresses" : "Usuarios ou enderezos de correo-e", - "Nextcloud users or email addresses" : "Usuarios de Nextcloud ou enderezos de correo-e", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Os destinatarios recibirán un correo-e de DocuSign cunha ligazón para asinar o documento. Informarase por correo-e cando o documento sexa asinado por todos os destinatarios.", - "Request signature" : "Solicitar sinatura", - "Recipients will receive an email from DocuSign to sign the document" : "Os destinatarios recibirán un correo-e de DocuSign para asinar o documento", - "Failed to request signature with DocuSign" : "Produciuse un fallo ao solicitar a sinatura con DocuSign", - "DocuSign integration" : "Integración de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign é unha solución de sinatura electrónica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Se quere usar DocuSign, cree unha aplicación nos axustes da súa conta «As miñas aplicacións e chaves» de DocuSign e coloque o ID de cliente (chave de integración) e o segredo a seguir.", - "Make sure you set this \"Redirect URI\":" : "Asegúrese de estabelecer este «URI de redirección»:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Se o seu usuario de DocuSign está asociado con varias contas de DocuSign, utilizarase a predeterminada.", - "Client ID (aka integration key)" : "ID de cliente (tamén coñecido como chave de integración)", - "Client ID of your application" : "ID de cliente da súa aplicación", - "Application secret key" : "Chave secreta da aplicación", - "Secret key of your application" : "Chave secreta da súa aplicación", - "Connect to DocuSign" : "Conectar con DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectar de DocuSign", - "Successfully connected to DocuSign!" : "Conectou satisfactoriamente con DocuSign!", - "OAuth access token could not be obtained:" : "Non foi posíbel obter o testemuño de acceso OAuth", - "DocuSign admin options saved" : "Gardáronse as opcións de administración de DocuSign", - "Failed to save DocuSign admin options" : "Produciuse un fallo ao gardar as opcións de administración de DocuSign", - "Failed to save DocuSign OAuth state" : "Produciuse un fallo ao gardar o estado do OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Recibirá un correo-e de DocuSign para asinar o documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Non se atopou o usuario que solicitou esta aprobación, lembre enviar ou compartir o documento asinado por Vde. mesmo", - "Approval signature" : "Sinatura de aprobación", - "{name} signature requested via LibreSign" : "Sinatura de {name} solicitada a través de LibreSign", - "Impossible to sign this document" : "Non é posíbel asinar este documento", - "Pending approval, you are authorized to approve." : "Pendente de aprobación, Vde. está autorizado para aprobar.", - "Show approval details" : "Amosar os detalles da aprobación" + "Failed to reject {name}" : "Produciuse un fallo ao rexeitar {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index bd605620..9263a684 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -28,6 +28,7 @@ "Please check my approval request" : "Comprobe a miña solicitude de aprobación", "Approval workflows" : "Fluxos de traballo das aprobacións", "Let users approve or reject files" : "Permite aos usuarios aprobar ou rexeitar ficheiros", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Aprobar/rexeitar ficheiros en función dos fluxos de traballo\ndefinidos pola administración.\n\n**Advertencia**: a integración de DocuSign xa non forma parte desta\naplicación e pódese instalar con [esta aplicación](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Cada fluxo de traballo define quen (que usuarios, grupos ou círculos) pode aprobar ficheiros para unha determinada etiqueta pendente e que etiqueta aprobada/rexeitada se debe asignar.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Opcionalmente, pódese definir unha lista de usuarios/grupos/círculos que poden solicitar a aprobación manualmente.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Para que se considere aprobado, un ficheiro/directorio que teña asignadas varias etiquetas pendentes, debe ser aprobado por todos os fluxos de traballo implicados.", @@ -68,6 +69,7 @@ "Workflow title" : "Título do fluxo de traballo", "What is the purpose of this workflow?" : "Cal é o propósito deste fluxo de traballo?", "Request approval" : "Solicitar aprobación", + "There is no approval workflow allowing you to request approval." : "Non hai ningún fluxo de traballo de aprobación que lle permita solicitar a aprobación.", "Approved" : "Aprobado", "Approved by" : "Aprobado por", "Rejected" : "Rexeitado", @@ -75,7 +77,10 @@ "Approval requested by" : "Aprobación solicitada por", "Approval requested" : "Aprobación solicitada", "you" : "Vde.", + "The related approval workflow is: {ruleDescription}" : "O fluxo de traballo de aprobación relacionado é: {ruleDescription}", + "This user requested your approval" : "Este usuario solicitou a súa aprobación", "Your approval was requested." : "Foi solicitada a súa aprobación.", + "Approval information" : "Información da aprobación", "No recommendations. Start typing." : "Non hai recomendacións. Comece a escribir.", "No result." : "Sen resultados.", "Who?" : "Quen?", @@ -88,7 +93,12 @@ "Failed to get approval pending files" : "Produciuse un fallo ao obter a aprobación dos ficheiros pendentes", "by {name} at {date}" : "por {name} o {date}", "at {date}" : "o {date}", + "Waiting for authorized users to approve this file" : "Agardando a que os usuarios autorizados aproben este ficheiro", + "Pending approval, you are authorized to approve" : "Pendente de aprobación, Vde. está autorizado para aprobar", + "This element was approved" : "Este elemento foi aprobado", + "This element was rejected" : "Este elemento foi rexeitado", "Pending approval" : "Pendente de aprobación", + "Waiting for your approval" : "Agardando a súa aprobación", "Failed to check approval status" : "Produciuse un erro ao comprobar o estado de aprobación", "Approval requested for {name}" : "Aprobación solicitada para {name}", "Warning" : "Advertencia", @@ -96,48 +106,6 @@ "You approved {name}" : "Vde. aprobou {name}", "Failed to approve {name}" : "Produciuse un fallo ao aprobar {name}", "You rejected {name}" : "Vde. rexeitou {name}", - "Failed to reject {name}" : "Produciuse un fallo ao rexeitar {name}", - "Error getting OAuth access token" : "Produciuse un erro ao obter o testemuño de acceso OAuth", - "Error during OAuth exchanges" : "Produciuse un erro durante os intercambios de OAuth", - "Signature of %s" : "Sinatura de %s", - "Bad HTTP method" : "Método HTTP incorrecto", - "Bad credentials" : "Credenciais incorrectas", - "OAuth access token refused" : "O testemuño de acceso de OAuth foi rexeitado", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Aprobar/rexeitar ficheiros en función dos fluxos de traballo definidos pola administración do sitio.\n\n:warning: **Esta aplicación quedará obsoleta a partir de Nextcloud 28.\nSe é cliente de Nextcloud e depende desta aplicación,\nagarde coa actualización a 28 e abra un billete de asistencia técnica para que poidamos atopar unha solución para o seu caso de uso.**", - "Sign with DocuSign" : "Asinar con DocuSign", - "Sign with LibreSign" : "Asinar con LibreSign", - "Your approval was requested by {name}." : "A súa aprobación foi solicitada por {name}.", - "The related approval workflow is:" : "O fluxo de traballo de aprobación relacionado é:", - "Request a signature via DocuSign" : "Solicitar unha sinatura a través de DocuSign", - "Users or email addresses" : "Usuarios ou enderezos de correo-e", - "Nextcloud users or email addresses" : "Usuarios de Nextcloud ou enderezos de correo-e", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Os destinatarios recibirán un correo-e de DocuSign cunha ligazón para asinar o documento. Informarase por correo-e cando o documento sexa asinado por todos os destinatarios.", - "Request signature" : "Solicitar sinatura", - "Recipients will receive an email from DocuSign to sign the document" : "Os destinatarios recibirán un correo-e de DocuSign para asinar o documento", - "Failed to request signature with DocuSign" : "Produciuse un fallo ao solicitar a sinatura con DocuSign", - "DocuSign integration" : "Integración de DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign é unha solución de sinatura electrónica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Se quere usar DocuSign, cree unha aplicación nos axustes da súa conta «As miñas aplicacións e chaves» de DocuSign e coloque o ID de cliente (chave de integración) e o segredo a seguir.", - "Make sure you set this \"Redirect URI\":" : "Asegúrese de estabelecer este «URI de redirección»:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Se o seu usuario de DocuSign está asociado con varias contas de DocuSign, utilizarase a predeterminada.", - "Client ID (aka integration key)" : "ID de cliente (tamén coñecido como chave de integración)", - "Client ID of your application" : "ID de cliente da súa aplicación", - "Application secret key" : "Chave secreta da aplicación", - "Secret key of your application" : "Chave secreta da súa aplicación", - "Connect to DocuSign" : "Conectar con DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectar de DocuSign", - "Successfully connected to DocuSign!" : "Conectou satisfactoriamente con DocuSign!", - "OAuth access token could not be obtained:" : "Non foi posíbel obter o testemuño de acceso OAuth", - "DocuSign admin options saved" : "Gardáronse as opcións de administración de DocuSign", - "Failed to save DocuSign admin options" : "Produciuse un fallo ao gardar as opcións de administración de DocuSign", - "Failed to save DocuSign OAuth state" : "Produciuse un fallo ao gardar o estado do OAuth de DocuSign", - "You will receive an email from DocuSign to sign the document" : "Recibirá un correo-e de DocuSign para asinar o documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Non se atopou o usuario que solicitou esta aprobación, lembre enviar ou compartir o documento asinado por Vde. mesmo", - "Approval signature" : "Sinatura de aprobación", - "{name} signature requested via LibreSign" : "Sinatura de {name} solicitada a través de LibreSign", - "Impossible to sign this document" : "Non é posíbel asinar este documento", - "Pending approval, you are authorized to approve." : "Pendente de aprobación, Vde. está autorizado para aprobar.", - "Show approval details" : "Amosar os detalles da aprobación" + "Failed to reject {name}" : "Produciuse un fallo ao rexeitar {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/he.js b/l10n/he.js index 69509511..554ee56e 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -17,11 +17,6 @@ OC.L10N.register( "No recommendations. Start typing." : "אין המלצות. נא להתחיל להקליד.", "No result." : "אין תוצאות.", "Pending approval" : "בהמתנה לאישור", - "Warning" : "אזהרה", - "Error getting OAuth access token" : "שגיאה בקבלת אסימון גישה עם OAuth", - "Error during OAuth exchanges" : "שגיאה במהלך החלפות OAuth", - "Bad HTTP method" : "שגיאה במתודת HTTP", - "Bad credentials" : "פרטי גישה שגויים", - "OAuth access token refused" : "אסימון הגישה ב־OAuth סורב" + "Warning" : "אזהרה" }, "nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); diff --git a/l10n/he.json b/l10n/he.json index 59ebd0d9..823033e8 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -15,11 +15,6 @@ "No recommendations. Start typing." : "אין המלצות. נא להתחיל להקליד.", "No result." : "אין תוצאות.", "Pending approval" : "בהמתנה לאישור", - "Warning" : "אזהרה", - "Error getting OAuth access token" : "שגיאה בקבלת אסימון גישה עם OAuth", - "Error during OAuth exchanges" : "שגיאה במהלך החלפות OAuth", - "Bad HTTP method" : "שגיאה במתודת HTTP", - "Bad credentials" : "פרטי גישה שגויים", - "OAuth access token refused" : "אסימון הגישה ב־OAuth סורב" + "Warning" : "אזהרה" },"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" } \ No newline at end of file diff --git a/l10n/hr.js b/l10n/hr.js index b27feae0..89b899f2 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -93,47 +93,6 @@ OC.L10N.register( "You approved {name}" : "Odobrili ste {name}", "Failed to approve {name}" : "Odobrenje {name} nije uspjelo", "You rejected {name}" : "Odbili ste {name}", - "Failed to reject {name}" : "Odbijanje {name} nije uspjelo", - "Error getting OAuth access token" : "Pogreška pri dohvaćanju tokena za pristup OAuth", - "Error during OAuth exchanges" : "Pogreška tijekom razmjene radi autentifikacije OAuth", - "Signature of %s" : "Potpis od %s", - "Bad HTTP method" : "Pogrešna metoda HTTP-a", - "Bad credentials" : "Pogrešne vjerodajnice", - "OAuth access token refused" : "Odbijen token za pristup OAuth", - "Sign with DocuSign" : "Potpiši DocuSignom", - "Sign with LibreSign" : "Potpiši LibreSignom", - "Your approval was requested by {name}." : "{name} je zatražio vaše odobrenje.", - "The related approval workflow is:" : "Povezani tijek rada odobrenja:", - "Request a signature via DocuSign" : "Zatraži potpisivanje DocuSignom", - "Users or email addresses" : "Korisnici ili adrese e-pošte", - "Nextcloud users or email addresses" : "Korisnici Nextclouda ili adrese e-pošte", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Primatelji će primiti poruku e-pošte od DocuSigna s poveznicom za potpisivanje dokumenta. Bit ćete obaviješteni putem e-pošte kada dokument potpišu svi primatelji.", - "Request signature" : "Zatraži potpis", - "Recipients will receive an email from DocuSign to sign the document" : "Primatelji će primiti poruku e-pošte od DocuSigna u kojoj se od njih traži da potpišu dokument", - "Failed to request signature with DocuSign" : "Traženje potpisivanja DocuSignom nije uspjelo", - "DocuSign integration" : "Integracija DocuSigna", - "DocuSign is an electronic signature solution." : "DocuSign je sustav za elektroničko potpisivanje dokumenata.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ako želite upotrebljavati DocuSign, stvorite aplikaciju u postavkama „Moje aplikacije i ključevi" računa razvojnog programera za DocuSign i unesite ID klijenta (integracijski ključ) i tajnu.", - "Make sure you set this \"Redirect URI\":" : "Obavezno postavite sljedeći „URL za preusmjeravanje":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ako je vaš korisnik DocuSigna povezan s više računa sustava DocuSign, upotrebljavat će se zadani račun.", - "Client ID (aka integration key)" : "ID klijenta (tj. integracijski ključ)", - "Client ID of your application" : "ID klijenta vaše aplikacije", - "Application secret key" : "Tajni ključ aplikacije", - "Secret key of your application" : "Tajni ključ vaše aplikacije", - "Connect to DocuSign" : "Poveži se s DocuSignom", - "Connected as {user} ({email})" : "Povezan kao {user} ({email})", - "Disconnect from DocuSign" : "Odspoji se s DocuSigna", - "Successfully connected to DocuSign!" : "Uspješno povezivanje s DocuSignom!", - "OAuth access token could not be obtained:" : "Nije moguće dohvatiti token za pristup OAuth:", - "DocuSign admin options saved" : "Administratorske postavke DocuSigna su spremljene", - "Failed to save DocuSign admin options" : "Spremanje administratorskih postavki DocuSigna nije uspjelo", - "Failed to save DocuSign OAuth state" : "Spremanje stanja DocuSign OAuth nije uspjelo", - "You will receive an email from DocuSign to sign the document" : "Dobit ćete poruku e-pošte od DocuSigna u kojoj vas se traži da potpišete dokument", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Korisnik koji je zatražio ovo odobrenje nije pronađen. Ne zaboravite sami poslati ili podijeliti potpisani dokument", - "Approval signature" : "Potpis odobrenja", - "{name} signature requested via LibreSign" : "Zatražen je potpis od {name} putem LibreSigna", - "Impossible to sign this document" : "Potpisivanje ovog dokumenta nije moguće", - "Pending approval, you are authorized to approve." : "Odobrenje na čekanju, ovlašteni ste dati odobrenje.", - "Show approval details" : "Prikaži pojedinosti odobrenja" + "Failed to reject {name}" : "Odbijanje {name} nije uspjelo" }, "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); diff --git a/l10n/hr.json b/l10n/hr.json index 2e1e9b3d..e9962ceb 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -91,47 +91,6 @@ "You approved {name}" : "Odobrili ste {name}", "Failed to approve {name}" : "Odobrenje {name} nije uspjelo", "You rejected {name}" : "Odbili ste {name}", - "Failed to reject {name}" : "Odbijanje {name} nije uspjelo", - "Error getting OAuth access token" : "Pogreška pri dohvaćanju tokena za pristup OAuth", - "Error during OAuth exchanges" : "Pogreška tijekom razmjene radi autentifikacije OAuth", - "Signature of %s" : "Potpis od %s", - "Bad HTTP method" : "Pogrešna metoda HTTP-a", - "Bad credentials" : "Pogrešne vjerodajnice", - "OAuth access token refused" : "Odbijen token za pristup OAuth", - "Sign with DocuSign" : "Potpiši DocuSignom", - "Sign with LibreSign" : "Potpiši LibreSignom", - "Your approval was requested by {name}." : "{name} je zatražio vaše odobrenje.", - "The related approval workflow is:" : "Povezani tijek rada odobrenja:", - "Request a signature via DocuSign" : "Zatraži potpisivanje DocuSignom", - "Users or email addresses" : "Korisnici ili adrese e-pošte", - "Nextcloud users or email addresses" : "Korisnici Nextclouda ili adrese e-pošte", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Primatelji će primiti poruku e-pošte od DocuSigna s poveznicom za potpisivanje dokumenta. Bit ćete obaviješteni putem e-pošte kada dokument potpišu svi primatelji.", - "Request signature" : "Zatraži potpis", - "Recipients will receive an email from DocuSign to sign the document" : "Primatelji će primiti poruku e-pošte od DocuSigna u kojoj se od njih traži da potpišu dokument", - "Failed to request signature with DocuSign" : "Traženje potpisivanja DocuSignom nije uspjelo", - "DocuSign integration" : "Integracija DocuSigna", - "DocuSign is an electronic signature solution." : "DocuSign je sustav za elektroničko potpisivanje dokumenata.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ako želite upotrebljavati DocuSign, stvorite aplikaciju u postavkama „Moje aplikacije i ključevi" računa razvojnog programera za DocuSign i unesite ID klijenta (integracijski ključ) i tajnu.", - "Make sure you set this \"Redirect URI\":" : "Obavezno postavite sljedeći „URL za preusmjeravanje":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ako je vaš korisnik DocuSigna povezan s više računa sustava DocuSign, upotrebljavat će se zadani račun.", - "Client ID (aka integration key)" : "ID klijenta (tj. integracijski ključ)", - "Client ID of your application" : "ID klijenta vaše aplikacije", - "Application secret key" : "Tajni ključ aplikacije", - "Secret key of your application" : "Tajni ključ vaše aplikacije", - "Connect to DocuSign" : "Poveži se s DocuSignom", - "Connected as {user} ({email})" : "Povezan kao {user} ({email})", - "Disconnect from DocuSign" : "Odspoji se s DocuSigna", - "Successfully connected to DocuSign!" : "Uspješno povezivanje s DocuSignom!", - "OAuth access token could not be obtained:" : "Nije moguće dohvatiti token za pristup OAuth:", - "DocuSign admin options saved" : "Administratorske postavke DocuSigna su spremljene", - "Failed to save DocuSign admin options" : "Spremanje administratorskih postavki DocuSigna nije uspjelo", - "Failed to save DocuSign OAuth state" : "Spremanje stanja DocuSign OAuth nije uspjelo", - "You will receive an email from DocuSign to sign the document" : "Dobit ćete poruku e-pošte od DocuSigna u kojoj vas se traži da potpišete dokument", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Korisnik koji je zatražio ovo odobrenje nije pronađen. Ne zaboravite sami poslati ili podijeliti potpisani dokument", - "Approval signature" : "Potpis odobrenja", - "{name} signature requested via LibreSign" : "Zatražen je potpis od {name} putem LibreSigna", - "Impossible to sign this document" : "Potpisivanje ovog dokumenta nije moguće", - "Pending approval, you are authorized to approve." : "Odobrenje na čekanju, ovlašteni ste dati odobrenje.", - "Show approval details" : "Prikaži pojedinosti odobrenja" + "Failed to reject {name}" : "Odbijanje {name} nije uspjelo" },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/hu.js b/l10n/hu.js index 97b722b2..faf03344 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "Ellenőrizze a jóváhagyási kérést", "Approval workflows" : "Jóváhagyási munkafolyamatok", "Let users approve or reject files" : "Engedélyezés, hogy a felhasználók jóváhagyják vagy elutasítsák a fájlokat", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Fájlok jóváhagyása, ill. elutasítása az adminok által meghatározott munkafolyamatok alapján.\n\n**Figyelem**: A DocuSign integráció már nem része ennek az alkalmazásnak\nde telepíthető [ezzel az alkalmazással](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Minden munkafolyamat leírja, hogy ki (mely felhasználók, csoportok vagy körök) hagyhatja jóvá az adott címkéjű fájlokat, és hogy milyen jóváhagyott/elutasított címke legyen hozzájuk rendelve.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Megadhatja azon felhasználók/csoportok/körök listáját, akik kézi jóváhagyást kérhetnek.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Hogy jóváhagyottnak tekinthető legyen, a több függőben lévő címkével rendelkező fájlt/könyvtárat az összes folyamatnak jóvá kell hagynia.", @@ -70,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Munkafolyamat címe", "What is the purpose of this workflow?" : "Mi a célja ennek a munkafolyamatnak?", "Request approval" : "Jóváhagyás kérése", + "There is no approval workflow allowing you to request approval." : "Nincs jóváhagyási munkafolyamat, amely lehetővé tenné a jóváhagyás kérelmezését.", "Approved" : "Jóváhagyott", "Approved by" : "Jóváhagyta:", "Rejected" : "Elutasított", @@ -77,7 +79,10 @@ OC.L10N.register( "Approval requested by" : "Jóváhagyást kért:", "Approval requested" : "Jóváhagyást kérve", "you" : "Ön", + "The related approval workflow is: {ruleDescription}" : "A kapcsolódó jóváhagyási munkafolyamat: {ruleDescription}", + "This user requested your approval" : "Ez a felhasználó kérte az Ön jóváhagyását", "Your approval was requested." : "Az Ön jóváhagyását kérték.", + "Approval information" : "Jóváhagyási információk", "No recommendations. Start typing." : "Nincs javaslat. Kezdjen gépelni.", "No result." : "Nincs találat.", "Who?" : "Ki?", @@ -90,7 +95,12 @@ OC.L10N.register( "Failed to get approval pending files" : "A jóváhagyásra váró fájlok lekérése sikertelen", "by {name} at {date}" : "tőle: {name}, ekkor: {date}", "at {date}" : "ekkor: {date}", + "Waiting for authorized users to approve this file" : "Várakozás az engedélyezett felhasználókra a fájl jóváhagyását illetően", + "Pending approval, you are authorized to approve" : "Függőben lévő jóváhagyás, Ön jogosult a jóváhagyásra", + "This element was approved" : "Az elem jóvá lett hagyva", + "This element was rejected" : "Az elem vissza lett utasítva", "Pending approval" : "Függő jóváhagyás", + "Waiting for your approval" : "Várakozás a jóváhagyására", "Failed to check approval status" : "A jóváhagyás állapotának ellenőrzése sikertelen", "Approval requested for {name}" : "Jóváhagyást kértek ehhez: {name}", "Warning" : "Figyelem", @@ -98,47 +108,6 @@ OC.L10N.register( "You approved {name}" : "Jóváhagyta: {name}", "Failed to approve {name}" : "A(z) {name} jóváhagyása sikertelen", "You rejected {name}" : "Elutasította: {name}", - "Failed to reject {name}" : "A(z) {name} elutasítása sikertelen", - "Error getting OAuth access token" : "Hiba történt az OAuth hozzáférési token lekérése során", - "Error during OAuth exchanges" : "Hiba történt az OAuth üzenetváltás során", - "Signature of %s" : "A(z) %s aláírása", - "Bad HTTP method" : "Hibás HTTP metódus", - "Bad credentials" : "Hibás hitelesítő adatok", - "OAuth access token refused" : "Az OAuth hozzáférési token elutasítva", - "Sign with DocuSign" : "DocuSignnal aláírva", - "Sign with LibreSign" : "LibreSignnal aláírva", - "Your approval was requested by {name}." : "{name} a jóváhagyását kérte.", - "The related approval workflow is:" : "A kapcsolódó jóváhagyási munkafolyamat:", - "Request a signature via DocuSign" : "Aláírás kérése a DocuSignnal", - "Users or email addresses" : "Felhasználók vagy e-mail-címek", - "Nextcloud users or email addresses" : "Nextcloud felhasználók vagy e-mail-címek", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "A címzettek e-mailt fognak kapni a DocuSigntól, amely a dokumentum aláírásához szükséges hivatkozást tartalmazza. E-mailben lesz értesítve, ha minden címzett aláírta a dokumentumot.", - "Request signature" : "Aláírás kérése", - "Recipients will receive an email from DocuSign to sign the document" : "A címzettek e-mailt fognak kapni a Docusigntől, hogy írják alá a dokumentumot", - "Failed to request signature with DocuSign" : "A DocuSignnal való aláírási kérés sikertelen", - "DocuSign integration" : "DocuSign integráció", - "DocuSign is an electronic signature solution." : "A DocuSign egy elektronikus aláírási megoldás.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ha a DocuSignt akarja használja, akkor hozzon létre egy alkalmazást a DocuSign „Saját alkalmazások és kulcsok" fejlesztői fiók beállításaiban, majd írja be lent a kliensazonosítót (integrációs kulcs) és a titkot.", - "Make sure you set this \"Redirect URI\":" : "Bizonyosodjon meg róla, hogy beállította ezt az „Átirányítási URL-t":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ha a DocuSign felhasználója több DocuSign fiókhoz is tartozik, akkor az alapértelmezett lesz használva.", - "Client ID (aka integration key)" : "Kliensazonosító (más néven integrációs kulcs)", - "Client ID of your application" : "Az alkalmazása kliensazonosítója", - "Application secret key" : "Alkalmazás titkos kulcsa", - "Secret key of your application" : "Az alkalmazása titkos kulcsa", - "Connect to DocuSign" : "Kapcsolódás a DocuSignhoz", - "Connected as {user} ({email})" : "Kapcsolódva mint {user} ({email})", - "Disconnect from DocuSign" : "Kapcsolat bontása a DocuSignnal", - "Successfully connected to DocuSign!" : "Sikeresen kapcsolódott a DocuSignhoz.", - "OAuth access token could not be obtained:" : "Az OAuth hozzáférési token megszerzése sikertelen:", - "DocuSign admin options saved" : "DocuSign rendszergazdai beállítások mentve", - "Failed to save DocuSign admin options" : "DocuSign rendszergazdai beállítások mentése sikertelen", - "Failed to save DocuSign OAuth state" : "DocuSign OAuth állapotot mentése sikertelen", - "You will receive an email from DocuSign to sign the document" : "E-mailt fog kapni a DocuSigntól a dokumentum aláírásához", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "A jóváhagyást kérő felhasználó nem található, küldje el, vagy ossza meg Ön az aláírt dokumentumot", - "Approval signature" : "Jóváhagyás aláírása", - "{name} signature requested via LibreSign" : "{name} aláírást kért a LibreSignon keresztül", - "Impossible to sign this document" : "A dokumentum aláírása nem lehetséges", - "Pending approval, you are authorized to approve." : "Függőben lévő jóváhagyás, Ön jogosult a jóváhagyásra.", - "Show approval details" : "Jóváhagyás részleteinek megjelenítése" + "Failed to reject {name}" : "A(z) {name} elutasítása sikertelen" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/hu.json b/l10n/hu.json index ba2665a0..3707eb96 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -28,6 +28,7 @@ "Please check my approval request" : "Ellenőrizze a jóváhagyási kérést", "Approval workflows" : "Jóváhagyási munkafolyamatok", "Let users approve or reject files" : "Engedélyezés, hogy a felhasználók jóváhagyják vagy elutasítsák a fájlokat", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Fájlok jóváhagyása, ill. elutasítása az adminok által meghatározott munkafolyamatok alapján.\n\n**Figyelem**: A DocuSign integráció már nem része ennek az alkalmazásnak\nde telepíthető [ezzel az alkalmazással](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Minden munkafolyamat leírja, hogy ki (mely felhasználók, csoportok vagy körök) hagyhatja jóvá az adott címkéjű fájlokat, és hogy milyen jóváhagyott/elutasított címke legyen hozzájuk rendelve.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Megadhatja azon felhasználók/csoportok/körök listáját, akik kézi jóváhagyást kérhetnek.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Hogy jóváhagyottnak tekinthető legyen, a több függőben lévő címkével rendelkező fájlt/könyvtárat az összes folyamatnak jóvá kell hagynia.", @@ -68,6 +69,7 @@ "Workflow title" : "Munkafolyamat címe", "What is the purpose of this workflow?" : "Mi a célja ennek a munkafolyamatnak?", "Request approval" : "Jóváhagyás kérése", + "There is no approval workflow allowing you to request approval." : "Nincs jóváhagyási munkafolyamat, amely lehetővé tenné a jóváhagyás kérelmezését.", "Approved" : "Jóváhagyott", "Approved by" : "Jóváhagyta:", "Rejected" : "Elutasított", @@ -75,7 +77,10 @@ "Approval requested by" : "Jóváhagyást kért:", "Approval requested" : "Jóváhagyást kérve", "you" : "Ön", + "The related approval workflow is: {ruleDescription}" : "A kapcsolódó jóváhagyási munkafolyamat: {ruleDescription}", + "This user requested your approval" : "Ez a felhasználó kérte az Ön jóváhagyását", "Your approval was requested." : "Az Ön jóváhagyását kérték.", + "Approval information" : "Jóváhagyási információk", "No recommendations. Start typing." : "Nincs javaslat. Kezdjen gépelni.", "No result." : "Nincs találat.", "Who?" : "Ki?", @@ -88,7 +93,12 @@ "Failed to get approval pending files" : "A jóváhagyásra váró fájlok lekérése sikertelen", "by {name} at {date}" : "tőle: {name}, ekkor: {date}", "at {date}" : "ekkor: {date}", + "Waiting for authorized users to approve this file" : "Várakozás az engedélyezett felhasználókra a fájl jóváhagyását illetően", + "Pending approval, you are authorized to approve" : "Függőben lévő jóváhagyás, Ön jogosult a jóváhagyásra", + "This element was approved" : "Az elem jóvá lett hagyva", + "This element was rejected" : "Az elem vissza lett utasítva", "Pending approval" : "Függő jóváhagyás", + "Waiting for your approval" : "Várakozás a jóváhagyására", "Failed to check approval status" : "A jóváhagyás állapotának ellenőrzése sikertelen", "Approval requested for {name}" : "Jóváhagyást kértek ehhez: {name}", "Warning" : "Figyelem", @@ -96,47 +106,6 @@ "You approved {name}" : "Jóváhagyta: {name}", "Failed to approve {name}" : "A(z) {name} jóváhagyása sikertelen", "You rejected {name}" : "Elutasította: {name}", - "Failed to reject {name}" : "A(z) {name} elutasítása sikertelen", - "Error getting OAuth access token" : "Hiba történt az OAuth hozzáférési token lekérése során", - "Error during OAuth exchanges" : "Hiba történt az OAuth üzenetváltás során", - "Signature of %s" : "A(z) %s aláírása", - "Bad HTTP method" : "Hibás HTTP metódus", - "Bad credentials" : "Hibás hitelesítő adatok", - "OAuth access token refused" : "Az OAuth hozzáférési token elutasítva", - "Sign with DocuSign" : "DocuSignnal aláírva", - "Sign with LibreSign" : "LibreSignnal aláírva", - "Your approval was requested by {name}." : "{name} a jóváhagyását kérte.", - "The related approval workflow is:" : "A kapcsolódó jóváhagyási munkafolyamat:", - "Request a signature via DocuSign" : "Aláírás kérése a DocuSignnal", - "Users or email addresses" : "Felhasználók vagy e-mail-címek", - "Nextcloud users or email addresses" : "Nextcloud felhasználók vagy e-mail-címek", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "A címzettek e-mailt fognak kapni a DocuSigntól, amely a dokumentum aláírásához szükséges hivatkozást tartalmazza. E-mailben lesz értesítve, ha minden címzett aláírta a dokumentumot.", - "Request signature" : "Aláírás kérése", - "Recipients will receive an email from DocuSign to sign the document" : "A címzettek e-mailt fognak kapni a Docusigntől, hogy írják alá a dokumentumot", - "Failed to request signature with DocuSign" : "A DocuSignnal való aláírási kérés sikertelen", - "DocuSign integration" : "DocuSign integráció", - "DocuSign is an electronic signature solution." : "A DocuSign egy elektronikus aláírási megoldás.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ha a DocuSignt akarja használja, akkor hozzon létre egy alkalmazást a DocuSign „Saját alkalmazások és kulcsok" fejlesztői fiók beállításaiban, majd írja be lent a kliensazonosítót (integrációs kulcs) és a titkot.", - "Make sure you set this \"Redirect URI\":" : "Bizonyosodjon meg róla, hogy beállította ezt az „Átirányítási URL-t":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ha a DocuSign felhasználója több DocuSign fiókhoz is tartozik, akkor az alapértelmezett lesz használva.", - "Client ID (aka integration key)" : "Kliensazonosító (más néven integrációs kulcs)", - "Client ID of your application" : "Az alkalmazása kliensazonosítója", - "Application secret key" : "Alkalmazás titkos kulcsa", - "Secret key of your application" : "Az alkalmazása titkos kulcsa", - "Connect to DocuSign" : "Kapcsolódás a DocuSignhoz", - "Connected as {user} ({email})" : "Kapcsolódva mint {user} ({email})", - "Disconnect from DocuSign" : "Kapcsolat bontása a DocuSignnal", - "Successfully connected to DocuSign!" : "Sikeresen kapcsolódott a DocuSignhoz.", - "OAuth access token could not be obtained:" : "Az OAuth hozzáférési token megszerzése sikertelen:", - "DocuSign admin options saved" : "DocuSign rendszergazdai beállítások mentve", - "Failed to save DocuSign admin options" : "DocuSign rendszergazdai beállítások mentése sikertelen", - "Failed to save DocuSign OAuth state" : "DocuSign OAuth állapotot mentése sikertelen", - "You will receive an email from DocuSign to sign the document" : "E-mailt fog kapni a DocuSigntól a dokumentum aláírásához", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "A jóváhagyást kérő felhasználó nem található, küldje el, vagy ossza meg Ön az aláírt dokumentumot", - "Approval signature" : "Jóváhagyás aláírása", - "{name} signature requested via LibreSign" : "{name} aláírást kért a LibreSignon keresztül", - "Impossible to sign this document" : "A dokumentum aláírása nem lehetséges", - "Pending approval, you are authorized to approve." : "Függőben lévő jóváhagyás, Ön jogosult a jóváhagyásra.", - "Show approval details" : "Jóváhagyás részleteinek megjelenítése" + "Failed to reject {name}" : "A(z) {name} elutasítása sikertelen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/id.js b/l10n/id.js index 4844909b..05d40bf3 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -10,11 +10,6 @@ OC.L10N.register( "No recommendations. Start typing." : "Tidak ada saran. Mulai mengetik.", "No result." : "Tidak ada hasil.", "Pending approval" : "Persetujuan tertunda", - "Warning" : "Peringatan", - "Error getting OAuth access token" : "Terjadi kesalahan mendapatkan token akses OAuth", - "Error during OAuth exchanges" : "Terjadi kesalahan saat penukaran OAuth", - "Bad HTTP method" : "Metode HTTP tidak benar", - "Bad credentials" : "Kredensial tidak benar", - "OAuth access token refused" : "Token akses OAuth ditolak" + "Warning" : "Peringatan" }, "nplurals=1; plural=0;"); diff --git a/l10n/id.json b/l10n/id.json index 585d13dc..b5789113 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -8,11 +8,6 @@ "No recommendations. Start typing." : "Tidak ada saran. Mulai mengetik.", "No result." : "Tidak ada hasil.", "Pending approval" : "Persetujuan tertunda", - "Warning" : "Peringatan", - "Error getting OAuth access token" : "Terjadi kesalahan mendapatkan token akses OAuth", - "Error during OAuth exchanges" : "Terjadi kesalahan saat penukaran OAuth", - "Bad HTTP method" : "Metode HTTP tidak benar", - "Bad credentials" : "Kredensial tidak benar", - "OAuth access token refused" : "Token akses OAuth ditolak" + "Warning" : "Peringatan" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/is.js b/l10n/is.js index a3cd9084..b938006b 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -10,10 +10,6 @@ OC.L10N.register( "No recommendations. Start typing." : "Engar tillögur. Byrjaðu að skrifa.", "No result." : "Engar niðurstöður.", "Pending approval" : "Bíður samþykkis", - "Warning" : "Aðvörun", - "Error getting OAuth access token" : "Villa við að ná í OAuth-aðgangsteikn", - "Error during OAuth exchanges" : "Villa í OAuth-samskiptum", - "Bad credentials" : "Gölluð auðkenni", - "OAuth access token refused" : "OAuth-aðgangsteikni hafnað" + "Warning" : "Aðvörun" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/l10n/is.json b/l10n/is.json index e1d2b4b9..63edcea5 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -8,10 +8,6 @@ "No recommendations. Start typing." : "Engar tillögur. Byrjaðu að skrifa.", "No result." : "Engar niðurstöður.", "Pending approval" : "Bíður samþykkis", - "Warning" : "Aðvörun", - "Error getting OAuth access token" : "Villa við að ná í OAuth-aðgangsteikn", - "Error during OAuth exchanges" : "Villa í OAuth-samskiptum", - "Bad credentials" : "Gölluð auðkenni", - "OAuth access token refused" : "OAuth-aðgangsteikni hafnað" + "Warning" : "Aðvörun" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/l10n/it.js b/l10n/it.js index 0625fc1f..49ba46d3 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "Controlla la mia richiesta di approvazione", "Approval workflows" : "Workflow di approvazione", "Let users approve or reject files" : "Consenti agli utenti di approvare o rifiutare i file", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Approva/rifiuta i file in base ai flussi di lavoro definiti dagli amministratori.\n\n**Attenzione**: l'integrazione DocuSign non fa più parte di questa app\ne può essere installata con [questa app](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Ciascun workflow definisce chi (quali utenti, gruppi o cerchie) può approvare i file per una data etichetta pendente e quale etichetta approvata/rifiutata dovrebbe quindi essere assegnato.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Può essere definita opzionalmente un elenco di utenti/gruppi/cerchie che può richiedere manualmente l'approvazione.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Per essere considerato approvato, un file/cartella con assegnate più etichette pendenti deve essere approvata da tutti i workflow coinvolti.", @@ -70,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Titolo del flusso di lavoro", "What is the purpose of this workflow?" : "Qual è lo scopo di questo flusso di lavoro?", "Request approval" : "Richiedi approvazione", + "There is no approval workflow allowing you to request approval." : "Non esiste un flusso di lavoro di approvazione che consenta di richiedere l'approvazione.", "Approved" : "Approvato", "Approved by" : "Approvato da", "Rejected" : "Rifiutata", @@ -77,7 +79,10 @@ OC.L10N.register( "Approval requested by" : "Richiesta approvata da", "Approval requested" : "Richiesta approvazione", "you" : "tu", + "The related approval workflow is: {ruleDescription}" : "Il flusso di lavoro di approvazione correlato è: {ruleDescription}", + "This user requested your approval" : "Questo utente ha richiesto la tua approvazione", "Your approval was requested." : "La tua approvazione è stata richiesta.", + "Approval information" : "Informazioni di approvazione", "No recommendations. Start typing." : "Nessun consiglio. Inizia a scrivere.", "No result." : "Nessun risultato.", "Who?" : "Chi?", @@ -90,7 +95,12 @@ OC.L10N.register( "Failed to get approval pending files" : "Rilevazione dei file in attesa di approvazione fallita", "by {name} at {date}" : "da {name} il {date}", "at {date}" : "il {date}", + "Waiting for authorized users to approve this file" : "In attesa che gli utenti autorizzati approvino questo file", + "Pending approval, you are authorized to approve" : "In attesa di approvazione, sei autorizzato ad approvare", + "This element was approved" : "Questo elemento è stato approvato", + "This element was rejected" : "Questo elemento è stato rifiutato", "Pending approval" : "In attesa di approvazione", + "Waiting for your approval" : "In attesa della tua approvazione", "Failed to check approval status" : "Controllo stato di approvazione fallito", "Approval requested for {name}" : "Richiesta approvazione per {name}", "Warning" : "Attenzione", @@ -98,47 +108,6 @@ OC.L10N.register( "You approved {name}" : "Hai approvato {name}", "Failed to approve {name}" : "Approvazione di {name} fallita", "You rejected {name}" : "Hai rifiutato {name}", - "Failed to reject {name}" : "Negazione di {name} fallita", - "Error getting OAuth access token" : "Errore durante il recupero del token di accesso OAuth", - "Error during OAuth exchanges" : "Errore nello scambio dati OAuth", - "Signature of %s" : "Firma di %s", - "Bad HTTP method" : "Metodo HTTP non corretto", - "Bad credentials" : "Credenziali non valide", - "OAuth access token refused" : "Token di accesso OAuth rifiutato", - "Sign with DocuSign" : "Firma con DocuSign", - "Sign with LibreSign" : "Firma con LibreSign", - "Your approval was requested by {name}." : "La tua approvazione è stata richiesta da {name}.", - "The related approval workflow is:" : "Il relativo flusso di lavoro di approvazione è:", - "Request a signature via DocuSign" : "Richiedi una firma via DocuSign", - "Users or email addresses" : "Utenti o indirizzi email", - "Nextcloud users or email addresses" : "Utenti di Nextcloud o indirizzi email", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "I destinatari riceveranno un'email da DocuSign con un collegamento per firmare il documento. Verrai informato per email quando il documento sarà stato firmato da tutti i destinatari.", - "Request signature" : "Richiedi firma", - "Recipients will receive an email from DocuSign to sign the document" : "I destinatari riceveranno un'email da DocuSign per firmare il documento", - "Failed to request signature with DocuSign" : "Richiesta della firma con DocuSign fallita", - "DocuSign integration" : "Integrazione DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign è una soluzione di firme elettroniche.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Se vuoi usare DocuSign, crea un'applicazione nelle impostazioni \"My Apps & Keys\" del tuo account sviluppatore di DocuSign e inserisci il client ID (integration key) e il secret qui sotto.", - "Make sure you set this \"Redirect URI\":" : "Assicurati di impostare questo \"URI di reindirizzamento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Se il tuo utente DocuSign è associato con account DocuSign multipli, verrà usato quello predefinito.", - "Client ID (aka integration key)" : "Client ID (o integration key)", - "Client ID of your application" : "Client ID della tua applicazione", - "Application secret key" : "Chiave segreta applicazione", - "Secret key of your application" : "La chiave segreta della tua applicazione", - "Connect to DocuSign" : "Connetti a DocuSign", - "Connected as {user} ({email})" : "Connesso come {user} ({email})", - "Disconnect from DocuSign" : "Disconnesso da DocuSign", - "Successfully connected to DocuSign!" : "Connesso correttamente a DocuSign!", - "OAuth access token could not be obtained:" : "Impossibile ottenere il token di accesso OAuth:", - "DocuSign admin options saved" : "Opzioni di amministrazione DocuSign salvate", - "Failed to save DocuSign admin options" : "Salvataggio opzioni di amministrazione DocuSign fallito ", - "Failed to save DocuSign OAuth state" : "Salvataggio dello stato OAuth di DocuSign fallito", - "You will receive an email from DocuSign to sign the document" : "Riceverai un'email da DocuSign per firmare il documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "L'utente che ha richiesto questa approvazione non è stato trovato, ricorda di inviare o condividere te stesso il documento firmato", - "Approval signature" : "Firma di approvazione", - "{name} signature requested via LibreSign" : "Firma di {name} richiesta via LibreSign", - "Impossible to sign this document" : "Impossibile firmare questo documento", - "Pending approval, you are authorized to approve." : "In attesa di approvazione, sei autorizzato ad approvare.", - "Show approval details" : "Mostra dettagli di approvazione" + "Failed to reject {name}" : "Negazione di {name} fallita" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/it.json b/l10n/it.json index d2b02fc4..872e0a69 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -28,6 +28,7 @@ "Please check my approval request" : "Controlla la mia richiesta di approvazione", "Approval workflows" : "Workflow di approvazione", "Let users approve or reject files" : "Consenti agli utenti di approvare o rifiutare i file", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Approva/rifiuta i file in base ai flussi di lavoro definiti dagli amministratori.\n\n**Attenzione**: l'integrazione DocuSign non fa più parte di questa app\ne può essere installata con [questa app](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Ciascun workflow definisce chi (quali utenti, gruppi o cerchie) può approvare i file per una data etichetta pendente e quale etichetta approvata/rifiutata dovrebbe quindi essere assegnato.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Può essere definita opzionalmente un elenco di utenti/gruppi/cerchie che può richiedere manualmente l'approvazione.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Per essere considerato approvato, un file/cartella con assegnate più etichette pendenti deve essere approvata da tutti i workflow coinvolti.", @@ -68,6 +69,7 @@ "Workflow title" : "Titolo del flusso di lavoro", "What is the purpose of this workflow?" : "Qual è lo scopo di questo flusso di lavoro?", "Request approval" : "Richiedi approvazione", + "There is no approval workflow allowing you to request approval." : "Non esiste un flusso di lavoro di approvazione che consenta di richiedere l'approvazione.", "Approved" : "Approvato", "Approved by" : "Approvato da", "Rejected" : "Rifiutata", @@ -75,7 +77,10 @@ "Approval requested by" : "Richiesta approvata da", "Approval requested" : "Richiesta approvazione", "you" : "tu", + "The related approval workflow is: {ruleDescription}" : "Il flusso di lavoro di approvazione correlato è: {ruleDescription}", + "This user requested your approval" : "Questo utente ha richiesto la tua approvazione", "Your approval was requested." : "La tua approvazione è stata richiesta.", + "Approval information" : "Informazioni di approvazione", "No recommendations. Start typing." : "Nessun consiglio. Inizia a scrivere.", "No result." : "Nessun risultato.", "Who?" : "Chi?", @@ -88,7 +93,12 @@ "Failed to get approval pending files" : "Rilevazione dei file in attesa di approvazione fallita", "by {name} at {date}" : "da {name} il {date}", "at {date}" : "il {date}", + "Waiting for authorized users to approve this file" : "In attesa che gli utenti autorizzati approvino questo file", + "Pending approval, you are authorized to approve" : "In attesa di approvazione, sei autorizzato ad approvare", + "This element was approved" : "Questo elemento è stato approvato", + "This element was rejected" : "Questo elemento è stato rifiutato", "Pending approval" : "In attesa di approvazione", + "Waiting for your approval" : "In attesa della tua approvazione", "Failed to check approval status" : "Controllo stato di approvazione fallito", "Approval requested for {name}" : "Richiesta approvazione per {name}", "Warning" : "Attenzione", @@ -96,47 +106,6 @@ "You approved {name}" : "Hai approvato {name}", "Failed to approve {name}" : "Approvazione di {name} fallita", "You rejected {name}" : "Hai rifiutato {name}", - "Failed to reject {name}" : "Negazione di {name} fallita", - "Error getting OAuth access token" : "Errore durante il recupero del token di accesso OAuth", - "Error during OAuth exchanges" : "Errore nello scambio dati OAuth", - "Signature of %s" : "Firma di %s", - "Bad HTTP method" : "Metodo HTTP non corretto", - "Bad credentials" : "Credenziali non valide", - "OAuth access token refused" : "Token di accesso OAuth rifiutato", - "Sign with DocuSign" : "Firma con DocuSign", - "Sign with LibreSign" : "Firma con LibreSign", - "Your approval was requested by {name}." : "La tua approvazione è stata richiesta da {name}.", - "The related approval workflow is:" : "Il relativo flusso di lavoro di approvazione è:", - "Request a signature via DocuSign" : "Richiedi una firma via DocuSign", - "Users or email addresses" : "Utenti o indirizzi email", - "Nextcloud users or email addresses" : "Utenti di Nextcloud o indirizzi email", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "I destinatari riceveranno un'email da DocuSign con un collegamento per firmare il documento. Verrai informato per email quando il documento sarà stato firmato da tutti i destinatari.", - "Request signature" : "Richiedi firma", - "Recipients will receive an email from DocuSign to sign the document" : "I destinatari riceveranno un'email da DocuSign per firmare il documento", - "Failed to request signature with DocuSign" : "Richiesta della firma con DocuSign fallita", - "DocuSign integration" : "Integrazione DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign è una soluzione di firme elettroniche.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Se vuoi usare DocuSign, crea un'applicazione nelle impostazioni \"My Apps & Keys\" del tuo account sviluppatore di DocuSign e inserisci il client ID (integration key) e il secret qui sotto.", - "Make sure you set this \"Redirect URI\":" : "Assicurati di impostare questo \"URI di reindirizzamento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Se il tuo utente DocuSign è associato con account DocuSign multipli, verrà usato quello predefinito.", - "Client ID (aka integration key)" : "Client ID (o integration key)", - "Client ID of your application" : "Client ID della tua applicazione", - "Application secret key" : "Chiave segreta applicazione", - "Secret key of your application" : "La chiave segreta della tua applicazione", - "Connect to DocuSign" : "Connetti a DocuSign", - "Connected as {user} ({email})" : "Connesso come {user} ({email})", - "Disconnect from DocuSign" : "Disconnesso da DocuSign", - "Successfully connected to DocuSign!" : "Connesso correttamente a DocuSign!", - "OAuth access token could not be obtained:" : "Impossibile ottenere il token di accesso OAuth:", - "DocuSign admin options saved" : "Opzioni di amministrazione DocuSign salvate", - "Failed to save DocuSign admin options" : "Salvataggio opzioni di amministrazione DocuSign fallito ", - "Failed to save DocuSign OAuth state" : "Salvataggio dello stato OAuth di DocuSign fallito", - "You will receive an email from DocuSign to sign the document" : "Riceverai un'email da DocuSign per firmare il documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "L'utente che ha richiesto questa approvazione non è stato trovato, ricorda di inviare o condividere te stesso il documento firmato", - "Approval signature" : "Firma di approvazione", - "{name} signature requested via LibreSign" : "Firma di {name} richiesta via LibreSign", - "Impossible to sign this document" : "Impossibile firmare questo documento", - "Pending approval, you are authorized to approve." : "In attesa di approvazione, sei autorizzato ad approvare.", - "Show approval details" : "Mostra dettagli di approvazione" + "Failed to reject {name}" : "Negazione di {name} fallita" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ja.js b/l10n/ja.js index ffcdbf09..5f297f5f 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -33,10 +33,6 @@ OC.L10N.register( "No result." : "結果なし", "Who?" : "どちら様でしょうか?", "Pending approval" : "承認待ち", - "Warning" : "警告", - "Error getting OAuth access token" : "OAuth アクセストークン取得時のエラー", - "Error during OAuth exchanges" : "OAuth 通信中のエラー", - "Bad credentials" : "不正な資格情報", - "OAuth access token refused" : "OAuth アクセストークンが拒否されました" + "Warning" : "警告" }, "nplurals=1; plural=0;"); diff --git a/l10n/ja.json b/l10n/ja.json index 3a96181c..b1b0bc25 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -31,10 +31,6 @@ "No result." : "結果なし", "Who?" : "どちら様でしょうか?", "Pending approval" : "承認待ち", - "Warning" : "警告", - "Error getting OAuth access token" : "OAuth アクセストークン取得時のエラー", - "Error during OAuth exchanges" : "OAuth 通信中のエラー", - "Bad credentials" : "不正な資格情報", - "OAuth access token refused" : "OAuth アクセストークンが拒否されました" + "Warning" : "警告" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/ka.js b/l10n/ka.js new file mode 100644 index 00000000..b7cc928c --- /dev/null +++ b/l10n/ka.js @@ -0,0 +1,12 @@ +OC.L10N.register( + "approval", + { + "Create" : "Create", + "Cancel" : "Cancel", + "Approve" : "Approve", + "Reject" : "Reject", + "No recommendations. Start typing." : "No recommendations. Start typing.", + "Pending approval" : "Pending approval", + "Warning" : "Warning" +}, +"nplurals=2; plural=(n!=1);"); diff --git a/l10n/ka.json b/l10n/ka.json new file mode 100644 index 00000000..84eed00c --- /dev/null +++ b/l10n/ka.json @@ -0,0 +1,10 @@ +{ "translations": { + "Create" : "Create", + "Cancel" : "Cancel", + "Approve" : "Approve", + "Reject" : "Reject", + "No recommendations. Start typing." : "No recommendations. Start typing.", + "Pending approval" : "Pending approval", + "Warning" : "Warning" +},"pluralForm" :"nplurals=2; plural=(n!=1);" +} \ No newline at end of file diff --git a/l10n/ko.js b/l10n/ko.js index 57f6bf94..8259c1c8 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "제 승인 요청을 확인해주시기 바랍니다.", "Approval workflows" : "승인 워크플로", "Let users approve or reject files" : "사용자가 파일을 승인 혹은 거부하도록 합니다.", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "관리자가 정의한 워크플로를 기반으로 파일을 승인/거부합니다.\n\n**경고**: DocuSign 통합은 더 이상 이 앱의 일부가 아닙니다.\n[이 앱]으로 설치할 수 있습니다.\n(https://apps.nextcloud.com/apps/integration_docusign)", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "각 워크플로는 누가(어떤 사용자, 그룹 혹은 서클) 보류 태그가 주어지고 승인됨/거부됨 태그가 정해질 파일을 승인 가능한지 정의합니다.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "수동적으로 승인을 요청할 수 있는 사용자/그룹/서클의 리스트는 선택적으로 정의될 수 있습니다.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "승인되었다고 여겨지기 위해서는, 연관된 다수의 보류 태그를 가지고 있는 파일/디렉토리가 관련된 모든 워크플로에게 승인되어야 합니다.", @@ -64,6 +65,9 @@ OC.L10N.register( "Select rejected tag" : "거부된 태그를 선택하세요.", "Who can request approval" : "누가 승인을 요청할 수 있습니까", "Who can approve" : "누가 승인할 수 있습니까?", + "Tag to act on" : "작업할 태그", + "Tag set on approval" : "승인 시 태그가 설정됨", + "Tag set on rejection" : "거부 시 태그가 설정됨", "Workflow title" : "워크플로 제목", "What is the purpose of this workflow?" : "이 워크플로의 목적은 무엇입니까?", "Request approval" : "요청 승인", @@ -74,9 +78,12 @@ OC.L10N.register( "Approval requested by" : "의해 승인이 요청됐습니다.", "Approval requested" : "승인이 요청됐습니다.", "you" : "나", + "The related approval workflow is: {ruleDescription}" : "관련 승인 워크플로는 다음과 같습니다. {ruleDescription}", + "This user requested your approval" : "이 사용자가 귀하의 승인을 요청했습니다.", "Your approval was requested." : "당신의 승인이 요청되었습니다.", "No recommendations. Start typing." : "추천 없음. 타이핑을 시작하십시오", "No result." : "결과 없음", + "Who?" : "상대방 정보", "Impossible to get user/group/circle list" : "사용자/그룹/서클 리스트를 불러올 수 없습니다.", "Select approval workflow" : "승인 워크플로를 선택하세요.", "File will be automatically shared with everybody allowed to approve." : "파일이 승인이 허락된 모든 사람에게 자동으로 공유됩니다.", @@ -85,7 +92,13 @@ OC.L10N.register( "No files to approve!" : "승인할 파일이 없습니다!", "Failed to get approval pending files" : "보류 중인 파일의 승인을 받지 못했습니다.", "by {name} at {date}" : "{date}에 {name}에 의해 ", + "at {date}" : "{date}에", + "Waiting for authorized users to approve this file" : "권한을 보유한 사용자가 이 파일을 승인하기를 기다리는 중", + "Pending approval, you are authorized to approve" : "보류 중인 승인, 당신은 승인할 권한이 있습니다.", + "This element was approved" : "이 요소는 승인되었습니다.", + "This element was rejected" : "이 요소는 거부되었습니다.", "Pending approval" : "승인 대기중", + "Waiting for your approval" : "귀하의 승인을 기다리는 중", "Failed to check approval status" : "승인 상태를 체크하는데 실패했습니다.", "Approval requested for {name}" : "{이름}(을)를 위한 승인이 요청됐습니다.", "Warning" : "경고", @@ -93,46 +106,6 @@ OC.L10N.register( "You approved {name}" : "당신이 {이름}(을)를 승인했습니다.", "Failed to approve {name}" : "{이름}을 승인하는데 실패했습니다.", "You rejected {name}" : "당신이 {이름}(을)를 거부했습니다.", - "Failed to reject {name}" : "{이름}을 거부하는데 실패했습니다.", - "Error getting OAuth access token" : "OAuth 접근을 가져오는데 오류가 발생했습니다.", - "Error during OAuth exchanges" : "OAuth 교환 중 오류가 발생했습니다.", - "Signature of %s" : "%s의 서명", - "Bad HTTP method" : "옳지 않은 HTTP 메소드", - "Bad credentials" : "옳지 않은 자격 증명", - "OAuth access token refused" : "OAuth 접근 토큰 거부됨", - "Sign with DocuSign" : "DocuSign에 서명하세요.", - "Sign with LibreSign" : "LibreSign에 서명하세요.", - "Your approval was requested by {name}." : "당신의 승인이 {name}에 의해 요청되었습니다.", - "The related approval workflow is:" : "관련된 승인 워크플로는: ", - "Request a signature via DocuSign" : "DocuSign을 통해 서명을 요청하세요.", - "Users or email addresses" : "사용자들 혹은 이메일 주소", - "Nextcloud users or email addresses" : "Nextcloud 사용자들 혹은 이메일 주소", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "받는이는 DocuSign으로부터 문서로 연결되는 링크가 있는 이메일을 수신할 것입니다. 당신은 모든 수신자가 문서에 서명할 경우 이메일을 통해 정보를 전달 받을 것입니다.", - "Request signature" : "서명을 수신 받습니다.", - "Recipients will receive an email from DocuSign to sign the document" : "받는이는 문서에 서명하기 위해 DocuSign으로부터 이메일을 수신할 것입니다.", - "Failed to request signature with DocuSign" : "DocuSign에서 서명을 요청하는데 실패했습니다.", - "DocuSign integration" : "DocuSign 통합", - "DocuSign is an electronic signature solution." : "DocuSign은 전자 서명 솔루션입니다.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "DocuSign을 이용하려면, 당신의 DocuSign의 \"My Apps & Keys\" 개발자 계정 설정에서 신청서를 제출하고 그 안에 클라이언트 ID(통합 key)와 암호를 입력하십시오.", - "Make sure you set this \"Redirect URI\":" : "\"Redirect URI\"를 설정하는 것을 잊지 마세요:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "만약 당신의 DocuSign 사용자가 다수의 DocuSign 계정으로 이루어져 있다면, 기본 계정이 사용될 것입니다.", - "Client ID (aka integration key)" : "클라이언트 ID (통합 key라고도 불림)", - "Client ID of your application" : "당신의 신청서의 클라이언트 ID", - "Secret key of your application" : "당신의 신청서의 비밀 key", - "Connect to DocuSign" : "DocuSign에 연결합니다.", - "Connected as {user} ({email})" : "{user} ({email})(으)로 연결됨", - "Disconnect from DocuSign" : "DocuSign으로부터 연결을 끊습니다.", - "Successfully connected to DocuSign!" : "DocuSign에 성공적으로 연결됐습니다!", - "OAuth access token could not be obtained:" : "OAuth 접근 토큰을 얻을 수 없었습니다: ", - "DocuSign admin options saved" : "DocuSign 관리자 설정이 저장됐습니다.", - "Failed to save DocuSign admin options" : "DocuSign 관리자 설정을 저장하는데 실패했습니다.", - "Failed to save DocuSign OAuth state" : "DocuSign 관리자 설정을 저장하는데 실패했습니다.", - "You will receive an email from DocuSign to sign the document" : "당신은 문서에 서명하기 위한 이메일을 DocuSign으로부터 받을 것입니다.", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "이 승인을 요청한 사용자를 찾을 수 없습니다, 서명된 문서를 자신에게 보내거나 공유할 것을 기억하십시오.", - "Approval signature" : "승인 서명", - "{name} signature requested via LibreSign" : "{이름}의 서명이 LibreSign이 요청됐습니다.", - "Impossible to sign this document" : "이 문서에 서명하는 것은 불가능합니다.", - "Pending approval, you are authorized to approve." : "보류 중인 승인, 당신은 승인할 권한이 있습니다.", - "Show approval details" : "승인에 대한 세부 사항을 보여줍니다." + "Failed to reject {name}" : "{이름}을 거부하는데 실패했습니다." }, "nplurals=1; plural=0;"); diff --git a/l10n/ko.json b/l10n/ko.json index 014f551c..9a3f3423 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -28,6 +28,7 @@ "Please check my approval request" : "제 승인 요청을 확인해주시기 바랍니다.", "Approval workflows" : "승인 워크플로", "Let users approve or reject files" : "사용자가 파일을 승인 혹은 거부하도록 합니다.", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "관리자가 정의한 워크플로를 기반으로 파일을 승인/거부합니다.\n\n**경고**: DocuSign 통합은 더 이상 이 앱의 일부가 아닙니다.\n[이 앱]으로 설치할 수 있습니다.\n(https://apps.nextcloud.com/apps/integration_docusign)", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "각 워크플로는 누가(어떤 사용자, 그룹 혹은 서클) 보류 태그가 주어지고 승인됨/거부됨 태그가 정해질 파일을 승인 가능한지 정의합니다.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "수동적으로 승인을 요청할 수 있는 사용자/그룹/서클의 리스트는 선택적으로 정의될 수 있습니다.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "승인되었다고 여겨지기 위해서는, 연관된 다수의 보류 태그를 가지고 있는 파일/디렉토리가 관련된 모든 워크플로에게 승인되어야 합니다.", @@ -62,6 +63,9 @@ "Select rejected tag" : "거부된 태그를 선택하세요.", "Who can request approval" : "누가 승인을 요청할 수 있습니까", "Who can approve" : "누가 승인할 수 있습니까?", + "Tag to act on" : "작업할 태그", + "Tag set on approval" : "승인 시 태그가 설정됨", + "Tag set on rejection" : "거부 시 태그가 설정됨", "Workflow title" : "워크플로 제목", "What is the purpose of this workflow?" : "이 워크플로의 목적은 무엇입니까?", "Request approval" : "요청 승인", @@ -72,9 +76,12 @@ "Approval requested by" : "의해 승인이 요청됐습니다.", "Approval requested" : "승인이 요청됐습니다.", "you" : "나", + "The related approval workflow is: {ruleDescription}" : "관련 승인 워크플로는 다음과 같습니다. {ruleDescription}", + "This user requested your approval" : "이 사용자가 귀하의 승인을 요청했습니다.", "Your approval was requested." : "당신의 승인이 요청되었습니다.", "No recommendations. Start typing." : "추천 없음. 타이핑을 시작하십시오", "No result." : "결과 없음", + "Who?" : "상대방 정보", "Impossible to get user/group/circle list" : "사용자/그룹/서클 리스트를 불러올 수 없습니다.", "Select approval workflow" : "승인 워크플로를 선택하세요.", "File will be automatically shared with everybody allowed to approve." : "파일이 승인이 허락된 모든 사람에게 자동으로 공유됩니다.", @@ -83,7 +90,13 @@ "No files to approve!" : "승인할 파일이 없습니다!", "Failed to get approval pending files" : "보류 중인 파일의 승인을 받지 못했습니다.", "by {name} at {date}" : "{date}에 {name}에 의해 ", + "at {date}" : "{date}에", + "Waiting for authorized users to approve this file" : "권한을 보유한 사용자가 이 파일을 승인하기를 기다리는 중", + "Pending approval, you are authorized to approve" : "보류 중인 승인, 당신은 승인할 권한이 있습니다.", + "This element was approved" : "이 요소는 승인되었습니다.", + "This element was rejected" : "이 요소는 거부되었습니다.", "Pending approval" : "승인 대기중", + "Waiting for your approval" : "귀하의 승인을 기다리는 중", "Failed to check approval status" : "승인 상태를 체크하는데 실패했습니다.", "Approval requested for {name}" : "{이름}(을)를 위한 승인이 요청됐습니다.", "Warning" : "경고", @@ -91,46 +104,6 @@ "You approved {name}" : "당신이 {이름}(을)를 승인했습니다.", "Failed to approve {name}" : "{이름}을 승인하는데 실패했습니다.", "You rejected {name}" : "당신이 {이름}(을)를 거부했습니다.", - "Failed to reject {name}" : "{이름}을 거부하는데 실패했습니다.", - "Error getting OAuth access token" : "OAuth 접근을 가져오는데 오류가 발생했습니다.", - "Error during OAuth exchanges" : "OAuth 교환 중 오류가 발생했습니다.", - "Signature of %s" : "%s의 서명", - "Bad HTTP method" : "옳지 않은 HTTP 메소드", - "Bad credentials" : "옳지 않은 자격 증명", - "OAuth access token refused" : "OAuth 접근 토큰 거부됨", - "Sign with DocuSign" : "DocuSign에 서명하세요.", - "Sign with LibreSign" : "LibreSign에 서명하세요.", - "Your approval was requested by {name}." : "당신의 승인이 {name}에 의해 요청되었습니다.", - "The related approval workflow is:" : "관련된 승인 워크플로는: ", - "Request a signature via DocuSign" : "DocuSign을 통해 서명을 요청하세요.", - "Users or email addresses" : "사용자들 혹은 이메일 주소", - "Nextcloud users or email addresses" : "Nextcloud 사용자들 혹은 이메일 주소", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "받는이는 DocuSign으로부터 문서로 연결되는 링크가 있는 이메일을 수신할 것입니다. 당신은 모든 수신자가 문서에 서명할 경우 이메일을 통해 정보를 전달 받을 것입니다.", - "Request signature" : "서명을 수신 받습니다.", - "Recipients will receive an email from DocuSign to sign the document" : "받는이는 문서에 서명하기 위해 DocuSign으로부터 이메일을 수신할 것입니다.", - "Failed to request signature with DocuSign" : "DocuSign에서 서명을 요청하는데 실패했습니다.", - "DocuSign integration" : "DocuSign 통합", - "DocuSign is an electronic signature solution." : "DocuSign은 전자 서명 솔루션입니다.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "DocuSign을 이용하려면, 당신의 DocuSign의 \"My Apps & Keys\" 개발자 계정 설정에서 신청서를 제출하고 그 안에 클라이언트 ID(통합 key)와 암호를 입력하십시오.", - "Make sure you set this \"Redirect URI\":" : "\"Redirect URI\"를 설정하는 것을 잊지 마세요:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "만약 당신의 DocuSign 사용자가 다수의 DocuSign 계정으로 이루어져 있다면, 기본 계정이 사용될 것입니다.", - "Client ID (aka integration key)" : "클라이언트 ID (통합 key라고도 불림)", - "Client ID of your application" : "당신의 신청서의 클라이언트 ID", - "Secret key of your application" : "당신의 신청서의 비밀 key", - "Connect to DocuSign" : "DocuSign에 연결합니다.", - "Connected as {user} ({email})" : "{user} ({email})(으)로 연결됨", - "Disconnect from DocuSign" : "DocuSign으로부터 연결을 끊습니다.", - "Successfully connected to DocuSign!" : "DocuSign에 성공적으로 연결됐습니다!", - "OAuth access token could not be obtained:" : "OAuth 접근 토큰을 얻을 수 없었습니다: ", - "DocuSign admin options saved" : "DocuSign 관리자 설정이 저장됐습니다.", - "Failed to save DocuSign admin options" : "DocuSign 관리자 설정을 저장하는데 실패했습니다.", - "Failed to save DocuSign OAuth state" : "DocuSign 관리자 설정을 저장하는데 실패했습니다.", - "You will receive an email from DocuSign to sign the document" : "당신은 문서에 서명하기 위한 이메일을 DocuSign으로부터 받을 것입니다.", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "이 승인을 요청한 사용자를 찾을 수 없습니다, 서명된 문서를 자신에게 보내거나 공유할 것을 기억하십시오.", - "Approval signature" : "승인 서명", - "{name} signature requested via LibreSign" : "{이름}의 서명이 LibreSign이 요청됐습니다.", - "Impossible to sign this document" : "이 문서에 서명하는 것은 불가능합니다.", - "Pending approval, you are authorized to approve." : "보류 중인 승인, 당신은 승인할 권한이 있습니다.", - "Show approval details" : "승인에 대한 세부 사항을 보여줍니다." + "Failed to reject {name}" : "{이름}을 거부하는데 실패했습니다." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 37f48493..e7e513a3 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -30,14 +30,6 @@ OC.L10N.register( "Who?" : "Kas?", "Pending approval" : "Laukiama patvirtinimo", "Warning" : "Įspėjimas", - "Failed to reject {name}" : "Nepavyko atmesti {name}", - "Error getting OAuth access token" : "Klaida gaunant „OAuth" prieigos raktą", - "Error during OAuth exchanges" : "Klaida „OAuth" apsikeitimo metu", - "Bad HTTP method" : "Blogas HTTP metodas", - "Bad credentials" : "Blogi prisijungimo duomenys", - "OAuth access token refused" : "„OAuth" prieigos raktas atmestas", - "Sign with DocuSign" : "Pasirašyti naudojant „DocuSign"", - "Sign with LibreSign" : "Pasirašyti naudojant „LibreSign"", - "Impossible to sign this document" : "Neįmanoma pasirašyti šio dokumento" + "Failed to reject {name}" : "Nepavyko atmesti {name}" }, "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);"); diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 092868c5..e3fd574f 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -28,14 +28,6 @@ "Who?" : "Kas?", "Pending approval" : "Laukiama patvirtinimo", "Warning" : "Įspėjimas", - "Failed to reject {name}" : "Nepavyko atmesti {name}", - "Error getting OAuth access token" : "Klaida gaunant „OAuth" prieigos raktą", - "Error during OAuth exchanges" : "Klaida „OAuth" apsikeitimo metu", - "Bad HTTP method" : "Blogas HTTP metodas", - "Bad credentials" : "Blogi prisijungimo duomenys", - "OAuth access token refused" : "„OAuth" prieigos raktas atmestas", - "Sign with DocuSign" : "Pasirašyti naudojant „DocuSign"", - "Sign with LibreSign" : "Pasirašyti naudojant „LibreSign"", - "Impossible to sign this document" : "Neįmanoma pasirašyti šio dokumento" + "Failed to reject {name}" : "Nepavyko atmesti {name}" },"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);" } \ No newline at end of file diff --git a/l10n/lv.js b/l10n/lv.js new file mode 100644 index 00000000..d613b693 --- /dev/null +++ b/l10n/lv.js @@ -0,0 +1,12 @@ +OC.L10N.register( + "approval", + { + "Create" : "Izveidot", + "Cancel" : "Atcelt", + "Reject" : "Noraidīt", + "Approved" : "Apstiprināts", + "you" : "Jūs", + "No result." : "Nav iznākuma.", + "Warning" : "Brīdinājums" +}, +"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/l10n/lv.json b/l10n/lv.json new file mode 100644 index 00000000..524dbd15 --- /dev/null +++ b/l10n/lv.json @@ -0,0 +1,10 @@ +{ "translations": { + "Create" : "Izveidot", + "Cancel" : "Atcelt", + "Reject" : "Noraidīt", + "Approved" : "Apstiprināts", + "you" : "Jūs", + "No result." : "Nav iznākuma.", + "Warning" : "Brīdinājums" +},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" +} \ No newline at end of file diff --git a/l10n/mk.js b/l10n/mk.js index fd67f0f9..19980dd1 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -10,10 +10,6 @@ OC.L10N.register( "you" : "ти", "No recommendations. Start typing." : "Нема препораки. Започнете со пишување.", "No result." : "Нема резултати.", - "Warning" : "Предупредување", - "Error during OAuth exchanges" : "Грешка при размена на податоци со OAuth ", - "Bad credentials" : "Неточни акредитиви", - "OAuth access token refused" : "Одбиен OAuth пристапен токен ", - "Connected as {user} ({email})" : "Поврзан како {user} ({email})" + "Warning" : "Предупредување" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/l10n/mk.json b/l10n/mk.json index e91165f7..08bb7b3f 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -8,10 +8,6 @@ "you" : "ти", "No recommendations. Start typing." : "Нема препораки. Започнете со пишување.", "No result." : "Нема резултати.", - "Warning" : "Предупредување", - "Error during OAuth exchanges" : "Грешка при размена на податоци со OAuth ", - "Bad credentials" : "Неточни акредитиви", - "OAuth access token refused" : "Одбиен OAuth пристапен токен ", - "Connected as {user} ({email})" : "Поврзан како {user} ({email})" + "Warning" : "Предупредување" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" } \ No newline at end of file diff --git a/l10n/nb.js b/l10n/nb.js index 4a8f3ee9..f4f4cd6f 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Tittel på flyt", "What is the purpose of this workflow?" : "Hva er formålet med denne flyten?", "Request approval" : "Spør om godkjenning", + "There is no approval workflow allowing you to request approval." : "Det finnes ingen godkjenningsarbeidsflyt som lar deg be om godkjenning.", "Approved" : "Godkjent", "Approved by" : "Godkjent av", "Rejected" : "Avvist", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "Den relaterte godkjenningsarbeidsflyten er: {ruleDescription}", "This user requested your approval" : "Denne brukeren ba om din godkjenning", "Your approval was requested." : "Din godkjenning ble forespurt.", + "Approval information" : "Informasjon om godkjenning", "No recommendations. Start typing." : "Ingen forslag. Begynn å skrive.", "No result." : "Ingen resultat.", "Who?" : "Hvem?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Du godkjente {name}", "Failed to approve {name}" : "Kunne ikke godkjenne {name}", "You rejected {name}" : "Du avviste {name}", - "Failed to reject {name}" : "Kunne ikke avvise {name}", - "Error getting OAuth access token" : "En feil oppsto ved henting av OAuth access token", - "Error during OAuth exchanges" : "En feil oppsto under OAuth-utvekslingen", - "Signature of %s" : "Signatur av %s", - "Bad HTTP method" : "HTTP-metode er feil", - "Bad credentials" : "Påloggingsdetaljene er feil", - "OAuth access token refused" : "OAuth access token ble avslått", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Godkjenn/avvis filer basert på arbeidsflyter definert av administratorer.\n\n:advarsel: **denne appen vil bli avviklet fra Nextcloud 28 og utover.\nHvis du er en Nextcloud-kunde og avhenger av denne appen,\nvennligst vent med oppdatering til 28 og åpne en støttesak slik at vi kan finne en løsning for din brukssituasjon.**", - "Sign with DocuSign" : "Signer med DocuSign", - "Sign with LibreSign" : "Signer med LibreSign", - "Your approval was requested by {name}." : "Din godkjenning er forespurt av {name}.", - "The related approval workflow is:" : "Den relaterte godkjenningsflyten er:", - "Request a signature via DocuSign" : "Forespør en signatur via DocuSign", - "Users or email addresses" : "Brukere eller e-postadresser", - "Nextcloud users or email addresses" : "Nextcloud-brukere eller e-postadresser", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Mottakere vil få en e-post fra DocuSign med en link for å signere dokumentet. Du vil bli informert på e-post når dokumentet er signert av alle mottakere.", - "Request signature" : "Forespør signatur", - "Recipients will receive an email from DocuSign to sign the document" : "Mottakere vil få en e-post fra DocuSign for å signere dokumentet", - "Failed to request signature with DocuSign" : "Kunne ikke forespørre signatur med DocuSign", - "DocuSign integration" : "DocuSign-integrasjon", - "DocuSign is an electronic signature solution." : "DocuSign er en elektronisk signaturløsning.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Hvis du vil bruke DocuSign, opprett en ny applikasjon i din DocuSign-utviklerkonto under \"My Apps & Keys\"-innstillingene, og legg inn klient-ID (integrasjonsnøkkel) og hemmeligheten under.", - "Make sure you set this \"Redirect URI\":" : "Pass på at du fyller inn dette \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Hvis din DocuSign-bruker er tilknyttet flere DocuSign-kontoer vil standardkontoen bli brukt.", - "Client ID (aka integration key)" : "Klient-ID (aka integrasjonsnøkkel)", - "Client ID of your application" : "Klient-IDen til din applikasjon", - "Application secret key" : "Applikasjonens hemmelige nøkkel", - "Secret key of your application" : "Hemmelig nøkkel til din applikasjon", - "Connect to DocuSign" : "Koble til DocuSign", - "Connected as {user} ({email})" : "Tilkoblet som {user} ({email})", - "Disconnect from DocuSign" : "Koble fra DocuSign", - "Successfully connected to DocuSign!" : "Tilkoblingen til DocuSign er vellykket!", - "OAuth access token could not be obtained:" : "OAuth access token kunne ikke innhentes:", - "DocuSign admin options saved" : "DocuSign admin-innstillinger ble lagret", - "Failed to save DocuSign admin options" : "Kunne ikke lagre DocuSign admin-instillingene", - "Failed to save DocuSign OAuth state" : "Kunne ikke lagre tilstanden til DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Du vil motta en e-post fra DocuSign for å signere dokumentet", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Brukeren som forespurte denne godkjenningen ble ikke funnnet, husk at du derfor må sende eller dele det signerte dokumentet selv", - "Approval signature" : "Godkjenningssignatur", - "{name} signature requested via LibreSign" : "{name} signatur forespurt via LibreSign", - "Impossible to sign this document" : "Kunne ikke signere dette dokumentet", - "Pending approval, you are authorized to approve." : "Avventer godkjenning, du har tilgang til å godkjenne.", - "Show approval details" : "Vis godkjenningsdetaljer" + "Failed to reject {name}" : "Kunne ikke avvise {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nb.json b/l10n/nb.json index ba231a46..2a68b049 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -69,6 +69,7 @@ "Workflow title" : "Tittel på flyt", "What is the purpose of this workflow?" : "Hva er formålet med denne flyten?", "Request approval" : "Spør om godkjenning", + "There is no approval workflow allowing you to request approval." : "Det finnes ingen godkjenningsarbeidsflyt som lar deg be om godkjenning.", "Approved" : "Godkjent", "Approved by" : "Godkjent av", "Rejected" : "Avvist", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "Den relaterte godkjenningsarbeidsflyten er: {ruleDescription}", "This user requested your approval" : "Denne brukeren ba om din godkjenning", "Your approval was requested." : "Din godkjenning ble forespurt.", + "Approval information" : "Informasjon om godkjenning", "No recommendations. Start typing." : "Ingen forslag. Begynn å skrive.", "No result." : "Ingen resultat.", "Who?" : "Hvem?", @@ -104,48 +106,6 @@ "You approved {name}" : "Du godkjente {name}", "Failed to approve {name}" : "Kunne ikke godkjenne {name}", "You rejected {name}" : "Du avviste {name}", - "Failed to reject {name}" : "Kunne ikke avvise {name}", - "Error getting OAuth access token" : "En feil oppsto ved henting av OAuth access token", - "Error during OAuth exchanges" : "En feil oppsto under OAuth-utvekslingen", - "Signature of %s" : "Signatur av %s", - "Bad HTTP method" : "HTTP-metode er feil", - "Bad credentials" : "Påloggingsdetaljene er feil", - "OAuth access token refused" : "OAuth access token ble avslått", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Godkjenn/avvis filer basert på arbeidsflyter definert av administratorer.\n\n:advarsel: **denne appen vil bli avviklet fra Nextcloud 28 og utover.\nHvis du er en Nextcloud-kunde og avhenger av denne appen,\nvennligst vent med oppdatering til 28 og åpne en støttesak slik at vi kan finne en løsning for din brukssituasjon.**", - "Sign with DocuSign" : "Signer med DocuSign", - "Sign with LibreSign" : "Signer med LibreSign", - "Your approval was requested by {name}." : "Din godkjenning er forespurt av {name}.", - "The related approval workflow is:" : "Den relaterte godkjenningsflyten er:", - "Request a signature via DocuSign" : "Forespør en signatur via DocuSign", - "Users or email addresses" : "Brukere eller e-postadresser", - "Nextcloud users or email addresses" : "Nextcloud-brukere eller e-postadresser", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Mottakere vil få en e-post fra DocuSign med en link for å signere dokumentet. Du vil bli informert på e-post når dokumentet er signert av alle mottakere.", - "Request signature" : "Forespør signatur", - "Recipients will receive an email from DocuSign to sign the document" : "Mottakere vil få en e-post fra DocuSign for å signere dokumentet", - "Failed to request signature with DocuSign" : "Kunne ikke forespørre signatur med DocuSign", - "DocuSign integration" : "DocuSign-integrasjon", - "DocuSign is an electronic signature solution." : "DocuSign er en elektronisk signaturløsning.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Hvis du vil bruke DocuSign, opprett en ny applikasjon i din DocuSign-utviklerkonto under \"My Apps & Keys\"-innstillingene, og legg inn klient-ID (integrasjonsnøkkel) og hemmeligheten under.", - "Make sure you set this \"Redirect URI\":" : "Pass på at du fyller inn dette \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Hvis din DocuSign-bruker er tilknyttet flere DocuSign-kontoer vil standardkontoen bli brukt.", - "Client ID (aka integration key)" : "Klient-ID (aka integrasjonsnøkkel)", - "Client ID of your application" : "Klient-IDen til din applikasjon", - "Application secret key" : "Applikasjonens hemmelige nøkkel", - "Secret key of your application" : "Hemmelig nøkkel til din applikasjon", - "Connect to DocuSign" : "Koble til DocuSign", - "Connected as {user} ({email})" : "Tilkoblet som {user} ({email})", - "Disconnect from DocuSign" : "Koble fra DocuSign", - "Successfully connected to DocuSign!" : "Tilkoblingen til DocuSign er vellykket!", - "OAuth access token could not be obtained:" : "OAuth access token kunne ikke innhentes:", - "DocuSign admin options saved" : "DocuSign admin-innstillinger ble lagret", - "Failed to save DocuSign admin options" : "Kunne ikke lagre DocuSign admin-instillingene", - "Failed to save DocuSign OAuth state" : "Kunne ikke lagre tilstanden til DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Du vil motta en e-post fra DocuSign for å signere dokumentet", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Brukeren som forespurte denne godkjenningen ble ikke funnnet, husk at du derfor må sende eller dele det signerte dokumentet selv", - "Approval signature" : "Godkjenningssignatur", - "{name} signature requested via LibreSign" : "{name} signatur forespurt via LibreSign", - "Impossible to sign this document" : "Kunne ikke signere dette dokumentet", - "Pending approval, you are authorized to approve." : "Avventer godkjenning, du har tilgang til å godkjenne.", - "Show approval details" : "Vis godkjenningsdetaljer" + "Failed to reject {name}" : "Kunne ikke avvise {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/nl.js b/l10n/nl.js index 068320b7..9daa0bb1 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -77,7 +77,9 @@ OC.L10N.register( "Approval requested by" : "Goedkeuring gevraagd door", "Approval requested" : "Goedkeuring vereist", "you" : "jij", + "This user requested your approval" : "Deze gebruiker vroeg om jouw goedkeuring", "Your approval was requested." : "Jouw goedkeuring werd gevraagd", + "Approval information" : "Goedkeuringsinformatie", "No recommendations. Start typing." : "Geen aanbevelingen. Begin te typen.", "No result." : "Geen resultaat.", "Who?" : "Wie?", @@ -90,7 +92,12 @@ OC.L10N.register( "Failed to get approval pending files" : "Kon goedkeuring voor wachtende bestanden niet ophalen", "by {name} at {date}" : "door {name}, op {date}", "at {date}" : "op {date}", + "Waiting for authorized users to approve this file" : "Wacht op geautoriseerde gebruikers om dit bestand goed te keuren", + "Pending approval, you are authorized to approve" : "In afwachting van goedkeuring, jij mag goedkeuren.", + "This element was approved" : "Dit element is goedgekeurd", + "This element was rejected" : "Dit element was afgekeurd", "Pending approval" : "Wacht op goedkeuring", + "Waiting for your approval" : "Wacht op jouw goedkering", "Failed to check approval status" : "Kon goedkeuringsstatus niet ophalen", "Approval requested for {name}" : "Goedkeuring aangevraagd voor {name}", "Warning" : "Waarschuwing", @@ -98,47 +105,6 @@ OC.L10N.register( "You approved {name}" : "Je keurde {name} goed", "Failed to approve {name}" : "Kon {name} niet goedkeuren", "You rejected {name}" : "Je keurde {name} af", - "Failed to reject {name}" : "Kon {name} niet afkeuren", - "Error getting OAuth access token" : "Fout bij ophalen OAuth access token", - "Error during OAuth exchanges" : "Fout tijdens OAuth uitwisselingen", - "Signature of %s" : "Handtekening van %s", - "Bad HTTP method" : "Foute HTTP methode", - "Bad credentials" : "Foute inloggegevens", - "OAuth access token refused" : "OAuth toegangstoken geweigerd", - "Sign with DocuSign" : "Ondertekenen met DocuSign", - "Sign with LibreSign" : "Ondertekenen met LibreSign", - "Your approval was requested by {name}." : "{name} vroeg jouw goedkeuring", - "The related approval workflow is:" : "De gerelateerde goedkeuringswerkstroom is:", - "Request a signature via DocuSign" : "Vraag ondertekening via DocuSign", - "Users or email addresses" : "Gebruikers of e-mailadressen", - "Nextcloud users or email addresses" : "Nextcloud gebruikers of e-mailadressen", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Ontvangers ontvangen een e-mail van DocuSign met een link om het document te ondertekenen. Je wordt per e-mail geïnformeerd wanneer het document door alle ontvangers is ondertekend.", - "Request signature" : "Aanvragen ondertekening", - "Recipients will receive an email from DocuSign to sign the document" : "Ontvangers zullen een e-mail van DocuSign ontvangen om het document te ondertekenen", - "Failed to request signature with DocuSign" : "Aanvraag voor ondertekening via DocuSign mislukt", - "DocuSign integration" : "DocuSign integratie", - "DocuSign is an electronic signature solution." : "DocuSign is een elektronische ondertekeningstool.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Als je DocuSign wilt gebruiken, maak een applicatie in je DocuSign \"My Apps & Keys\" ontwikkelingsopties en plaats de client ID (integration key) en secret hieronder.", - "Make sure you set this \"Redirect URI\":" : "Zorg ervoor dat je deze \"Redirect URI\" ingestelt", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Als je DocuSign-gebruiker is gekoppeld aan meerdere DocuSign-accounts, dan wordt het standaardaccount gebruikt.", - "Client ID (aka integration key)" : "Client ID (oftewel integratiesleutel)", - "Client ID of your application" : "Client ID van je applicatie", - "Application secret key" : "Application secret key", - "Secret key of your application" : "Secret key van je applicatie", - "Connect to DocuSign" : "Verbinden met DocuSign", - "Connected as {user} ({email})" : "Verbonden als {user} ({email})", - "Disconnect from DocuSign" : "Ontkoppelen van DocuSign", - "Successfully connected to DocuSign!" : "Succesvol verbonden met DocuSign!", - "OAuth access token could not be obtained:" : "OAuth access token kon niet worden opgehaald:", - "DocuSign admin options saved" : "Docusign beheeropties bewaard", - "Failed to save DocuSign admin options" : "Kon DocuSign admin-opties niet opslaan", - "Failed to save DocuSign OAuth state" : "Kan DocuSign OAuth-status niet bewaren", - "You will receive an email from DocuSign to sign the document" : "Je ontvangt een e-mail van DocuSign om het document te ondertekenen", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "De gebruiker die deze goedkeuring heeft aangevraagd, is niet gevonden, vergeet niet het ondertekende document zelf te verzenden of te delen", - "Approval signature" : "Goedkeuringshandtekening", - "{name} signature requested via LibreSign" : "{name} ondertekening aangevraagd via LibreSign", - "Impossible to sign this document" : "Kon document niet ondertekenen", - "Pending approval, you are authorized to approve." : "In afwachting van goedkeuring, jij mag goedkeuren.", - "Show approval details" : "Toon goedkeuringsdetails" + "Failed to reject {name}" : "Kon {name} niet afkeuren" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nl.json b/l10n/nl.json index c8113b78..b68701c0 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -75,7 +75,9 @@ "Approval requested by" : "Goedkeuring gevraagd door", "Approval requested" : "Goedkeuring vereist", "you" : "jij", + "This user requested your approval" : "Deze gebruiker vroeg om jouw goedkeuring", "Your approval was requested." : "Jouw goedkeuring werd gevraagd", + "Approval information" : "Goedkeuringsinformatie", "No recommendations. Start typing." : "Geen aanbevelingen. Begin te typen.", "No result." : "Geen resultaat.", "Who?" : "Wie?", @@ -88,7 +90,12 @@ "Failed to get approval pending files" : "Kon goedkeuring voor wachtende bestanden niet ophalen", "by {name} at {date}" : "door {name}, op {date}", "at {date}" : "op {date}", + "Waiting for authorized users to approve this file" : "Wacht op geautoriseerde gebruikers om dit bestand goed te keuren", + "Pending approval, you are authorized to approve" : "In afwachting van goedkeuring, jij mag goedkeuren.", + "This element was approved" : "Dit element is goedgekeurd", + "This element was rejected" : "Dit element was afgekeurd", "Pending approval" : "Wacht op goedkeuring", + "Waiting for your approval" : "Wacht op jouw goedkering", "Failed to check approval status" : "Kon goedkeuringsstatus niet ophalen", "Approval requested for {name}" : "Goedkeuring aangevraagd voor {name}", "Warning" : "Waarschuwing", @@ -96,47 +103,6 @@ "You approved {name}" : "Je keurde {name} goed", "Failed to approve {name}" : "Kon {name} niet goedkeuren", "You rejected {name}" : "Je keurde {name} af", - "Failed to reject {name}" : "Kon {name} niet afkeuren", - "Error getting OAuth access token" : "Fout bij ophalen OAuth access token", - "Error during OAuth exchanges" : "Fout tijdens OAuth uitwisselingen", - "Signature of %s" : "Handtekening van %s", - "Bad HTTP method" : "Foute HTTP methode", - "Bad credentials" : "Foute inloggegevens", - "OAuth access token refused" : "OAuth toegangstoken geweigerd", - "Sign with DocuSign" : "Ondertekenen met DocuSign", - "Sign with LibreSign" : "Ondertekenen met LibreSign", - "Your approval was requested by {name}." : "{name} vroeg jouw goedkeuring", - "The related approval workflow is:" : "De gerelateerde goedkeuringswerkstroom is:", - "Request a signature via DocuSign" : "Vraag ondertekening via DocuSign", - "Users or email addresses" : "Gebruikers of e-mailadressen", - "Nextcloud users or email addresses" : "Nextcloud gebruikers of e-mailadressen", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Ontvangers ontvangen een e-mail van DocuSign met een link om het document te ondertekenen. Je wordt per e-mail geïnformeerd wanneer het document door alle ontvangers is ondertekend.", - "Request signature" : "Aanvragen ondertekening", - "Recipients will receive an email from DocuSign to sign the document" : "Ontvangers zullen een e-mail van DocuSign ontvangen om het document te ondertekenen", - "Failed to request signature with DocuSign" : "Aanvraag voor ondertekening via DocuSign mislukt", - "DocuSign integration" : "DocuSign integratie", - "DocuSign is an electronic signature solution." : "DocuSign is een elektronische ondertekeningstool.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Als je DocuSign wilt gebruiken, maak een applicatie in je DocuSign \"My Apps & Keys\" ontwikkelingsopties en plaats de client ID (integration key) en secret hieronder.", - "Make sure you set this \"Redirect URI\":" : "Zorg ervoor dat je deze \"Redirect URI\" ingestelt", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Als je DocuSign-gebruiker is gekoppeld aan meerdere DocuSign-accounts, dan wordt het standaardaccount gebruikt.", - "Client ID (aka integration key)" : "Client ID (oftewel integratiesleutel)", - "Client ID of your application" : "Client ID van je applicatie", - "Application secret key" : "Application secret key", - "Secret key of your application" : "Secret key van je applicatie", - "Connect to DocuSign" : "Verbinden met DocuSign", - "Connected as {user} ({email})" : "Verbonden als {user} ({email})", - "Disconnect from DocuSign" : "Ontkoppelen van DocuSign", - "Successfully connected to DocuSign!" : "Succesvol verbonden met DocuSign!", - "OAuth access token could not be obtained:" : "OAuth access token kon niet worden opgehaald:", - "DocuSign admin options saved" : "Docusign beheeropties bewaard", - "Failed to save DocuSign admin options" : "Kon DocuSign admin-opties niet opslaan", - "Failed to save DocuSign OAuth state" : "Kan DocuSign OAuth-status niet bewaren", - "You will receive an email from DocuSign to sign the document" : "Je ontvangt een e-mail van DocuSign om het document te ondertekenen", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "De gebruiker die deze goedkeuring heeft aangevraagd, is niet gevonden, vergeet niet het ondertekende document zelf te verzenden of te delen", - "Approval signature" : "Goedkeuringshandtekening", - "{name} signature requested via LibreSign" : "{name} ondertekening aangevraagd via LibreSign", - "Impossible to sign this document" : "Kon document niet ondertekenen", - "Pending approval, you are authorized to approve." : "In afwachting van goedkeuring, jij mag goedkeuren.", - "Show approval details" : "Toon goedkeuringsdetails" + "Failed to reject {name}" : "Kon {name} niet afkeuren" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/oc.js b/l10n/oc.js index 9e50190c..59548a55 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -34,12 +34,6 @@ OC.L10N.register( "you" : "vos", "No result." : "Cap de resultat.", "Who?" : "Qual ?", - "Warning" : "Avertiment", - "Signature of %s" : "Signatura de %s", - "Bad credentials" : "Marrits identificants", - "Sign with DocuSign" : "Signar amb DocuSign", - "Sign with LibreSign" : "Signar amb LibreSign", - "DocuSign integration" : "integracion DocuSign", - "Connect to DocuSign" : "Se connectar a DocuSign" + "Warning" : "Avertiment" }, "nplurals=2; plural=(n> 1);"); diff --git a/l10n/oc.json b/l10n/oc.json index 46fca54f..5cd7de0d 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -32,12 +32,6 @@ "you" : "vos", "No result." : "Cap de resultat.", "Who?" : "Qual ?", - "Warning" : "Avertiment", - "Signature of %s" : "Signatura de %s", - "Bad credentials" : "Marrits identificants", - "Sign with DocuSign" : "Signar amb DocuSign", - "Sign with LibreSign" : "Signar amb LibreSign", - "DocuSign integration" : "integracion DocuSign", - "Connect to DocuSign" : "Se connectar a DocuSign" + "Warning" : "Avertiment" },"pluralForm" :"nplurals=2; plural=(n> 1);" } \ No newline at end of file diff --git a/l10n/pl.js b/l10n/pl.js index 15df92d5..1b0e35bc 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -99,47 +99,6 @@ OC.L10N.register( "You approved {name}" : "Zatwierdziłeś {name}", "Failed to approve {name}" : "Nie udało się zatwierdzić {name}", "You rejected {name}" : "Odrzuciłeś {name}", - "Failed to reject {name}" : "Nie udało się odrzucić {name}", - "Error getting OAuth access token" : "Błąd podczas pobierania tokena dostępu OAuth", - "Error during OAuth exchanges" : "Błąd podczas zamiany OAuth", - "Signature of %s" : "Podpis %s", - "Bad HTTP method" : "Zła metoda HTTP", - "Bad credentials" : "Złe poświadczenia", - "OAuth access token refused" : "Odmowa tokena dostępu OAuth", - "Sign with DocuSign" : "Podpisz za pomocą DocuSign", - "Sign with LibreSign" : "Podpisz za pomocą LibreSign", - "Your approval was requested by {name}." : "{name} poprosił Ciebie o zatwierdzenie", - "The related approval workflow is:" : "Powiązany przepływ pracy zatwierdzenia to:", - "Request a signature via DocuSign" : "Prośba o podpis przez DocuSign", - "Users or email addresses" : "Użytkownicy lub adresy e-mail", - "Nextcloud users or email addresses" : "Użytkownicy Nextcloud lub adresy e-mail", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Odbiorcy otrzymają wiadomość e-mail od DocuSign z linkiem do podpisania dokumentu. Zostaniesz poinformowany e-mailem, gdy dokument zostanie podpisany przez wszystkich odbiorców.", - "Request signature" : "Prośba o podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Odbiorcy otrzymają wiadomość e-mail z DocuSign w celu podpisania dokumentu", - "Failed to request signature with DocuSign" : "Nie udało się poprosić o podpis za pomocą DocuSign", - "DocuSign integration" : "Integracja DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign to rozwiązanie dla podpisu elektronicznego.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Jeśli chcesz korzystać z DocuSign, utwórz aplikację DocuSign w ustawieniach konta dewelopera \"Moje aplikacje i klucze\" i umieść poniżej ID klienta (klucz integracji) oraz tajny klucz.", - "Make sure you set this \"Redirect URI\":" : "Upewnij się, że ustawiłeś \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Jeśli użytkownik DocuSign jest powiązany z wieloma kontami DocuSign, zostanie użyte konto domyślne.", - "Client ID (aka integration key)" : "ID klienta (znany także jako klucz integracji)", - "Client ID of your application" : "ID klienta Twojej aplikacji", - "Application secret key" : "Tajny klucz aplikacji", - "Secret key of your application" : "Tajny klucz Twojej aplikacji", - "Connect to DocuSign" : "Połącz z DocuSign", - "Connected as {user} ({email})" : "Połączono jako {user} ({email})", - "Disconnect from DocuSign" : "Odłącz od DocuSign", - "Successfully connected to DocuSign!" : "Pomyślnie połączono z DocuSign!", - "OAuth access token could not be obtained:" : "Nie można uzyskać tokena dostępu OAuth:", - "DocuSign admin options saved" : "Opcje administratora DocuSign zostały zapisane", - "Failed to save DocuSign admin options" : "Nie udało się zapisać opcji administratora DocuSign", - "Failed to save DocuSign OAuth state" : "Nie udało się zapisać statusu OAuth DocuSign", - "You will receive an email from DocuSign to sign the document" : "Otrzymasz wiadomość e-mail z DocuSign, aby podpisać dokument", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Nie znaleziono użytkownika, który poprosił o to zatwierdzenie. Należy pamiętać, aby samodzielnie wysłać lub udostępnić podpisany dokument", - "Approval signature" : "Podpis zatwierdzenia", - "{name} signature requested via LibreSign" : "Prośba o podpis {name} przez LibreSign", - "Impossible to sign this document" : "Nie można podpisać tego dokumentu", - "Pending approval, you are authorized to approve." : "Oczekuje na zatwierdzenie, masz uprawnienia do zatwierdzenia.", - "Show approval details" : "Pokaż szczegóły zatwierdzenia" + "Failed to reject {name}" : "Nie udało się odrzucić {name}" }, "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);"); diff --git a/l10n/pl.json b/l10n/pl.json index 483d8b06..33b1e2b3 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -97,47 +97,6 @@ "You approved {name}" : "Zatwierdziłeś {name}", "Failed to approve {name}" : "Nie udało się zatwierdzić {name}", "You rejected {name}" : "Odrzuciłeś {name}", - "Failed to reject {name}" : "Nie udało się odrzucić {name}", - "Error getting OAuth access token" : "Błąd podczas pobierania tokena dostępu OAuth", - "Error during OAuth exchanges" : "Błąd podczas zamiany OAuth", - "Signature of %s" : "Podpis %s", - "Bad HTTP method" : "Zła metoda HTTP", - "Bad credentials" : "Złe poświadczenia", - "OAuth access token refused" : "Odmowa tokena dostępu OAuth", - "Sign with DocuSign" : "Podpisz za pomocą DocuSign", - "Sign with LibreSign" : "Podpisz za pomocą LibreSign", - "Your approval was requested by {name}." : "{name} poprosił Ciebie o zatwierdzenie", - "The related approval workflow is:" : "Powiązany przepływ pracy zatwierdzenia to:", - "Request a signature via DocuSign" : "Prośba o podpis przez DocuSign", - "Users or email addresses" : "Użytkownicy lub adresy e-mail", - "Nextcloud users or email addresses" : "Użytkownicy Nextcloud lub adresy e-mail", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Odbiorcy otrzymają wiadomość e-mail od DocuSign z linkiem do podpisania dokumentu. Zostaniesz poinformowany e-mailem, gdy dokument zostanie podpisany przez wszystkich odbiorców.", - "Request signature" : "Prośba o podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Odbiorcy otrzymają wiadomość e-mail z DocuSign w celu podpisania dokumentu", - "Failed to request signature with DocuSign" : "Nie udało się poprosić o podpis za pomocą DocuSign", - "DocuSign integration" : "Integracja DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign to rozwiązanie dla podpisu elektronicznego.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Jeśli chcesz korzystać z DocuSign, utwórz aplikację DocuSign w ustawieniach konta dewelopera \"Moje aplikacje i klucze\" i umieść poniżej ID klienta (klucz integracji) oraz tajny klucz.", - "Make sure you set this \"Redirect URI\":" : "Upewnij się, że ustawiłeś \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Jeśli użytkownik DocuSign jest powiązany z wieloma kontami DocuSign, zostanie użyte konto domyślne.", - "Client ID (aka integration key)" : "ID klienta (znany także jako klucz integracji)", - "Client ID of your application" : "ID klienta Twojej aplikacji", - "Application secret key" : "Tajny klucz aplikacji", - "Secret key of your application" : "Tajny klucz Twojej aplikacji", - "Connect to DocuSign" : "Połącz z DocuSign", - "Connected as {user} ({email})" : "Połączono jako {user} ({email})", - "Disconnect from DocuSign" : "Odłącz od DocuSign", - "Successfully connected to DocuSign!" : "Pomyślnie połączono z DocuSign!", - "OAuth access token could not be obtained:" : "Nie można uzyskać tokena dostępu OAuth:", - "DocuSign admin options saved" : "Opcje administratora DocuSign zostały zapisane", - "Failed to save DocuSign admin options" : "Nie udało się zapisać opcji administratora DocuSign", - "Failed to save DocuSign OAuth state" : "Nie udało się zapisać statusu OAuth DocuSign", - "You will receive an email from DocuSign to sign the document" : "Otrzymasz wiadomość e-mail z DocuSign, aby podpisać dokument", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Nie znaleziono użytkownika, który poprosił o to zatwierdzenie. Należy pamiętać, aby samodzielnie wysłać lub udostępnić podpisany dokument", - "Approval signature" : "Podpis zatwierdzenia", - "{name} signature requested via LibreSign" : "Prośba o podpis {name} przez LibreSign", - "Impossible to sign this document" : "Nie można podpisać tego dokumentu", - "Pending approval, you are authorized to approve." : "Oczekuje na zatwierdzenie, masz uprawnienia do zatwierdzenia.", - "Show approval details" : "Pokaż szczegóły zatwierdzenia" + "Failed to reject {name}" : "Nie udało się odrzucić {name}" },"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);" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index c8c5fb48..ba79d2e9 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Título do fluxo", "What is the purpose of this workflow?" : "Qual o propósito deste fluxo?", "Request approval" : "Solicite aprovação ", + "There is no approval workflow allowing you to request approval." : "Não há fluxo de trabalho de aprovação que permita solicitar aprovação.", "Approved" : "Aprovado", "Approved by" : "Aprovado por ", "Rejected" : "Rejeitado", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "O fluxo de trabalho de aprovação relacionado é: {ruleDescription}", "This user requested your approval" : "Este usuário solicitou sua aprovação", "Your approval was requested." : "Sua aprovação foi solicitada.", + "Approval information" : "Informações de aprovação", "No recommendations. Start typing." : "Sem recomendações. Começe a digitar.", "No result." : "Sem resultado.", "Who?" : "Quem?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Você aprovou {name}", "Failed to approve {name}" : "Falha ao aprovar {name}", "You rejected {name}" : "Você rejeitou {name}", - "Failed to reject {name}" : "Falha ao rejeitar {name}", - "Error getting OAuth access token" : "Erro ao obter o token de acesso OAuth", - "Error during OAuth exchanges" : "Erro durante as trocas OAuth", - "Signature of %s" : "Assinatura de %s", - "Bad HTTP method" : "Método HTTP incorreto", - "Bad credentials" : "Credenciais inválidas", - "OAuth access token refused" : "Token de acesso OAuth recusado", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Aprove/rejeite arquivos com base em fluxos de trabalho definidos pelos administradores.\n\n: aviso: ** Este aplicativo será descontinuado a partir do Nextcloud 28.\nSe você é um cliente Nextcloud e confia neste aplicativo,\naguarde a atualização para 28 e abra um ticket de suporte para que possamos encontrar uma solução para seu caso de uso.**", - "Sign with DocuSign" : "Assine com DocuSign", - "Sign with LibreSign" : "Assine com LibreSign", - "Your approval was requested by {name}." : "Sua aprovação foi solicitada por {name}.", - "The related approval workflow is:" : "O fluxo de aprovação relacionado é:", - "Request a signature via DocuSign" : "Solicite assinatura via DocuSign", - "Users or email addresses" : "Usuários ou endereços de e-mail", - "Nextcloud users or email addresses" : "Usuários do Nextcloud ou endereços de e-mail", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Os destinatários receberão um e-mail do DocuSign com um link para assinar o documento. Você será informado por e-mail quando o documento for assinado por todos os destinatários.", - "Request signature" : "Solicite assinatura", - "Recipients will receive an email from DocuSign to sign the document" : "Os destinatários receberão um e-mail do DocuSign para assinar o documento", - "Failed to request signature with DocuSign" : "Falha ao solicitar assinatura com DocuSign", - "DocuSign integration" : "Integração com DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign é uma solução de assinatura eletrônica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Se desejar usar o DocuSign, crie um aplicativo nas configurações da conta de desenvolvedor \"Meus aplicativos e chaves\" do DocuSign e coloque o ID do cliente (chave de integração) e o segredo abaixo. ", - "Make sure you set this \"Redirect URI\":" : "Certifique-se de definir este \"URI de redirecionamento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Se o seu usuário DocuSign estiver associado a várias contas DocuSign, a conta padrão será usada.", - "Client ID (aka integration key)" : "ID do cliente (também conhecido como chave de integração)", - "Client ID of your application" : "ID de cliente de seu aplicativo", - "Application secret key" : "Chave secreta do aplicativo", - "Secret key of your application" : "Chave secreta do seu aplicativo", - "Connect to DocuSign" : "Conecte-se ao DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectar do DocuSign", - "Successfully connected to DocuSign!" : "Conectado com sucesso ao DocuSign!", - "OAuth access token could not be obtained:" : "Não foi possível obter o token de acesso OAuth:", - "DocuSign admin options saved" : "Opções de administração do DocuSign salvas", - "Failed to save DocuSign admin options" : "Falha ao salvar as opções de administrador do DocuSign", - "Failed to save DocuSign OAuth state" : "Falha ao salvar o estado DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Você receberá um e-mail do DocuSign para assinar o documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "O usuário que solicitou esta aprovação não foi encontrado, você mesmo lembre-se de enviar ou compartilhar o documento assinado", - "Approval signature" : "Assinatura de aprovação", - "{name} signature requested via LibreSign" : "{name} assinatura solicitada via LibreSign", - "Impossible to sign this document" : "Impossível assinar este documento", - "Pending approval, you are authorized to approve." : "Pendente de aprovação, você está autorizado a aprovar.", - "Show approval details" : "Mostrar detalhes de aprovação" + "Failed to reject {name}" : "Falha ao rejeitar {name}" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index d3a688ed..5cd59fe6 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -69,6 +69,7 @@ "Workflow title" : "Título do fluxo", "What is the purpose of this workflow?" : "Qual o propósito deste fluxo?", "Request approval" : "Solicite aprovação ", + "There is no approval workflow allowing you to request approval." : "Não há fluxo de trabalho de aprovação que permita solicitar aprovação.", "Approved" : "Aprovado", "Approved by" : "Aprovado por ", "Rejected" : "Rejeitado", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "O fluxo de trabalho de aprovação relacionado é: {ruleDescription}", "This user requested your approval" : "Este usuário solicitou sua aprovação", "Your approval was requested." : "Sua aprovação foi solicitada.", + "Approval information" : "Informações de aprovação", "No recommendations. Start typing." : "Sem recomendações. Começe a digitar.", "No result." : "Sem resultado.", "Who?" : "Quem?", @@ -104,48 +106,6 @@ "You approved {name}" : "Você aprovou {name}", "Failed to approve {name}" : "Falha ao aprovar {name}", "You rejected {name}" : "Você rejeitou {name}", - "Failed to reject {name}" : "Falha ao rejeitar {name}", - "Error getting OAuth access token" : "Erro ao obter o token de acesso OAuth", - "Error during OAuth exchanges" : "Erro durante as trocas OAuth", - "Signature of %s" : "Assinatura de %s", - "Bad HTTP method" : "Método HTTP incorreto", - "Bad credentials" : "Credenciais inválidas", - "OAuth access token refused" : "Token de acesso OAuth recusado", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Aprove/rejeite arquivos com base em fluxos de trabalho definidos pelos administradores.\n\n: aviso: ** Este aplicativo será descontinuado a partir do Nextcloud 28.\nSe você é um cliente Nextcloud e confia neste aplicativo,\naguarde a atualização para 28 e abra um ticket de suporte para que possamos encontrar uma solução para seu caso de uso.**", - "Sign with DocuSign" : "Assine com DocuSign", - "Sign with LibreSign" : "Assine com LibreSign", - "Your approval was requested by {name}." : "Sua aprovação foi solicitada por {name}.", - "The related approval workflow is:" : "O fluxo de aprovação relacionado é:", - "Request a signature via DocuSign" : "Solicite assinatura via DocuSign", - "Users or email addresses" : "Usuários ou endereços de e-mail", - "Nextcloud users or email addresses" : "Usuários do Nextcloud ou endereços de e-mail", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Os destinatários receberão um e-mail do DocuSign com um link para assinar o documento. Você será informado por e-mail quando o documento for assinado por todos os destinatários.", - "Request signature" : "Solicite assinatura", - "Recipients will receive an email from DocuSign to sign the document" : "Os destinatários receberão um e-mail do DocuSign para assinar o documento", - "Failed to request signature with DocuSign" : "Falha ao solicitar assinatura com DocuSign", - "DocuSign integration" : "Integração com DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign é uma solução de assinatura eletrônica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Se desejar usar o DocuSign, crie um aplicativo nas configurações da conta de desenvolvedor \"Meus aplicativos e chaves\" do DocuSign e coloque o ID do cliente (chave de integração) e o segredo abaixo. ", - "Make sure you set this \"Redirect URI\":" : "Certifique-se de definir este \"URI de redirecionamento\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Se o seu usuário DocuSign estiver associado a várias contas DocuSign, a conta padrão será usada.", - "Client ID (aka integration key)" : "ID do cliente (também conhecido como chave de integração)", - "Client ID of your application" : "ID de cliente de seu aplicativo", - "Application secret key" : "Chave secreta do aplicativo", - "Secret key of your application" : "Chave secreta do seu aplicativo", - "Connect to DocuSign" : "Conecte-se ao DocuSign", - "Connected as {user} ({email})" : "Conectado como {user} ({email})", - "Disconnect from DocuSign" : "Desconectar do DocuSign", - "Successfully connected to DocuSign!" : "Conectado com sucesso ao DocuSign!", - "OAuth access token could not be obtained:" : "Não foi possível obter o token de acesso OAuth:", - "DocuSign admin options saved" : "Opções de administração do DocuSign salvas", - "Failed to save DocuSign admin options" : "Falha ao salvar as opções de administrador do DocuSign", - "Failed to save DocuSign OAuth state" : "Falha ao salvar o estado DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Você receberá um e-mail do DocuSign para assinar o documento", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "O usuário que solicitou esta aprovação não foi encontrado, você mesmo lembre-se de enviar ou compartilhar o documento assinado", - "Approval signature" : "Assinatura de aprovação", - "{name} signature requested via LibreSign" : "{name} assinatura solicitada via LibreSign", - "Impossible to sign this document" : "Impossível assinar este documento", - "Pending approval, you are authorized to approve." : "Pendente de aprovação, você está autorizado a aprovar.", - "Show approval details" : "Mostrar detalhes de aprovação" + "Failed to reject {name}" : "Falha ao rejeitar {name}" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 4b669ecd..d7e6eaf5 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -4,13 +4,11 @@ OC.L10N.register( "Create" : "Criar", "Cancel" : "Cancelar", "Approve" : "Aprovar", + "Reject" : "Rejeitar", "Approved" : "Aprovado", "you" : "Você", "No recommendations. Start typing." : "Nenhuma recomendação. Comece a escrever ", "No result." : "Sem resultados", - "Warning" : "Aviso", - "Error during OAuth exchanges" : "Erro durante trocas com o OAuth", - "Bad HTTP method" : "Método HTTP incorreto", - "Bad credentials" : "Credenciais inválidas" + "Warning" : "Aviso" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 21204c4a..223b2c77 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -2,13 +2,11 @@ "Create" : "Criar", "Cancel" : "Cancelar", "Approve" : "Aprovar", + "Reject" : "Rejeitar", "Approved" : "Aprovado", "you" : "Você", "No recommendations. Start typing." : "Nenhuma recomendação. Comece a escrever ", "No result." : "Sem resultados", - "Warning" : "Aviso", - "Error during OAuth exchanges" : "Erro durante trocas com o OAuth", - "Bad HTTP method" : "Método HTTP incorreto", - "Bad credentials" : "Credenciais inválidas" + "Warning" : "Aviso" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ro.js b/l10n/ro.js index bfddab2a..8210b7fe 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -7,13 +7,9 @@ OC.L10N.register( "Reject" : "Respinge", "Approved" : "Aprobat", "you" : "tu", + "No recommendations. Start typing." : "Nu am găsit recomandări. Începeți să scrieți.", "No result." : "Niciun rezultat.", "Pending approval" : "Aprobare în așteptare", - "Warning" : "Atenție", - "Error getting OAuth access token" : "Eroare în obținerea token-ului OAuth", - "Error during OAuth exchanges" : "Eroare în schimbarea OAuth", - "Bad HTTP method" : "Metodă HTTP nepotrivită", - "Bad credentials" : "Credențiale greșite", - "OAuth access token refused" : "Token-ul OAuth a fost refuzat" + "Warning" : "Atenție" }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/l10n/ro.json b/l10n/ro.json index 92716311..c3668fca 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -5,13 +5,9 @@ "Reject" : "Respinge", "Approved" : "Aprobat", "you" : "tu", + "No recommendations. Start typing." : "Nu am găsit recomandări. Începeți să scrieți.", "No result." : "Niciun rezultat.", "Pending approval" : "Aprobare în așteptare", - "Warning" : "Atenție", - "Error getting OAuth access token" : "Eroare în obținerea token-ului OAuth", - "Error during OAuth exchanges" : "Eroare în schimbarea OAuth", - "Bad HTTP method" : "Metodă HTTP nepotrivită", - "Bad credentials" : "Credențiale greșite", - "OAuth access token refused" : "Token-ul OAuth a fost refuzat" + "Warning" : "Atenție" },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" } \ No newline at end of file diff --git a/l10n/ru.js b/l10n/ru.js index d1e7dff8..3b8038ba 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -70,6 +70,7 @@ OC.L10N.register( "Workflow title" : "Название процесса", "What is the purpose of this workflow?" : "Какова цель данного процесса?", "Request approval" : "Запросить согласование", + "There is no approval workflow allowing you to request approval." : "Не существует рабочего процесса утверждения, позволяющего вам запросить утверждение.", "Approved" : "Согласовано", "Approved by" : "Согласовал(а): ", "Rejected" : "Отклонено", @@ -104,47 +105,6 @@ OC.L10N.register( "You approved {name}" : "Вы согласовали {name}", "Failed to approve {name}" : "Не удалось согласовать {name}", "You rejected {name}" : "Вы отклонили {name}", - "Failed to reject {name}" : "Не удалось отклонить {name}", - "Error getting OAuth access token" : "Ошибка получения токена доступа OAuth", - "Error during OAuth exchanges" : "Ошибка во время обмена OAuth", - "Signature of %s" : "Подпись %s", - "Bad HTTP method" : "Неверный метод HTTP", - "Bad credentials" : "Неверные учётные данные", - "OAuth access token refused" : "Токен доступа OAuth был отклонен", - "Sign with DocuSign" : "Подписать в DocuSign", - "Sign with LibreSign" : "Подписать в LibreSign", - "Your approval was requested by {name}." : "Ваше согласование запросил(а) {name}.", - "The related approval workflow is:" : "Соответствующий процесс согласования:", - "Request a signature via DocuSign" : "Запросить подпись через DocuSign", - "Users or email addresses" : "Пользователи или адреса email", - "Nextcloud users or email addresses" : "Пользователи Nextcloud или адреса email", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Получателям будет отправлен email от DocuSign со ссылкой для подписи документа. Вы получите уведомление по email, когда документ будет подписан всеми получателями.", - "Request signature" : "Запросить подпись", - "Recipients will receive an email from DocuSign to sign the document" : "Получателям будет отправлен email от DocuSign для подписи документа", - "Failed to request signature with DocuSign" : "Не удалось запросить подпись через DocuSign", - "DocuSign integration" : "Интеграция с DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign - это решение для электронной подписи.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Если вы хотите использовать DocuSign, создайте приложение в настройках учетной записи разработчика DocuSign \"Мои приложения и ключи\" и укажите ниже идентификатор клиента (ключ интеграции) и секрет.", - "Make sure you set this \"Redirect URI\":" : "Убедитесь, что вы правильно установили параметр \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Если ваш пользователь DocuSign связан с несколькими учетными записями DocuSign, будет использоваться учетная запись по умолчанию.", - "Client ID (aka integration key)" : "ID клиента (он же ключ интеграции)", - "Client ID of your application" : "ID клиента для вашего приложения", - "Application secret key" : "Секретный ключ приложения", - "Secret key of your application" : "Секретный ключ для вашего приложения", - "Connect to DocuSign" : "Подключиться к DocuSign", - "Connected as {user} ({email})" : "Подключено как {user} ({email})", - "Disconnect from DocuSign" : "Отключиться от DocuSign", - "Successfully connected to DocuSign!" : "Успешно подключено к DocuSign!", - "OAuth access token could not be obtained:" : "Токен доступа OAuth не может быть получен:", - "DocuSign admin options saved" : "Параметры администратора для DocuSign сохранены", - "Failed to save DocuSign admin options" : "Не удалось сохранить Параметры администратора для DocuSign", - "Failed to save DocuSign OAuth state" : "Не удалось сохранить состояние OAuth для DocuSign", - "You will receive an email from DocuSign to sign the document" : "Вы получите email от DocuSign для подписания документа", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Пользователь, который запросил согласование не найден. Не забудьте отправить или дать общий доступ к подписанному документу самостоятельно.", - "Approval signature" : "Подпись согласования", - "{name} signature requested via LibreSign" : "Подпись {name} запрошена через LibreSign", - "Impossible to sign this document" : "Невозможно подписать данный документ", - "Pending approval, you are authorized to approve." : "Ожидает согласования, у вас есть полномочия для согласования.", - "Show approval details" : "Согласование подробно" + "Failed to reject {name}" : "Не удалось отклонить {name}" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/ru.json b/l10n/ru.json index ef04ee54..e0a3e069 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -68,6 +68,7 @@ "Workflow title" : "Название процесса", "What is the purpose of this workflow?" : "Какова цель данного процесса?", "Request approval" : "Запросить согласование", + "There is no approval workflow allowing you to request approval." : "Не существует рабочего процесса утверждения, позволяющего вам запросить утверждение.", "Approved" : "Согласовано", "Approved by" : "Согласовал(а): ", "Rejected" : "Отклонено", @@ -102,47 +103,6 @@ "You approved {name}" : "Вы согласовали {name}", "Failed to approve {name}" : "Не удалось согласовать {name}", "You rejected {name}" : "Вы отклонили {name}", - "Failed to reject {name}" : "Не удалось отклонить {name}", - "Error getting OAuth access token" : "Ошибка получения токена доступа OAuth", - "Error during OAuth exchanges" : "Ошибка во время обмена OAuth", - "Signature of %s" : "Подпись %s", - "Bad HTTP method" : "Неверный метод HTTP", - "Bad credentials" : "Неверные учётные данные", - "OAuth access token refused" : "Токен доступа OAuth был отклонен", - "Sign with DocuSign" : "Подписать в DocuSign", - "Sign with LibreSign" : "Подписать в LibreSign", - "Your approval was requested by {name}." : "Ваше согласование запросил(а) {name}.", - "The related approval workflow is:" : "Соответствующий процесс согласования:", - "Request a signature via DocuSign" : "Запросить подпись через DocuSign", - "Users or email addresses" : "Пользователи или адреса email", - "Nextcloud users or email addresses" : "Пользователи Nextcloud или адреса email", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Получателям будет отправлен email от DocuSign со ссылкой для подписи документа. Вы получите уведомление по email, когда документ будет подписан всеми получателями.", - "Request signature" : "Запросить подпись", - "Recipients will receive an email from DocuSign to sign the document" : "Получателям будет отправлен email от DocuSign для подписи документа", - "Failed to request signature with DocuSign" : "Не удалось запросить подпись через DocuSign", - "DocuSign integration" : "Интеграция с DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign - это решение для электронной подписи.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Если вы хотите использовать DocuSign, создайте приложение в настройках учетной записи разработчика DocuSign \"Мои приложения и ключи\" и укажите ниже идентификатор клиента (ключ интеграции) и секрет.", - "Make sure you set this \"Redirect URI\":" : "Убедитесь, что вы правильно установили параметр \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Если ваш пользователь DocuSign связан с несколькими учетными записями DocuSign, будет использоваться учетная запись по умолчанию.", - "Client ID (aka integration key)" : "ID клиента (он же ключ интеграции)", - "Client ID of your application" : "ID клиента для вашего приложения", - "Application secret key" : "Секретный ключ приложения", - "Secret key of your application" : "Секретный ключ для вашего приложения", - "Connect to DocuSign" : "Подключиться к DocuSign", - "Connected as {user} ({email})" : "Подключено как {user} ({email})", - "Disconnect from DocuSign" : "Отключиться от DocuSign", - "Successfully connected to DocuSign!" : "Успешно подключено к DocuSign!", - "OAuth access token could not be obtained:" : "Токен доступа OAuth не может быть получен:", - "DocuSign admin options saved" : "Параметры администратора для DocuSign сохранены", - "Failed to save DocuSign admin options" : "Не удалось сохранить Параметры администратора для DocuSign", - "Failed to save DocuSign OAuth state" : "Не удалось сохранить состояние OAuth для DocuSign", - "You will receive an email from DocuSign to sign the document" : "Вы получите email от DocuSign для подписания документа", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Пользователь, который запросил согласование не найден. Не забудьте отправить или дать общий доступ к подписанному документу самостоятельно.", - "Approval signature" : "Подпись согласования", - "{name} signature requested via LibreSign" : "Подпись {name} запрошена через LibreSign", - "Impossible to sign this document" : "Невозможно подписать данный документ", - "Pending approval, you are authorized to approve." : "Ожидает согласования, у вас есть полномочия для согласования.", - "Show approval details" : "Согласование подробно" + "Failed to reject {name}" : "Не удалось отклонить {name}" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/l10n/sc.js b/l10n/sc.js index a036fef5..7b0938dd 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -61,8 +61,8 @@ OC.L10N.register( "Who can request approval" : "Chie podet rechèdere aprovatzione", "Who can approve" : "Chie podet aprovare", "Tag to act on" : "Eticheta pro atziones", - "Tag set on approval" : "Eticheta impostada in aprovatzione", - "Tag set on rejection" : "Eticheta impostada in refudu", + "Tag set on approval" : "Eticheta cunfigurada in aprovatzione", + "Tag set on rejection" : "Eticheta cunfigurada in refudu", "Workflow title" : "Tìtulu de su flussu de traballu", "What is the purpose of this workflow?" : "Cale est s'obietivu de custu flussu de traballu?", "Request approval" : "Rechede aprovatzione", @@ -93,47 +93,6 @@ OC.L10N.register( "You approved {name}" : "As aprovadu {name}", "Failed to approve {name}" : "No at fatu a aprovare {name}", "You rejected {name}" : "As refudadu {name}", - "Failed to reject {name}" : "No at fatu a refudare {name}", - "Error getting OAuth access token" : "Errore recuperende su token de intrada OAuth.", - "Error during OAuth exchanges" : "Errore cuncambiende OAuth", - "Signature of %s" : "Firma de %s", - "Bad HTTP method" : "Mètodu HTTP no bàlidu", - "Bad credentials" : "Credentziales non bàlidas", - "OAuth access token refused" : "Token de intrada OAuth refudadu", - "Sign with DocuSign" : "Firma cun DocuSign", - "Sign with LibreSign" : "Firma cun LibreSign", - "Your approval was requested by {name}." : "S'aprovatzione tua est recherta dae {name}.", - "The related approval workflow is:" : "Su flussu de traballu de aprovatzione relatzionadu est:", - "Request a signature via DocuSign" : "Rechede una firma cun DocuSign", - "Users or email addresses" : "Utentes o indiritzos de posta eletrònica", - "Nextcloud users or email addresses" : "Utentes de Nextcloud o indiritzos de posta eletrònica", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Is persones destinatàrias ant a retzire unu messàgiu de posta dae DocuSign cun unu ligòngiu pro firmare su documentu. T'ant a informare tràmite posta eletrònica cando su documentu at a èssere firmadu dae totu is persones destinatàrias.", - "Request signature" : "Rechede firma", - "Recipients will receive an email from DocuSign to sign the document" : "Is persones destinatàrias ant a retzire unu messàgiu de posta dae DocuSign pro firmare su documentu", - "Failed to request signature with DocuSign" : "No at fatu a rechèdere sa firma cun DocuSign", - "DocuSign integration" : "Integratzione DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign est una solutzione pro sa firma eletrònica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si boles impreare DocuSign, crea un'aplicatzione in is impostatziones de su contu de s'isvilupadore \"Aplicatziones e craes\" de DocuSign e pone s'ID cliente (crae de integratzione) e su segretu in fatu.", - "Make sure you set this \"Redirect URI\":" : "Segura·ti de àere impostadu custu \"URI pro deretare torra\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si s'utente DocuSign tuo est acapiadu cun contos DocuSign mùltiplos, s'at a impreare cussu predefinidu.", - "Client ID (aka integration key)" : "S'ID cliente (crae de integratzione)", - "Client ID of your application" : "ID cliente de s'aplicatzione tua", - "Application secret key" : "Crae segreta de s'aplicatzione", - "Secret key of your application" : "Crae segreta de s'aplicatzione tua", - "Connect to DocuSign" : "Connete a DocuSign", - "Connected as {user} ({email})" : "In connessione comente {user} ({email})", - "Disconnect from DocuSign" : "Disconnete dae DocuSign", - "Successfully connected to DocuSign!" : "In connessione cun DocuSign!", - "OAuth access token could not be obtained:" : "No at fatu a otènnere su token de intrada OAuth:", - "DocuSign admin options saved" : "Sèberos de amministratzione de DocuSign sarvados", - "Failed to save DocuSign admin options" : "No at fatu a sarvare is sèberos de amministratzione de DocuSign", - "Failed to save DocuSign OAuth state" : "No at fatu a sarvare s'istadu de DOcuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "As a retzire unu messàgiu de posta dae DocuSign pro firmare su documentu", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "S'utèntzia chi at rechertu custa aprovatzione non s'agatat, regorda·ti tue de imbiare o cumpartzire su documentu firmadu", - "Approval signature" : "Firma de aprovatzione", - "{name} signature requested via LibreSign" : "Firma de {name} recherta cun LibreSign", - "Impossible to sign this document" : "Non faghet a firmare custu documentu", - "Pending approval, you are authorized to approve." : "Aprovatzione in suspesu, tenes su permissu de aprovare.", - "Show approval details" : "Mustra detàllios de aprovatzione" + "Failed to reject {name}" : "No at fatu a refudare {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sc.json b/l10n/sc.json index d419d01f..c2b71f27 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -59,8 +59,8 @@ "Who can request approval" : "Chie podet rechèdere aprovatzione", "Who can approve" : "Chie podet aprovare", "Tag to act on" : "Eticheta pro atziones", - "Tag set on approval" : "Eticheta impostada in aprovatzione", - "Tag set on rejection" : "Eticheta impostada in refudu", + "Tag set on approval" : "Eticheta cunfigurada in aprovatzione", + "Tag set on rejection" : "Eticheta cunfigurada in refudu", "Workflow title" : "Tìtulu de su flussu de traballu", "What is the purpose of this workflow?" : "Cale est s'obietivu de custu flussu de traballu?", "Request approval" : "Rechede aprovatzione", @@ -91,47 +91,6 @@ "You approved {name}" : "As aprovadu {name}", "Failed to approve {name}" : "No at fatu a aprovare {name}", "You rejected {name}" : "As refudadu {name}", - "Failed to reject {name}" : "No at fatu a refudare {name}", - "Error getting OAuth access token" : "Errore recuperende su token de intrada OAuth.", - "Error during OAuth exchanges" : "Errore cuncambiende OAuth", - "Signature of %s" : "Firma de %s", - "Bad HTTP method" : "Mètodu HTTP no bàlidu", - "Bad credentials" : "Credentziales non bàlidas", - "OAuth access token refused" : "Token de intrada OAuth refudadu", - "Sign with DocuSign" : "Firma cun DocuSign", - "Sign with LibreSign" : "Firma cun LibreSign", - "Your approval was requested by {name}." : "S'aprovatzione tua est recherta dae {name}.", - "The related approval workflow is:" : "Su flussu de traballu de aprovatzione relatzionadu est:", - "Request a signature via DocuSign" : "Rechede una firma cun DocuSign", - "Users or email addresses" : "Utentes o indiritzos de posta eletrònica", - "Nextcloud users or email addresses" : "Utentes de Nextcloud o indiritzos de posta eletrònica", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Is persones destinatàrias ant a retzire unu messàgiu de posta dae DocuSign cun unu ligòngiu pro firmare su documentu. T'ant a informare tràmite posta eletrònica cando su documentu at a èssere firmadu dae totu is persones destinatàrias.", - "Request signature" : "Rechede firma", - "Recipients will receive an email from DocuSign to sign the document" : "Is persones destinatàrias ant a retzire unu messàgiu de posta dae DocuSign pro firmare su documentu", - "Failed to request signature with DocuSign" : "No at fatu a rechèdere sa firma cun DocuSign", - "DocuSign integration" : "Integratzione DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign est una solutzione pro sa firma eletrònica.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Si boles impreare DocuSign, crea un'aplicatzione in is impostatziones de su contu de s'isvilupadore \"Aplicatziones e craes\" de DocuSign e pone s'ID cliente (crae de integratzione) e su segretu in fatu.", - "Make sure you set this \"Redirect URI\":" : "Segura·ti de àere impostadu custu \"URI pro deretare torra\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Si s'utente DocuSign tuo est acapiadu cun contos DocuSign mùltiplos, s'at a impreare cussu predefinidu.", - "Client ID (aka integration key)" : "S'ID cliente (crae de integratzione)", - "Client ID of your application" : "ID cliente de s'aplicatzione tua", - "Application secret key" : "Crae segreta de s'aplicatzione", - "Secret key of your application" : "Crae segreta de s'aplicatzione tua", - "Connect to DocuSign" : "Connete a DocuSign", - "Connected as {user} ({email})" : "In connessione comente {user} ({email})", - "Disconnect from DocuSign" : "Disconnete dae DocuSign", - "Successfully connected to DocuSign!" : "In connessione cun DocuSign!", - "OAuth access token could not be obtained:" : "No at fatu a otènnere su token de intrada OAuth:", - "DocuSign admin options saved" : "Sèberos de amministratzione de DocuSign sarvados", - "Failed to save DocuSign admin options" : "No at fatu a sarvare is sèberos de amministratzione de DocuSign", - "Failed to save DocuSign OAuth state" : "No at fatu a sarvare s'istadu de DOcuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "As a retzire unu messàgiu de posta dae DocuSign pro firmare su documentu", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "S'utèntzia chi at rechertu custa aprovatzione non s'agatat, regorda·ti tue de imbiare o cumpartzire su documentu firmadu", - "Approval signature" : "Firma de aprovatzione", - "{name} signature requested via LibreSign" : "Firma de {name} recherta cun LibreSign", - "Impossible to sign this document" : "Non faghet a firmare custu documentu", - "Pending approval, you are authorized to approve." : "Aprovatzione in suspesu, tenes su permissu de aprovare.", - "Show approval details" : "Mustra detàllios de aprovatzione" + "Failed to reject {name}" : "No at fatu a refudare {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sk.js b/l10n/sk.js index 8d729e55..d52c0977 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -30,6 +30,7 @@ OC.L10N.register( "Please check my approval request" : "Prosím skontrolujte moju žiadosť o schválenie", "Approval workflows" : "Procesy schvaľovania", "Let users approve or reject files" : "Používatelia môžu povoliť alebo zamietnuť súbory", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Schvaľovanie/odmietanie súborov na základe pracovných postupov definovaných správcami.\n\n**Upozornenie**: Integrácia DocuSign už nie je súčasťou tejto aplikácie\na možno ju nainštalovať pomocou [tejto aplikácie](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Každý proces definuje kto (ktorí používatelia, skupiny alebo kruhy) môžu povoliť súbory pre čakajúci štítok a ktorý povolený/zakázaný štítok môže byť potom priradený.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Zoznam užívateľov/skupín/kruhov ktore môžu manuálne vyžiadať povolenie môžu byť voliteľne definované.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Ak sa má považovať za schválené, musí byť súbor/adresár, ktorý má priradených viac čakajúcich tagov, schválený všetkými zúčastnenými pracovnými tokmi.", @@ -70,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Nadpis procesu", "What is the purpose of this workflow?" : "Čo je účelom tohoto procesu?", "Request approval" : "Požiadať o schválenie", + "There is no approval workflow allowing you to request approval." : "Neexistuje žiadny pracovný postup schvaľovania, ktorý by vám umožnil požiadať o schválenie.", "Approved" : "Schválené", "Approved by" : "Schválené od", "Rejected" : "Odmietnuté", @@ -77,7 +79,10 @@ OC.L10N.register( "Approval requested by" : "Schválenie vyžiadané od", "Approval requested" : "Schválenie vyžiadané", "you" : "vy", + "The related approval workflow is: {ruleDescription}" : "Súvisiaci pracovný postup schvaľovania je: {ruleDescription}", + "This user requested your approval" : "Tento užívateľ požiadal o vaše schválenie", "Your approval was requested." : "Požadované vaše schválenie.", + "Approval information" : "Informácie o schválení", "No recommendations. Start typing." : "Žiadne odporúčania. Môžete začať písať.", "No result." : "Žiadny výsledok.", "Who?" : "Kto?", @@ -90,7 +95,12 @@ OC.L10N.register( "Failed to get approval pending files" : "Nepodarilo sa získať čakajúce súbory na schválenie", "by {name} at {date}" : "od {name} v {date}", "at {date}" : "v {date}", + "Waiting for authorized users to approve this file" : "Čaká sa na autorizovaných užívateľov aby schválili tento súbor", + "Pending approval, you are authorized to approve" : "Čaká na schválenie, ste autorizovaný schváliť", + "This element was approved" : "Tento prvok bol schválený", + "This element was rejected" : "Tento prvok nebol schválený", "Pending approval" : "Čaká na schválenie", + "Waiting for your approval" : "Čaká sa na vaše schválenie", "Failed to check approval status" : "Nepodarilo sa skontrolovať stav schvaľovania", "Approval requested for {name}" : "Schválenie vyžiadané pre {name}", "Warning" : "Varovanie", @@ -98,47 +108,6 @@ OC.L10N.register( "You approved {name}" : "Schválili ste {name}", "Failed to approve {name}" : "Zlyhalo povolenie {name}", "You rejected {name}" : "Odmietli ste {name}", - "Failed to reject {name}" : "Zlyhalo odmietnutie {name}", - "Error getting OAuth access token" : "Chyba pri získavaní prístupového tokenu OAuth", - "Error during OAuth exchanges" : "Chyba počas výmeny OAuth", - "Signature of %s" : "Podpis pre %s", - "Bad HTTP method" : "Zlá metóda HTTP", - "Bad credentials" : "Nesprávne prihlasovacie údaje", - "OAuth access token refused" : "Prístupový token OAuth bol zamietnutý", - "Sign with DocuSign" : "Prihlásiť cez DocuSign", - "Sign with LibreSign" : "Prihlásiť cez LibreSign", - "Your approval was requested by {name}." : "{name} si vyžiadal vaše schválenie.", - "The related approval workflow is:" : "Príbuzný schvaľovací proces je:", - "Request a signature via DocuSign" : "Vyžiadať podpis cez DocuSign", - "Users or email addresses" : "Používatelia alebo e-mailové adresy", - "Nextcloud users or email addresses" : "Používatelia Nextcloudu alebo emailové adresy", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Príjemcovia dostanú od DocuSign e-mail s odkazom na podpísanie dokumentu. O podpísaní dokumentu všetkými príjemcami budete informovaní e -mailom.", - "Request signature" : "Vyžiadať podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Príjemcovia dostanú email od DocuSign k podpísaniu dokumentu", - "Failed to request signature with DocuSign" : "Zlyhala žiadosť o podpis od DocuSign", - "DocuSign integration" : "Napojenie na DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign je riešenie pre elektronický podpis.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ak chcete používať DocuSign, vytvorte si v nastavení účtu vývojára DocuSign „Moje aplikácie a kľúče" aplikáciu a nižšie zadajte ID klienta (integračný kľúč) a tajný kód.", - "Make sure you set this \"Redirect URI\":" : "Nezabudnite nastaviť tento \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ak je váš DocuSign užívateľ priradený s viacerými DocuSign účtami, musí byť použitý predvolený účet.", - "Client ID (aka integration key)" : "ID klienta (integračný kľúč)", - "Client ID of your application" : "ID klienta vašej aplikácie", - "Application secret key" : "Aplikačný tajný kľúč", - "Secret key of your application" : "Tajný kľúč vašej aplikácie", - "Connect to DocuSign" : "Pripojiť k DocuSign", - "Connected as {user} ({email})" : "Pripojený ako {user} ({email})", - "Disconnect from DocuSign" : "Odpojiť od DocuSign", - "Successfully connected to DocuSign!" : "Úspešne pripojené k DocuSign!", - "OAuth access token could not be obtained:" : "Prístupový token OAuth sa nepodarilo získať:", - "DocuSign admin options saved" : "Možnosti nastavenia DocuSign boli uložené", - "Failed to save DocuSign admin options" : "Nepodarilo sa uložiť možnosti nastavenia DocuSign", - "Failed to save DocuSign OAuth state" : "Nepodarilo sa uložiť stav DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Dostanete email od DocuSign k podpísaniu dokumentu", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Užívateľ ktorý požiadal o toto povolenie nebol nájdený, nezabudnite podpísaný dokument poslať alebo zdieľať sami", - "Approval signature" : "Podpis schválenia", - "{name} signature requested via LibreSign" : "{name} podpis bol vyžiadaný od LibreSign", - "Impossible to sign this document" : "Nie je možné podpísať tento dokument", - "Pending approval, you are authorized to approve." : "Čaká na schválenie, ste autorizovaný schváliť.", - "Show approval details" : "Zobraziť detaily schválenia" + "Failed to reject {name}" : "Zlyhalo odmietnutie {name}" }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n>= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/l10n/sk.json b/l10n/sk.json index d0438a9e..e801d0f7 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -28,6 +28,7 @@ "Please check my approval request" : "Prosím skontrolujte moju žiadosť o schválenie", "Approval workflows" : "Procesy schvaľovania", "Let users approve or reject files" : "Používatelia môžu povoliť alebo zamietnuť súbory", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Schvaľovanie/odmietanie súborov na základe pracovných postupov definovaných správcami.\n\n**Upozornenie**: Integrácia DocuSign už nie je súčasťou tejto aplikácie\na možno ju nainštalovať pomocou [tejto aplikácie](https://apps.nextcloud.com/apps/integration_docusign).", "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Každý proces definuje kto (ktorí používatelia, skupiny alebo kruhy) môžu povoliť súbory pre čakajúci štítok a ktorý povolený/zakázaný štítok môže byť potom priradený.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "Zoznam užívateľov/skupín/kruhov ktore môžu manuálne vyžiadať povolenie môžu byť voliteľne definované.", "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "Ak sa má považovať za schválené, musí byť súbor/adresár, ktorý má priradených viac čakajúcich tagov, schválený všetkými zúčastnenými pracovnými tokmi.", @@ -68,6 +69,7 @@ "Workflow title" : "Nadpis procesu", "What is the purpose of this workflow?" : "Čo je účelom tohoto procesu?", "Request approval" : "Požiadať o schválenie", + "There is no approval workflow allowing you to request approval." : "Neexistuje žiadny pracovný postup schvaľovania, ktorý by vám umožnil požiadať o schválenie.", "Approved" : "Schválené", "Approved by" : "Schválené od", "Rejected" : "Odmietnuté", @@ -75,7 +77,10 @@ "Approval requested by" : "Schválenie vyžiadané od", "Approval requested" : "Schválenie vyžiadané", "you" : "vy", + "The related approval workflow is: {ruleDescription}" : "Súvisiaci pracovný postup schvaľovania je: {ruleDescription}", + "This user requested your approval" : "Tento užívateľ požiadal o vaše schválenie", "Your approval was requested." : "Požadované vaše schválenie.", + "Approval information" : "Informácie o schválení", "No recommendations. Start typing." : "Žiadne odporúčania. Môžete začať písať.", "No result." : "Žiadny výsledok.", "Who?" : "Kto?", @@ -88,7 +93,12 @@ "Failed to get approval pending files" : "Nepodarilo sa získať čakajúce súbory na schválenie", "by {name} at {date}" : "od {name} v {date}", "at {date}" : "v {date}", + "Waiting for authorized users to approve this file" : "Čaká sa na autorizovaných užívateľov aby schválili tento súbor", + "Pending approval, you are authorized to approve" : "Čaká na schválenie, ste autorizovaný schváliť", + "This element was approved" : "Tento prvok bol schválený", + "This element was rejected" : "Tento prvok nebol schválený", "Pending approval" : "Čaká na schválenie", + "Waiting for your approval" : "Čaká sa na vaše schválenie", "Failed to check approval status" : "Nepodarilo sa skontrolovať stav schvaľovania", "Approval requested for {name}" : "Schválenie vyžiadané pre {name}", "Warning" : "Varovanie", @@ -96,47 +106,6 @@ "You approved {name}" : "Schválili ste {name}", "Failed to approve {name}" : "Zlyhalo povolenie {name}", "You rejected {name}" : "Odmietli ste {name}", - "Failed to reject {name}" : "Zlyhalo odmietnutie {name}", - "Error getting OAuth access token" : "Chyba pri získavaní prístupového tokenu OAuth", - "Error during OAuth exchanges" : "Chyba počas výmeny OAuth", - "Signature of %s" : "Podpis pre %s", - "Bad HTTP method" : "Zlá metóda HTTP", - "Bad credentials" : "Nesprávne prihlasovacie údaje", - "OAuth access token refused" : "Prístupový token OAuth bol zamietnutý", - "Sign with DocuSign" : "Prihlásiť cez DocuSign", - "Sign with LibreSign" : "Prihlásiť cez LibreSign", - "Your approval was requested by {name}." : "{name} si vyžiadal vaše schválenie.", - "The related approval workflow is:" : "Príbuzný schvaľovací proces je:", - "Request a signature via DocuSign" : "Vyžiadať podpis cez DocuSign", - "Users or email addresses" : "Používatelia alebo e-mailové adresy", - "Nextcloud users or email addresses" : "Používatelia Nextcloudu alebo emailové adresy", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Príjemcovia dostanú od DocuSign e-mail s odkazom na podpísanie dokumentu. O podpísaní dokumentu všetkými príjemcami budete informovaní e -mailom.", - "Request signature" : "Vyžiadať podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Príjemcovia dostanú email od DocuSign k podpísaniu dokumentu", - "Failed to request signature with DocuSign" : "Zlyhala žiadosť o podpis od DocuSign", - "DocuSign integration" : "Napojenie na DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign je riešenie pre elektronický podpis.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ak chcete používať DocuSign, vytvorte si v nastavení účtu vývojára DocuSign „Moje aplikácie a kľúče" aplikáciu a nižšie zadajte ID klienta (integračný kľúč) a tajný kód.", - "Make sure you set this \"Redirect URI\":" : "Nezabudnite nastaviť tento \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ak je váš DocuSign užívateľ priradený s viacerými DocuSign účtami, musí byť použitý predvolený účet.", - "Client ID (aka integration key)" : "ID klienta (integračný kľúč)", - "Client ID of your application" : "ID klienta vašej aplikácie", - "Application secret key" : "Aplikačný tajný kľúč", - "Secret key of your application" : "Tajný kľúč vašej aplikácie", - "Connect to DocuSign" : "Pripojiť k DocuSign", - "Connected as {user} ({email})" : "Pripojený ako {user} ({email})", - "Disconnect from DocuSign" : "Odpojiť od DocuSign", - "Successfully connected to DocuSign!" : "Úspešne pripojené k DocuSign!", - "OAuth access token could not be obtained:" : "Prístupový token OAuth sa nepodarilo získať:", - "DocuSign admin options saved" : "Možnosti nastavenia DocuSign boli uložené", - "Failed to save DocuSign admin options" : "Nepodarilo sa uložiť možnosti nastavenia DocuSign", - "Failed to save DocuSign OAuth state" : "Nepodarilo sa uložiť stav DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Dostanete email od DocuSign k podpísaniu dokumentu", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Užívateľ ktorý požiadal o toto povolenie nebol nájdený, nezabudnite podpísaný dokument poslať alebo zdieľať sami", - "Approval signature" : "Podpis schválenia", - "{name} signature requested via LibreSign" : "{name} podpis bol vyžiadaný od LibreSign", - "Impossible to sign this document" : "Nie je možné podpísať tento dokument", - "Pending approval, you are authorized to approve." : "Čaká na schválenie, ste autorizovaný schváliť.", - "Show approval details" : "Zobraziť detaily schválenia" + "Failed to reject {name}" : "Zlyhalo odmietnutie {name}" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n>= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" } \ No newline at end of file diff --git a/l10n/sl.js b/l10n/sl.js index 62f80772..00912be0 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -69,7 +69,7 @@ OC.L10N.register( "Approved by" : "Potrjeno:", "Rejected" : "Zavrnjeno", "Rejected by" : "Zavrnjeno:", - "Approval requested by" : "Odobritev je zahtevana od", + "Approval requested by" : "Odobritev zahteva", "Approval requested" : "Zahtevana je odobritev", "you" : "vi", "Your approval was requested." : "Podana je zahteva za odobritev.", @@ -85,35 +85,6 @@ OC.L10N.register( "Pending approval" : "Potrditev na čakanju", "Failed to check approval status" : "Preverjanje stanja potrditve je spodletelo.", "Warning" : "Opozorilo", - "You rejected {name}" : "Zavrnete {name}", - "Error getting OAuth access token" : "Napaka pri pridobivanju žetona OAuth za dostop", - "Error during OAuth exchanges" : "Napaka med izmenjavo podatkov OAuth", - "Signature of %s" : "Podpis %s", - "Bad HTTP method" : "Neustrezen način HTTP", - "Bad credentials" : "Neustrezna poverila", - "OAuth access token refused" : "Žeton OAuth za dostop je bil zavrnjen", - "Sign with DocuSign" : "Podpiši z DocuSign", - "Sign with LibreSign" : "Podpiši z LibreSign", - "Your approval was requested by {name}." : "{name} zahteva vašo odobritev.", - "Request a signature via DocuSign" : "Zahtevaj podpis z DocuSign", - "Users or email addresses" : "Uporabniki oziroma elektronski naslovi", - "Nextcloud users or email addresses" : "Uporabniki Nextcloud oziroma elektronski naslovi", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Prejemniki prejmejo sporočilo DocuSign s povezavo do dokumenta za podpis. Obvestilo o končanju postopka prejmete, ko ga vsi prejemniki podpišejo.", - "Request signature" : "Zahtevaj podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Prejemniki bodo prejeli sporočilo DocuSign za podpis dokumenta.", - "Failed to request signature with DocuSign" : "Zahteva za podpisovanjem z DocuSign je spodletela.", - "DocuSign integration" : "Združevalnik DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign je orodje za elektronsko podpisovanje dokumentov.", - "Make sure you set this \"Redirect URI\":" : "Poskrbite, da je »preusmeritveni naslov URI« nastavljen na:", - "Client ID of your application" : "ID odjemalca programa", - "Application secret key" : "Skrivni ključ programa", - "Secret key of your application" : "Koda za program", - "Connect to DocuSign" : "Poveži z računom DocuSign", - "Disconnect from DocuSign" : "Prekini povezavo s programom DocuSign", - "OAuth access token could not be obtained:" : "Žetona OAuth za dostop ni mogoče pridobiti:", - "DocuSign admin options saved" : "Skrbniške nastavitve DocuSign so shranjene", - "Approval signature" : "Podpis potrditve", - "Impossible to sign this document" : "Tega dokumenta ni mogoče podpisati", - "Show approval details" : "Pokaži podrobnosti potrjevanja" + "You rejected {name}" : "Zavrnete {name}" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/l10n/sl.json b/l10n/sl.json index fe4c8e02..3da6b4c0 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -67,7 +67,7 @@ "Approved by" : "Potrjeno:", "Rejected" : "Zavrnjeno", "Rejected by" : "Zavrnjeno:", - "Approval requested by" : "Odobritev je zahtevana od", + "Approval requested by" : "Odobritev zahteva", "Approval requested" : "Zahtevana je odobritev", "you" : "vi", "Your approval was requested." : "Podana je zahteva za odobritev.", @@ -83,35 +83,6 @@ "Pending approval" : "Potrditev na čakanju", "Failed to check approval status" : "Preverjanje stanja potrditve je spodletelo.", "Warning" : "Opozorilo", - "You rejected {name}" : "Zavrnete {name}", - "Error getting OAuth access token" : "Napaka pri pridobivanju žetona OAuth za dostop", - "Error during OAuth exchanges" : "Napaka med izmenjavo podatkov OAuth", - "Signature of %s" : "Podpis %s", - "Bad HTTP method" : "Neustrezen način HTTP", - "Bad credentials" : "Neustrezna poverila", - "OAuth access token refused" : "Žeton OAuth za dostop je bil zavrnjen", - "Sign with DocuSign" : "Podpiši z DocuSign", - "Sign with LibreSign" : "Podpiši z LibreSign", - "Your approval was requested by {name}." : "{name} zahteva vašo odobritev.", - "Request a signature via DocuSign" : "Zahtevaj podpis z DocuSign", - "Users or email addresses" : "Uporabniki oziroma elektronski naslovi", - "Nextcloud users or email addresses" : "Uporabniki Nextcloud oziroma elektronski naslovi", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Prejemniki prejmejo sporočilo DocuSign s povezavo do dokumenta za podpis. Obvestilo o končanju postopka prejmete, ko ga vsi prejemniki podpišejo.", - "Request signature" : "Zahtevaj podpis", - "Recipients will receive an email from DocuSign to sign the document" : "Prejemniki bodo prejeli sporočilo DocuSign za podpis dokumenta.", - "Failed to request signature with DocuSign" : "Zahteva za podpisovanjem z DocuSign je spodletela.", - "DocuSign integration" : "Združevalnik DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign je orodje za elektronsko podpisovanje dokumentov.", - "Make sure you set this \"Redirect URI\":" : "Poskrbite, da je »preusmeritveni naslov URI« nastavljen na:", - "Client ID of your application" : "ID odjemalca programa", - "Application secret key" : "Skrivni ključ programa", - "Secret key of your application" : "Koda za program", - "Connect to DocuSign" : "Poveži z računom DocuSign", - "Disconnect from DocuSign" : "Prekini povezavo s programom DocuSign", - "OAuth access token could not be obtained:" : "Žetona OAuth za dostop ni mogoče pridobiti:", - "DocuSign admin options saved" : "Skrbniške nastavitve DocuSign so shranjene", - "Approval signature" : "Podpis potrditve", - "Impossible to sign this document" : "Tega dokumenta ni mogoče podpisati", - "Show approval details" : "Pokaži podrobnosti potrjevanja" + "You rejected {name}" : "Zavrnete {name}" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/l10n/sq.js b/l10n/sq.js new file mode 100644 index 00000000..07a79112 --- /dev/null +++ b/l10n/sq.js @@ -0,0 +1,11 @@ +OC.L10N.register( + "approval", + { + "Create" : "Krijo", + "Cancel" : "Anullo", + "Approve" : "Mirato", + "Approved" : "Të miratuara", + "you" : "ju", + "Warning" : "Kujdes" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/sq.json b/l10n/sq.json new file mode 100644 index 00000000..d3138f2d --- /dev/null +++ b/l10n/sq.json @@ -0,0 +1,9 @@ +{ "translations": { + "Create" : "Krijo", + "Cancel" : "Anullo", + "Approve" : "Mirato", + "Approved" : "Të miratuara", + "you" : "ju", + "Warning" : "Kujdes" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/sr.js b/l10n/sr.js index 550a7e6a..a580bd90 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "Наслов процеса рада", "What is the purpose of this workflow?" : "Шта је сврха овог процеса рада?", "Request approval" : "Захтевај одобрење", + "There is no approval workflow allowing you to request approval." : "Нема тока рада за одобравање који вам омогућава да захтевате одобравање.", "Approved" : "Одобрено", "Approved by" : "Одобрио", "Rejected" : "Одбијено", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "Одговарајући ток рада одобравања је: {ruleDescription}", "This user requested your approval" : "Овај корисник је захтевао ваше одобрење", "Your approval was requested." : "Захтевано је ваше одобрење.", + "Approval information" : "Информације о одобравању", "No recommendations. Start typing." : "Нема препорука. Започните куцање.", "No result." : "Нема резултата.", "Who?" : "Ко?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "Одобрили сте {name}", "Failed to approve {name}" : "Није успело одобравање {name}", "You rejected {name}" : "Одбили сте {name}", - "Failed to reject {name}" : "Није успело одбијање {name}", - "Error getting OAuth access token" : "Грешка при добијању OAuth приступног жетона", - "Error during OAuth exchanges" : "Грешко приликом OAuth размена", - "Signature of %s" : "Потпис %s", - "Bad HTTP method" : "Лоша HTTP метода", - "Bad credentials" : "Лоши креденцијали", - "OAuth access token refused" : "Одбијен је OAuth приступни жетон", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Одобрите/одбијте фајлове према процесима рада које дефинишу админи.\n\n:упозорење: **Ова апликација ће да застари почевши од Nextcloud 28 надаље.\nАко сте Nextcloud купац и зависите од ове апликације,\nмолимо вас да сачекате са ажурирањем на верзију 28 и отворите тикет подршке тако да можемо пронађи решење за ваш случај.**", - "Sign with DocuSign" : "Потпиши са DocuSign", - "Sign with LibreSign" : "Потпиши са LibreSign", - "Your approval was requested by {name}." : "{name} је захтевао ваше одобрење.", - "The related approval workflow is:" : "Одговарајући процес рада одобравања је:", - "Request a signature via DocuSign" : "Захтевај потпис преко DocuSign", - "Users or email addresses" : "Корисници или и-мејл адресе", - "Nextcloud users or email addresses" : "Nextcloud корисници или и-мејл адресе", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Примаоци ће добити и-мејл од DocuSign са линком за потписивање документа. Добићете и-мејл који вас обавештава да су документ потписали сви примаоци.", - "Request signature" : "Захтевај потпис", - "Recipients will receive an email from DocuSign to sign the document" : "Примаоци ће од DocuSign добити и-мејл да потпишу документ", - "Failed to request signature with DocuSign" : "Није успео захтев за постписом од DocuSign", - "DocuSign integration" : "DocuSign интеграција", - "DocuSign is an electronic signature solution." : "DocuSign је решење за електронско потписивање.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ако жеите да користите DocuSign, креирајте апликацију у својим DocuSign „My Apps & Keys" програмерским подешавањима налога наведите испод клијент ID (кључ интеграције) и тајну.", - "Make sure you set this \"Redirect URI\":" : "Осигурајте да поставите овај „Redirect URI:"", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ако је ваш DocuSign корисник придружен са више DocuSign налога, користиће се подразумевани.", - "Client ID (aka integration key)" : "Клијент ID (познат као кључ интеграције)", - "Client ID of your application" : "Клијент ID ваше апликације", - "Application secret key" : "Тајни кључ апликације", - "Secret key of your application" : "Тајни кључ ваше апликације", - "Connect to DocuSign" : "Повежи се са DocuSign", - "Connected as {user} ({email})" : "Повезан као {user} ({email})", - "Disconnect from DocuSign" : "Прекини везу са DocuSign", - "Successfully connected to DocuSign!" : "Успешно је успостављена веза са DocuSign!", - "OAuth access token could not be obtained:" : "Није могао да се прибави OAuth приступни жетон:", - "DocuSign admin options saved" : "Сачуване су DocuSign админ опције", - "Failed to save DocuSign admin options" : "Није успело чување DocuSign админ опција", - "Failed to save DocuSign OAuth state" : "Није успело чување DocuSign OAuth стања", - "You will receive an email from DocuSign to sign the document" : "Примићете и-мејл од DocuSign да потпишете документ", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Није пронађен корисник који је захтевао ово одобрење, не заборавите да сами пошаљете или поделите потписани документ", - "Approval signature" : "Потпис одобрења", - "{name} signature requested via LibreSign" : "Захтеван је потпис {name} преко LibreSign", - "Impossible to sign this document" : "Овај документ не може да се потпише", - "Pending approval, you are authorized to approve." : "Одобрење на чекању, имате право да одобрите.", - "Show approval details" : "Прикажи детаље о одобрењу" + "Failed to reject {name}" : "Није успело одбијање {name}" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr.json b/l10n/sr.json index d67ceac2..f100e70b 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -69,6 +69,7 @@ "Workflow title" : "Наслов процеса рада", "What is the purpose of this workflow?" : "Шта је сврха овог процеса рада?", "Request approval" : "Захтевај одобрење", + "There is no approval workflow allowing you to request approval." : "Нема тока рада за одобравање који вам омогућава да захтевате одобравање.", "Approved" : "Одобрено", "Approved by" : "Одобрио", "Rejected" : "Одбијено", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "Одговарајући ток рада одобравања је: {ruleDescription}", "This user requested your approval" : "Овај корисник је захтевао ваше одобрење", "Your approval was requested." : "Захтевано је ваше одобрење.", + "Approval information" : "Информације о одобравању", "No recommendations. Start typing." : "Нема препорука. Започните куцање.", "No result." : "Нема резултата.", "Who?" : "Ко?", @@ -104,48 +106,6 @@ "You approved {name}" : "Одобрили сте {name}", "Failed to approve {name}" : "Није успело одобравање {name}", "You rejected {name}" : "Одбили сте {name}", - "Failed to reject {name}" : "Није успело одбијање {name}", - "Error getting OAuth access token" : "Грешка при добијању OAuth приступног жетона", - "Error during OAuth exchanges" : "Грешко приликом OAuth размена", - "Signature of %s" : "Потпис %s", - "Bad HTTP method" : "Лоша HTTP метода", - "Bad credentials" : "Лоши креденцијали", - "OAuth access token refused" : "Одбијен је OAuth приступни жетон", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Одобрите/одбијте фајлове према процесима рада које дефинишу админи.\n\n:упозорење: **Ова апликација ће да застари почевши од Nextcloud 28 надаље.\nАко сте Nextcloud купац и зависите од ове апликације,\nмолимо вас да сачекате са ажурирањем на верзију 28 и отворите тикет подршке тако да можемо пронађи решење за ваш случај.**", - "Sign with DocuSign" : "Потпиши са DocuSign", - "Sign with LibreSign" : "Потпиши са LibreSign", - "Your approval was requested by {name}." : "{name} је захтевао ваше одобрење.", - "The related approval workflow is:" : "Одговарајући процес рада одобравања је:", - "Request a signature via DocuSign" : "Захтевај потпис преко DocuSign", - "Users or email addresses" : "Корисници или и-мејл адресе", - "Nextcloud users or email addresses" : "Nextcloud корисници или и-мејл адресе", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Примаоци ће добити и-мејл од DocuSign са линком за потписивање документа. Добићете и-мејл који вас обавештава да су документ потписали сви примаоци.", - "Request signature" : "Захтевај потпис", - "Recipients will receive an email from DocuSign to sign the document" : "Примаоци ће од DocuSign добити и-мејл да потпишу документ", - "Failed to request signature with DocuSign" : "Није успео захтев за постписом од DocuSign", - "DocuSign integration" : "DocuSign интеграција", - "DocuSign is an electronic signature solution." : "DocuSign је решење за електронско потписивање.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Ако жеите да користите DocuSign, креирајте апликацију у својим DocuSign „My Apps & Keys" програмерским подешавањима налога наведите испод клијент ID (кључ интеграције) и тајну.", - "Make sure you set this \"Redirect URI\":" : "Осигурајте да поставите овај „Redirect URI:"", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Ако је ваш DocuSign корисник придружен са више DocuSign налога, користиће се подразумевани.", - "Client ID (aka integration key)" : "Клијент ID (познат као кључ интеграције)", - "Client ID of your application" : "Клијент ID ваше апликације", - "Application secret key" : "Тајни кључ апликације", - "Secret key of your application" : "Тајни кључ ваше апликације", - "Connect to DocuSign" : "Повежи се са DocuSign", - "Connected as {user} ({email})" : "Повезан као {user} ({email})", - "Disconnect from DocuSign" : "Прекини везу са DocuSign", - "Successfully connected to DocuSign!" : "Успешно је успостављена веза са DocuSign!", - "OAuth access token could not be obtained:" : "Није могао да се прибави OAuth приступни жетон:", - "DocuSign admin options saved" : "Сачуване су DocuSign админ опције", - "Failed to save DocuSign admin options" : "Није успело чување DocuSign админ опција", - "Failed to save DocuSign OAuth state" : "Није успело чување DocuSign OAuth стања", - "You will receive an email from DocuSign to sign the document" : "Примићете и-мејл од DocuSign да потпишете документ", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Није пронађен корисник који је захтевао ово одобрење, не заборавите да сами пошаљете или поделите потписани документ", - "Approval signature" : "Потпис одобрења", - "{name} signature requested via LibreSign" : "Захтеван је потпис {name} преко LibreSign", - "Impossible to sign this document" : "Овај документ не може да се потпише", - "Pending approval, you are authorized to approve." : "Одобрење на чекању, имате право да одобрите.", - "Show approval details" : "Прикажи детаље о одобрењу" + "Failed to reject {name}" : "Није успело одбијање {name}" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/sv.js b/l10n/sv.js index 84b50e87..1239d456 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -1,89 +1,92 @@ OC.L10N.register( "approval", { - "You approved {file}" : "Du har godkänt {file}", - "{user} approved {file}" : "{user} har godkänt {file}", - "You rejected {file}" : "Du har underkänt {file}", - "{user} rejected {file}" : "{user} har underkänt {file}", - "Your approval was requested on {file}" : "Ditt godkännande av {file} har efterfrågats", - "Your approval was requested on {file} by {who}" : "Ditt godkännande av {file} har efterfrågats av {who}", - "You requested approval on {file}" : "Du efterfrågade ett godkännande av {file}", + "You approved {file}" : "Du godkände {file}", + "{user} approved {file}" : "{user} godkände {file}", + "You rejected {file}" : "Du avvisade {file}", + "{user} rejected {file}" : "{user} avvisade {file}", + "Your approval was requested on {file}" : "Ditt godkännande av {file} har begärts", + "Your approval was requested on {file} by {who}" : "Ditt godkännande av {file} har begärts av {who}", + "You requested approval on {file}" : "Du begärde godkännande av {file}", "A guest user" : "En gästanvändare", "Approval" : "Godkännande", - "Approval events" : "Godkännande historik", - "Pending approvals" : "Väntande begäran för godkännande", - "A file was approved" : "En fil blev godkänd", - "A file was rejected" : "En fil blev underkänd", - "A directory was approved" : "En mapp blev godkänd", - "A directory was rejected" : "En mapp blev underkänd", + "Approval events" : "Godkännanden", + "Pending approvals" : "Inväntar godkännande", + "A file was approved" : "En fil godkändes", + "A file was rejected" : "En fil avvisades", + "A directory was approved" : "En mapp godkändes", + "A directory was rejected" : "En mapp avvisades", "%1$s approved %2$s" : "%1$s godkände %2$s", - "%1$s rejected %2$s" : "%1$s underkände %2$s", + "%1$s rejected %2$s" : "%1$s avvisade %2$s", "{user} approved {node}" : "{user} godkände {node}", - "{user} rejected {node}" : "{user} underkände {node}", - "Your approval was requested" : "Ditt godkännande har efterfrågats", - "%2$s requested your approval for %1$s" : "%2$s efterfrågade ditt godkännande av %1$s", - "{user} requested your approval for {node}" : "{user} efterfrågade ditt godkännande av {node}", + "{user} rejected {node}" : "{user} avvisade {node}", + "Your approval was requested" : "Ditt godkännande har begärts", + "%2$s requested your approval for %1$s" : "%2$s begärde ditt godkännande av %1$s", + "{user} requested your approval for {node}" : "{user} begärde ditt godkännande av {node}", "Rule does not exist" : "Regeln finns inte", "This element is not shared with any user who is authorized to approve it" : "Detta element delas inte med någon användare som har rättigheter att godkänna det", - "Approval has already been requested with this rule for this file" : "Godkännande av denna regel för denna fil har redan efterfrågats", + "Approval has already been requested with this rule for this file" : "Godkännande av denna regel för denna fil har redan begärts", "You are not authorized to request with this rule" : "Du har inte rättigheter att skicka begäran med denna regel", - "Please check my approval request" : "Vänligen kontrollera mina efterfrågningar för godkännande", + "Please check my approval request" : "Vänligen kontrollera min begäran för godkännande", "Approval workflows" : "Arbetsflöde för godkännanden", - "Let users approve or reject files" : "Möjliggör för användare att godkänna eller underkänna filer", - "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Varje arbetsflöde definierar vem (användare, grupp eller cirkel) som kan godkänna filer baserat på en given väntande markör samt vilken markör för godkännande/underkännande som därefter skall tilldelas filerna.", + "Let users approve or reject files" : "Möjliggör för användare att godkänna eller avvisa filer", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Godkänn/avvisa filer baserat på arbetsflöden definierade av administratörer.\n\n**Varning**: Integrationen med DocuSign är inte längre del av denna app\noch kan istället installeras med [denna appen](https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Varje arbetsflöde definierar vem (användare, grupp eller cirkel) som kan godkänna filer baserat på en given väntande markör samt vilken godkännande/avvisnings-markör som därefter skall tilldelas.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "En lista över användare/grupper/cirklar som manuellt kan begära godkännande kan anges om önskvärt.", - "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "För att kunna anses som godkänd, behöver en fil/katalog som har tilldelats flertalet väntande markörer få godkänt från samtliga involverade arbetsflöden.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "För att kunna anses som godkänd, behöver en fil/mapp som har tilldelats flertalet väntande markörer få godkänt från samtliga involverade arbetsflöden.", "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "Du kan sammanfläta olika arbetsflöden för godkännde genom att använda en väntande markör som godkännande/underkännande markör i ett annat arbetsflöde.", "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "Alla markörer behöver vara unika för ett arbetsflöde. En väntande markör kan bara användas i ett arbetsflöde.", "Delete workflow" : "Ta bort arbetsflöde", - "No workflow yet" : "Inga arbetsflöden angivna ännu", + "No workflow yet" : "Inga arbetsflöden ännu", "New workflow" : "Nytt arbetsflöde", "Create new hidden tag" : "Skapa en ny dold markör", "New tag name" : "Namn på ny markör", "Create" : "Skapa", "Cancel" : "Avbryt", - "All fields are required" : "Alla fällt är obligatoriska", - "All tags must be different" : "Alla markörer behöver vara unika", + "All fields are required" : "Alla fält är obligatoriska", + "All tags must be different" : "Alla markörer måste vara unika", "Pending tag is already used in another workflow" : "Väntande markör används redan i ett annat arbetsflöde", "Create workflow" : "Skapa arbetsflöde", - "Failed to get approval workflows" : "Misslyckades att ladda arbetsflöden för godkännanden", - "Approval workflow saved" : "Arbetsflöde för godkännande sparad", - "Failed to save approval workflow" : "Misslyckades med att spara arbetsflöde för godkännande", + "Failed to get approval workflows" : "Kunde inte ladda arbetsflöden för godkännanden", + "Approval workflow saved" : "Arbetsflöde för godkännande sparat", + "Failed to save approval workflow" : "Kunde inte spara arbetsflöde för godkännande", "New approval workflow created" : "Nytt arbetsflöde för godkännande har skapats", - "Failed to create approval workflow" : "Misslyckades med att skapa ett nytt arbetsflöde för godkännande", + "Failed to create approval workflow" : "Kunde inte skapa ett nytt arbetsflöde för godkännande", "Approval workflow deleted" : "Arbetsflöde för godkännande borttaget", - "Failed to delete approval workflow" : "Misslyckades med att ta bort arbetsflöde för godkännande", + "Failed to delete approval workflow" : "Kunde inte ta bort arbetsflöde för godkännande", "Tag \"{name}\" created" : "Markör \"{name}\" har skapats", - "Failed to create tag \"{name}\"" : "Misslyckades med att skapa markör \"{name}\"", + "Failed to create tag \"{name}\"" : "Kunde inte skapa markör \"{name}\"", "Approve" : "Godkänn", "Reject" : "Avvisa", "Select pending tag" : "Välj väntande markör", "Who can request approval?" : "Vem kan begära godkännande?", "Who can approve?" : "Vem kan godkänna?", "Select approved tag" : "Välj markör för godkännande", - "Select rejected tag" : "Välj markör för underkännande", + "Select rejected tag" : "Välj markör för avvisning", "Who can request approval" : "Vem kan efterfråga godkännande", "Who can approve" : "Vem kan godkänna", "Tag to act on" : "Markör att reagera på", "Tag set on approval" : "Markör som anges vid godkännande", - "Tag set on rejection" : "Markör som anges vid underkännande", + "Tag set on rejection" : "Markör som anges vid avvisning", "Workflow title" : "Rubrik på arbetsflödet", "What is the purpose of this workflow?" : "Vad är syftet med detta arbetsflöde?", "Request approval" : "Efterfråga godkännande", + "There is no approval workflow allowing you to request approval." : "Det finns inget arbetsflöde som tillåter dig att begära godkännande.", "Approved" : "Godkänd", "Approved by" : "Godkänd av", - "Rejected" : "Underkänd", - "Rejected by" : "Underkänd av", - "Approval requested by" : "Godkännande efterfrågades av", - "Approval requested" : "Godkännande efterfrågades", + "Rejected" : "Avvisad", + "Rejected by" : "Avvisad av", + "Approval requested by" : "Godkännande begärdes av", + "Approval requested" : "Godkännande begärdes", "you" : "dig", "The related approval workflow is: {ruleDescription}" : "Det relaterade arbetsflödet är: {ruleDescription}", - "This user requested your approval" : "Denna användare begärde din godkännande", - "Your approval was requested." : "Ditt godkännande har efterfrågats.", + "This user requested your approval" : "Denna användare begärde ditt godkännande", + "Your approval was requested." : "Ditt godkännande har begärts.", + "Approval information" : "Godkännandeinformation", "No recommendations. Start typing." : "Inga rekommendationer. Börja skriva.", "No result." : "Inga resultat.", "Who?" : "Vem?", - "Impossible to get user/group/circle list" : "Omöjligt att få lista över användare/grupp/cirklar", + "Impossible to get user/group/circle list" : "Kunde inte hämta lista med användare/grupper/cirklar", "Select approval workflow" : "Välj arbetsflöde för godkännande", "File will be automatically shared with everybody allowed to approve." : "Filen kommer automatiskt att delas med alla som har rätt att godkänna.", "Can be approved by" : "Kan godkännas av", @@ -93,59 +96,18 @@ OC.L10N.register( "by {name} at {date}" : "av {name} den {date}", "at {date}" : "den {date}", "Waiting for authorized users to approve this file" : "Väntar på att behöriga användare ska godkänna den här filen", - "Pending approval, you are authorized to approve" : "I väntan på godkännande, du har behörighet att godkänna", + "Pending approval, you are authorized to approve" : "Inväntar godkännande, du har behörighet att godkänna", "This element was approved" : "Detta element godkändes", "This element was rejected" : "Detta element avvisades", "Pending approval" : "Inväntar godkännande", "Waiting for your approval" : "Väntar på ditt godkännande", - "Failed to check approval status" : "Det gick inte att kontrollera godkännandestatus", - "Approval requested for {name}" : "Godkännande begärs för {name}", + "Failed to check approval status" : "Kunde inte kontrollera godkännandestatus", + "Approval requested for {name}" : "Godkännande begärdes för {name}", "Warning" : "Varning", "Failed to request approval for {name}" : "Det gick inte att begära godkännande för {name}", "You approved {name}" : "Du godkände {name}", - "Failed to approve {name}" : "Det gick inte att godkänna {name}", + "Failed to approve {name}" : "Kunde inte godkänna {name}", "You rejected {name}" : "Du avvisade {name}", - "Failed to reject {name}" : "Det gick inte att avvisa {name}", - "Error getting OAuth access token" : "Kunde inte hämta OAuth-token", - "Error during OAuth exchanges" : "Fel vid utväxling av OAuth-token", - "Signature of %s" : "Signatur för %s", - "Bad HTTP method" : "Felaktig HTTP-metod", - "Bad credentials" : "Ogiltiga inloggningsuppgifter", - "OAuth access token refused" : "OAuth-token avvisades", - "Sign with DocuSign" : "Signera med DocuSign", - "Sign with LibreSign" : "Signera med LibreSign", - "Your approval was requested by {name}." : "Ditt godkännande efterfrågades av {name}.", - "The related approval workflow is:" : "Det relaterade arbetsflödet är:", - "Request a signature via DocuSign" : "Begär en signatur via DocuSign", - "Users or email addresses" : "Användare eller e-postadresser", - "Nextcloud users or email addresses" : "Nextcloud-användare eller e-postadresser", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Mottagarna kommer att få ett e-postmeddelande från DocuSign med en länk för att signera dokumentet. Du kommer att informeras via e-post när dokumentet har undertecknats av alla mottagare.", - "Request signature" : "Begär underskrift", - "Recipients will receive an email from DocuSign to sign the document" : "Mottagarna kommer att få ett e-postmeddelande från DocuSign för att signera dokumentet", - "Failed to request signature with DocuSign" : "Det gick inte att begära signatur med DocuSign", - "DocuSign integration" : "Integrera med DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign är en elektronisk signaturlösning.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Om du vill använda DocuSign, skapa en app i dina DocuSign \"Mina appar och nycklar\" utvecklarkontoinställningar och ange klient-ID (integreringsnyckel) och hemlighet nedan.", - "Make sure you set this \"Redirect URI\":" : "Se till att du ställer in denna \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Om din DocuSign-användare är associerad med flera DocuSign-konton kommer standardkontot att användas.", - "Client ID (aka integration key)" : "Klient-ID (integrationsnyckel)", - "Client ID of your application" : "Klient-ID för din app", - "Application secret key" : "Appens hemliga nyckel", - "Secret key of your application" : "Hemlig nyckel för din app", - "Connect to DocuSign" : "Anslut till DocuSign", - "Connected as {user} ({email})" : "Ansluten som {user} ({email})", - "Disconnect from DocuSign" : "Koppla från DocuSign", - "Successfully connected to DocuSign!" : "Ansluten till DocuSign!", - "OAuth access token could not be obtained:" : "OAuth-åtkomsttoken kunde inte erhållas:", - "DocuSign admin options saved" : "DocuSigns administratörsalternativ har sparats", - "Failed to save DocuSign admin options" : "Det gick inte att spara DocuSign administratörsalternativ", - "Failed to save DocuSign OAuth state" : "Det gick inte att spara DocuSign OAuth-tillstånd", - "You will receive an email from DocuSign to sign the document" : "Du kommer att få ett e-postmeddelande från DocuSign för att signera dokumentet", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Användaren som begärde detta godkännande hittades inte, kom ihåg att skicka eller dela det signerade dokumentet själv", - "Approval signature" : "Godkännande signatur", - "{name} signature requested via LibreSign" : "{name}-signatur begärd via LibreSign", - "Impossible to sign this document" : "Omöjligt att underteckna detta dokument", - "Pending approval, you are authorized to approve." : "Väntande på godkännande, du behörighet att godkänna.", - "Show approval details" : "Visa detaljer för godkännande" + "Failed to reject {name}" : "Kunde inte avvisa {name}" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sv.json b/l10n/sv.json index 9e2be4d1..712878da 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -1,87 +1,90 @@ { "translations": { - "You approved {file}" : "Du har godkänt {file}", - "{user} approved {file}" : "{user} har godkänt {file}", - "You rejected {file}" : "Du har underkänt {file}", - "{user} rejected {file}" : "{user} har underkänt {file}", - "Your approval was requested on {file}" : "Ditt godkännande av {file} har efterfrågats", - "Your approval was requested on {file} by {who}" : "Ditt godkännande av {file} har efterfrågats av {who}", - "You requested approval on {file}" : "Du efterfrågade ett godkännande av {file}", + "You approved {file}" : "Du godkände {file}", + "{user} approved {file}" : "{user} godkände {file}", + "You rejected {file}" : "Du avvisade {file}", + "{user} rejected {file}" : "{user} avvisade {file}", + "Your approval was requested on {file}" : "Ditt godkännande av {file} har begärts", + "Your approval was requested on {file} by {who}" : "Ditt godkännande av {file} har begärts av {who}", + "You requested approval on {file}" : "Du begärde godkännande av {file}", "A guest user" : "En gästanvändare", "Approval" : "Godkännande", - "Approval events" : "Godkännande historik", - "Pending approvals" : "Väntande begäran för godkännande", - "A file was approved" : "En fil blev godkänd", - "A file was rejected" : "En fil blev underkänd", - "A directory was approved" : "En mapp blev godkänd", - "A directory was rejected" : "En mapp blev underkänd", + "Approval events" : "Godkännanden", + "Pending approvals" : "Inväntar godkännande", + "A file was approved" : "En fil godkändes", + "A file was rejected" : "En fil avvisades", + "A directory was approved" : "En mapp godkändes", + "A directory was rejected" : "En mapp avvisades", "%1$s approved %2$s" : "%1$s godkände %2$s", - "%1$s rejected %2$s" : "%1$s underkände %2$s", + "%1$s rejected %2$s" : "%1$s avvisade %2$s", "{user} approved {node}" : "{user} godkände {node}", - "{user} rejected {node}" : "{user} underkände {node}", - "Your approval was requested" : "Ditt godkännande har efterfrågats", - "%2$s requested your approval for %1$s" : "%2$s efterfrågade ditt godkännande av %1$s", - "{user} requested your approval for {node}" : "{user} efterfrågade ditt godkännande av {node}", + "{user} rejected {node}" : "{user} avvisade {node}", + "Your approval was requested" : "Ditt godkännande har begärts", + "%2$s requested your approval for %1$s" : "%2$s begärde ditt godkännande av %1$s", + "{user} requested your approval for {node}" : "{user} begärde ditt godkännande av {node}", "Rule does not exist" : "Regeln finns inte", "This element is not shared with any user who is authorized to approve it" : "Detta element delas inte med någon användare som har rättigheter att godkänna det", - "Approval has already been requested with this rule for this file" : "Godkännande av denna regel för denna fil har redan efterfrågats", + "Approval has already been requested with this rule for this file" : "Godkännande av denna regel för denna fil har redan begärts", "You are not authorized to request with this rule" : "Du har inte rättigheter att skicka begäran med denna regel", - "Please check my approval request" : "Vänligen kontrollera mina efterfrågningar för godkännande", + "Please check my approval request" : "Vänligen kontrollera min begäran för godkännande", "Approval workflows" : "Arbetsflöde för godkännanden", - "Let users approve or reject files" : "Möjliggör för användare att godkänna eller underkänna filer", - "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Varje arbetsflöde definierar vem (användare, grupp eller cirkel) som kan godkänna filer baserat på en given väntande markör samt vilken markör för godkännande/underkännande som därefter skall tilldelas filerna.", + "Let users approve or reject files" : "Möjliggör för användare att godkänna eller avvisa filer", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "Godkänn/avvisa filer baserat på arbetsflöden definierade av administratörer.\n\n**Varning**: Integrationen med DocuSign är inte längre del av denna app\noch kan istället installeras med [denna appen](https://apps.nextcloud.com/apps/integration_docusign).", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "Varje arbetsflöde definierar vem (användare, grupp eller cirkel) som kan godkänna filer baserat på en given väntande markör samt vilken godkännande/avvisnings-markör som därefter skall tilldelas.", "A list of users/groups/circles who can manually request approval can be optionally defined." : "En lista över användare/grupper/cirklar som manuellt kan begära godkännande kan anges om önskvärt.", - "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "För att kunna anses som godkänd, behöver en fil/katalog som har tilldelats flertalet väntande markörer få godkänt från samtliga involverade arbetsflöden.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "För att kunna anses som godkänd, behöver en fil/mapp som har tilldelats flertalet väntande markörer få godkänt från samtliga involverade arbetsflöden.", "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "Du kan sammanfläta olika arbetsflöden för godkännde genom att använda en väntande markör som godkännande/underkännande markör i ett annat arbetsflöde.", "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "Alla markörer behöver vara unika för ett arbetsflöde. En väntande markör kan bara användas i ett arbetsflöde.", "Delete workflow" : "Ta bort arbetsflöde", - "No workflow yet" : "Inga arbetsflöden angivna ännu", + "No workflow yet" : "Inga arbetsflöden ännu", "New workflow" : "Nytt arbetsflöde", "Create new hidden tag" : "Skapa en ny dold markör", "New tag name" : "Namn på ny markör", "Create" : "Skapa", "Cancel" : "Avbryt", - "All fields are required" : "Alla fällt är obligatoriska", - "All tags must be different" : "Alla markörer behöver vara unika", + "All fields are required" : "Alla fält är obligatoriska", + "All tags must be different" : "Alla markörer måste vara unika", "Pending tag is already used in another workflow" : "Väntande markör används redan i ett annat arbetsflöde", "Create workflow" : "Skapa arbetsflöde", - "Failed to get approval workflows" : "Misslyckades att ladda arbetsflöden för godkännanden", - "Approval workflow saved" : "Arbetsflöde för godkännande sparad", - "Failed to save approval workflow" : "Misslyckades med att spara arbetsflöde för godkännande", + "Failed to get approval workflows" : "Kunde inte ladda arbetsflöden för godkännanden", + "Approval workflow saved" : "Arbetsflöde för godkännande sparat", + "Failed to save approval workflow" : "Kunde inte spara arbetsflöde för godkännande", "New approval workflow created" : "Nytt arbetsflöde för godkännande har skapats", - "Failed to create approval workflow" : "Misslyckades med att skapa ett nytt arbetsflöde för godkännande", + "Failed to create approval workflow" : "Kunde inte skapa ett nytt arbetsflöde för godkännande", "Approval workflow deleted" : "Arbetsflöde för godkännande borttaget", - "Failed to delete approval workflow" : "Misslyckades med att ta bort arbetsflöde för godkännande", + "Failed to delete approval workflow" : "Kunde inte ta bort arbetsflöde för godkännande", "Tag \"{name}\" created" : "Markör \"{name}\" har skapats", - "Failed to create tag \"{name}\"" : "Misslyckades med att skapa markör \"{name}\"", + "Failed to create tag \"{name}\"" : "Kunde inte skapa markör \"{name}\"", "Approve" : "Godkänn", "Reject" : "Avvisa", "Select pending tag" : "Välj väntande markör", "Who can request approval?" : "Vem kan begära godkännande?", "Who can approve?" : "Vem kan godkänna?", "Select approved tag" : "Välj markör för godkännande", - "Select rejected tag" : "Välj markör för underkännande", + "Select rejected tag" : "Välj markör för avvisning", "Who can request approval" : "Vem kan efterfråga godkännande", "Who can approve" : "Vem kan godkänna", "Tag to act on" : "Markör att reagera på", "Tag set on approval" : "Markör som anges vid godkännande", - "Tag set on rejection" : "Markör som anges vid underkännande", + "Tag set on rejection" : "Markör som anges vid avvisning", "Workflow title" : "Rubrik på arbetsflödet", "What is the purpose of this workflow?" : "Vad är syftet med detta arbetsflöde?", "Request approval" : "Efterfråga godkännande", + "There is no approval workflow allowing you to request approval." : "Det finns inget arbetsflöde som tillåter dig att begära godkännande.", "Approved" : "Godkänd", "Approved by" : "Godkänd av", - "Rejected" : "Underkänd", - "Rejected by" : "Underkänd av", - "Approval requested by" : "Godkännande efterfrågades av", - "Approval requested" : "Godkännande efterfrågades", + "Rejected" : "Avvisad", + "Rejected by" : "Avvisad av", + "Approval requested by" : "Godkännande begärdes av", + "Approval requested" : "Godkännande begärdes", "you" : "dig", "The related approval workflow is: {ruleDescription}" : "Det relaterade arbetsflödet är: {ruleDescription}", - "This user requested your approval" : "Denna användare begärde din godkännande", - "Your approval was requested." : "Ditt godkännande har efterfrågats.", + "This user requested your approval" : "Denna användare begärde ditt godkännande", + "Your approval was requested." : "Ditt godkännande har begärts.", + "Approval information" : "Godkännandeinformation", "No recommendations. Start typing." : "Inga rekommendationer. Börja skriva.", "No result." : "Inga resultat.", "Who?" : "Vem?", - "Impossible to get user/group/circle list" : "Omöjligt att få lista över användare/grupp/cirklar", + "Impossible to get user/group/circle list" : "Kunde inte hämta lista med användare/grupper/cirklar", "Select approval workflow" : "Välj arbetsflöde för godkännande", "File will be automatically shared with everybody allowed to approve." : "Filen kommer automatiskt att delas med alla som har rätt att godkänna.", "Can be approved by" : "Kan godkännas av", @@ -91,59 +94,18 @@ "by {name} at {date}" : "av {name} den {date}", "at {date}" : "den {date}", "Waiting for authorized users to approve this file" : "Väntar på att behöriga användare ska godkänna den här filen", - "Pending approval, you are authorized to approve" : "I väntan på godkännande, du har behörighet att godkänna", + "Pending approval, you are authorized to approve" : "Inväntar godkännande, du har behörighet att godkänna", "This element was approved" : "Detta element godkändes", "This element was rejected" : "Detta element avvisades", "Pending approval" : "Inväntar godkännande", "Waiting for your approval" : "Väntar på ditt godkännande", - "Failed to check approval status" : "Det gick inte att kontrollera godkännandestatus", - "Approval requested for {name}" : "Godkännande begärs för {name}", + "Failed to check approval status" : "Kunde inte kontrollera godkännandestatus", + "Approval requested for {name}" : "Godkännande begärdes för {name}", "Warning" : "Varning", "Failed to request approval for {name}" : "Det gick inte att begära godkännande för {name}", "You approved {name}" : "Du godkände {name}", - "Failed to approve {name}" : "Det gick inte att godkänna {name}", + "Failed to approve {name}" : "Kunde inte godkänna {name}", "You rejected {name}" : "Du avvisade {name}", - "Failed to reject {name}" : "Det gick inte att avvisa {name}", - "Error getting OAuth access token" : "Kunde inte hämta OAuth-token", - "Error during OAuth exchanges" : "Fel vid utväxling av OAuth-token", - "Signature of %s" : "Signatur för %s", - "Bad HTTP method" : "Felaktig HTTP-metod", - "Bad credentials" : "Ogiltiga inloggningsuppgifter", - "OAuth access token refused" : "OAuth-token avvisades", - "Sign with DocuSign" : "Signera med DocuSign", - "Sign with LibreSign" : "Signera med LibreSign", - "Your approval was requested by {name}." : "Ditt godkännande efterfrågades av {name}.", - "The related approval workflow is:" : "Det relaterade arbetsflödet är:", - "Request a signature via DocuSign" : "Begär en signatur via DocuSign", - "Users or email addresses" : "Användare eller e-postadresser", - "Nextcloud users or email addresses" : "Nextcloud-användare eller e-postadresser", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Mottagarna kommer att få ett e-postmeddelande från DocuSign med en länk för att signera dokumentet. Du kommer att informeras via e-post när dokumentet har undertecknats av alla mottagare.", - "Request signature" : "Begär underskrift", - "Recipients will receive an email from DocuSign to sign the document" : "Mottagarna kommer att få ett e-postmeddelande från DocuSign för att signera dokumentet", - "Failed to request signature with DocuSign" : "Det gick inte att begära signatur med DocuSign", - "DocuSign integration" : "Integrera med DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign är en elektronisk signaturlösning.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Om du vill använda DocuSign, skapa en app i dina DocuSign \"Mina appar och nycklar\" utvecklarkontoinställningar och ange klient-ID (integreringsnyckel) och hemlighet nedan.", - "Make sure you set this \"Redirect URI\":" : "Se till att du ställer in denna \"Redirect URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Om din DocuSign-användare är associerad med flera DocuSign-konton kommer standardkontot att användas.", - "Client ID (aka integration key)" : "Klient-ID (integrationsnyckel)", - "Client ID of your application" : "Klient-ID för din app", - "Application secret key" : "Appens hemliga nyckel", - "Secret key of your application" : "Hemlig nyckel för din app", - "Connect to DocuSign" : "Anslut till DocuSign", - "Connected as {user} ({email})" : "Ansluten som {user} ({email})", - "Disconnect from DocuSign" : "Koppla från DocuSign", - "Successfully connected to DocuSign!" : "Ansluten till DocuSign!", - "OAuth access token could not be obtained:" : "OAuth-åtkomsttoken kunde inte erhållas:", - "DocuSign admin options saved" : "DocuSigns administratörsalternativ har sparats", - "Failed to save DocuSign admin options" : "Det gick inte att spara DocuSign administratörsalternativ", - "Failed to save DocuSign OAuth state" : "Det gick inte att spara DocuSign OAuth-tillstånd", - "You will receive an email from DocuSign to sign the document" : "Du kommer att få ett e-postmeddelande från DocuSign för att signera dokumentet", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Användaren som begärde detta godkännande hittades inte, kom ihåg att skicka eller dela det signerade dokumentet själv", - "Approval signature" : "Godkännande signatur", - "{name} signature requested via LibreSign" : "{name}-signatur begärd via LibreSign", - "Impossible to sign this document" : "Omöjligt att underteckna detta dokument", - "Pending approval, you are authorized to approve." : "Väntande på godkännande, du behörighet att godkänna.", - "Show approval details" : "Visa detaljer för godkännande" + "Failed to reject {name}" : "Kunde inte avvisa {name}" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/th.js b/l10n/th.js new file mode 100644 index 00000000..90bdd53f --- /dev/null +++ b/l10n/th.js @@ -0,0 +1,12 @@ +OC.L10N.register( + "approval", + { + "Create" : "สร้าง", + "Cancel" : "ยกเลิก", + "Reject" : "ปฏิเสธ", + "Approved" : "ได้รับการอนุมัติ", + "you" : "คุณ", + "No recommendations. Start typing." : "ไม่มีคําแนะนํา เริ่มพิมพ์เลย", + "Warning" : "คําเตือน" +}, +"nplurals=1; plural=0;"); diff --git a/l10n/th.json b/l10n/th.json new file mode 100644 index 00000000..87fdbd8a --- /dev/null +++ b/l10n/th.json @@ -0,0 +1,10 @@ +{ "translations": { + "Create" : "สร้าง", + "Cancel" : "ยกเลิก", + "Reject" : "ปฏิเสธ", + "Approved" : "ได้รับการอนุมัติ", + "you" : "คุณ", + "No recommendations. Start typing." : "ไม่มีคําแนะนํา เริ่มพิมพ์เลย", + "Warning" : "คําเตือน" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file diff --git a/l10n/tr.js b/l10n/tr.js index eba71137..258135bc 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "İş akışı başlığı", "What is the purpose of this workflow?" : "Bu iş akışının amacı nedir?", "Request approval" : "Onay isteğinde bulun", + "There is no approval workflow allowing you to request approval." : "Onay isteğinde bulunmanızı sağlayacak bir onay iş akışı yok.", "Approved" : "Onaylandı", "Approved by" : "Onaylayan", "Rejected" : "Reddedildi", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "İlgili onay iş akışı: {ruleDescription}", "This user requested your approval" : "Bu kullanıcı onayınızı istedi", "Your approval was requested." : "Onayınız istendi.", + "Approval information" : "Onay bilgileri", "No recommendations. Start typing." : "Herhangi bir öneri yok. Yazmaya başlayın.", "No result." : "Herhangi bir sonuç yok.", "Who?" : "Kim?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "{name} kullanıcısını onayladınız", "Failed to approve {name}" : "Onaylanamadı {name}", "You rejected {name}" : "{name} kullanıcısını reddettiniz", - "Failed to reject {name}" : "Reddedilemedi {name}", - "Error getting OAuth access token" : "OAuth erişim kodu alınırken sorun çıktı", - "Error during OAuth exchanges" : "OAuth alışverişinde sorun çıktı", - "Signature of %s" : "%s imzası", - "Bad HTTP method" : "HTTP yöntemi hatalı", - "Bad credentials" : "Kimlik doğrulama bilgileri hatalı", - "OAuth access token refused" : "OAuth erişim kodu reddedildi", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Yöneticiler tarafından tanımlanan iş akışlarına göre dosyaları onaylar ya da reddeder.\n\n:Uyarı: **Bu uygulama Nextcloud 28 sürümüyle kullanımdan kaldırılacak.\nNextcloud müşterisiyseniz ve bu uygulamaya güveniyorsanız,\n28. sürüm güncellemesini bekleyin ve bir destek kaydı açın. Böylece size özel bir çözüm bulabiliriz.**", - "Sign with DocuSign" : "DocuSign ile imzala", - "Sign with LibreSign" : "LibreSign ile imzala", - "Your approval was requested by {name}." : "{name} tarafından onayınız istendi.", - "The related approval workflow is:" : "İlgili onay iş akışı:", - "Request a signature via DocuSign" : "DocuSign ile imzalanması isteğinde bulunun", - "Users or email addresses" : "Kullanıcılar ya da e-posta adresleri", - "Nextcloud users or email addresses" : "Nextcloud kullanıcıları ya da e-posta adresleri", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Alıcılara, DocuSign tarafından belgeyi imzalamaları için bir bağlantı içeren e-posta gönderilecek. Belge tüm alıcılar tarafından imzalandığında e-posta ile bilgilendirileceksiniz.", - "Request signature" : "İmza isteğinde bulunun", - "Recipients will receive an email from DocuSign to sign the document" : "Alıcılara, DocuSign tarafından belgeyi imzalamaları için bir e-posta gönderilecek.", - "Failed to request signature with DocuSign" : "DocuSign ile imzalama isteğinde bulunulamadı", - "DocuSign integration" : "DocuSign bütünleştirmesi", - "DocuSign is an electronic signature solution." : "DocuSign bir elektronik imzalama hizmetidir.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "DocuSign kullanmak istiyorsanız, DocuSign geliştirici hesabı ayarlarınızda \"Uygulamalarım ve Anahtarlarım\" bölümünden bir uygulama oluşturun ve istemci kimliğini (bütünleştirme anahtarı) ve gizli anahtarını aşağıya yazın.", - "Make sure you set this \"Redirect URI\":" : "Bu \"Yönlendirme adresini\" ayarladığınızdan emin olun:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "DocuSign kullanıcınız birden fazla DocuSign hesabıyla ilişkiliyse, varsayılan hesap kullanılır.", - "Client ID (aka integration key)" : "İstemci kimliği (bütünleştirme anahtarı)", - "Client ID of your application" : "Uygulamanızın istemci kimliği", - "Application secret key" : "Uygulama gizli anahtarı", - "Secret key of your application" : "Uygulamanızın gizli anahtarı", - "Connect to DocuSign" : "DocuSign bağlantısı kur", - "Connected as {user} ({email})" : "{user} ({email}) olarak bağlantı kuruldu", - "Disconnect from DocuSign" : "DocuSign bağlantısını kes", - "Successfully connected to DocuSign!" : "DocuSign bağlantısını kes!", - "OAuth access token could not be obtained:" : "OAuth erişim kodu eklenemedi:", - "DocuSign admin options saved" : "DocuSign yönetici ayarları kaydedildi", - "Failed to save DocuSign admin options" : "DocuSign yönetici ayarları kaydedilemedi", - "Failed to save DocuSign OAuth state" : "DocuSign OAuth durumu kaydedilemedi", - "You will receive an email from DocuSign to sign the document" : "Size, DocuSign tarafından belgeyi imzalamanız için bir e-posta gönderilecek", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Bu onay isteğinde bulunan kullanıcı bulunamadı. İmzalı belgeyi kendiniz göndermeyi ya da paylaşmayı unutmayın.", - "Approval signature" : "Onay imzası", - "{name} signature requested via LibreSign" : "{name} LibreSign ile imza istedi", - "Impossible to sign this document" : "Bu belge imzalanamaz", - "Pending approval, you are authorized to approve." : "Onay bekliyor. Onaylama yetkiniz var.", - "Show approval details" : "Onay ayrıntılarını görüntüle" + "Failed to reject {name}" : "Reddedilemedi {name}" }, "nplurals=2; plural=(n> 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 1b3b5245..0eb915a6 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -69,6 +69,7 @@ "Workflow title" : "İş akışı başlığı", "What is the purpose of this workflow?" : "Bu iş akışının amacı nedir?", "Request approval" : "Onay isteğinde bulun", + "There is no approval workflow allowing you to request approval." : "Onay isteğinde bulunmanızı sağlayacak bir onay iş akışı yok.", "Approved" : "Onaylandı", "Approved by" : "Onaylayan", "Rejected" : "Reddedildi", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "İlgili onay iş akışı: {ruleDescription}", "This user requested your approval" : "Bu kullanıcı onayınızı istedi", "Your approval was requested." : "Onayınız istendi.", + "Approval information" : "Onay bilgileri", "No recommendations. Start typing." : "Herhangi bir öneri yok. Yazmaya başlayın.", "No result." : "Herhangi bir sonuç yok.", "Who?" : "Kim?", @@ -104,48 +106,6 @@ "You approved {name}" : "{name} kullanıcısını onayladınız", "Failed to approve {name}" : "Onaylanamadı {name}", "You rejected {name}" : "{name} kullanıcısını reddettiniz", - "Failed to reject {name}" : "Reddedilemedi {name}", - "Error getting OAuth access token" : "OAuth erişim kodu alınırken sorun çıktı", - "Error during OAuth exchanges" : "OAuth alışverişinde sorun çıktı", - "Signature of %s" : "%s imzası", - "Bad HTTP method" : "HTTP yöntemi hatalı", - "Bad credentials" : "Kimlik doğrulama bilgileri hatalı", - "OAuth access token refused" : "OAuth erişim kodu reddedildi", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "Yöneticiler tarafından tanımlanan iş akışlarına göre dosyaları onaylar ya da reddeder.\n\n:Uyarı: **Bu uygulama Nextcloud 28 sürümüyle kullanımdan kaldırılacak.\nNextcloud müşterisiyseniz ve bu uygulamaya güveniyorsanız,\n28. sürüm güncellemesini bekleyin ve bir destek kaydı açın. Böylece size özel bir çözüm bulabiliriz.**", - "Sign with DocuSign" : "DocuSign ile imzala", - "Sign with LibreSign" : "LibreSign ile imzala", - "Your approval was requested by {name}." : "{name} tarafından onayınız istendi.", - "The related approval workflow is:" : "İlgili onay iş akışı:", - "Request a signature via DocuSign" : "DocuSign ile imzalanması isteğinde bulunun", - "Users or email addresses" : "Kullanıcılar ya da e-posta adresleri", - "Nextcloud users or email addresses" : "Nextcloud kullanıcıları ya da e-posta adresleri", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Alıcılara, DocuSign tarafından belgeyi imzalamaları için bir bağlantı içeren e-posta gönderilecek. Belge tüm alıcılar tarafından imzalandığında e-posta ile bilgilendirileceksiniz.", - "Request signature" : "İmza isteğinde bulunun", - "Recipients will receive an email from DocuSign to sign the document" : "Alıcılara, DocuSign tarafından belgeyi imzalamaları için bir e-posta gönderilecek.", - "Failed to request signature with DocuSign" : "DocuSign ile imzalama isteğinde bulunulamadı", - "DocuSign integration" : "DocuSign bütünleştirmesi", - "DocuSign is an electronic signature solution." : "DocuSign bir elektronik imzalama hizmetidir.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "DocuSign kullanmak istiyorsanız, DocuSign geliştirici hesabı ayarlarınızda \"Uygulamalarım ve Anahtarlarım\" bölümünden bir uygulama oluşturun ve istemci kimliğini (bütünleştirme anahtarı) ve gizli anahtarını aşağıya yazın.", - "Make sure you set this \"Redirect URI\":" : "Bu \"Yönlendirme adresini\" ayarladığınızdan emin olun:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "DocuSign kullanıcınız birden fazla DocuSign hesabıyla ilişkiliyse, varsayılan hesap kullanılır.", - "Client ID (aka integration key)" : "İstemci kimliği (bütünleştirme anahtarı)", - "Client ID of your application" : "Uygulamanızın istemci kimliği", - "Application secret key" : "Uygulama gizli anahtarı", - "Secret key of your application" : "Uygulamanızın gizli anahtarı", - "Connect to DocuSign" : "DocuSign bağlantısı kur", - "Connected as {user} ({email})" : "{user} ({email}) olarak bağlantı kuruldu", - "Disconnect from DocuSign" : "DocuSign bağlantısını kes", - "Successfully connected to DocuSign!" : "DocuSign bağlantısını kes!", - "OAuth access token could not be obtained:" : "OAuth erişim kodu eklenemedi:", - "DocuSign admin options saved" : "DocuSign yönetici ayarları kaydedildi", - "Failed to save DocuSign admin options" : "DocuSign yönetici ayarları kaydedilemedi", - "Failed to save DocuSign OAuth state" : "DocuSign OAuth durumu kaydedilemedi", - "You will receive an email from DocuSign to sign the document" : "Size, DocuSign tarafından belgeyi imzalamanız için bir e-posta gönderilecek", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Bu onay isteğinde bulunan kullanıcı bulunamadı. İmzalı belgeyi kendiniz göndermeyi ya da paylaşmayı unutmayın.", - "Approval signature" : "Onay imzası", - "{name} signature requested via LibreSign" : "{name} LibreSign ile imza istedi", - "Impossible to sign this document" : "Bu belge imzalanamaz", - "Pending approval, you are authorized to approve." : "Onay bekliyor. Onaylama yetkiniz var.", - "Show approval details" : "Onay ayrıntılarını görüntüle" + "Failed to reject {name}" : "Reddedilemedi {name}" },"pluralForm" :"nplurals=2; plural=(n> 1);" } \ No newline at end of file diff --git a/l10n/ug.js b/l10n/ug.js new file mode 100644 index 00000000..cdf06c66 --- /dev/null +++ b/l10n/ug.js @@ -0,0 +1,113 @@ +OC.L10N.register( + "approval", + { + "You approved {file}" : "{file} تەستىقلىدىڭىز", + "{user} approved {file}" : "{user} تەستىقلانغان {file}", + "You rejected {file}" : "سىز {file} نى رەت قىلدىڭىز", + "{user} rejected {file}" : "{user} رەت قىلىنغان {file}", + "Your approval was requested on {file}" : "{file} دىن تەستىقلىنىشىڭىز تەلەپ قىلىندى", + "Your approval was requested on {file} by {who}" : "سىزنىڭ تەستىقلىشىڭىز {file} دىن {who} تەرىپىدىن تەلەپ قىلىندى", + "You requested approval on {file}" : "{file} دىن تەستىق تەلەپ قىلدىڭىز", + "A guest user" : "مېھمان ئىشلەتكۈچى", + "Approval" : "تەستىق", + "Approval events" : " تەستىق ھادىسىلىرى", + "Pending approvals" : "تەستىقلىنىۋاتىدۇ", + "A file was approved" : "ھۆججەت تەستىقلاندى", + "A file was rejected" : "بىر ھۆججەت رەت قىلىندى", + "A directory was approved" : "مۇندەرىجە تەستىقلاندى", + "A directory was rejected" : "مۇندەرىجە رەت قىلىندى", + "%1$s approved %2$s" : "% 1 $ s تەستىقلانغان% 2 $ s", + "%1$s rejected %2$s" : "%1$s %2$s نى رەت قىلدى", + "{user} approved {node}" : "{user} تەستىقلانغان {node}", + "{user} rejected {node}" : "{user} رەت {node}", + "Your approval was requested" : "تەستىقلىشىڭىز تەلەپ قىلىندى", + "%2$s requested your approval for %1$s" : "%2$s %1$s نى تەستىقلىشىڭىزنى تەلەپ قىلدى", + "{user} requested your approval for {node}" : "{user} {node} نى تەستىقلىشىڭىزنى تەلەپ قىلدى", + "Rule does not exist" : "قائىدە مەۋجۇت ئەمەس", + "This element is not shared with any user who is authorized to approve it" : "بۇ ئېلېمېنت تەستىقلاشقا ھوقۇق بېرىلگەن ھەرقانداق ئىشلەتكۈچى بىلەن ئورتاقلاشمايدۇ", + "Approval has already been requested with this rule for this file" : "بۇ ھۆججەت ئۈچۈن بۇ قائىدە بىلەن تەستىقلىنىش تەلەپ قىلىنغان", + "You are not authorized to request with this rule" : "بۇ قائىدە بىلەن تەلەپ قىلىش ھوقۇقىڭىز يوق", + "Please check my approval request" : "تەستىق تەلىپىمنى تەكشۈرۈپ بېقىڭ", + "Approval workflows" : "خىزمەت ئېقىمىنى تەستىقلاش", + "Let users approve or reject files" : "ئىشلەتكۈچىلەر ھۆججەتلەرنى تەستىقلىسۇن ياكى رەت قىلسۇن", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "باشقۇرغۇچى تەرىپىدىن ئېنىقلانغان خىزمەت ئېقىمىغا ئاساسەن ھۆججەتلەرنى تەستىقلاش / رەت قىلىش.\n\n** ئاگاھلاندۇرۇش **: DocuSign بىر گەۋدىلىشىش ئەمدى بۇ دېتالنىڭ بىر قىسمى ئەمەس\nھەمدە [بۇ دېتال] (https://apps.nextcloud.com/apps/integration_docusign) ئارقىلىق قاچىلىغىلى بولىدۇ.", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "ھەر بىر خىزمەت ئېقىمى كىمنىڭ (قايسى ئىشلەتكۈچى ، گۇرۇپپا ياكى چەمبىرەك) ساقلىنىۋاتقان خەتكۈچنىڭ ھۆججەتلىرىنى تەستىقلىيالايدىغانلىقىنى ، ئاندىن تەستىقلانغان ياكى رەت قىلىنغان خەتكۈچنى تەقسىملەش كېرەكلىكىنى بەلگىلەيدۇ.", + "A list of users/groups/circles who can manually request approval can be optionally defined." : "قولدا تەستىقلاشنى تەلەپ قىلىدىغان ئىشلەتكۈچى / گۇرۇپپا / چەمبىرەكنىڭ تىزىملىكىنى ئىختىيارى ئېنىقلىغىلى بولىدۇ.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "تەستىقلانغان دەپ قارىلىش ئۈچۈن ، بىر نەچچە ساقلىنىۋاتقان بەلگە قويۇلغان ھۆججەت / مۇندەرىجە چوقۇم بارلىق خىزمەت ئېقىمى تەرىپىدىن تەستىقلىنىشى كېرەك.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "ساقلىنىۋاتقان خەتكۈچنى باشقا خىزمەت ئېقىمىدا تەستىقلانغان ياكى رەت قىلىنغان بەلگە قىلىپ ئىشلىتىپ تەستىقلاش خىزمەت ئېقىمىنى زەنجىر قىلالايسىز.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "بارلىق خەتكۈچلەر چوقۇم خىزمەت ئېقىمىدا ئوخشىماسلىقى كېرەك. ساقلىنىۋاتقان خەتكۈچنى پەقەت بىر خىزمەت ئېقىمىدا ئىشلىتىشكە بولىدۇ.", + "Delete workflow" : "خىزمەت ئېقىمىنى ئۆچۈرۈڭ", + "No workflow yet" : "تېخى خىزمەت ئېقىمى يوق", + "New workflow" : "يېڭى خىزمەت ئېقىمى", + "Create new hidden tag" : "يېڭى يوشۇرۇن خەتكۈچ قۇر", + "New tag name" : "يېڭى بەلگە ئىسمى", + "Create" : "قۇر", + "Cancel" : "ۋاز كەچ", + "All fields are required" : "بارلىق ساھە تەلەپ قىلىنىدۇ", + "All tags must be different" : "بارلىق بەلگىلەر ئوخشىماسلىقى كېرەك", + "Pending tag is already used in another workflow" : "ساقلىنىۋاتقان بەلگە باشقا خىزمەت ئېقىمىدا ئاللىبۇرۇن ئىشلىتىلگەن", + "Create workflow" : "خىزمەت ئېقىمى قۇرۇش", + "Failed to get approval workflows" : "تەستىق خىزمەت جەدۋىلىگە ئېرىشەلمىدى", + "Approval workflow saved" : "خىزمەت ئېقىمى ساقلاندى", + "Failed to save approval workflow" : "تەستىقلاش جەريانىنى تېجەلمىدى", + "New approval workflow created" : "يېڭى تەستىق خىزمەت ئېقىمى قۇرۇلدى", + "Failed to create approval workflow" : "تەستىق خىزمەت ئېقىمى قۇرۇلمىدى", + "Approval workflow deleted" : "تەستىق خىزمەت ئېقىمى ئۆچۈرۈلدى", + "Failed to delete approval workflow" : "تەستىق خىزمەت تەرتىپىنى ئۆچۈرەلمىدى", + "Tag \"{name}\" created" : "خەتكۈچ \"{name}\" قۇرۇلدى", + "Failed to create tag \"{name}\"" : "\"{name}\" بەلگىسىنى قۇرالمىدى", + "Approve" : "تەستىق", + "Reject" : "رەت قىلىش", + "Select pending tag" : "ساقلىنىۋاتقان خەتكۈچنى تاللاڭ", + "Who can request approval?" : "كىم تەستىقلىسا بولىدۇ؟", + "Who can approve?" : "كىم تەستىقلايدۇ؟", + "Select approved tag" : "تەستىقلانغان خەتكۈچنى تاللاڭ", + "Select rejected tag" : "رەت قىلىنغان خەتكۈچنى تاللاڭ", + "Who can request approval" : "تەستىقلاشنى كىم تەلەپ قىلسا بولىدۇ", + "Who can approve" : "كىم تەستىقلايدۇ", + "Tag to act on" : "ھەرىكەت قىلىشقا بەلگە", + "Tag set on approval" : "خەتكۈچ تەستىقلاندى", + "Tag set on rejection" : "خەتكۈچ رەت قىلىندى", + "Workflow title" : "خىزمەت ئېقىمى", + "What is the purpose of this workflow?" : "بۇ خىزمەت ئېقىمىنىڭ مەقسىتى نېمە؟", + "Request approval" : "تەستىقلاشنى تەلەپ قىلىڭ", + "There is no approval workflow allowing you to request approval." : "تەستىقلاشنى تەلەپ قىلىدىغان تەستىق خىزمەت ئېقىمى يوق.", + "Approved" : "تەستىقلاندى", + "Approved by" : "تەستىقلىدى", + "Rejected" : "رەت قىلىندى", + "Rejected by" : "رەت قىلدى", + "Approval requested by" : "تەستىقلىغان", + "Approval requested" : "تەستىق تەلەپ قىلىندى", + "you" : "سىز", + "The related approval workflow is: {ruleDescription}" : "مۇناسىۋەتلىك تەستىق خىزمەت تەرتىپى: {ruleDescription}", + "This user requested your approval" : "بۇ ئىشلەتكۈچى سىزنىڭ تەستىقىڭىزنى تەلەپ قىلدى", + "Your approval was requested." : "تەستىقلىشىڭىز تەلەپ قىلىندى.", + "Approval information" : "تەستىق ئۇچۇرى", + "No recommendations. Start typing." : "تەۋسىيە يوق. يېزىشنى باشلاڭ.", + "No result." : "ھېچقانداق نەتىجە يوق.", + "Who?" : "كىم؟", + "Impossible to get user/group/circle list" : "ئىشلەتكۈچى / گۇرۇپپا / چەمبىرەك تىزىملىكىگە ئېرىشىش مۇمكىن ئەمەس", + "Select approval workflow" : "تەستىق خىزمەت ئېقىمىنى تاللاڭ", + "File will be automatically shared with everybody allowed to approve." : "ھۆججەت تەستىقلاشقا رۇخسەت قىلىنغان ھەممە ئادەم بىلەن ئاپتوماتىك ھەمبەھىرلىنىدۇ.", + "Can be approved by" : "تەستىقلىسا بولىدۇ", + "More files to approve" : "تەستىقلايدىغان تېخىمۇ كۆپ ھۆججەتلەر", + "No files to approve!" : "تەستىقلايدىغان ھۆججەت يوق!", + "Failed to get approval pending files" : "ساقلىنىۋاتقان ھۆججەتلەرنى تەستىقلاشقا ئېرىشەلمىدى", + "by {name} at {date}" : "by {name} at {date}", + "at {date}" : "at {date}", + "Waiting for authorized users to approve this file" : "ھوقۇق بېرىلگەن ئىشلەتكۈچىلەرنىڭ بۇ ھۆججەتنى تەستىقلىشىنى ساقلاش", + "Pending approval, you are authorized to approve" : "تەستىقلىنىش ئالدىدا ، تەستىقلاشقا ھوقۇقلۇق", + "This element was approved" : "بۇ ئېلېمېنت تەستىقلاندى", + "This element was rejected" : "بۇ ئېلېمېنت رەت قىلىندى", + "Pending approval" : "تەستىقلىنىۋاتىدۇ", + "Waiting for your approval" : "تەستىقىڭىزنى ساقلاۋاتىدۇ", + "Failed to check approval status" : "تەستىق ھالىتىنى تەكشۈرەلمىدى", + "Approval requested for {name}" : "{name} for ئۈچۈن تەستىقلانغان", + "Warning" : "ئاگاھلاندۇرۇش", + "Failed to request approval for {name}" : "{name} نى تەستىقلاشنى تەلەپ قىلمىدى", + "You approved {name}" : "{name} نى تەستىقلىدىڭىز", + "Failed to approve {name}" : "{name} نى تەستىقلىمىدى", + "You rejected {name}" : "سىز {name} نى رەت قىلدىڭىز", + "Failed to reject {name}" : "{name} نى رەت قىلدى" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ug.json b/l10n/ug.json new file mode 100644 index 00000000..d4dc8fa8 --- /dev/null +++ b/l10n/ug.json @@ -0,0 +1,111 @@ +{ "translations": { + "You approved {file}" : "{file} تەستىقلىدىڭىز", + "{user} approved {file}" : "{user} تەستىقلانغان {file}", + "You rejected {file}" : "سىز {file} نى رەت قىلدىڭىز", + "{user} rejected {file}" : "{user} رەت قىلىنغان {file}", + "Your approval was requested on {file}" : "{file} دىن تەستىقلىنىشىڭىز تەلەپ قىلىندى", + "Your approval was requested on {file} by {who}" : "سىزنىڭ تەستىقلىشىڭىز {file} دىن {who} تەرىپىدىن تەلەپ قىلىندى", + "You requested approval on {file}" : "{file} دىن تەستىق تەلەپ قىلدىڭىز", + "A guest user" : "مېھمان ئىشلەتكۈچى", + "Approval" : "تەستىق", + "Approval events" : " تەستىق ھادىسىلىرى", + "Pending approvals" : "تەستىقلىنىۋاتىدۇ", + "A file was approved" : "ھۆججەت تەستىقلاندى", + "A file was rejected" : "بىر ھۆججەت رەت قىلىندى", + "A directory was approved" : "مۇندەرىجە تەستىقلاندى", + "A directory was rejected" : "مۇندەرىجە رەت قىلىندى", + "%1$s approved %2$s" : "% 1 $ s تەستىقلانغان% 2 $ s", + "%1$s rejected %2$s" : "%1$s %2$s نى رەت قىلدى", + "{user} approved {node}" : "{user} تەستىقلانغان {node}", + "{user} rejected {node}" : "{user} رەت {node}", + "Your approval was requested" : "تەستىقلىشىڭىز تەلەپ قىلىندى", + "%2$s requested your approval for %1$s" : "%2$s %1$s نى تەستىقلىشىڭىزنى تەلەپ قىلدى", + "{user} requested your approval for {node}" : "{user} {node} نى تەستىقلىشىڭىزنى تەلەپ قىلدى", + "Rule does not exist" : "قائىدە مەۋجۇت ئەمەس", + "This element is not shared with any user who is authorized to approve it" : "بۇ ئېلېمېنت تەستىقلاشقا ھوقۇق بېرىلگەن ھەرقانداق ئىشلەتكۈچى بىلەن ئورتاقلاشمايدۇ", + "Approval has already been requested with this rule for this file" : "بۇ ھۆججەت ئۈچۈن بۇ قائىدە بىلەن تەستىقلىنىش تەلەپ قىلىنغان", + "You are not authorized to request with this rule" : "بۇ قائىدە بىلەن تەلەپ قىلىش ھوقۇقىڭىز يوق", + "Please check my approval request" : "تەستىق تەلىپىمنى تەكشۈرۈپ بېقىڭ", + "Approval workflows" : "خىزمەت ئېقىمىنى تەستىقلاش", + "Let users approve or reject files" : "ئىشلەتكۈچىلەر ھۆججەتلەرنى تەستىقلىسۇن ياكى رەت قىلسۇن", + "Approve/reject files based on workflows defined by admins.\n\n**Warning**: The DocuSign integration is no longer part of this app\nand can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign)." : "باشقۇرغۇچى تەرىپىدىن ئېنىقلانغان خىزمەت ئېقىمىغا ئاساسەن ھۆججەتلەرنى تەستىقلاش / رەت قىلىش.\n\n** ئاگاھلاندۇرۇش **: DocuSign بىر گەۋدىلىشىش ئەمدى بۇ دېتالنىڭ بىر قىسمى ئەمەس\nھەمدە [بۇ دېتال] (https://apps.nextcloud.com/apps/integration_docusign) ئارقىلىق قاچىلىغىلى بولىدۇ.", + "Each workflow defines who (which users, groups or circles) can approve files for a given pending tag and which approved/rejected tag should then be assigned." : "ھەر بىر خىزمەت ئېقىمى كىمنىڭ (قايسى ئىشلەتكۈچى ، گۇرۇپپا ياكى چەمبىرەك) ساقلىنىۋاتقان خەتكۈچنىڭ ھۆججەتلىرىنى تەستىقلىيالايدىغانلىقىنى ، ئاندىن تەستىقلانغان ياكى رەت قىلىنغان خەتكۈچنى تەقسىملەش كېرەكلىكىنى بەلگىلەيدۇ.", + "A list of users/groups/circles who can manually request approval can be optionally defined." : "قولدا تەستىقلاشنى تەلەپ قىلىدىغان ئىشلەتكۈچى / گۇرۇپپا / چەمبىرەكنىڭ تىزىملىكىنى ئىختىيارى ئېنىقلىغىلى بولىدۇ.", + "To be considered approved, a file/directory having multiple pending tags assigned must be approved by all the workflows involved." : "تەستىقلانغان دەپ قارىلىش ئۈچۈن ، بىر نەچچە ساقلىنىۋاتقان بەلگە قويۇلغان ھۆججەت / مۇندەرىجە چوقۇم بارلىق خىزمەت ئېقىمى تەرىپىدىن تەستىقلىنىشى كېرەك.", + "You can chain approval workflows by using a pending tag as approved/rejected tag in another workflow." : "ساقلىنىۋاتقان خەتكۈچنى باشقا خىزمەت ئېقىمىدا تەستىقلانغان ياكى رەت قىلىنغان بەلگە قىلىپ ئىشلىتىپ تەستىقلاش خىزمەت ئېقىمىنى زەنجىر قىلالايسىز.", + "All tags must be different in a workflow. A pending tag can only be used in one workflow." : "بارلىق خەتكۈچلەر چوقۇم خىزمەت ئېقىمىدا ئوخشىماسلىقى كېرەك. ساقلىنىۋاتقان خەتكۈچنى پەقەت بىر خىزمەت ئېقىمىدا ئىشلىتىشكە بولىدۇ.", + "Delete workflow" : "خىزمەت ئېقىمىنى ئۆچۈرۈڭ", + "No workflow yet" : "تېخى خىزمەت ئېقىمى يوق", + "New workflow" : "يېڭى خىزمەت ئېقىمى", + "Create new hidden tag" : "يېڭى يوشۇرۇن خەتكۈچ قۇر", + "New tag name" : "يېڭى بەلگە ئىسمى", + "Create" : "قۇر", + "Cancel" : "ۋاز كەچ", + "All fields are required" : "بارلىق ساھە تەلەپ قىلىنىدۇ", + "All tags must be different" : "بارلىق بەلگىلەر ئوخشىماسلىقى كېرەك", + "Pending tag is already used in another workflow" : "ساقلىنىۋاتقان بەلگە باشقا خىزمەت ئېقىمىدا ئاللىبۇرۇن ئىشلىتىلگەن", + "Create workflow" : "خىزمەت ئېقىمى قۇرۇش", + "Failed to get approval workflows" : "تەستىق خىزمەت جەدۋىلىگە ئېرىشەلمىدى", + "Approval workflow saved" : "خىزمەت ئېقىمى ساقلاندى", + "Failed to save approval workflow" : "تەستىقلاش جەريانىنى تېجەلمىدى", + "New approval workflow created" : "يېڭى تەستىق خىزمەت ئېقىمى قۇرۇلدى", + "Failed to create approval workflow" : "تەستىق خىزمەت ئېقىمى قۇرۇلمىدى", + "Approval workflow deleted" : "تەستىق خىزمەت ئېقىمى ئۆچۈرۈلدى", + "Failed to delete approval workflow" : "تەستىق خىزمەت تەرتىپىنى ئۆچۈرەلمىدى", + "Tag \"{name}\" created" : "خەتكۈچ \"{name}\" قۇرۇلدى", + "Failed to create tag \"{name}\"" : "\"{name}\" بەلگىسىنى قۇرالمىدى", + "Approve" : "تەستىق", + "Reject" : "رەت قىلىش", + "Select pending tag" : "ساقلىنىۋاتقان خەتكۈچنى تاللاڭ", + "Who can request approval?" : "كىم تەستىقلىسا بولىدۇ؟", + "Who can approve?" : "كىم تەستىقلايدۇ؟", + "Select approved tag" : "تەستىقلانغان خەتكۈچنى تاللاڭ", + "Select rejected tag" : "رەت قىلىنغان خەتكۈچنى تاللاڭ", + "Who can request approval" : "تەستىقلاشنى كىم تەلەپ قىلسا بولىدۇ", + "Who can approve" : "كىم تەستىقلايدۇ", + "Tag to act on" : "ھەرىكەت قىلىشقا بەلگە", + "Tag set on approval" : "خەتكۈچ تەستىقلاندى", + "Tag set on rejection" : "خەتكۈچ رەت قىلىندى", + "Workflow title" : "خىزمەت ئېقىمى", + "What is the purpose of this workflow?" : "بۇ خىزمەت ئېقىمىنىڭ مەقسىتى نېمە؟", + "Request approval" : "تەستىقلاشنى تەلەپ قىلىڭ", + "There is no approval workflow allowing you to request approval." : "تەستىقلاشنى تەلەپ قىلىدىغان تەستىق خىزمەت ئېقىمى يوق.", + "Approved" : "تەستىقلاندى", + "Approved by" : "تەستىقلىدى", + "Rejected" : "رەت قىلىندى", + "Rejected by" : "رەت قىلدى", + "Approval requested by" : "تەستىقلىغان", + "Approval requested" : "تەستىق تەلەپ قىلىندى", + "you" : "سىز", + "The related approval workflow is: {ruleDescription}" : "مۇناسىۋەتلىك تەستىق خىزمەت تەرتىپى: {ruleDescription}", + "This user requested your approval" : "بۇ ئىشلەتكۈچى سىزنىڭ تەستىقىڭىزنى تەلەپ قىلدى", + "Your approval was requested." : "تەستىقلىشىڭىز تەلەپ قىلىندى.", + "Approval information" : "تەستىق ئۇچۇرى", + "No recommendations. Start typing." : "تەۋسىيە يوق. يېزىشنى باشلاڭ.", + "No result." : "ھېچقانداق نەتىجە يوق.", + "Who?" : "كىم؟", + "Impossible to get user/group/circle list" : "ئىشلەتكۈچى / گۇرۇپپا / چەمبىرەك تىزىملىكىگە ئېرىشىش مۇمكىن ئەمەس", + "Select approval workflow" : "تەستىق خىزمەت ئېقىمىنى تاللاڭ", + "File will be automatically shared with everybody allowed to approve." : "ھۆججەت تەستىقلاشقا رۇخسەت قىلىنغان ھەممە ئادەم بىلەن ئاپتوماتىك ھەمبەھىرلىنىدۇ.", + "Can be approved by" : "تەستىقلىسا بولىدۇ", + "More files to approve" : "تەستىقلايدىغان تېخىمۇ كۆپ ھۆججەتلەر", + "No files to approve!" : "تەستىقلايدىغان ھۆججەت يوق!", + "Failed to get approval pending files" : "ساقلىنىۋاتقان ھۆججەتلەرنى تەستىقلاشقا ئېرىشەلمىدى", + "by {name} at {date}" : "by {name} at {date}", + "at {date}" : "at {date}", + "Waiting for authorized users to approve this file" : "ھوقۇق بېرىلگەن ئىشلەتكۈچىلەرنىڭ بۇ ھۆججەتنى تەستىقلىشىنى ساقلاش", + "Pending approval, you are authorized to approve" : "تەستىقلىنىش ئالدىدا ، تەستىقلاشقا ھوقۇقلۇق", + "This element was approved" : "بۇ ئېلېمېنت تەستىقلاندى", + "This element was rejected" : "بۇ ئېلېمېنت رەت قىلىندى", + "Pending approval" : "تەستىقلىنىۋاتىدۇ", + "Waiting for your approval" : "تەستىقىڭىزنى ساقلاۋاتىدۇ", + "Failed to check approval status" : "تەستىق ھالىتىنى تەكشۈرەلمىدى", + "Approval requested for {name}" : "{name} for ئۈچۈن تەستىقلانغان", + "Warning" : "ئاگاھلاندۇرۇش", + "Failed to request approval for {name}" : "{name} نى تەستىقلاشنى تەلەپ قىلمىدى", + "You approved {name}" : "{name} نى تەستىقلىدىڭىز", + "Failed to approve {name}" : "{name} نى تەستىقلىمىدى", + "You rejected {name}" : "سىز {name} نى رەت قىلدىڭىز", + "Failed to reject {name}" : "{name} نى رەت قىلدى" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/uk.js b/l10n/uk.js index beb379aa..2df52ccf 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -98,47 +98,6 @@ OC.L10N.register( "You approved {name}" : "Ви схвалили {name}", "Failed to approve {name}" : "Не вдалося схвалити {name}", "You rejected {name}" : "Ви відхилили {name}", - "Failed to reject {name}" : "Не вдалося відхилити {name}", - "Error getting OAuth access token" : "Помилка отримання маркера доступу OAuth", - "Error during OAuth exchanges" : "Помилка під час обміну OAuth", - "Signature of %s" : "Підпис %s", - "Bad HTTP method" : "Поганий метод HTTP", - "Bad credentials" : "Погані дані авторизації", - "OAuth access token refused" : "Маркер доступу OAuth відхилено", - "Sign with DocuSign" : "Підпишіть за допомогою DocuSign", - "Sign with LibreSign" : "Підпишіть за допомогою LibreSign", - "Your approval was requested by {name}." : "Ваше схвалення надійшло від {name}.", - "The related approval workflow is:" : "Відповідний робочий процес затвердження:", - "Request a signature via DocuSign" : "Запит на підпис через DocuSign", - "Users or email addresses" : "Користувачі або електронні адреси", - "Nextcloud users or email addresses" : "Користувачі або електронні адреси Nextcloud", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Одержувачі отримають електронний лист від DocuSign із посиланням для підписання документа. Ви отримаєте повідомлення електронною поштою, коли документ буде підписано всіма одержувачами.", - "Request signature" : "Запит на підпис", - "Recipients will receive an email from DocuSign to sign the document" : "Одержувачі отримають електронний лист від DocuSign для підписання документа", - "Failed to request signature with DocuSign" : "Не вдалося надіслати запит на підпис за допомогою DocuSign", - "DocuSign integration" : "Інтеграція DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign — це рішення для електронного підпису.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Якщо ви хочете використовувати DocuSign, створіть програму в налаштуваннях облікового запису розробника DocuSign «Мої програми та ключі» та введіть нижче ідентифікатор клієнта (ключ інтеграції) та секрет.", - "Make sure you set this \"Redirect URI\":" : "Переконайтеся, що ви встановили цей \"URI перенаправлення\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Якщо ваш користувач DocuSign пов’язаний з кількома обліковими записами DocuSign, буде використано типовий обліковий запис.", - "Client ID (aka integration key)" : "Ідентифікатор клієнта (він же ключ інтеграції)", - "Client ID of your application" : "Ідентифікатор клієнта вашої програми", - "Application secret key" : "Секретний ключ програми", - "Secret key of your application" : "Секретний ключ вашої програми", - "Connect to DocuSign" : "Підключіться до DocuSign", - "Connected as {user} ({email})" : "Підключено як {user} ({email})", - "Disconnect from DocuSign" : "Від’єднайтеся від DocuSign", - "Successfully connected to DocuSign!" : "Успішно підключено до DocuSign!", - "OAuth access token could not be obtained:" : "Не вдалося отримати маркер доступу OAuth:", - "DocuSign admin options saved" : "Параметри адміністратора DocuSign збережено", - "Failed to save DocuSign admin options" : "Не вдалося зберегти параметри адміністратора DocuSign", - "Failed to save DocuSign OAuth state" : "Не вдалося зберегти стан DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Ви отримаєте електронний лист від DocuSign, щоб підписати документ", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Користувача, який запитував це схвалення, не знайдено, не забудьте надіслати або поділитися підписаним документом самостійно", - "Approval signature" : "Підпис погодження", - "{name} signature requested via LibreSign" : "Запит на підпис {name} через LibreSign", - "Impossible to sign this document" : "Неможливо підписати цей документ", - "Pending approval, you are authorized to approve." : "Очікує на схвалення, ви маєте право схвалити.", - "Show approval details" : "Показати деталі схвалення" + "Failed to reject {name}" : "Не вдалося відхилити {name}" }, "nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10>= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100> 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10>=5 && n % 10 <=9) || (n % 100>=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/l10n/uk.json b/l10n/uk.json index 5fb1cc2a..816907ad 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -96,47 +96,6 @@ "You approved {name}" : "Ви схвалили {name}", "Failed to approve {name}" : "Не вдалося схвалити {name}", "You rejected {name}" : "Ви відхилили {name}", - "Failed to reject {name}" : "Не вдалося відхилити {name}", - "Error getting OAuth access token" : "Помилка отримання маркера доступу OAuth", - "Error during OAuth exchanges" : "Помилка під час обміну OAuth", - "Signature of %s" : "Підпис %s", - "Bad HTTP method" : "Поганий метод HTTP", - "Bad credentials" : "Погані дані авторизації", - "OAuth access token refused" : "Маркер доступу OAuth відхилено", - "Sign with DocuSign" : "Підпишіть за допомогою DocuSign", - "Sign with LibreSign" : "Підпишіть за допомогою LibreSign", - "Your approval was requested by {name}." : "Ваше схвалення надійшло від {name}.", - "The related approval workflow is:" : "Відповідний робочий процес затвердження:", - "Request a signature via DocuSign" : "Запит на підпис через DocuSign", - "Users or email addresses" : "Користувачі або електронні адреси", - "Nextcloud users or email addresses" : "Користувачі або електронні адреси Nextcloud", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "Одержувачі отримають електронний лист від DocuSign із посиланням для підписання документа. Ви отримаєте повідомлення електронною поштою, коли документ буде підписано всіма одержувачами.", - "Request signature" : "Запит на підпис", - "Recipients will receive an email from DocuSign to sign the document" : "Одержувачі отримають електронний лист від DocuSign для підписання документа", - "Failed to request signature with DocuSign" : "Не вдалося надіслати запит на підпис за допомогою DocuSign", - "DocuSign integration" : "Інтеграція DocuSign", - "DocuSign is an electronic signature solution." : "DocuSign — це рішення для електронного підпису.", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "Якщо ви хочете використовувати DocuSign, створіть програму в налаштуваннях облікового запису розробника DocuSign «Мої програми та ключі» та введіть нижче ідентифікатор клієнта (ключ інтеграції) та секрет.", - "Make sure you set this \"Redirect URI\":" : "Переконайтеся, що ви встановили цей \"URI перенаправлення\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "Якщо ваш користувач DocuSign пов’язаний з кількома обліковими записами DocuSign, буде використано типовий обліковий запис.", - "Client ID (aka integration key)" : "Ідентифікатор клієнта (він же ключ інтеграції)", - "Client ID of your application" : "Ідентифікатор клієнта вашої програми", - "Application secret key" : "Секретний ключ програми", - "Secret key of your application" : "Секретний ключ вашої програми", - "Connect to DocuSign" : "Підключіться до DocuSign", - "Connected as {user} ({email})" : "Підключено як {user} ({email})", - "Disconnect from DocuSign" : "Від’єднайтеся від DocuSign", - "Successfully connected to DocuSign!" : "Успішно підключено до DocuSign!", - "OAuth access token could not be obtained:" : "Не вдалося отримати маркер доступу OAuth:", - "DocuSign admin options saved" : "Параметри адміністратора DocuSign збережено", - "Failed to save DocuSign admin options" : "Не вдалося зберегти параметри адміністратора DocuSign", - "Failed to save DocuSign OAuth state" : "Не вдалося зберегти стан DocuSign OAuth", - "You will receive an email from DocuSign to sign the document" : "Ви отримаєте електронний лист від DocuSign, щоб підписати документ", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "Користувача, який запитував це схвалення, не знайдено, не забудьте надіслати або поділитися підписаним документом самостійно", - "Approval signature" : "Підпис погодження", - "{name} signature requested via LibreSign" : "Запит на підпис {name} через LibreSign", - "Impossible to sign this document" : "Неможливо підписати цей документ", - "Pending approval, you are authorized to approve." : "Очікує на схвалення, ви маєте право схвалити.", - "Show approval details" : "Показати деталі схвалення" + "Failed to reject {name}" : "Не вдалося відхилити {name}" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10>= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100> 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10>=5 && n % 10 <=9) || (n % 100>=11 && n % 100 <=14 )) ? 2: 3);" } \ No newline at end of file diff --git a/l10n/vi.js b/l10n/vi.js index d7b8c1fd..6c96bf8a 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -25,8 +25,8 @@ OC.L10N.register( "Who can request approval" : "Ai có thể yêu cầu phê duyệt", "Who can approve" : "Ai có thể phê duyệt", "No recommendations. Start typing." : "Không có khuyến nghị. Bắt đầu gõ.", + "No result." : "Không có kết quả", "Pending approval" : "Đang chờ phê duyệt", - "Warning" : "Cảnh báo", - "Bad HTTP method" : "Phương thức HTTP không hợp lệ" + "Warning" : "Cảnh báo" }, "nplurals=1; plural=0;"); diff --git a/l10n/vi.json b/l10n/vi.json index aed3d30c..06cf5b57 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -23,8 +23,8 @@ "Who can request approval" : "Ai có thể yêu cầu phê duyệt", "Who can approve" : "Ai có thể phê duyệt", "No recommendations. Start typing." : "Không có khuyến nghị. Bắt đầu gõ.", + "No result." : "Không có kết quả", "Pending approval" : "Đang chờ phê duyệt", - "Warning" : "Cảnh báo", - "Bad HTTP method" : "Phương thức HTTP không hợp lệ" + "Warning" : "Cảnh báo" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 1fea138e..80fee585 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -98,48 +98,6 @@ OC.L10N.register( "You approved {name}" : "你批准了 {name}", "Failed to approve {name}" : "批准{name}失败", "You rejected {name}" : "你拒绝了 {name}", - "Failed to reject {name}" : "拒绝{name}失败", - "Error getting OAuth access token" : "获取 OAUth 访问令牌出错", - "Error during OAuth exchanges" : "OAuth 交换期间出错", - "Signature of %s" : "%s 的签名", - "Bad HTTP method" : "错误的 HTTP 方法", - "Bad credentials" : "错误的凭据", - "OAuth access token refused" : "OAuth 访问令牌被拒绝", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "根据管理员定义的工作流通过/拒绝文件。\n\n:warning: **此应用程序将从 Nextcloud 28 开始被弃用。\n如果您是Nextcloud用户并且正在使用此应用程序,请升级至 Nextcloud 28 并等待更新,另外,您可以发起工单,以便我们在找到解决方案时及时通知您。**", - "Sign with DocuSign" : "用 DocuSign 签名", - "Sign with LibreSign" : "用 LibreSign 签名", - "Your approval was requested by {name}." : "{name} 请求你的批准。", - "The related approval workflow is:" : "相关的批准流程是:", - "Request a signature via DocuSign" : "通过DocuSign请求签名 ", - "Users or email addresses" : "用户或电子邮件地址", - "Nextcloud users or email addresses" : "Nextcloud 用户或电子邮件地址", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "收件人将收到一封来自DocuSign的电子邮件,邮件中有一个签名文档的链接。当文件被所有收件人签署后,你将通过电子邮件得到通知。", - "Request signature" : "请求签名", - "Recipients will receive an email from DocuSign to sign the document" : "收件人将收到一封来自DocuSign的电子邮件来签署文档 ", - "Failed to request signature with DocuSign" : "无法通过DocuSign请求签名", - "DocuSign integration" : "DocuSign 集成", - "DocuSign is an electronic signature solution." : "DocuSign 是一个电子签名解决方案", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "如果你想使用 DocuSign,在你的 DocuSign "我的应用程序和密钥"开发帐户设置中创建一个应用程序,并将客户端ID(集成密钥)和 secret 放在下面。", - "Make sure you set this \"Redirect URI\":" : "确保你设置了这个 \"重定向 URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "如果你的DocuSign用户与多个DocuSign帐户关联,则将使用默认帐户。", - "Client ID (aka integration key)" : "客户端 ID(也即集成密钥)", - "Client ID of your application" : "您的应用程序的客户端ID", - "Application secret key" : "应用程序 secret key", - "Secret key of your application" : "你的应用程序的 Secret key", - "Connect to DocuSign" : "连接到 DocuSign", - "Connected as {user} ({email})" : "连接为 {user} ({email})", - "Disconnect from DocuSign" : "断开与 DocuSign 的连接", - "Successfully connected to DocuSign!" : "成功连接到 DocuSign !", - "OAuth access token could not be obtained:" : "无法获取 OAuth 访问令牌:", - "DocuSign admin options saved" : "DocuSign 管理选项已保存", - "Failed to save DocuSign admin options" : "保存DocuSign管理选项失败", - "Failed to save DocuSign OAuth state" : "保存DocuSign OAuth状态失败", - "You will receive an email from DocuSign to sign the document" : "您将收到一封来自DocuSign的电子邮件来签署文档", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "没有找到请求批准的用户,请记得亲自发送或共享已签署的文件", - "Approval signature" : "用于批准的签名", - "{name} signature requested via LibreSign" : "通过 LibreSign 请求了 {name} 签名", - "Impossible to sign this document" : "对这份文档进行签名是不可能的", - "Pending approval, you are authorized to approve." : "待批准,您有权批准。", - "Show approval details" : "显示批准详情" + "Failed to reject {name}" : "拒绝{name}失败" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 98eb5aae..e4d5f6fd 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -96,48 +96,6 @@ "You approved {name}" : "你批准了 {name}", "Failed to approve {name}" : "批准{name}失败", "You rejected {name}" : "你拒绝了 {name}", - "Failed to reject {name}" : "拒绝{name}失败", - "Error getting OAuth access token" : "获取 OAUth 访问令牌出错", - "Error during OAuth exchanges" : "OAuth 交换期间出错", - "Signature of %s" : "%s 的签名", - "Bad HTTP method" : "错误的 HTTP 方法", - "Bad credentials" : "错误的凭据", - "OAuth access token refused" : "OAuth 访问令牌被拒绝", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "根据管理员定义的工作流通过/拒绝文件。\n\n:warning: **此应用程序将从 Nextcloud 28 开始被弃用。\n如果您是Nextcloud用户并且正在使用此应用程序,请升级至 Nextcloud 28 并等待更新,另外,您可以发起工单,以便我们在找到解决方案时及时通知您。**", - "Sign with DocuSign" : "用 DocuSign 签名", - "Sign with LibreSign" : "用 LibreSign 签名", - "Your approval was requested by {name}." : "{name} 请求你的批准。", - "The related approval workflow is:" : "相关的批准流程是:", - "Request a signature via DocuSign" : "通过DocuSign请求签名 ", - "Users or email addresses" : "用户或电子邮件地址", - "Nextcloud users or email addresses" : "Nextcloud 用户或电子邮件地址", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "收件人将收到一封来自DocuSign的电子邮件,邮件中有一个签名文档的链接。当文件被所有收件人签署后,你将通过电子邮件得到通知。", - "Request signature" : "请求签名", - "Recipients will receive an email from DocuSign to sign the document" : "收件人将收到一封来自DocuSign的电子邮件来签署文档 ", - "Failed to request signature with DocuSign" : "无法通过DocuSign请求签名", - "DocuSign integration" : "DocuSign 集成", - "DocuSign is an electronic signature solution." : "DocuSign 是一个电子签名解决方案", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "如果你想使用 DocuSign,在你的 DocuSign "我的应用程序和密钥"开发帐户设置中创建一个应用程序,并将客户端ID(集成密钥)和 secret 放在下面。", - "Make sure you set this \"Redirect URI\":" : "确保你设置了这个 \"重定向 URI\":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "如果你的DocuSign用户与多个DocuSign帐户关联,则将使用默认帐户。", - "Client ID (aka integration key)" : "客户端 ID(也即集成密钥)", - "Client ID of your application" : "您的应用程序的客户端ID", - "Application secret key" : "应用程序 secret key", - "Secret key of your application" : "你的应用程序的 Secret key", - "Connect to DocuSign" : "连接到 DocuSign", - "Connected as {user} ({email})" : "连接为 {user} ({email})", - "Disconnect from DocuSign" : "断开与 DocuSign 的连接", - "Successfully connected to DocuSign!" : "成功连接到 DocuSign !", - "OAuth access token could not be obtained:" : "无法获取 OAuth 访问令牌:", - "DocuSign admin options saved" : "DocuSign 管理选项已保存", - "Failed to save DocuSign admin options" : "保存DocuSign管理选项失败", - "Failed to save DocuSign OAuth state" : "保存DocuSign OAuth状态失败", - "You will receive an email from DocuSign to sign the document" : "您将收到一封来自DocuSign的电子邮件来签署文档", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "没有找到请求批准的用户,请记得亲自发送或共享已签署的文件", - "Approval signature" : "用于批准的签名", - "{name} signature requested via LibreSign" : "通过 LibreSign 请求了 {name} 签名", - "Impossible to sign this document" : "对这份文档进行签名是不可能的", - "Pending approval, you are authorized to approve." : "待批准,您有权批准。", - "Show approval details" : "显示批准详情" + "Failed to reject {name}" : "拒绝{name}失败" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 22acf4ed..752ffb67 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "工作流程標題", "What is the purpose of this workflow?" : "此工作流程的目的是什麼?", "Request approval" : "請求審批", + "There is no approval workflow allowing you to request approval." : "沒有允許您請求批准的批准工作流程。", "Approved" : "批准了", "Approved by" : "被以下人仕批准", "Rejected" : "拒絕了", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "相關的審批工作流程是:{ruleDescription}", "This user requested your approval" : "此用戶要求您的審批", "Your approval was requested." : "已請求您的審批。", + "Approval information" : "批准資訊", "No recommendations. Start typing." : "沒有建議。開始輸入。", "No result." : "無結果。", "Who?" : "誰?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "您批准了 {name}", "Failed to approve {name}" : "批准 {name} 失敗", "You rejected {name}" : "您不批准 {name}", - "Failed to reject {name}" : "拒絕 {name} 失敗", - "Error getting OAuth access token" : "擷取 OAuth 存取權杖時發生錯誤", - "Error during OAuth exchanges" : "OAuth 交換時發生錯誤", - "Signature of %s" : "%s 的簽名", - "Bad HTTP method" : "不正確的 HTTP 方法", - "Bad credentials" : "錯誤的身份驗證", - "OAuth access token refused" : "OAuth 存取權杖被拒絕", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "根據管理員定義的工作流程批准/拒絕檔案。\n\n:warning: **此應用程式將從 Nextcloud 28 開始被棄用。\n若您是 Nextcloud 使用者並正在使用此應用程式,\n請您暫緩更新到 28 並開啟支援工單,如此我們才能為您找到適合您用法的解決方案。**", - "Sign with DocuSign" : "使用 DocuSign 簽署", - "Sign with LibreSign" : "使用 LibreSign 簽署", - "Your approval was requested by {name}." : "{name} 請求您審批。", - "The related approval workflow is:" : "相關審批流程為:", - "Request a signature via DocuSign" : "透過 DocuSign 索取簽名", - "Users or email addresses" : "用戶名稱或電郵地址", - "Nextcloud users or email addresses" : "Nextcloud 用戶名稱或電郵地址", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "收件人將收到一封來自 DocuSign 的電子郵件,其中包含用於簽署文件的鏈接。當所有收件人簽署文件後,您將收到電子郵件通知。", - "Request signature" : "要求簽名", - "Recipients will receive an email from DocuSign to sign the document" : "收件人將收到來自 DocuSign 的電子郵件以簽署文件", - "Failed to request signature with DocuSign" : "無法使用 DocuSign 請求簽名", - "DocuSign integration" : "DocuSign 整合", - "DocuSign is an electronic signature solution." : "DocuSign 是一電子簽名解決方案。", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "如果您想使用 DocuSign,請在您的 DocuSign "My Apps & Keys" 開發者帳戶設置中創建一個應用程序,並將客戶端 ID(整合密鑰)和密碼放在下面。", - "Make sure you set this \"Redirect URI\":" : "確保設置此"重定向 URI":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "如果您的 DocuSign 用戶與多個 DocuSign 帳戶相關聯,則將使用默認帳戶。", - "Client ID (aka integration key)" : "客戶端 ID(又名集成密鑰)", - "Client ID of your application" : "您應用程式的客戶端 ID", - "Application secret key" : "應用程式密鑰", - "Secret key of your application" : "您應用程序的密鑰", - "Connect to DocuSign" : "連線至 DocuSign", - "Connected as {user} ({email})" : "以 {user}({email})身分連線", - "Disconnect from DocuSign" : "與 DocuSign 斷開連線", - "Successfully connected to DocuSign!" : "與 DocuSign 連線成功!", - "OAuth access token could not be obtained:" : "無法獲得 OAuth 存取權杖:", - "DocuSign admin options saved" : "已儲存 DocuSign 管理員選項", - "Failed to save DocuSign admin options" : "儲存 DocuSign 管理員選項失敗", - "Failed to save DocuSign OAuth state" : "儲存 DocuSign OAuth 狀態失敗", - "You will receive an email from DocuSign to sign the document" : "您將收到一封來自 DocuSign 的電子郵件,用於簽署文件", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "未找到請求此審批的用戶,記得自己發送或共享已簽署的文件", - "Approval signature" : "審批簽名", - "{name} signature requested via LibreSign" : "透過 LibreSign 發出的 {name} 簽名請求", - "Impossible to sign this document" : "無法簽署此文件", - "Pending approval, you are authorized to approve." : "待批准,您有權批准。", - "Show approval details" : "顯示審批細節" + "Failed to reject {name}" : "拒絕 {name} 失敗" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index f1a23ee8..f613c953 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -69,6 +69,7 @@ "Workflow title" : "工作流程標題", "What is the purpose of this workflow?" : "此工作流程的目的是什麼?", "Request approval" : "請求審批", + "There is no approval workflow allowing you to request approval." : "沒有允許您請求批准的批准工作流程。", "Approved" : "批准了", "Approved by" : "被以下人仕批准", "Rejected" : "拒絕了", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "相關的審批工作流程是:{ruleDescription}", "This user requested your approval" : "此用戶要求您的審批", "Your approval was requested." : "已請求您的審批。", + "Approval information" : "批准資訊", "No recommendations. Start typing." : "沒有建議。開始輸入。", "No result." : "無結果。", "Who?" : "誰?", @@ -104,48 +106,6 @@ "You approved {name}" : "您批准了 {name}", "Failed to approve {name}" : "批准 {name} 失敗", "You rejected {name}" : "您不批准 {name}", - "Failed to reject {name}" : "拒絕 {name} 失敗", - "Error getting OAuth access token" : "擷取 OAuth 存取權杖時發生錯誤", - "Error during OAuth exchanges" : "OAuth 交換時發生錯誤", - "Signature of %s" : "%s 的簽名", - "Bad HTTP method" : "不正確的 HTTP 方法", - "Bad credentials" : "錯誤的身份驗證", - "OAuth access token refused" : "OAuth 存取權杖被拒絕", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "根據管理員定義的工作流程批准/拒絕檔案。\n\n:warning: **此應用程式將從 Nextcloud 28 開始被棄用。\n若您是 Nextcloud 使用者並正在使用此應用程式,\n請您暫緩更新到 28 並開啟支援工單,如此我們才能為您找到適合您用法的解決方案。**", - "Sign with DocuSign" : "使用 DocuSign 簽署", - "Sign with LibreSign" : "使用 LibreSign 簽署", - "Your approval was requested by {name}." : "{name} 請求您審批。", - "The related approval workflow is:" : "相關審批流程為:", - "Request a signature via DocuSign" : "透過 DocuSign 索取簽名", - "Users or email addresses" : "用戶名稱或電郵地址", - "Nextcloud users or email addresses" : "Nextcloud 用戶名稱或電郵地址", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "收件人將收到一封來自 DocuSign 的電子郵件,其中包含用於簽署文件的鏈接。當所有收件人簽署文件後,您將收到電子郵件通知。", - "Request signature" : "要求簽名", - "Recipients will receive an email from DocuSign to sign the document" : "收件人將收到來自 DocuSign 的電子郵件以簽署文件", - "Failed to request signature with DocuSign" : "無法使用 DocuSign 請求簽名", - "DocuSign integration" : "DocuSign 整合", - "DocuSign is an electronic signature solution." : "DocuSign 是一電子簽名解決方案。", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "如果您想使用 DocuSign,請在您的 DocuSign "My Apps & Keys" 開發者帳戶設置中創建一個應用程序,並將客戶端 ID(整合密鑰)和密碼放在下面。", - "Make sure you set this \"Redirect URI\":" : "確保設置此"重定向 URI":", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "如果您的 DocuSign 用戶與多個 DocuSign 帳戶相關聯,則將使用默認帳戶。", - "Client ID (aka integration key)" : "客戶端 ID(又名集成密鑰)", - "Client ID of your application" : "您應用程式的客戶端 ID", - "Application secret key" : "應用程式密鑰", - "Secret key of your application" : "您應用程序的密鑰", - "Connect to DocuSign" : "連線至 DocuSign", - "Connected as {user} ({email})" : "以 {user}({email})身分連線", - "Disconnect from DocuSign" : "與 DocuSign 斷開連線", - "Successfully connected to DocuSign!" : "與 DocuSign 連線成功!", - "OAuth access token could not be obtained:" : "無法獲得 OAuth 存取權杖:", - "DocuSign admin options saved" : "已儲存 DocuSign 管理員選項", - "Failed to save DocuSign admin options" : "儲存 DocuSign 管理員選項失敗", - "Failed to save DocuSign OAuth state" : "儲存 DocuSign OAuth 狀態失敗", - "You will receive an email from DocuSign to sign the document" : "您將收到一封來自 DocuSign 的電子郵件,用於簽署文件", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "未找到請求此審批的用戶,記得自己發送或共享已簽署的文件", - "Approval signature" : "審批簽名", - "{name} signature requested via LibreSign" : "透過 LibreSign 發出的 {name} 簽名請求", - "Impossible to sign this document" : "無法簽署此文件", - "Pending approval, you are authorized to approve." : "待批准,您有權批准。", - "Show approval details" : "顯示審批細節" + "Failed to reject {name}" : "拒絕 {name} 失敗" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index b4382c26..b8f7b8f7 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -71,6 +71,7 @@ OC.L10N.register( "Workflow title" : "工作流程標題", "What is the purpose of this workflow?" : "此工作流程的目的是什麼?", "Request approval" : "請求批准", + "There is no approval workflow allowing you to request approval." : "沒有允許您請求批准的批准工作流程。", "Approved" : "已批准", "Approved by" : "批准由", "Rejected" : "已回絕", @@ -81,6 +82,7 @@ OC.L10N.register( "The related approval workflow is: {ruleDescription}" : "相關的批准工作流程為:{ruleDescription}", "This user requested your approval" : "此使用者請求您的批准", "Your approval was requested." : "已請求您的批准。", + "Approval information" : "批准資訊", "No recommendations. Start typing." : "無建議。開始輸入。", "No result." : "無結果。", "Who?" : "誰?", @@ -106,48 +108,6 @@ OC.L10N.register( "You approved {name}" : "您批准了 {name}", "Failed to approve {name}" : "批准 {name} 失敗", "You rejected {name}" : "您回絕了 {name}", - "Failed to reject {name}" : "回絕 {name} 失敗", - "Error getting OAuth access token" : "取得 OAuth 存取權杖時發生錯誤", - "Error during OAuth exchanges" : "OAuth 交換時發生錯誤", - "Signature of %s" : "%s 的簽名", - "Bad HTTP method" : "錯誤的 HTTP 方法", - "Bad credentials" : "錯誤的憑證", - "OAuth access token refused" : "OAuth 存取權杖被拒絕", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "根據管理員定義的工作流程批准/拒絕檔案。\n\n:warning: **此應用程式將從 Nextcloud 28 開始被棄用。\n若您是 Nextcloud 使用者並正在使用此應用程式,\n請您暫緩更新到 28 並開啟支援工單,如此我們才能為您找到適合您用法的解決方案。**", - "Sign with DocuSign" : "使用 DocuSign 簽署", - "Sign with LibreSign" : "使用 LibreSign 簽署", - "Your approval was requested by {name}." : "{name} 請求您的批准。", - "The related approval workflow is:" : "相關的批准工作劉成為:", - "Request a signature via DocuSign" : "透過 DocuSign 請求簽名", - "Users or email addresses" : "使用者或電子郵件", - "Nextcloud users or email addresses" : "Nextcloud 使用者或電子郵件地址", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "收件者將會收到一封來自 DocuSign 的電子郵件,其中包含了用於簽署文件的連結。當所有收件者都簽署文件後,您將會收到電子郵件通知。", - "Request signature" : "請求簽名", - "Recipients will receive an email from DocuSign to sign the document" : "收件者將會收到一封來自 DocuSign 的電子郵件以簽署文件", - "Failed to request signature with DocuSign" : "請求使用 DocuSign 簽名失敗", - "DocuSign integration" : "DocuSign 整合", - "DocuSign is an electronic signature solution." : "DocuSign 是一套電子簽名解決方案。", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "如果您想要使用 DocuSign,在您的 DocuSign「我的應用程式與金鑰」開發者帳號設定中建立應用程式,並將客戶端 ID(整合金鑰)與密碼放在下面。", - "Make sure you set this \"Redirect URI\":" : "確定您設定了此「重新導向 URI」:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "如果您的 DocuSign 使用者與多個 DocuSign 帳號相關聯,則將會使用預設帳號。", - "Client ID (aka integration key)" : "客戶端 ID(又稱整合金鑰)", - "Client ID of your application" : "您應用程式的客戶端 ID", - "Application secret key" : "應用程式私鑰", - "Secret key of your application" : "您應用程式的私鑰", - "Connect to DocuSign" : "連結至 DocuSign", - "Connected as {user} ({email})" : "以 {user} ({email}) 身份連結", - "Disconnect from DocuSign" : "斷開與 DocuSign 的連結", - "Successfully connected to DocuSign!" : "成功連結至 DocuSign!", - "OAuth access token could not be obtained:" : "無法取得 OAuth 存取權杖:", - "DocuSign admin options saved" : "DocuSign 管理員選項已儲存", - "Failed to save DocuSign admin options" : "儲存 DocuSign 管理園設定失敗", - "Failed to save DocuSign OAuth state" : "儲存 DocuSign OAuth 狀態失敗", - "You will receive an email from DocuSign to sign the document" : "您將會收到來自 DocuSign 的電子郵件以簽署文件", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "找不到請求此批准的使用者,記得自行傳送或分享已簽署的文件。", - "Approval signature" : "批准簽名", - "{name} signature requested via LibreSign" : "透過 LibreSign 請求 {name} 簽名", - "Impossible to sign this document" : "無法簽署此文件", - "Pending approval, you are authorized to approve." : "待批准,您有權批准。", - "Show approval details" : "顯示批准詳細資訊" + "Failed to reject {name}" : "回絕 {name} 失敗" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 06604ccb..ac6ecbba 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -69,6 +69,7 @@ "Workflow title" : "工作流程標題", "What is the purpose of this workflow?" : "此工作流程的目的是什麼?", "Request approval" : "請求批准", + "There is no approval workflow allowing you to request approval." : "沒有允許您請求批准的批准工作流程。", "Approved" : "已批准", "Approved by" : "批准由", "Rejected" : "已回絕", @@ -79,6 +80,7 @@ "The related approval workflow is: {ruleDescription}" : "相關的批准工作流程為:{ruleDescription}", "This user requested your approval" : "此使用者請求您的批准", "Your approval was requested." : "已請求您的批准。", + "Approval information" : "批准資訊", "No recommendations. Start typing." : "無建議。開始輸入。", "No result." : "無結果。", "Who?" : "誰?", @@ -104,48 +106,6 @@ "You approved {name}" : "您批准了 {name}", "Failed to approve {name}" : "批准 {name} 失敗", "You rejected {name}" : "您回絕了 {name}", - "Failed to reject {name}" : "回絕 {name} 失敗", - "Error getting OAuth access token" : "取得 OAuth 存取權杖時發生錯誤", - "Error during OAuth exchanges" : "OAuth 交換時發生錯誤", - "Signature of %s" : "%s 的簽名", - "Bad HTTP method" : "錯誤的 HTTP 方法", - "Bad credentials" : "錯誤的憑證", - "OAuth access token refused" : "OAuth 存取權杖被拒絕", - "Approve/reject files based on workflows defined by admins.\n\n:warning: **This app will be deprecated from Nextcloud 28 onwards.\nIf you are a Nextcloud customer and you rely on this app,\nplease wait with updating to 28 and open a support ticket so we can find a solution for your use-case.**" : "根據管理員定義的工作流程批准/拒絕檔案。\n\n:warning: **此應用程式將從 Nextcloud 28 開始被棄用。\n若您是 Nextcloud 使用者並正在使用此應用程式,\n請您暫緩更新到 28 並開啟支援工單,如此我們才能為您找到適合您用法的解決方案。**", - "Sign with DocuSign" : "使用 DocuSign 簽署", - "Sign with LibreSign" : "使用 LibreSign 簽署", - "Your approval was requested by {name}." : "{name} 請求您的批准。", - "The related approval workflow is:" : "相關的批准工作劉成為:", - "Request a signature via DocuSign" : "透過 DocuSign 請求簽名", - "Users or email addresses" : "使用者或電子郵件", - "Nextcloud users or email addresses" : "Nextcloud 使用者或電子郵件地址", - "Recipients will receive an email from DocuSign with a link to sign the document. You will be informed by email when the document has been signed by all recipients." : "收件者將會收到一封來自 DocuSign 的電子郵件,其中包含了用於簽署文件的連結。當所有收件者都簽署文件後,您將會收到電子郵件通知。", - "Request signature" : "請求簽名", - "Recipients will receive an email from DocuSign to sign the document" : "收件者將會收到一封來自 DocuSign 的電子郵件以簽署文件", - "Failed to request signature with DocuSign" : "請求使用 DocuSign 簽名失敗", - "DocuSign integration" : "DocuSign 整合", - "DocuSign is an electronic signature solution." : "DocuSign 是一套電子簽名解決方案。", - "If you want to use DocuSign, create an application in your DocuSign \"My Apps & Keys\" developer account settings and put the client ID (integration key) and secret below." : "如果您想要使用 DocuSign,在您的 DocuSign「我的應用程式與金鑰」開發者帳號設定中建立應用程式,並將客戶端 ID(整合金鑰)與密碼放在下面。", - "Make sure you set this \"Redirect URI\":" : "確定您設定了此「重新導向 URI」:", - "If your DocuSign user is associated with multiple DocuSign accounts, the default one will be used." : "如果您的 DocuSign 使用者與多個 DocuSign 帳號相關聯,則將會使用預設帳號。", - "Client ID (aka integration key)" : "客戶端 ID(又稱整合金鑰)", - "Client ID of your application" : "您應用程式的客戶端 ID", - "Application secret key" : "應用程式私鑰", - "Secret key of your application" : "您應用程式的私鑰", - "Connect to DocuSign" : "連結至 DocuSign", - "Connected as {user} ({email})" : "以 {user} ({email}) 身份連結", - "Disconnect from DocuSign" : "斷開與 DocuSign 的連結", - "Successfully connected to DocuSign!" : "成功連結至 DocuSign!", - "OAuth access token could not be obtained:" : "無法取得 OAuth 存取權杖:", - "DocuSign admin options saved" : "DocuSign 管理員選項已儲存", - "Failed to save DocuSign admin options" : "儲存 DocuSign 管理園設定失敗", - "Failed to save DocuSign OAuth state" : "儲存 DocuSign OAuth 狀態失敗", - "You will receive an email from DocuSign to sign the document" : "您將會收到來自 DocuSign 的電子郵件以簽署文件", - "The user who requested this approval was not found, remember to send or share the signed document yourself" : "找不到請求此批准的使用者,記得自行傳送或分享已簽署的文件。", - "Approval signature" : "批准簽名", - "{name} signature requested via LibreSign" : "透過 LibreSign 請求 {name} 簽名", - "Impossible to sign this document" : "無法簽署此文件", - "Pending approval, you are authorized to approve." : "待批准,您有權批准。", - "Show approval details" : "顯示批准詳細資訊" + "Failed to reject {name}" : "回絕 {name} 失敗" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/lib/Controller/ApprovalController.php b/lib/Controller/ApprovalController.php index f4fd9829..235bb8dc 100644 --- a/lib/Controller/ApprovalController.php +++ b/lib/Controller/ApprovalController.php @@ -12,12 +12,14 @@ namespace OCA\Approval\Controller; use OCA\Approval\AppInfo\Application; +use OCA\Approval\Exceptions\OutdatedEtagException; use OCA\Approval\Service\ApprovalService; use OCA\Approval\Service\RuleService; - +use OCP\AppFramework\Http; use OCP\AppFramework\Http\Attribute\NoAdminRequired; use OCP\AppFramework\Http\DataResponse; use OCP\AppFramework\OCSController; +use OCP\IL10N; use OCP\IRequest; class ApprovalController extends OCSController { @@ -27,6 +29,7 @@ public function __construct( IRequest $request, private ApprovalService $approvalService, private RuleService $ruleService, + private IL10N $l10n, private ?string $userId ) { parent::__construct($appName, $request); @@ -78,24 +81,44 @@ public function getPendingNodes(?int $since = null): DataResponse { * Approve a file * * @param int $fileId + * @param string $etag * @return DataResponse */ #[NoAdminRequired] - public function approve(int $fileId): DataResponse { - $this->approvalService->approve($fileId, $this->userId); - return new DataResponse(1); + public function approve(int $fileId, string $etag): DataResponse { + try { + if ($this->approvalService->approve($fileId, $this->userId, $etag)) { + return new DataResponse([]); + } + return new DataResponse([], Http::STATUS_BAD_REQUEST); + } catch (OutdatedEtagException) { + return new DataResponse( + ['error' => $this->l10n->t('The file/folder you tried to approve has an outdated content, please reload and review it again')], + Http::STATUS_BAD_REQUEST + ); + } } /** * Reject a file * * @param int $fileId + * @param string $etag * @return DataResponse */ #[NoAdminRequired] - public function reject(int $fileId): DataResponse { - $this->approvalService->reject($fileId, $this->userId); - return new DataResponse(1); + public function reject(int $fileId, string $etag): DataResponse { + try { + if ($this->approvalService->reject($fileId, $this->userId, $etag)) { + return new DataResponse([]); + } + return new DataResponse([], Http::STATUS_BAD_REQUEST); + } catch (OutdatedEtagException) { + return new DataResponse( + ['error' => $this->l10n->t('The file/folder you tried to reject has an outdated content, please reload and review it again')], + Http::STATUS_BAD_REQUEST + ); + } } /** diff --git a/lib/Exceptions/OutdatedEtagException.php b/lib/Exceptions/OutdatedEtagException.php new file mode 100644 index 00000000..aa3523de --- /dev/null +++ b/lib/Exceptions/OutdatedEtagException.php @@ -0,0 +1,13 @@ +root->getById($fileId); + if (sizeof($file)> 0) { + return $file[0]->getEtag(); + } + return ''; + } + /** * Get approval state of a given file for a given user * @param int $fileId @@ -341,10 +351,15 @@ public function getApprovalState(int $fileId, ?string $userId, bool $userHasAcce * * @param int $fileId * @param string|null $userId + * @param string $etag * @return bool success + * @throws OutdatedEtagException */ - public function approve(int $fileId, ?string $userId): bool { + public function approve(int $fileId, ?string $userId, string $etag): bool { $fileState = $this->getApprovalState($fileId, $userId); + if ($etag !== $this->getEtag($fileId)) { + throw new OutdatedEtagException(); + } // if file has pending tag and user is authorized to approve it if ($fileState['state'] === Application::STATE_APPROVABLE) { $rules = $this->ruleService->getRules(); @@ -378,10 +393,15 @@ public function approve(int $fileId, ?string $userId): bool { * * @param int $fileId * @param string|null $userId + * @param string $etag * @return bool success + * @throws OutdatedEtagException */ - public function reject(int $fileId, ?string $userId): bool { + public function reject(int $fileId, ?string $userId, string $etag): bool { $fileState = $this->getApprovalState($fileId, $userId); + if ($etag !== $this->getEtag($fileId)) { + throw new OutdatedEtagException(); + } // if file has pending tag and user is authorized to approve it if ($fileState['state'] === Application::STATE_APPROVABLE) { $rules = $this->ruleService->getRules(); @@ -415,28 +435,39 @@ public function reject(int $fileId, ?string $userId): bool { * * @param int $fileId * @param int $ruleId - * @param string|null $userId + * @param string|null $requesterUserId * @param bool $createShares * @return array potential error message * @throws \OCP\Files\NotPermittedException * @throws \OC\User\NoUserException */ - public function request(int $fileId, int $ruleId, ?string $userId, bool $createShares): array { + public function request(int $fileId, int $ruleId, ?string $requesterUserId, bool $createShares): array { + if (!$this->utilsService->userHasAccessTo($fileId, $requesterUserId)) { + return ['error' => $this->l10n->t('You do not have access to this file')]; + } + + if ($createShares && !$this->utilsService->userCanShareFile($fileId, $requesterUserId)) { + return ['error' => $this->l10n->t('You can not share this file')]; + } + $rule = $this->ruleService->getRule($ruleId); if (is_null($rule)) { return ['error' => $this->l10n->t('Rule does not exist')]; } - if ($this->userIsAuthorizedByRule($userId, $rule, 'requesters')) { + if ($this->userIsAuthorizedByRule($requesterUserId, $rule, 'requesters')) { + if ($this->tagObjectMapper->haveTag((string) $fileId, 'files', $rule['tagApproved'])) { + return ['error' => $this->l10n->t('Approval has already been granted with this rule for this file')]; + } // only request if it has not yet been requested for this rule if (!$this->tagObjectMapper->haveTag((string) $fileId, 'files', $rule['tagPending'])) { if ($createShares) { - $this->shareWithApprovers($fileId, $rule, $userId); + $this->shareWithApprovers($fileId, $rule, $requesterUserId); // if shares are auto created, request is actually done in a separated request with $createShares === false return []; } // store activity in our tables - $this->ruleService->storeAction($fileId, $ruleId, $userId, Application::STATE_PENDING); + $this->ruleService->storeAction($fileId, $ruleId, $requesterUserId, Application::STATE_PENDING); $this->tagObjectMapper->assignTags((string) $fileId, 'files', $rule['tagPending']); @@ -444,7 +475,7 @@ public function request(int $fileId, int $ruleId, ?string $userId, bool $createS $this->activityManager->triggerEvent( ActivityManager::APPROVAL_OBJECT_NODE, $fileId, ActivityManager::SUBJECT_REQUESTED_ORIGIN, - ['origin_user_id' => $userId] + ['origin_user_id' => $requesterUserId] ); // check if someone can actually approve @@ -499,35 +530,27 @@ public function requestViaTagAssignment(int $fileId, int $ruleId, string $reques * * @param int $fileId * @param array $rule - * @param string $userId + * @param string $requesterUserId * @return array list of created shares * @throws \OCP\Files\NotPermittedException * @throws \OC\User\NoUserException */ - private function shareWithApprovers(int $fileId, array $rule, string $userId): array { + private function shareWithApprovers(int $fileId, array $rule, string $requesterUserId): array { $createdShares = []; // get node - $userFolder = $this->root->getUserFolder($userId); + $userFolder = $this->root->getUserFolder($requesterUserId); $nodeResults = $userFolder->getById($fileId); if (count($nodeResults)> 0) { $node = $nodeResults[0]; - // get the node again from the owner's storage to avoid sharing permission issues - $ownerId = $node->getOwner()->getUID(); - $ownerFolder = $this->root->getUserFolder($ownerId); - $ownerNodeResults = $ownerFolder->getById($fileId); - if (count($ownerNodeResults)> 0) { - $node = $ownerNodeResults[0]; - } } else { return []; } $label = $this->l10n->t('Please check my approval request'); - $fileOwner = $node->getOwner()->getUID(); foreach ($rule['approvers'] as $approver) { if ($approver['type'] === 'user' && !$this->utilsService->userHasAccessTo($fileId, $approver['entityId'])) { // create user share - if ($this->utilsService->createShare($node, IShare::TYPE_USER, $approver['entityId'], $fileOwner, $label)) { + if ($this->utilsService->createShare($node, IShare::TYPE_USER, $approver['entityId'], $requesterUserId, $label)) { $createdShares[] = $approver; } } @@ -535,7 +558,7 @@ private function shareWithApprovers(int $fileId, array $rule, string $userId): a if ($this->shareManager->allowGroupSharing()) { foreach ($rule['approvers'] as $approver) { if ($approver['type'] === 'group') { - if ($this->utilsService->createShare($node, IShare::TYPE_GROUP, $approver['entityId'], $fileOwner, $label)) { + if ($this->utilsService->createShare($node, IShare::TYPE_GROUP, $approver['entityId'], $requesterUserId, $label)) { $createdShares[] = $approver; } } @@ -546,7 +569,7 @@ private function shareWithApprovers(int $fileId, array $rule, string $userId): a if ($circlesEnabled) { foreach ($rule['approvers'] as $approver) { if ($approver['type'] === 'circle') { - if ($this->utilsService->createShare($node, IShare::TYPE_CIRCLE, $approver['entityId'], $fileOwner, $label)) { + if ($this->utilsService->createShare($node, IShare::TYPE_CIRCLE, $approver['entityId'], $requesterUserId, $label)) { $createdShares[] = $approver; } } diff --git a/lib/Service/UtilsService.php b/lib/Service/UtilsService.php index 0d97f709..05bb12d5 100644 --- a/lib/Service/UtilsService.php +++ b/lib/Service/UtilsService.php @@ -85,10 +85,8 @@ public function setEncryptedAppValue(string $key, string $value): void { public function createShare(Node $node, int $type, string $sharedWith, string $sharedBy, string $label): bool { $share = $this->shareManager->newShare(); $share->setNode($node) - // share permission is not necessary for rule chaining - // because we get the file from its owner's storage so we can share it whatsoever - // ->setPermissions(Constants::PERMISSION_READ | Constants::PERMISSION_SHARE) - ->setPermissions(Constants::PERMISSION_READ) + // share permission is necessary for rule chaining + ->setPermissions(Constants::PERMISSION_READ | Constants::PERMISSION_SHARE) ->setSharedWith($sharedWith) ->setShareType($type) ->setSharedBy($sharedBy) @@ -170,6 +168,23 @@ public function userHasAccessTo(int $fileId, ?string $userId): bool { return false; } + /** + * Check if user can share a given file + * + * @param int $fileId + * @param string|null $userId + * @return bool + */ + public function userCanShareFile(int $fileId, ?string $userId): bool { + $user = $this->userManager->get($userId); + if ($user instanceof IUser) { + $userFolder = $this->root->getUserFolder($userId); + $node = $userFolder->getById($fileId); + return sizeof($node)> 0 && $node[0]->isShareable(); + } + return false; + } + /** * @param string $name of the new tag * @return array diff --git a/package-lock.json b/package-lock.json index 2805a60b..1fe4ce21 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "approval", - "version": "1.0.12", + "version": "1.3.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "approval", - "version": "1.0.12", + "version": "1.3.3", "license": "AGPL-3.0", "dependencies": { "@mdi/svg": "^7.3.67", diff --git a/package.json b/package.json index bb8b6a59..5ad45ef2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "approval", - "version": "1.0.12", + "version": "1.3.3", "description": "Approval", "main": "index.js", "scripts": { diff --git a/src/files/actions/approveAction.js b/src/files/actions/approveAction.js index f7a10d6f..72025257 100644 --- a/src/files/actions/approveAction.js +++ b/src/files/actions/approveAction.js @@ -19,7 +19,7 @@ export const approveAction = new FileAction({ order: 0, async exec(node) { try { - await approve(node.fileid, node.basename, node) + await approve(node) } catch (error) { console.debug('Approve action failed') } @@ -28,7 +28,7 @@ export const approveAction = new FileAction({ async execBatch(nodes) { const promises = nodes .filter(node => node.attributes['approval-state'] === states.APPROVABLE) - .map(node => approve(node.fileid, node.basename, node, false)) + .map(node => approve(node, false)) const results = await Promise.allSettled(promises) return results.map(promise => promise.status === 'fulfilled') }, diff --git a/src/files/actions/rejectAction.js b/src/files/actions/rejectAction.js index b849cd0b..549ae4a1 100644 --- a/src/files/actions/rejectAction.js +++ b/src/files/actions/rejectAction.js @@ -19,7 +19,7 @@ export const rejectAction = new FileAction({ order: 0, async exec(node) { try { - await reject(node.fileid, node.basename, node) + await reject(node) } catch (error) { console.debug('Reject action failed') } @@ -28,7 +28,7 @@ export const rejectAction = new FileAction({ async execBatch(nodes) { const promises = nodes .filter(node => node.attributes['approval-state'] === states.APPROVABLE) - .map(node => reject(node.fileid, node.basename, node, false)) + .map(node => reject(node, false)) const results = await Promise.allSettled(promises) return results.map(promise => promise.status === 'fulfilled') }, diff --git a/src/files/helpers.js b/src/files/helpers.js index 439db1a5..79330243 100644 --- a/src/files/helpers.js +++ b/src/files/helpers.js @@ -79,39 +79,35 @@ export async function requestAfterShareCreation(fileId, fileName, ruleId, node = } } -export async function approve(fileId, fileName, node = null, notify = true) { - const url = generateOcsUrl('apps/approval/api/v1/approve/{fileId}', { fileId }) +export async function approve(node, notify = true) { + const url = generateOcsUrl('apps/approval/api/v1/approve/{fileId}', { fileId: node.fileid }) try { - await axios.put(url) + await axios.put(url, { etag: node.attributes.etag }) if (notify) { - showSuccess(t('approval', 'You approved {name}', { name: fileName })) - } - if (node) { - await updateNodeApprovalState(node) + showSuccess(t('approval', 'You approved {name}', { name: node.basename })) } + await updateNodeApprovalState(node) } catch (error) { console.error(error) if (notify) { - showError(t('approval', 'Failed to approve {name}', { name: fileName })) + showError(error.response.data?.ocs?.data?.error ?? t('approval', 'Failed to approve {name}', { name: node.basename })) } throw error } } -export async function reject(fileId, fileName, node = null, notify = true) { - const url = generateOcsUrl('apps/approval/api/v1/reject/{fileId}', { fileId }) +export async function reject(node, notify = true) { + const url = generateOcsUrl('apps/approval/api/v1/reject/{fileId}', { fileId: node.fileid }) try { - await axios.put(url) + await axios.put(url, { etag: node.attributes.etag }) if (notify) { - showSuccess(t('approval', 'You rejected {name}', { name: fileName })) - } - if (node) { - await updateNodeApprovalState(node) + showSuccess(t('approval', 'You rejected {name}', { name: node.basename })) } + await updateNodeApprovalState(node) } catch (error) { console.error(error) if (notify) { - showError(t('approval', 'Failed to reject {name}', { name: fileName })) + showError(error.response.data?.ocs?.data?.error ?? t('approval', 'Failed to reject {name}', { name: node.basename })) } throw error } diff --git a/src/files/modals.js b/src/files/modals.js index f0064bd6..ef8a2070 100644 --- a/src/files/modals.js +++ b/src/files/modals.js @@ -33,10 +33,10 @@ export function createInfoModal() { console.debug('[Approval] modal closed') }) OCA.Approval.InfoModalVue.$on('approve', (node) => { - approve(node.fileid, node.basename, node) + approve(node) }) OCA.Approval.InfoModalVue.$on('reject', (node) => { - reject(node.fileid, node.basename, node) + reject(node) }) OCA.Approval.InfoModalVue.$on('request', (node) => { onRequestFileAction(node) diff --git a/src/views/ApprovalTab.vue b/src/views/ApprovalTab.vue index 6e3d8ce7..78e3b072 100644 --- a/src/views/ApprovalTab.vue +++ b/src/views/ApprovalTab.vue @@ -89,16 +89,26 @@ export default { }, async onApprove() { this.state = null - const fileId = this.fileInfo.id - const fileName = this.fileInfo.name - await approve(fileId, fileName) + const node = { + fileid: this.fileInfo.id, + basename: this.fileInfo.name, + attributes: { + etag: this.fileInfo.etag ?? '', + }, + } + await approve(node, true) this.update(this.fileInfo) }, async onReject() { this.state = null - const fileId = this.fileInfo.id - const fileName = this.fileInfo.name - await reject(fileId, fileName) + const node = { + fileid: this.fileInfo.id, + basename: this.fileInfo.name, + attributes: { + etag: this.fileInfo.etag ?? '', + }, + } + await reject(node, true) this.update(this.fileInfo) }, async onRequestSubmit(ruleId, createShares) { diff --git a/tests/unit/Service/ApprovalServiceTest.php b/tests/unit/Service/ApprovalServiceTest.php index 44d220c1..ead15fcd 100644 --- a/tests/unit/Service/ApprovalServiceTest.php +++ b/tests/unit/Service/ApprovalServiceTest.php @@ -35,13 +35,11 @@ use OCP\IL10N; use OCP\IUserManager; use OCP\Notification\IManager as INotificationManager; - use OCP\Security\ICrypto; use OCP\Share\IManager as IShareManager; - +use OCP\Share\IShare; use OCP\SystemTag\ISystemTagManager; use OCP\SystemTag\ISystemTagObjectMapper; - use Psr\Log\LoggerInterface; class ApprovalServiceTest extends TestCase { @@ -408,25 +406,62 @@ public function testApproval() { // approve failures // tag does not exist $this->ruleService->saveRule($idRule3, $idTagPending3, -1, $idTagRejected3, $approvers, $requesters, $description); - $result = $this->approvalService->approve($fileToReject->getId(), 'user1'); + $result = $this->approvalService->approve($fileToReject->getId(), 'user1', $fileToReject->getEtag()); $this->assertFalse($result); $this->ruleService->saveRule($idRule3, $idTagPending3, $idTagApproved3, $idTagRejected3, $approvers, $requesters, $description); // approve - $this->approvalService->approve($fileToApprove->getId(), 'user1'); + $this->approvalService->approve($fileToApprove->getId(), 'user1', $fileToApprove->getEtag()); $stateForUser1 = $this->approvalService->getApprovalState($fileToApprove->getId(), 'user1'); $this->assertEquals(Application::STATE_APPROVED, $stateForUser1['state']); // reject failures // tag does not exist $this->ruleService->saveRule($idRule3, $idTagPending3, $idTagApproved3, -1, $approvers, $requesters, $description); - $result = $this->approvalService->reject($fileToReject->getId(), 'user1'); + $result = $this->approvalService->reject($fileToReject->getId(), 'user1', $fileToReject->getEtag()); $this->assertFalse($result); $this->ruleService->saveRule($idRule3, $idTagPending3, $idTagApproved3, $idTagRejected3, $approvers, $requesters, $description); // reject - $this->approvalService->reject($fileToReject->getId(), 'user1'); + $this->approvalService->reject($fileToReject->getId(), 'user1', $fileToReject->getEtag()); $stateForUser1 = $this->approvalService->getApprovalState($fileToReject->getId(), 'user1'); $this->assertEquals(Application::STATE_REJECTED, $stateForUser1['state']); } + + public function testRequestWithCreateSharesWhenUserCannotShareReturnsError(): void { + // Share a file from user1 to user2 with read-only (no share permission). + // user2 has access but cannot share -> request with createShares true must return error. + $uf1 = $this->root->getUserFolder('user1'); + $file = $uf1->newFile('file_no_share.txt', 'content'); + $shared = $this->utilsService->createShare( + $file, + IShare::TYPE_USER, + 'user2', + 'user1', + 'label' + ); + $this->assertTrue($shared); + + // Add some tags + $r = $this->utilsService->createTag('pending4'); + $idTagPending4 = $r['id']; + $r = $this->utilsService->createTag('approved4'); + $idTagApproved4 = $r['id']; + $r = $this->utilsService->createTag('rejected4'); + $idTagRejected4 = $r['id']; + + $r = $this->ruleService->createRule( + $idTagPending4, $idTagApproved4, $idTagRejected4, + [['entityId' => 'user3', 'type' => 'user']], + [['entityId' => 'user2', 'type' => 'user']], + 'user 2 request, 3 approves', + false + ); + $ruleId = $r['id']; + + $result = $this->approvalService->request($file->getId(), $ruleId, 'user2', true); + $this->assertArrayHasKey('error', $result); + + $this->ruleService->deleteRule($ruleId); + } }

AltStyle によって変換されたページ (->オリジナル) /