From c80b2c8060b7f5ff204b0972f558f9b53959e397 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Thu, 26 Sep 2024 19:32:02 +0300 Subject: [PATCH 001/244] [stable29] chore: pin stable29 to NC 28 and 29 (#398) Pin stable29 to NC 28 and 29 they will not differ and NC 28 support will be dropped later this year. Signed-off-by: Andrey Borysenko --- appinfo/info.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index ee2408ad..990f524d 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -43,7 +43,7 @@ to join us in shaping a more versatile, stable, and secure app landscape. *Your insights, suggestions, and contributions are invaluable to us.* ]]> - 3.2.0 + 3.2.1 agpl Andrey Borysenko Alexander Piskun @@ -63,7 +63,7 @@ to join us in shaping a more versatile, stable, and secure app landscape. https://raw.githubusercontent.com/cloud-py-api/app_api/main/screenshots/app_api_4.png - + OCA\AppAPI\BackgroundJob\ExAppInitStatusCheckJob From 760f8df205a395e01e0f28a783550862a65dc39d Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Thu, 26 Sep 2024 19:42:57 +0300 Subject: [PATCH 002/244] chore: include also NC30.0.0 for update to pin versions Signed-off-by: Andrey Borysenko --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 990f524d..70ab3584 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -63,7 +63,7 @@ to join us in shaping a more versatile, stable, and secure app landscape. https://raw.githubusercontent.com/cloud-py-api/app_api/main/screenshots/app_api_4.png - + OCA\AppAPI\BackgroundJob\ExAppInitStatusCheckJob From 526d1354afa33993c6e0262dc2cb7ac27a84064d Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Fri, 27 Sep 2024 17:27:23 +0300 Subject: [PATCH 003/244] [stable29] chore(ci): update tests CI for stable29 (#405) Update tests CI for stable29 branch only (NC 28 and 29) --------- Signed-off-by: Andrey Borysenko --- .github/workflows/tests-deploy.yml | 15 +++++++-------- .github/workflows/tests-special.yml | 3 ++- .github/workflows/tests.yml | 5 ++--- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/tests-deploy.yml b/.github/workflows/tests-deploy.yml index b0ca457f..5b597a7a 100644 --- a/.github/workflows/tests-deploy.yml +++ b/.github/workflows/tests-deploy.yml @@ -2,8 +2,9 @@ name: Tests - Deploy on: pull_request: + branches: [stable29] push: - branches: [main] + branches: [stable29] workflow_dispatch: permissions: @@ -25,8 +26,6 @@ jobs: include: - server-version: "stable29" php-version: "8.2" - - server-version: "master" - php-version: "8.3" services: postgres: @@ -155,7 +154,7 @@ jobs: - name: Create container run: | docker network create master_bridge - docker run --net master_bridge --name nextcloud --rm -d -v /var/run/docker.sock:/var/run/docker.sock ${{ env.docker-image }} + docker run --net master_bridge --name nextcloud --rm -d -v /var/run/docker.sock:/var/run/docker.sock -e SERVER_BRANCH=stable29 ${{ env.docker-image }} sudo chmod 766 /var/run/docker.sock sleep 120s @@ -235,7 +234,7 @@ jobs: -e NC_HAPROXY_PASSWORD="some_secure_password" \ --net master_bridge --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp \ --privileged -d ghcr.io/cloud-py-api/nextcloud-appapi-dsp:latest - docker run --net master_bridge --name nextcloud --rm -d ${{ env.docker-image }} + docker run --net master_bridge --name nextcloud --rm -d -e SERVER_BRANCH=stable29 ${{ env.docker-image }} sleep 60s - name: Install AppAPI @@ -322,7 +321,7 @@ jobs: -e EX_APPS_NET="ipv4@localhost" \ --net host --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp \ --privileged -d ghcr.io/cloud-py-api/nextcloud-appapi-dsp:latest - docker run --net=bridge --name=nextcloud -p 8080:80 --rm -d ${{ env.docker-image }} + docker run --net=bridge --name=nextcloud -p 8080:80 -e SERVER_BRANCH=stable29 --rm -d ${{ env.docker-image }} sleep 60s hostname -I docker exec nextcloud-appapi-dsp ip addr show | grep inet | awk '{print $2}' | cut -d/ -f1 @@ -542,7 +541,7 @@ jobs: nc-host-network-host: runs-on: ubuntu-22.04 - name: NC In Host(network=host) • master • 🐘8.2 + name: NC In Host(network=host) • stable29 • 🐘8.2 services: postgres: @@ -564,7 +563,7 @@ jobs: with: submodules: true repository: nextcloud/server - ref: master + ref: stable29 - name: Checkout AppAPI uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 diff --git a/.github/workflows/tests-special.yml b/.github/workflows/tests-special.yml index 271e4fba..3aed2bef 100644 --- a/.github/workflows/tests-special.yml +++ b/.github/workflows/tests-special.yml @@ -2,8 +2,9 @@ name: Tests Special on: pull_request: + branches: [stable29] push: - branches: [main] + branches: [stable29] workflow_dispatch: permissions: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01906592..21d674f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,8 +2,9 @@ name: Tests on: pull_request: + branches: [stable29] push: - branches: [main] + branches: [stable29] workflow_dispatch: permissions: @@ -33,8 +34,6 @@ jobs: include: - server-version: "stable29" php-version: "8.2" - - server-version: "master" - php-version: "8.3" env: DATABASE_PGSQL: 1 From b96348f15b9bdfdb3a43a795143fe10f54816927 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Fri, 27 Sep 2024 17:58:18 +0300 Subject: [PATCH 004/244] [stable29] chore: update transifex config (#403) Prepare Transifex config with upcoming stable branches. - [x] Backport to stable30 - [x] Backport to stable29 Signed-off-by: Andrey Borysenko --- .tx/backport | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.tx/backport b/.tx/backport index ba2906d0..b655a6d6 100644 --- a/.tx/backport +++ b/.tx/backport @@ -1 +1,3 @@ main +stable30 +stable29 From 95b9e3279e6a14457de65f034b5ea22ff03fb441 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Fri, 27 Sep 2024 18:09:43 +0300 Subject: [PATCH 005/244] chore: update changelog Signed-off-by: Andrey Borysenko --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dc7da49..ce88262d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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/). +## [3.2.1 - 2024-09-27] + +Last release to pin Nextcloud versions. Since NC 30.0.1 AppAPI will be bundled with server. + +### Changed + +- Changed NC compatible versions (28, 29, 30.0.0) + ## [3.2.0 - 2024-09-10] ### Added From 04a918b9e89a6996da51f24bd266e7e346bb4626 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 4 Oct 2024 00:26:44 +0000 Subject: [PATCH 006/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ru.js | 13 +++++++++++++ l10n/ru.json | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/l10n/ru.js b/l10n/ru.js index 755e1183..0d3d2530 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -69,6 +69,19 @@ OC.L10N.register( "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Host" : "Имя или адрес сервера", "Nextcloud URL" : "Адрес сервера Nextcloud", + "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", + "More info" : "Дополнительная информация", + "Download ExApp logs" : "Загрузить журналы ExApp", + "Remove test ExApp" : "Удалить тест ExApp", + "Start Deploy test" : "Начать тест развертывания", + "Stop Deploy test" : "Остановить тест развертывания", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Register ExApp in Nextcloud" : "Зарегистрировать ExApp в Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Проверьте, зарегистрирован ли ExApp в Nextcloud перед развертыванием.", + "Image pull" : "Извлечение изображения", + "Check if the image is successfully pulled" : "Проверьте, успешно ли извлечено изображение.", + "Container started" : "Контейнер запущен", + "Check if the image successfully pulled and container is created and started" : "Проверьте, успешно ли загружен образ, создан ли и запущен ли контейнер.", "Enabled" : "Включено", "Display name" : "Отображаемое имя", "Daemon host" : "Хост службы", diff --git a/l10n/ru.json b/l10n/ru.json index b895a470..507ecdf3 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -67,6 +67,19 @@ "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Host" : "Имя или адрес сервера", "Nextcloud URL" : "Адрес сервера Nextcloud", + "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", + "More info" : "Дополнительная информация", + "Download ExApp logs" : "Загрузить журналы ExApp", + "Remove test ExApp" : "Удалить тест ExApp", + "Start Deploy test" : "Начать тест развертывания", + "Stop Deploy test" : "Остановить тест развертывания", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Register ExApp in Nextcloud" : "Зарегистрировать ExApp в Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Проверьте, зарегистрирован ли ExApp в Nextcloud перед развертыванием.", + "Image pull" : "Извлечение изображения", + "Check if the image is successfully pulled" : "Проверьте, успешно ли извлечено изображение.", + "Container started" : "Контейнер запущен", + "Check if the image successfully pulled and container is created and started" : "Проверьте, успешно ли загружен образ, создан ли и запущен ли контейнер.", "Enabled" : "Включено", "Display name" : "Отображаемое имя", "Daemon host" : "Хост службы", From aeec2d41c6c372d69ffeee4d71c80ea86699a1ad Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 11 Oct 2024 00:32:07 +0000 Subject: [PATCH 007/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 6 ++--- l10n/ar.json | 6 ++--- l10n/ru.js | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/ru.json | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++- 4 files changed, 154 insertions(+), 8 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 53ecf945..e3a0859c 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -147,9 +147,9 @@ OC.L10N.register( "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", "Option key (unique, e.g. my_key)" : "مفتاح الخيار (غير متكرر؛ مثل: my_key )", - "Option key is required" : "مفتاح الخيار لازم", + "Option key is required" : "مفتاح الخيار مطلوب", "Option value" : "قيمة الخيار", - "Option value is required" : "قيمة الخيار لازمة", + "Option value is required" : "قيمة الخيار مطلوبة", "Confirm" : "تأكيد", "Save" : "حفظ", "Register" : "تسجيل", @@ -187,7 +187,7 @@ OC.L10N.register( "Allow untested app" : "إسمَح للتطبيقات غير المُجازة untested app", "Default Deploy daemon is not accessible. Please verify configuration" : "لا يمكن الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات. راجع التهيئة من فضلك", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "سيتم تنزيل التطبيق من متجر التطبيقات و سيتم نشره على البرنامج الخفي التلقائي للنشر", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود خاصّتك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود الخاص بك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", "Your ExApps" : "تطبيقاتك الخارجية", "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. الاستمرار غير ممكنٍ.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", diff --git a/l10n/ar.json b/l10n/ar.json index 9f48f4aa..90ea367e 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -145,9 +145,9 @@ "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", "Option key (unique, e.g. my_key)" : "مفتاح الخيار (غير متكرر؛ مثل: my_key )", - "Option key is required" : "مفتاح الخيار لازم", + "Option key is required" : "مفتاح الخيار مطلوب", "Option value" : "قيمة الخيار", - "Option value is required" : "قيمة الخيار لازمة", + "Option value is required" : "قيمة الخيار مطلوبة", "Confirm" : "تأكيد", "Save" : "حفظ", "Register" : "تسجيل", @@ -185,7 +185,7 @@ "Allow untested app" : "إسمَح للتطبيقات غير المُجازة untested app", "Default Deploy daemon is not accessible. Please verify configuration" : "لا يمكن الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات. راجع التهيئة من فضلك", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "سيتم تنزيل التطبيق من متجر التطبيقات و سيتم نشره على البرنامج الخفي التلقائي للنشر", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود خاصّتك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود الخاص بك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", "Your ExApps" : "تطبيقاتك الخارجية", "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. الاستمرار غير ممكنٍ.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", diff --git a/l10n/ru.js b/l10n/ru.js index 0d3d2530..6b24cc97 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -23,9 +23,18 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Список приложений, которым требуется AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон развертывания (DaemonConfig) - это демон оркестровки ExApps.", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "По умолчанию служба публикации недоступна. Проверьте его конфигурацию", + "ExApp init timeout (minutes)" : "Время ожидания инициализации ExApp (минуты)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Время ожидания процесса инициализации ExApp, по истечении которого AppAPI отметит его как неудачный", + "ExApp init timeout" : "Время ожидания инициализации ExApp", + "ExApp container restart policy" : "Политика перезапуска контейнера ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", + "External Apps management" : "Управление внешними приложениями", + "Admin options saved" : "Параметры администратора сохранены", + "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "Update to {version}" : "Обновление до версии {version}", "Remove" : "Удалить", "Delete data on remove" : "Удалить данные при удалении", @@ -45,6 +54,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", "Featured" : "Рекомендуемые", "Update to {update}" : "Обновить до {update}", + "All ExApps are up-to-date." : "Все ExApps обновлены.", "Default Deploy daemon is not accessible" : "Служба публикации по умолчанию недоступна", "Icon" : "Значок", "Name" : "Имя", @@ -59,17 +69,40 @@ OC.L10N.register( "Type" : "Тип", "Display Name" : "Отображаемое имя", "GPUs support" : "Поддержка графических процессоров", + "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", + "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", + "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", "Edit" : "Редактирование", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", + "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", "Password confirmation failed" : "Подтверждение пароля не удалось", "Deploy daemon config details" : "Подробности конфигурации службы публикации", + "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", + "ExApps installed" : "ExApps установлены", + "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", + "Deploy config" : "Развертывание конфигурации", + "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", + "HaProxy password" : "HaProxy пароль ", + "Compute device" : "Вычислительное устройство", + "Additional options" : "Дополнительные возможности", + "Verify connection" : "Проверить соединение", + "Daemon connection successful" : "Служба успешно установлена", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", + "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", + "No Deploy daemons configured" : "Службы развертывания не настроены", "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", + "Register Daemon" : "Регистрация службы", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", + "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", "More info" : "Дополнительная информация", "Download ExApp logs" : "Загрузить журналы ExApp", "Remove test ExApp" : "Удалить тест ExApp", @@ -82,8 +115,24 @@ OC.L10N.register( "Check if the image is successfully pulled" : "Проверьте, успешно ли извлечено изображение.", "Container started" : "Контейнер запущен", "Check if the image successfully pulled and container is created and started" : "Проверьте, успешно ли загружен образ, создан ли и запущен ли контейнер.", + "Heartbeat" : "Сердцебиение", + "Check for the heartbeat is finished and healthy" : "Проверьте, нормально ли работает сердцебиение", + "Init step" : "Начальный шаг", + "Wait for initialization step to finish" : "Дождитесь завершения этапа инициализации.", "Enabled" : "Включено", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Проверьте, успешно ли ExApp обработал включенное событие и правильно ли зарегистрировал все данные.", + "Only if ExApp container is preset" : "Только если контейнер ExApp предварительно настроен", + "Deploy test passed successfully!" : "Тест на развертывание пройден успешно!", + "Deploy test failed at step \"{step}\"" : "Тест развертывания не пройден на шаге \"{step}\"", + "Edit Deploy Daemon" : "Изменить службу развертывания", + "Register Deploy Daemon" : "Регистрация службы развертывания", + "Daemon configuration template" : "Шаблон конфигурации службы", + "Select daemon configuration template" : "Выберите шаблон конфигурации службы", + "Daemon registration form" : "Форма регистрации службы", + "Unique Deploy Daemon Name" : "Уникальное имя службы развертывания", "Display name" : "Отображаемое имя", + "Deployment method" : "Метод развертывания", + "Select daemon deploy method" : "Выберите метод развертывания службы", "Daemon host" : "Хост службы", "Set daemon as default" : "Использовать службу по умолчанию", "Set as default daemon" : "Использовать службу по умолчанию", @@ -92,13 +141,31 @@ OC.L10N.register( "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Network" : "Сеть", "Docker network name" : "Имя в сети Docker", + "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", + "Additional option" : "Дополнительный вариант", + "Add additional option" : "Добавить дополнительную опцию", + "Option key (unique)" : "Ключевой параметр (уникальный)", + "Option key (unique, e.g. my_key)" : "Ключ параметра (уникальный, например my_key)", + "Option key is required" : "Требуется ключ опции", + "Option value" : "Значение параметра", + "Option value is required" : "Значение параметра обязательно", "Confirm" : "Подтвердить", "Save" : "Сохранить", "Register" : "Регистрация", "Check connection" : "Проверить подключение", + "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", + "With https enabled network is set to host" : "При включенном https сеть настроена на хост", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", + "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте логи", + "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", + "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте логи", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", @@ -109,10 +176,16 @@ OC.L10N.register( "Updates" : "Обновления", "Featured apps" : "Рекомендуемые приложения", "Supported apps" : "Поддерживаемые приложения", + "manual-install apps cannot be updated" : "приложения, устанавливаемые вручную, не могут быть обновлены", + "{progress}% Deploying" : "{progress}% Развертывание", + "{progress}% Initializing" : "{progress}% Инициализация", + "Healthchecking" : "Проверка здоровья", "Deploy and Enable" : "Развернуть и включить", "Enable" : "Включить", "Disable" : "Отключить", "Allow untested app" : "Разрешить непроверенное приложение", + "Default Deploy daemon is not accessible. Please verify configuration" : "По умолчанию служба развертывания недоступна. Проверьте конфигурацию", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Приложение будет загружено из App Store и развернуто с помощью Deploy Daemon по умолчанию.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Это приложение не отмечено как совместимое с вашей версией Nextcloud. Если вы продолжите, вы сможете установить это приложение, однако оно может работать не так, как ожидается.", "Your ExApps" : "Ваши ExApps", "An error occurred during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно.", diff --git a/l10n/ru.json b/l10n/ru.json index 507ecdf3..2f07668f 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -21,9 +21,18 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Список приложений, которым требуется AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон развертывания (DaemonConfig) - это демон оркестровки ExApps.", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "По умолчанию служба публикации недоступна. Проверьте его конфигурацию", + "ExApp init timeout (minutes)" : "Время ожидания инициализации ExApp (минуты)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Время ожидания процесса инициализации ExApp, по истечении которого AppAPI отметит его как неудачный", + "ExApp init timeout" : "Время ожидания инициализации ExApp", + "ExApp container restart policy" : "Политика перезапуска контейнера ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", + "External Apps management" : "Управление внешними приложениями", + "Admin options saved" : "Параметры администратора сохранены", + "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "Update to {version}" : "Обновление до версии {version}", "Remove" : "Удалить", "Delete data on remove" : "Удалить данные при удалении", @@ -43,6 +52,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", "Featured" : "Рекомендуемые", "Update to {update}" : "Обновить до {update}", + "All ExApps are up-to-date." : "Все ExApps обновлены.", "Default Deploy daemon is not accessible" : "Служба публикации по умолчанию недоступна", "Icon" : "Значок", "Name" : "Имя", @@ -57,17 +67,40 @@ "Type" : "Тип", "Display Name" : "Отображаемое имя", "GPUs support" : "Поддержка графических процессоров", + "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", + "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", + "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", "Edit" : "Редактирование", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", + "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", "Password confirmation failed" : "Подтверждение пароля не удалось", "Deploy daemon config details" : "Подробности конфигурации службы публикации", + "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", + "ExApps installed" : "ExApps установлены", + "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", + "Deploy config" : "Развертывание конфигурации", + "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", + "HaProxy password" : "HaProxy пароль ", + "Compute device" : "Вычислительное устройство", + "Additional options" : "Дополнительные возможности", + "Verify connection" : "Проверить соединение", + "Daemon connection successful" : "Служба успешно установлена", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", + "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", + "No Deploy daemons configured" : "Службы развертывания не настроены", "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", + "Register Daemon" : "Регистрация службы", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", + "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", "More info" : "Дополнительная информация", "Download ExApp logs" : "Загрузить журналы ExApp", "Remove test ExApp" : "Удалить тест ExApp", @@ -80,8 +113,24 @@ "Check if the image is successfully pulled" : "Проверьте, успешно ли извлечено изображение.", "Container started" : "Контейнер запущен", "Check if the image successfully pulled and container is created and started" : "Проверьте, успешно ли загружен образ, создан ли и запущен ли контейнер.", + "Heartbeat" : "Сердцебиение", + "Check for the heartbeat is finished and healthy" : "Проверьте, нормально ли работает сердцебиение", + "Init step" : "Начальный шаг", + "Wait for initialization step to finish" : "Дождитесь завершения этапа инициализации.", "Enabled" : "Включено", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Проверьте, успешно ли ExApp обработал включенное событие и правильно ли зарегистрировал все данные.", + "Only if ExApp container is preset" : "Только если контейнер ExApp предварительно настроен", + "Deploy test passed successfully!" : "Тест на развертывание пройден успешно!", + "Deploy test failed at step \"{step}\"" : "Тест развертывания не пройден на шаге \"{step}\"", + "Edit Deploy Daemon" : "Изменить службу развертывания", + "Register Deploy Daemon" : "Регистрация службы развертывания", + "Daemon configuration template" : "Шаблон конфигурации службы", + "Select daemon configuration template" : "Выберите шаблон конфигурации службы", + "Daemon registration form" : "Форма регистрации службы", + "Unique Deploy Daemon Name" : "Уникальное имя службы развертывания", "Display name" : "Отображаемое имя", + "Deployment method" : "Метод развертывания", + "Select daemon deploy method" : "Выберите метод развертывания службы", "Daemon host" : "Хост службы", "Set daemon as default" : "Использовать службу по умолчанию", "Set as default daemon" : "Использовать службу по умолчанию", @@ -90,13 +139,31 @@ "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Network" : "Сеть", "Docker network name" : "Имя в сети Docker", + "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", + "Additional option" : "Дополнительный вариант", + "Add additional option" : "Добавить дополнительную опцию", + "Option key (unique)" : "Ключевой параметр (уникальный)", + "Option key (unique, e.g. my_key)" : "Ключ параметра (уникальный, например my_key)", + "Option key is required" : "Требуется ключ опции", + "Option value" : "Значение параметра", + "Option value is required" : "Значение параметра обязательно", "Confirm" : "Подтвердить", "Save" : "Сохранить", "Register" : "Регистрация", "Check connection" : "Проверить подключение", + "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", + "With https enabled network is set to host" : "При включенном https сеть настроена на хост", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", + "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте логи", + "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", + "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте логи", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", @@ -107,10 +174,16 @@ "Updates" : "Обновления", "Featured apps" : "Рекомендуемые приложения", "Supported apps" : "Поддерживаемые приложения", + "manual-install apps cannot be updated" : "приложения, устанавливаемые вручную, не могут быть обновлены", + "{progress}% Deploying" : "{progress}% Развертывание", + "{progress}% Initializing" : "{progress}% Инициализация", + "Healthchecking" : "Проверка здоровья", "Deploy and Enable" : "Развернуть и включить", "Enable" : "Включить", "Disable" : "Отключить", "Allow untested app" : "Разрешить непроверенное приложение", + "Default Deploy daemon is not accessible. Please verify configuration" : "По умолчанию служба развертывания недоступна. Проверьте конфигурацию", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Приложение будет загружено из App Store и развернуто с помощью Deploy Daemon по умолчанию.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Это приложение не отмечено как совместимое с вашей версией Nextcloud. Если вы продолжите, вы сможете установить это приложение, однако оно может работать не так, как ожидается.", "Your ExApps" : "Ваши ExApps", "An error occurred during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно.", From 770412c78c053bc15620ba0c5b9c961da92ea3fb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 12 Oct 2024 00:27:00 +0000 Subject: [PATCH 008/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 26 ++++++++++++++++++++++++++ l10n/cs.json | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index cbd2f30b..868f222a 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -2,7 +2,13 @@ OC.L10N.register( "app_api", { "External Apps" : "Externí aplikace", + "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", + "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", + "AI Integration Team" : "Tým napojení AI", + "ExApps Settings" : "Nastavení pro ExApps", + "Nextcloud AppAPI" : "Nextcloud AppAPI", "Deploy Daemons" : "Nasadit procesy služeb", + "ExApp init timeout" : "Časový limit inicializace ExApp", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", @@ -32,6 +38,7 @@ OC.L10N.register( "Results from other categories" : "Výsledky z ostatních kategorií", "No apps found" : "Nenalezeny žádné aplikace", "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], + "Deploy Daemon" : "Nasadit proces služby", "Type" : "Typ", "Display Name" : "Zobrazované jméno", "GPUs support" : "Podpora pro výpočty na GPU", @@ -39,15 +46,33 @@ OC.L10N.register( "Delete" : "Smazat", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", + "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "ExApps installed" : "Nainstalované ExApps", "Protocol" : "Protokol", "Host" : "Hostitel", "Deploy config" : "Nastavení nasazení", + "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", + "HaProxy password" : "Heslo k HAProxy", + "Compute device" : "Výpočetní zařízení", + "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", + "Daemon connection successful" : "Připojení ke službě úspěšné", + "Register Daemon" : "Zaregistrovat proces služby", + "More info" : "Další informace", + "Image pull" : "Odeslání obrazu", + "Container started" : "Kontejner spuštěn", + "Heartbeat" : "Kontrola stavu", + "Init step" : "Inicializační krok", "Enabled" : "Zapnuto", + "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", + "Daemon configuration template" : "Šablona nastavení procesu služby", + "Daemon registration form" : "Formulář registrace procesu služby", "Display name" : "Zobrazované jméno", + "Deployment method" : "Metoda nasazování", + "Daemon host" : "Hostitel procesu služby", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", "Enable https" : "Zapnout https", @@ -67,6 +92,7 @@ OC.L10N.register( "Check connection" : "Zkontrolovat připojení", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/cs.json b/l10n/cs.json index 659b6893..62e60f25 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -1,6 +1,12 @@ { "translations": { "External Apps" : "Externí aplikace", + "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", + "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", + "AI Integration Team" : "Tým napojení AI", + "ExApps Settings" : "Nastavení pro ExApps", + "Nextcloud AppAPI" : "Nextcloud AppAPI", "Deploy Daemons" : "Nasadit procesy služeb", + "ExApp init timeout" : "Časový limit inicializace ExApp", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", @@ -30,6 +36,7 @@ "Results from other categories" : "Výsledky z ostatních kategorií", "No apps found" : "Nenalezeny žádné aplikace", "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], + "Deploy Daemon" : "Nasadit proces služby", "Type" : "Typ", "Display Name" : "Zobrazované jméno", "GPUs support" : "Podpora pro výpočty na GPU", @@ -37,15 +44,33 @@ "Delete" : "Smazat", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", + "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "ExApps installed" : "Nainstalované ExApps", "Protocol" : "Protokol", "Host" : "Hostitel", "Deploy config" : "Nastavení nasazení", + "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", + "HaProxy password" : "Heslo k HAProxy", + "Compute device" : "Výpočetní zařízení", + "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", + "Daemon connection successful" : "Připojení ke službě úspěšné", + "Register Daemon" : "Zaregistrovat proces služby", + "More info" : "Další informace", + "Image pull" : "Odeslání obrazu", + "Container started" : "Kontejner spuštěn", + "Heartbeat" : "Kontrola stavu", + "Init step" : "Inicializační krok", "Enabled" : "Zapnuto", + "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", + "Daemon configuration template" : "Šablona nastavení procesu služby", + "Daemon registration form" : "Formulář registrace procesu služby", "Display name" : "Zobrazované jméno", + "Deployment method" : "Metoda nasazování", + "Daemon host" : "Hostitel procesu služby", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", "Enable https" : "Zapnout https", @@ -65,6 +90,7 @@ "Check connection" : "Zkontrolovat připojení", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", From 0be3b651fe58147a27e4d315adf428a2a435a070 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 13 Oct 2024 00:28:30 +0000 Subject: [PATCH 009/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 27 +++++++++++++++++++++++++++ l10n/cs.json | 27 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 868f222a..2e8f9a64 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -2,18 +2,27 @@ OC.L10N.register( "app_api", { "External Apps" : "Externí aplikace", + "Daemon config not found" : "Nastavení pro proces služby nenalezeno", + "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", + "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", + "Failed to disable ExApp" : "Nepodařil ose vypnout ExApp", + "Could not update ExApp" : "Nepodařilo se zaktualizovat ExApp", + "Error starting update of ExApp" : "Chyba při zahajování aktualizace ExApp", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", "Deploy Daemons" : "Nasadit procesy služeb", + "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp init timeout" : "Časový limit inicializace ExApp", + "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "Update to {version}" : "Aktualizovat na {version}", "Remove" : "Odebrat", + "Delete data on remove" : "Při odebrání smazat data", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", @@ -29,6 +38,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", "Featured" : "Doporučené", "Update to {update}" : "Aktualizovat na {update}", + "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", "Icon" : "Ikona", "Name" : "Název", "Version" : "Verze", @@ -49,6 +59,8 @@ OC.L10N.register( "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "Password confirmation failed" : "Potvrzení hesla se nezdařilo", + "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "ExApps installed" : "Nainstalované ExApps", "Protocol" : "Protokol", "Host" : "Hostitel", @@ -60,18 +72,30 @@ OC.L10N.register( "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Daemon connection successful" : "Připojení ke službě úspěšné", + "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", + "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", "Register Daemon" : "Zaregistrovat proces služby", "More info" : "Další informace", + "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", + "Remove test ExApp" : "Odebrat testovací ExApp", + "Start Deploy test" : "Spustit zkoušku nasazení", + "Stop Deploy test" : "Zastavit zkoušku nasazení", + "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Image pull" : "Odeslání obrazu", "Container started" : "Kontejner spuštěn", "Heartbeat" : "Kontrola stavu", "Init step" : "Inicializační krok", "Enabled" : "Zapnuto", + "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", + "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", + "Select daemon configuration template" : "Vyberte šablonu nastavení procesu služby", "Daemon registration form" : "Formulář registrace procesu služby", + "Unique Deploy Daemon Name" : "Neopakující se název procesu služby nasazování", "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", + "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", "Daemon host" : "Hostitel procesu služby", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", @@ -83,6 +107,7 @@ OC.L10N.register( "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", + "Option key (unique, e.g. my_key)" : "Klíč volby (neopakující se, např. muj_klic)", "Option key is required" : "Klíč volby je vyžadován", "Option value" : "Hodnota volby", "Option value is required" : "Je zapotřebí klíč volby", @@ -90,9 +115,11 @@ OC.L10N.register( "Save" : "Uložit", "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", + "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", + "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/cs.json b/l10n/cs.json index 62e60f25..a86b81b5 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -1,17 +1,26 @@ { "translations": { "External Apps" : "Externí aplikace", + "Daemon config not found" : "Nastavení pro proces služby nenalezeno", + "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", + "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", + "Failed to disable ExApp" : "Nepodařil ose vypnout ExApp", + "Could not update ExApp" : "Nepodařilo se zaktualizovat ExApp", + "Error starting update of ExApp" : "Chyba při zahajování aktualizace ExApp", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", "Deploy Daemons" : "Nasadit procesy služeb", + "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp init timeout" : "Časový limit inicializace ExApp", + "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "Update to {version}" : "Aktualizovat na {version}", "Remove" : "Odebrat", + "Delete data on remove" : "Při odebrání smazat data", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", @@ -27,6 +36,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", "Featured" : "Doporučené", "Update to {update}" : "Aktualizovat na {update}", + "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", "Icon" : "Ikona", "Name" : "Název", "Version" : "Verze", @@ -47,6 +57,8 @@ "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "Password confirmation failed" : "Potvrzení hesla se nezdařilo", + "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "ExApps installed" : "Nainstalované ExApps", "Protocol" : "Protokol", "Host" : "Hostitel", @@ -58,18 +70,30 @@ "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Daemon connection successful" : "Připojení ke službě úspěšné", + "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", + "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", "Register Daemon" : "Zaregistrovat proces služby", "More info" : "Další informace", + "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", + "Remove test ExApp" : "Odebrat testovací ExApp", + "Start Deploy test" : "Spustit zkoušku nasazení", + "Stop Deploy test" : "Zastavit zkoušku nasazení", + "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Image pull" : "Odeslání obrazu", "Container started" : "Kontejner spuštěn", "Heartbeat" : "Kontrola stavu", "Init step" : "Inicializační krok", "Enabled" : "Zapnuto", + "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", + "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", + "Select daemon configuration template" : "Vyberte šablonu nastavení procesu služby", "Daemon registration form" : "Formulář registrace procesu služby", + "Unique Deploy Daemon Name" : "Neopakující se název procesu služby nasazování", "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", + "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", "Daemon host" : "Hostitel procesu služby", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", @@ -81,6 +105,7 @@ "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", + "Option key (unique, e.g. my_key)" : "Klíč volby (neopakující se, např. muj_klic)", "Option key is required" : "Klíč volby je vyžadován", "Option value" : "Hodnota volby", "Option value is required" : "Je zapotřebí klíč volby", @@ -88,9 +113,11 @@ "Save" : "Uložit", "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", + "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", + "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", From e4eb4b8d265cd4f54e44944b21ddd2d6dc98a88d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 14 Oct 2024 00:26:45 +0000 Subject: [PATCH 010/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 10 +++++----- l10n/ar.json | 10 +++++----- l10n/sv.js | 2 ++ l10n/sv.json | 2 ++ 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index e3a0859c..a2146613 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -95,7 +95,7 @@ OC.L10N.register( "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", "Verify connection" : "تحقّق من الاتصال", - "Daemon connection successful" : "تمّ الاتصال بنجاحٍ مع البرنامج الخفي", + "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Registered Deploy daemons list" : "قائمة برامج النشر الخفية المسجلة", @@ -123,7 +123,7 @@ OC.L10N.register( "Enabled" : "مُفعّل", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "التحقُّق مما إذا كان ExApp قد نجح في التعامل مع الحدث المُمكّن و قد تمّ تسجيل كل شيءٍ بالشكل الصحيح", "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", - "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاحٍ", + "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", @@ -131,7 +131,7 @@ OC.L10N.register( "Select daemon configuration template" : "إختَر قالب تهيئة البرنامج الخفي", "Daemon registration form" : "نموذج تهيئة برنامج خفي", "Unique Deploy Daemon Name" : "الاسم الفريد للبرنامج الخفي للنشر", - "Display name" : "الاسم المعروض", + "Display name" : "اسم العرض", "Deployment method" : "طُرُق النشر", "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "Daemon host" : "مُضِيف البرنامج الخفي", @@ -163,9 +163,9 @@ OC.L10N.register( "URL should start with http:// or https://" : "عناوين الوب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", - "DaemonConfig successfully registered" : "تمّ بنجاحٍ تسجيل إعداد لبرنامج خفي DaemonConfig", + "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", - "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاحٍ", + "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", diff --git a/l10n/ar.json b/l10n/ar.json index 90ea367e..b3a715b3 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -93,7 +93,7 @@ "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", "Verify connection" : "تحقّق من الاتصال", - "Daemon connection successful" : "تمّ الاتصال بنجاحٍ مع البرنامج الخفي", + "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Registered Deploy daemons list" : "قائمة برامج النشر الخفية المسجلة", @@ -121,7 +121,7 @@ "Enabled" : "مُفعّل", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "التحقُّق مما إذا كان ExApp قد نجح في التعامل مع الحدث المُمكّن و قد تمّ تسجيل كل شيءٍ بالشكل الصحيح", "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", - "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاحٍ", + "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", @@ -129,7 +129,7 @@ "Select daemon configuration template" : "إختَر قالب تهيئة البرنامج الخفي", "Daemon registration form" : "نموذج تهيئة برنامج خفي", "Unique Deploy Daemon Name" : "الاسم الفريد للبرنامج الخفي للنشر", - "Display name" : "الاسم المعروض", + "Display name" : "اسم العرض", "Deployment method" : "طُرُق النشر", "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "Daemon host" : "مُضِيف البرنامج الخفي", @@ -161,9 +161,9 @@ "URL should start with http:// or https://" : "عناوين الوب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", - "DaemonConfig successfully registered" : "تمّ بنجاحٍ تسجيل إعداد لبرنامج خفي DaemonConfig", + "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", - "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاحٍ", + "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", diff --git a/l10n/sv.js b/l10n/sv.js index 6b86a3e5..185607e8 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -1,6 +1,8 @@ OC.L10N.register( "app_api", { + "External Apps" : "Externa appar", + "External Apps management" : "Hantering av externa appar", "Update to {version}" : "Uppdatera till {version}", "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", diff --git a/l10n/sv.json b/l10n/sv.json index 75b327bb..60ca2af4 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -1,4 +1,6 @@ { "translations": { + "External Apps" : "Externa appar", + "External Apps management" : "Hantering av externa appar", "Update to {version}" : "Uppdatera till {version}", "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", From 673d09540fa9c70ba3abd9ccc39403db25d1dbe9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 15 Oct 2024 00:27:06 +0000 Subject: [PATCH 011/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- l10n/cs.js | 43 +++++++++++++++++++++++++++++++++++++++++++ l10n/cs.json | 43 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 88 insertions(+), 2 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index a2146613..c0072ede 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -30,7 +30,7 @@ OC.L10N.register( "ExApp initialization process timeout after which AppAPI will mark it as failed" : "مُهلة بدء التطبيقات الخارجية ExApp حيث بعدها سيتعامل AppAPI معها كعملية فاشلة", "ExApp init timeout" : "مهلة بدء التطبيقات الخارجية ExApp", "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "حدِّد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادوم البرنامج الخفي ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادوم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المشرف", diff --git a/l10n/ar.json b/l10n/ar.json index b3a715b3..1e968227 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -28,7 +28,7 @@ "ExApp initialization process timeout after which AppAPI will mark it as failed" : "مُهلة بدء التطبيقات الخارجية ExApp حيث بعدها سيتعامل AppAPI معها كعملية فاشلة", "ExApp init timeout" : "مهلة بدء التطبيقات الخارجية ExApp", "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "حدِّد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادوم البرنامج الخفي ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادوم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المشرف", diff --git a/l10n/cs.js b/l10n/cs.js index 2e8f9a64..95457603 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -4,19 +4,31 @@ OC.L10N.register( "External Apps" : "Externí aplikace", "Daemon config not found" : "Nastavení pro proces služby nenalezeno", "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", + "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", + "ExApp not found, failed to get status" : "ExApp nenalezena, nepodařilo se získat stav", + "Could not perform installation of ExApp" : "Nebylo možné provést instalaci ExApp", "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", "Failed to disable ExApp" : "Nepodařil ose vypnout ExApp", "Could not update ExApp" : "Nepodařilo se zaktualizovat ExApp", "Error starting update of ExApp" : "Chyba při zahajování aktualizace ExApp", + "Could not perform update of ExApp" : "Nebylo možné provést aktualizaci ExApp", + "ExApp not found, failed to get logs" : "ExApp nenalezena, nepodařilo se získat záznamy událostí", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "Deploy Daemons" : "Nasadit procesy služeb", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Výchozí proces služby nasazování není dostupný. Ověřte její nastavení", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", + "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", @@ -32,6 +44,7 @@ OC.L10N.register( "User documentation" : "Dokumentace pro uživatele", "Admin documentation" : "Dokumentace pro správce", "Developer documentation" : "Dokumentace pro vývojáře", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", "{license}-licensed" : "licencováno pod {license}", "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", "Supported" : "Podporováno", @@ -39,6 +52,7 @@ OC.L10N.register( "Featured" : "Doporučené", "Update to {update}" : "Aktualizovat na {update}", "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", + "Default Deploy daemon is not accessible" : "Výchozí proces služby nasazování není dostupný", "Icon" : "Ikona", "Name" : "Název", "Version" : "Verze", @@ -47,20 +61,27 @@ OC.L10N.register( "Actions" : "Akce", "Results from other categories" : "Výsledky z ostatních kategorií", "No apps found" : "Nenalezeny žádné aplikace", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], "Deploy Daemon" : "Nasadit proces služby", "Type" : "Typ", "Display Name" : "Zobrazované jméno", "GPUs support" : "Podpora pro výpočty na GPU", + "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", + "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", + "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", "Cancel" : "Storno", "Delete" : "Smazat", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", + "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", "Protocol" : "Protokol", "Host" : "Hostitel", @@ -72,21 +93,34 @@ OC.L10N.register( "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", + "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register Daemon" : "Zaregistrovat proces služby", + "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", "More info" : "Další informace", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", "Remove test ExApp" : "Odebrat testovací ExApp", "Start Deploy test" : "Spustit zkoušku nasazení", "Stop Deploy test" : "Zastavit zkoušku nasazení", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", + "Check if the image is successfully pulled" : "Zkontrolovat zda je obraz úspěšně stažen", "Container started" : "Kontejner spuštěn", + "Check if the image successfully pulled and container is created and started" : "Zkontrolovat zda byl obraz úspěšně natažen a vytvořen a spuštěn kontejner", "Heartbeat" : "Kontrola stavu", + "Check for the heartbeat is finished and healthy" : "Kontrola funkčnosti v pořádku dokončena", "Init step" : "Inicializační krok", + "Wait for initialization step to finish" : "Vyčkejte na dokončení kroku inicializace", "Enabled" : "Zapnuto", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Zkontrolovat zda ExApp úspěšně zvládla zapnutou událost a zaregistrovala vše správně", + "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", + "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", @@ -104,6 +138,7 @@ OC.L10N.register( "Hide deploy config" : "Skrýt nastavení nasazení", "Network" : "Síť", "Docker network name" : "Název Docker sítě", + "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", @@ -116,10 +151,18 @@ OC.L10N.register( "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", + "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", + "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/cs.json b/l10n/cs.json index a86b81b5..7ecd7c23 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -2,19 +2,31 @@ "External Apps" : "Externí aplikace", "Daemon config not found" : "Nastavení pro proces služby nenalezeno", "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", + "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", + "ExApp not found, failed to get status" : "ExApp nenalezena, nepodařilo se získat stav", + "Could not perform installation of ExApp" : "Nebylo možné provést instalaci ExApp", "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", "Failed to disable ExApp" : "Nepodařil ose vypnout ExApp", "Could not update ExApp" : "Nepodařilo se zaktualizovat ExApp", "Error starting update of ExApp" : "Chyba při zahajování aktualizace ExApp", + "Could not perform update of ExApp" : "Nebylo možné provést aktualizaci ExApp", + "ExApp not found, failed to get logs" : "ExApp nenalezena, nepodařilo se získat záznamy událostí", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "Deploy Daemons" : "Nasadit procesy služeb", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Výchozí proces služby nasazování není dostupný. Ověřte její nastavení", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", + "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", @@ -30,6 +42,7 @@ "User documentation" : "Dokumentace pro uživatele", "Admin documentation" : "Dokumentace pro správce", "Developer documentation" : "Dokumentace pro vývojáře", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", "{license}-licensed" : "licencováno pod {license}", "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", "Supported" : "Podporováno", @@ -37,6 +50,7 @@ "Featured" : "Doporučené", "Update to {update}" : "Aktualizovat na {update}", "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", + "Default Deploy daemon is not accessible" : "Výchozí proces služby nasazování není dostupný", "Icon" : "Ikona", "Name" : "Název", "Version" : "Verze", @@ -45,20 +59,27 @@ "Actions" : "Akce", "Results from other categories" : "Výsledky z ostatních kategorií", "No apps found" : "Nenalezeny žádné aplikace", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], "Deploy Daemon" : "Nasadit proces služby", "Type" : "Typ", "Display Name" : "Zobrazované jméno", "GPUs support" : "Podpora pro výpočty na GPU", + "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", + "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", + "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", "Cancel" : "Storno", "Delete" : "Smazat", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", + "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", "Protocol" : "Protokol", "Host" : "Hostitel", @@ -70,21 +91,34 @@ "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", + "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register Daemon" : "Zaregistrovat proces služby", + "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", "More info" : "Další informace", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", "Remove test ExApp" : "Odebrat testovací ExApp", "Start Deploy test" : "Spustit zkoušku nasazení", "Stop Deploy test" : "Zastavit zkoušku nasazení", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", + "Check if the image is successfully pulled" : "Zkontrolovat zda je obraz úspěšně stažen", "Container started" : "Kontejner spuštěn", + "Check if the image successfully pulled and container is created and started" : "Zkontrolovat zda byl obraz úspěšně natažen a vytvořen a spuštěn kontejner", "Heartbeat" : "Kontrola stavu", + "Check for the heartbeat is finished and healthy" : "Kontrola funkčnosti v pořádku dokončena", "Init step" : "Inicializační krok", + "Wait for initialization step to finish" : "Vyčkejte na dokončení kroku inicializace", "Enabled" : "Zapnuto", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Zkontrolovat zda ExApp úspěšně zvládla zapnutou událost a zaregistrovala vše správně", + "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", + "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", @@ -102,6 +136,7 @@ "Hide deploy config" : "Skrýt nastavení nasazení", "Network" : "Síť", "Docker network name" : "Název Docker sítě", + "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", @@ -114,10 +149,18 @@ "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", + "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", + "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", From b4dddb49cb2f4ea90f34c433a07a342822fe925e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 16 Oct 2024 00:30:02 +0000 Subject: [PATCH 012/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 10 +++++----- l10n/ar.json | 10 +++++----- l10n/cs.js | 3 +++ l10n/cs.json | 3 +++ 4 files changed, 16 insertions(+), 10 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index c0072ede..48988e59 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -17,7 +17,7 @@ OC.L10N.register( "AppAPI authentication failed" : "فشل تصديق الهُويَّة في AppAPI", "AppAPI ExApp notifier" : "مُنبِّه واجهة AppAPI التطبيق الخارجي ExApp", "AppAPI" : "واجهة AppAPO", - "AI Integration Team" : "فريق مُكاملة الذكاء الاصطناعي", + "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزّز نكست كلاود خاصّتك باستعمال AppAPI وتطبيقاته المصممة خصيصًا.\n\nAppAPI هو مشروع ضمن نظام نكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات المبنية بأنواع متعددة من لغات البرمجة، لا تقتصر على PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### قائمة التطبيقات التي تتطلب AppAPI: \n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)- [SummarAI] (https://github.com/nextcloud/sumupbot)\nإذا كنت ترغب في تطوير تطبيق، فستسعدنا مساعدتك._ \n\n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع؛ مثلاً عبر: \n- ⭐ التقييم الإيجابي لمشروعنا على GitHub\n- ❗ إنشاء مشكلة أو طلب ميزة\n- 💁 حل مشكلة وإنشاء طلب سحب pull request\n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وقدرته على تحسين طريقة تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما نبدأ هذه الرحلة، ندعوكم بحرارة - أيها المطورون و الباحثون و المبدعون و أصحاب الرؤى - للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", @@ -30,7 +30,7 @@ OC.L10N.register( "ExApp initialization process timeout after which AppAPI will mark it as failed" : "مُهلة بدء التطبيقات الخارجية ExApp حيث بعدها سيتعامل AppAPI معها كعملية فاشلة", "ExApp init timeout" : "مهلة بدء التطبيقات الخارجية ExApp", "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادوم البرنامج الخفي ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المشرف", @@ -52,7 +52,7 @@ OC.L10N.register( "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", "Supported" : "مدعومٌ", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", - "Featured" : "مُميّزةٌ", + "Featured" : "مميزة", "Update to {update}" : "التحديث إلى {update}", "All ExApps are up-to-date." : "جميع التطبيقات الخارجية مُحدّثة حتى آخر إصدار.", "Default Deploy daemon is not accessible" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن.", @@ -175,7 +175,7 @@ OC.L10N.register( "Active apps" : "التطبيقات النشطة", "Disabled apps" : "التطبيقات المعطلة", "Updates" : "التحديثات", - "Featured apps" : "تطبيقات مُميّزة", + "Featured apps" : "تطبيقات مميزة", "Supported apps" : "التطبيقات المدعومة", "manual-install apps cannot be updated" : "التطبيقات المثبية يدويّاً لا يمكن تحديثها", "{progress}% Deploying" : "{progress}% في طور النشر", @@ -191,6 +191,6 @@ OC.L10N.register( "Your ExApps" : "تطبيقاتك الخارجية", "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. الاستمرار غير ممكنٍ.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", - "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادوم غير مستقر" + "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر" }, "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 1e968227..6a824d9e 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -15,7 +15,7 @@ "AppAPI authentication failed" : "فشل تصديق الهُويَّة في AppAPI", "AppAPI ExApp notifier" : "مُنبِّه واجهة AppAPI التطبيق الخارجي ExApp", "AppAPI" : "واجهة AppAPO", - "AI Integration Team" : "فريق مُكاملة الذكاء الاصطناعي", + "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزّز نكست كلاود خاصّتك باستعمال AppAPI وتطبيقاته المصممة خصيصًا.\n\nAppAPI هو مشروع ضمن نظام نكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات المبنية بأنواع متعددة من لغات البرمجة، لا تقتصر على PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### قائمة التطبيقات التي تتطلب AppAPI: \n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)- [SummarAI] (https://github.com/nextcloud/sumupbot)\nإذا كنت ترغب في تطوير تطبيق، فستسعدنا مساعدتك._ \n\n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع؛ مثلاً عبر: \n- ⭐ التقييم الإيجابي لمشروعنا على GitHub\n- ❗ إنشاء مشكلة أو طلب ميزة\n- 💁 حل مشكلة وإنشاء طلب سحب pull request\n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وقدرته على تحسين طريقة تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما نبدأ هذه الرحلة، ندعوكم بحرارة - أيها المطورون و الباحثون و المبدعون و أصحاب الرؤى - للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", @@ -28,7 +28,7 @@ "ExApp initialization process timeout after which AppAPI will mark it as failed" : "مُهلة بدء التطبيقات الخارجية ExApp حيث بعدها سيتعامل AppAPI معها كعملية فاشلة", "ExApp init timeout" : "مهلة بدء التطبيقات الخارجية ExApp", "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادوم البرنامج الخفي ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المشرف", @@ -50,7 +50,7 @@ "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", "Supported" : "مدعومٌ", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", - "Featured" : "مُميّزةٌ", + "Featured" : "مميزة", "Update to {update}" : "التحديث إلى {update}", "All ExApps are up-to-date." : "جميع التطبيقات الخارجية مُحدّثة حتى آخر إصدار.", "Default Deploy daemon is not accessible" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن.", @@ -173,7 +173,7 @@ "Active apps" : "التطبيقات النشطة", "Disabled apps" : "التطبيقات المعطلة", "Updates" : "التحديثات", - "Featured apps" : "تطبيقات مُميّزة", + "Featured apps" : "تطبيقات مميزة", "Supported apps" : "التطبيقات المدعومة", "manual-install apps cannot be updated" : "التطبيقات المثبية يدويّاً لا يمكن تحديثها", "{progress}% Deploying" : "{progress}% في طور النشر", @@ -189,6 +189,6 @@ "Your ExApps" : "تطبيقاتك الخارجية", "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. الاستمرار غير ممكنٍ.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", - "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادوم غير مستقر" + "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر" },"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/cs.js b/l10n/cs.js index 95457603..d39b7572 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -13,8 +13,10 @@ OC.L10N.register( "Error starting update of ExApp" : "Chyba při zahajování aktualizace ExApp", "Could not perform update of ExApp" : "Nebylo možné provést aktualizaci ExApp", "ExApp not found, failed to get logs" : "ExApp nenalezena, nepodařilo se získat záznamy událostí", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nepodařilo se získat záznamy událostí v kontejneru. Pozn.: Stahování docker kontejneru funguje pouze pro kontejnery s ovladačem zaznamenávání json-file nebo journald. Chyba: %s", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", + "AppAPI" : "AppAPI", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", @@ -99,6 +101,7 @@ OC.L10N.register( "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register Daemon" : "Zaregistrovat proces služby", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", "More info" : "Další informace", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", diff --git a/l10n/cs.json b/l10n/cs.json index 7ecd7c23..aa35a382 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -11,8 +11,10 @@ "Error starting update of ExApp" : "Chyba při zahajování aktualizace ExApp", "Could not perform update of ExApp" : "Nebylo možné provést aktualizaci ExApp", "ExApp not found, failed to get logs" : "ExApp nenalezena, nepodařilo se získat záznamy událostí", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nepodařilo se získat záznamy událostí v kontejneru. Pozn.: Stahování docker kontejneru funguje pouze pro kontejnery s ovladačem zaznamenávání json-file nebo journald. Chyba: %s", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", + "AppAPI" : "AppAPI", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", @@ -97,6 +99,7 @@ "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register Daemon" : "Zaregistrovat proces služby", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", "More info" : "Další informace", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", From 76cba0466190c99c38229caf6f9c40eb1eec53da Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 17 Oct 2024 00:27:49 +0000 Subject: [PATCH 013/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- l10n/eu.js | 2 ++ l10n/eu.json | 2 ++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 48988e59..d9f636ea 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -189,7 +189,7 @@ OC.L10N.register( "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "سيتم تنزيل التطبيق من متجر التطبيقات و سيتم نشره على البرنامج الخفي التلقائي للنشر", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود الخاص بك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", "Your ExApps" : "تطبيقاتك الخارجية", - "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. الاستمرار غير ممكنٍ.", + "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. لا يمكن الاستمرار.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر" }, diff --git a/l10n/ar.json b/l10n/ar.json index 6a824d9e..85cfa10b 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -187,7 +187,7 @@ "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "سيتم تنزيل التطبيق من متجر التطبيقات و سيتم نشره على البرنامج الخفي التلقائي للنشر", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود الخاص بك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", "Your ExApps" : "تطبيقاتك الخارجية", - "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. الاستمرار غير ممكنٍ.", + "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. لا يمكن الاستمرار.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر" },"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;" diff --git a/l10n/eu.js b/l10n/eu.js index 727804cb..d8421b16 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -10,12 +10,14 @@ OC.L10N.register( "Could not update ExApp" : "Ezin izan da ExApp eguneratu.", "Error starting update of ExApp" : "Errore bat gertatu da ExApp eguneratzean", "Could not perform update of ExApp" : "Ezin izan da ExApp-ren eguneraketa egin", + "ExApp not found, failed to get logs" : "Ez da ExApp aurkitu, ezin izan dira erregistroak lortu", "AppAPI authentication failed" : "AppAPI autentifikazioak huts egin du", "AppAPI ExApp notifier" : "AppAPI ExApp jakinarazlea", "AppAPI" : "AppAPI", "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", diff --git a/l10n/eu.json b/l10n/eu.json index 9ba06e89..9e3678da 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -8,12 +8,14 @@ "Could not update ExApp" : "Ezin izan da ExApp eguneratu.", "Error starting update of ExApp" : "Errore bat gertatu da ExApp eguneratzean", "Could not perform update of ExApp" : "Ezin izan da ExApp-ren eguneraketa egin", + "ExApp not found, failed to get logs" : "Ez da ExApp aurkitu, ezin izan dira erregistroak lortu", "AppAPI authentication failed" : "AppAPI autentifikazioak huts egin du", "AppAPI ExApp notifier" : "AppAPI ExApp jakinarazlea", "AppAPI" : "AppAPI", "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", From d4befaa10258b5e279eeeb97c87bf963125d497c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 20 Oct 2024 00:27:26 +0000 Subject: [PATCH 014/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 8f1eeed3..76222831 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -36,6 +36,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", + "GPUs support" : "GPU 支持", "Cancel" : "取消", "Delete" : "删除", "Edit" : "编辑", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index ae66d56b..0adfa9c0 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -34,6 +34,7 @@ "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", + "GPUs support" : "GPU 支持", "Cancel" : "取消", "Delete" : "删除", "Edit" : "编辑", From 79b20c764049197bf4e9dc3303a2aca00368bf6e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 21 Oct 2024 00:27:08 +0000 Subject: [PATCH 015/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_CN.js | 33 ++++++++++++++++++++++++++++----- l10n/zh_CN.json | 33 ++++++++++++++++++++++++++++----- 2 files changed, 56 insertions(+), 10 deletions(-) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 76222831..5822cf7c 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -1,27 +1,44 @@ OC.L10N.register( "app_api", { - "External Apps" : "外部程序", + "External Apps" : "外部应用", + "Daemon config not found" : "未找到守护进程配置", + "Error starting install of ExApp" : "开始安装外部应用时发生错误", "Failed to enable ExApp" : "无法启用外部程序", "Failed to disable ExApp" : "无法禁用外部程序", "Could not update ExApp" : "无法更新外部程序", + "AppAPI authentication failed" : "AppAPI 验证失败", "AppAPI ExApp notifier" : "AppAPI 外部程序通知", "AppAPI" : "AppAPI", + "AI Integration Team" : "AI 集成团队", + "ExApps Settings" : "外部应用设置", "Nextcloud AppAPI" : "Nextcloud AppAPI", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", + "Deploy Daemons" : "部署守护进程", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "ExApp init timeout (minutes)" : "外部应用初始化超时(分钟)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部应用初始化过程超时后,AppAPI 将其标记为已失败", + "ExApp init timeout" : "外部应用初始化超时", + "ExApp container restart policy" : "外部应用容器重启策略", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", + "External Apps management" : "外部应用管理", + "Admin options saved" : "已保存管理员选项", + "Failed to save admin options" : "保存管理员选项失败", "Update to {version}" : "更新至 {version}", "Remove" : "移除", + "Delete data on remove" : "移除时删除数据", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本。可能会在将来出现问题。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本。可能会在将来出现问题。", "This app cannot be installed because the following dependencies are not fulfilled:" : "无法安装应用,因为无法满足下列依赖:", "View in store" : "在商店中查看", "Visit website" : "访问网站", - "Report a bug" : "报告问题", - "User documentation" : "使用者文档", + "Report a bug" : "报告 Bug", + "User documentation" : "用户文档", "Admin documentation" : "管理员文档", "Developer documentation" : "开发者文档", "{license}-licensed" : "{license}-许可协议", - "This app is supported via your current Nextcloud subscription." : "根据您的 Nextcloud 订阅,此应用受到支持。", + "This app is supported via your current Nextcloud subscription." : "根据你当前的 Nextcloud 订阅,此应用受到支持。", "Supported" : "受支持", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "特色应用由社区并在社区内开发。 它们提供了中心功能,并准备投入生产使用。", "Featured" : "精选", @@ -42,8 +59,14 @@ OC.L10N.register( "Edit" : "编辑", "Host" : "主机", "Nextcloud URL" : "Nextcloud URL ", + "Registered Deploy daemons list" : "已注册的部署守护进程列表", + "No Deploy daemons configured" : "没有部署守护进程配置", + "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", + "Register Daemon" : "注册守护进程", "Enabled" : "已启用", - "Display name" : "显示用户名", + "Register Deploy Daemon" : "注册部署守护进程", + "Display name" : "显示名称", + "Deployment method" : "部署方式", "Network" : "网络", "Confirm" : "确认", "Save" : "保存", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 0adfa9c0..94eeea59 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -1,25 +1,42 @@ { "translations": { - "External Apps" : "外部程序", + "External Apps" : "外部应用", + "Daemon config not found" : "未找到守护进程配置", + "Error starting install of ExApp" : "开始安装外部应用时发生错误", "Failed to enable ExApp" : "无法启用外部程序", "Failed to disable ExApp" : "无法禁用外部程序", "Could not update ExApp" : "无法更新外部程序", + "AppAPI authentication failed" : "AppAPI 验证失败", "AppAPI ExApp notifier" : "AppAPI 外部程序通知", "AppAPI" : "AppAPI", + "AI Integration Team" : "AI 集成团队", + "ExApps Settings" : "外部应用设置", "Nextcloud AppAPI" : "Nextcloud AppAPI", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", + "Deploy Daemons" : "部署守护进程", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "ExApp init timeout (minutes)" : "外部应用初始化超时(分钟)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部应用初始化过程超时后,AppAPI 将其标记为已失败", + "ExApp init timeout" : "外部应用初始化超时", + "ExApp container restart policy" : "外部应用容器重启策略", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", + "External Apps management" : "外部应用管理", + "Admin options saved" : "已保存管理员选项", + "Failed to save admin options" : "保存管理员选项失败", "Update to {version}" : "更新至 {version}", "Remove" : "移除", + "Delete data on remove" : "移除时删除数据", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本。可能会在将来出现问题。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本。可能会在将来出现问题。", "This app cannot be installed because the following dependencies are not fulfilled:" : "无法安装应用,因为无法满足下列依赖:", "View in store" : "在商店中查看", "Visit website" : "访问网站", - "Report a bug" : "报告问题", - "User documentation" : "使用者文档", + "Report a bug" : "报告 Bug", + "User documentation" : "用户文档", "Admin documentation" : "管理员文档", "Developer documentation" : "开发者文档", "{license}-licensed" : "{license}-许可协议", - "This app is supported via your current Nextcloud subscription." : "根据您的 Nextcloud 订阅,此应用受到支持。", + "This app is supported via your current Nextcloud subscription." : "根据你当前的 Nextcloud 订阅,此应用受到支持。", "Supported" : "受支持", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "特色应用由社区并在社区内开发。 它们提供了中心功能,并准备投入生产使用。", "Featured" : "精选", @@ -40,8 +57,14 @@ "Edit" : "编辑", "Host" : "主机", "Nextcloud URL" : "Nextcloud URL ", + "Registered Deploy daemons list" : "已注册的部署守护进程列表", + "No Deploy daemons configured" : "没有部署守护进程配置", + "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", + "Register Daemon" : "注册守护进程", "Enabled" : "已启用", - "Display name" : "显示用户名", + "Register Deploy Daemon" : "注册部署守护进程", + "Display name" : "显示名称", + "Deployment method" : "部署方式", "Network" : "网络", "Confirm" : "确认", "Save" : "保存", From dc1d24888e6f18f72a21675ce70b617f2914e119 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 23 Oct 2024 00:33:34 +0000 Subject: [PATCH 016/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++ l10n/fr.json | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 176 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index 8dfc16e1..30facc1f 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -2,13 +2,41 @@ OC.L10N.register( "app_api", { "External Apps" : "Applications externes", + "Daemon config not found" : "Daemon configuration introuvable", + "Error starting install of ExApp" : "Erreur lors du démarrage de l'installation d'ExApp", + "ExApp failed to register, check the NC logs" : "ExApp n'a pas réussi à s'inscrire, vérifiez les logs NC", + "ExApp not found, failed to get status" : "ExApp introuvable, échec d'obtention du statut", + "Could not perform installation of ExApp" : "Impossible d'effectuer l'installation d'ExApp", + "Failed to enable ExApp" : "Échec de l'activation d'ExApp", + "Failed to disable ExApp" : "Échec de la désactivation d'ExApp", + "Could not update ExApp" : "Impossible de mettre à jour ExApp", + "Error starting update of ExApp" : "Erreur lors du démarrage de la mise à jour d'ExApp", + "Could not perform update of ExApp" : "Impossible d'effectuer la mise à jour d'ExApp", + "ExApp not found, failed to get logs" : "ExApp introuvable, échec d'obtention des logs", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Échec de l'obtention des journaux du conteneur. Remarque: Le téléchargement du conteneur Docker fonctionne uniquement pour les conteneurs dotés du pilote de journalisation json-file ou journald. Erreur: %s", "AppAPI authentication failed" : "Échec de l'authentification AppAPI", + "AppAPI ExApp notifier" : "Notificateur AppAPI ExApp", "AppAPI" : "AppAPI", + "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", + "Deploy Daemons" : "Déployer Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Le Daemon de déploiement par défaut n'est pas accessible. Veuillez vérifier sa configuration", + "ExApp init timeout (minutes)" : "Temp initial d'ExApp (minutes)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Délai d'expiration du processus d'initialisation ExApp, après quoi AppAPI le marquera comme ayant échoué", + "ExApp init timeout" : "ExApp initialisation expirer", + "ExApp container restart policy" : "Politique de redémarrage du conteneur ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", + "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", + "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", + "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", "Update to {version}" : "Mettre à jour vers {version}", "Remove" : "Retirer", + "Delete data on remove" : "Suppression des données retirer", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", @@ -18,12 +46,15 @@ OC.L10N.register( "User documentation" : "Documentation utilisateur", "Admin documentation" : "Documentation administrateur", "Developer documentation" : "Documentation développeurs", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", "{license}-licensed" : "Sous licence {license}", "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", "Supported" : "Prise en charge", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", "Featured" : "En vedette", "Update to {update}" : "Mettre à jour vers {update}", + "All ExApps are up-to-date." : "Tous les ExApps sont à jour.", + "Default Deploy daemon is not accessible" : "Le service de déploiement par défaut n'est pas accessible", "Icon" : "Icône", "Name" : "Nom", "Version" : "Version", @@ -38,38 +69,92 @@ OC.L10N.register( "Type" : "Type", "Display Name" : "Nom affiché", "GPUs support" : "Prise en charge des cartes graphiques", + "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", + "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", + "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", "Cancel" : "Annuler", "Delete" : "Supprimer", "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", + "Test deploy" : "Tester le déploiement", "Edit" : "Modifier", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", + "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", "Password confirmation failed" : "Échec de la confirmation du mot de passe", + "Deploy daemon config details" : "Déployer les détails de la configuration du service", + "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", + "ExApps installed" : "ExApps installés", "Protocol" : "Protocole", "Host" : "Hôte", + "Deploy config" : "Déployer la configuration", "Docker network" : "Réseau Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", + "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", + "No Deploy daemons configured" : "Aucun service de déploiement configuré", + "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", + "Register Daemon" : "Inscrire Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", "More info" : "Plus d'informations", + "Download ExApp logs" : "Télécharger les logs d'ExApp", + "Remove test ExApp" : "Supprimer le test ExApp", + "Start Deploy test" : "Démarrer le test de déploiement", + "Stop Deploy test" : "Arrêt du test de déploiement", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Register ExApp in Nextcloud" : "Enregistrez ExApp dans Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Vérifiez si l'ExApp est enregistré dans Nextcloud avant le déploiement", + "Image pull" : "Extraction d'image", + "Check if the image is successfully pulled" : "Vérifiez si l'image est extraite avec succès", + "Container started" : "Conteneur démarré", + "Check if the image successfully pulled and container is created and started" : "Vérifiez si l'image a été extraite avec succès et si le conteneur est créé et démarré", + "Heartbeat" : "Pulsation", + "Check for the heartbeat is finished and healthy" : "Vérifiez que le rythme cardiaque est fini et sain", + "Init step" : "Étape d'initialisation", + "Wait for initialization step to finish" : "Attendez la fin de l'étape d'initialisation", "Enabled" : "Activé", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Vérifiez si ExApp a géré avec succès l'événement activé et a enregistré tous les éléments correctement", + "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", + "Deploy test passed successfully!" : "Test de déploiement réussi!", + "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", + "Edit Deploy Daemon" : "Modifier le déploiement Daemon", + "Register Deploy Daemon" : "Enregistrer le service de déploiement", + "Daemon configuration template" : "Modèle de configuration de Daemon", + "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", "Daemon host" : "Hôte du Deamon", "Set as default daemon" : "Définir ce deamon par défaut", "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", + "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", + "Option key (unique)" : "Clé d'option (unique)", + "Option key (unique, e.g. my_key)" : "Clé d'option (unique, par exemple my_key)", + "Option key is required" : "L'option clé est requise", + "Option value" : "Valeur d'options", + "Option value is required" : "Valeur d'option requise", "Confirm" : "Confirmer", "Save" : "Enregistrer", "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", + "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", + "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", + "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", + "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", + "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", @@ -81,12 +166,15 @@ OC.L10N.register( "Featured apps" : "Applications en vedette", "Supported apps" : "Applications supportées", "manual-install apps cannot be updated" : "les applications installées manuellement ne peuvent pas être mises à jour", + "{progress}% Deploying" : "{progress}% de déploiement", "{progress}% Initializing" : "{progress}% Initialisation", "Healthchecking" : "Vérification de l'état", "Deploy and Enable" : "Déployer et Activer", "Enable" : "Activer", "Disable" : "Désactiver", "Allow untested app" : "Autoriser l'application non testée", + "Default Deploy daemon is not accessible. Please verify configuration" : "Le service de déploiement par défaut n’est pas accessible. Veuillez vérifier la configuration", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "L'application sera téléchargée depuis l'App Store et déployée sur le Daemon de déploiement par défaut.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Cette application n'est pas indiquée comme étant compatible avec votre version de Nextcloud. Si vous continuez vous pourrez toujours installer l'app. Notez cependant qu'elle pourrait ne pas fonctionner comme prévu.", "Your ExApps" : "Vos ExApps", "An error occurred during the request. Unable to proceed." : "Une erreur s’est produite pendant la demande. Impossible de poursuivre.", diff --git a/l10n/fr.json b/l10n/fr.json index 53e8f193..891f2f72 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -1,12 +1,40 @@ { "translations": { "External Apps" : "Applications externes", + "Daemon config not found" : "Daemon configuration introuvable", + "Error starting install of ExApp" : "Erreur lors du démarrage de l'installation d'ExApp", + "ExApp failed to register, check the NC logs" : "ExApp n'a pas réussi à s'inscrire, vérifiez les logs NC", + "ExApp not found, failed to get status" : "ExApp introuvable, échec d'obtention du statut", + "Could not perform installation of ExApp" : "Impossible d'effectuer l'installation d'ExApp", + "Failed to enable ExApp" : "Échec de l'activation d'ExApp", + "Failed to disable ExApp" : "Échec de la désactivation d'ExApp", + "Could not update ExApp" : "Impossible de mettre à jour ExApp", + "Error starting update of ExApp" : "Erreur lors du démarrage de la mise à jour d'ExApp", + "Could not perform update of ExApp" : "Impossible d'effectuer la mise à jour d'ExApp", + "ExApp not found, failed to get logs" : "ExApp introuvable, échec d'obtention des logs", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Échec de l'obtention des journaux du conteneur. Remarque: Le téléchargement du conteneur Docker fonctionne uniquement pour les conteneurs dotés du pilote de journalisation json-file ou journald. Erreur: %s", "AppAPI authentication failed" : "Échec de l'authentification AppAPI", + "AppAPI ExApp notifier" : "Notificateur AppAPI ExApp", "AppAPI" : "AppAPI", + "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", + "Deploy Daemons" : "Déployer Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Le Daemon de déploiement par défaut n'est pas accessible. Veuillez vérifier sa configuration", + "ExApp init timeout (minutes)" : "Temp initial d'ExApp (minutes)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Délai d'expiration du processus d'initialisation ExApp, après quoi AppAPI le marquera comme ayant échoué", + "ExApp init timeout" : "ExApp initialisation expirer", + "ExApp container restart policy" : "Politique de redémarrage du conteneur ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", + "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", + "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", + "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", "Update to {version}" : "Mettre à jour vers {version}", "Remove" : "Retirer", + "Delete data on remove" : "Suppression des données retirer", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", @@ -16,12 +44,15 @@ "User documentation" : "Documentation utilisateur", "Admin documentation" : "Documentation administrateur", "Developer documentation" : "Documentation développeurs", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", "{license}-licensed" : "Sous licence {license}", "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", "Supported" : "Prise en charge", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", "Featured" : "En vedette", "Update to {update}" : "Mettre à jour vers {update}", + "All ExApps are up-to-date." : "Tous les ExApps sont à jour.", + "Default Deploy daemon is not accessible" : "Le service de déploiement par défaut n'est pas accessible", "Icon" : "Icône", "Name" : "Nom", "Version" : "Version", @@ -36,38 +67,92 @@ "Type" : "Type", "Display Name" : "Nom affiché", "GPUs support" : "Prise en charge des cartes graphiques", + "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", + "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", + "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", "Cancel" : "Annuler", "Delete" : "Supprimer", "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", + "Test deploy" : "Tester le déploiement", "Edit" : "Modifier", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", + "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", "Password confirmation failed" : "Échec de la confirmation du mot de passe", + "Deploy daemon config details" : "Déployer les détails de la configuration du service", + "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", + "ExApps installed" : "ExApps installés", "Protocol" : "Protocole", "Host" : "Hôte", + "Deploy config" : "Déployer la configuration", "Docker network" : "Réseau Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", + "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", + "No Deploy daemons configured" : "Aucun service de déploiement configuré", + "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", + "Register Daemon" : "Inscrire Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", "More info" : "Plus d'informations", + "Download ExApp logs" : "Télécharger les logs d'ExApp", + "Remove test ExApp" : "Supprimer le test ExApp", + "Start Deploy test" : "Démarrer le test de déploiement", + "Stop Deploy test" : "Arrêt du test de déploiement", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Register ExApp in Nextcloud" : "Enregistrez ExApp dans Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Vérifiez si l'ExApp est enregistré dans Nextcloud avant le déploiement", + "Image pull" : "Extraction d'image", + "Check if the image is successfully pulled" : "Vérifiez si l'image est extraite avec succès", + "Container started" : "Conteneur démarré", + "Check if the image successfully pulled and container is created and started" : "Vérifiez si l'image a été extraite avec succès et si le conteneur est créé et démarré", + "Heartbeat" : "Pulsation", + "Check for the heartbeat is finished and healthy" : "Vérifiez que le rythme cardiaque est fini et sain", + "Init step" : "Étape d'initialisation", + "Wait for initialization step to finish" : "Attendez la fin de l'étape d'initialisation", "Enabled" : "Activé", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Vérifiez si ExApp a géré avec succès l'événement activé et a enregistré tous les éléments correctement", + "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", + "Deploy test passed successfully!" : "Test de déploiement réussi!", + "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", + "Edit Deploy Daemon" : "Modifier le déploiement Daemon", + "Register Deploy Daemon" : "Enregistrer le service de déploiement", + "Daemon configuration template" : "Modèle de configuration de Daemon", + "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", "Daemon host" : "Hôte du Deamon", "Set as default daemon" : "Définir ce deamon par défaut", "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", + "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", + "Option key (unique)" : "Clé d'option (unique)", + "Option key (unique, e.g. my_key)" : "Clé d'option (unique, par exemple my_key)", + "Option key is required" : "L'option clé est requise", + "Option value" : "Valeur d'options", + "Option value is required" : "Valeur d'option requise", "Confirm" : "Confirmer", "Save" : "Enregistrer", "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", + "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", + "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", + "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", + "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", + "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", @@ -79,12 +164,15 @@ "Featured apps" : "Applications en vedette", "Supported apps" : "Applications supportées", "manual-install apps cannot be updated" : "les applications installées manuellement ne peuvent pas être mises à jour", + "{progress}% Deploying" : "{progress}% de déploiement", "{progress}% Initializing" : "{progress}% Initialisation", "Healthchecking" : "Vérification de l'état", "Deploy and Enable" : "Déployer et Activer", "Enable" : "Activer", "Disable" : "Désactiver", "Allow untested app" : "Autoriser l'application non testée", + "Default Deploy daemon is not accessible. Please verify configuration" : "Le service de déploiement par défaut n’est pas accessible. Veuillez vérifier la configuration", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "L'application sera téléchargée depuis l'App Store et déployée sur le Daemon de déploiement par défaut.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Cette application n'est pas indiquée comme étant compatible avec votre version de Nextcloud. Si vous continuez vous pourrez toujours installer l'app. Notez cependant qu'elle pourrait ne pas fonctionner comme prévu.", "Your ExApps" : "Vos ExApps", "An error occurred during the request. Unable to proceed." : "Une erreur s’est produite pendant la demande. Impossible de poursuivre.", From bff8dcb1127bdffca9421b997aeb6077ec992ece Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 24 Oct 2024 00:27:19 +0000 Subject: [PATCH 017/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 10 +++++----- l10n/ar.json | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index d9f636ea..0c06fbe3 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -33,8 +33,8 @@ OC.L10N.register( "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "External Apps management" : "إدارة التطبيقات الخارجية", - "Admin options saved" : "تمّ حفظ خيارات المشرف", - "Failed to save admin options" : "تعذّر حفظ خيارات المشرف", + "Admin options saved" : "تمّ حفظ خيارات المدير", + "Failed to save admin options" : "تعذّر حفظ خيارات المدير", "Update to {version}" : "التحديث إلى {version}", "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", @@ -45,7 +45,7 @@ OC.L10N.register( "Visit website" : "زيارة الموقع", "Report a bug" : "الإبلاغ عن خطإٍ", "User documentation" : "دليل المستخدم", - "Admin documentation" : "دليل المُشرِف", + "Admin documentation" : "دليل المدير", "Developer documentation" : "دليل المُطوّر", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", "{license}-licensed" : "{license} مُرخّصٌ", @@ -67,7 +67,7 @@ OC.L10N.register( "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], "Deploy Daemon" : "نشر البرنامج الخفي", - "Type" : "حسب النوع", + "Type" : "النوع", "Display Name" : "إسم العرض", "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", @@ -80,7 +80,7 @@ OC.L10N.register( "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", - "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المشرف. راجع سجل الحركات", + "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", diff --git a/l10n/ar.json b/l10n/ar.json index 85cfa10b..ea16f516 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -31,8 +31,8 @@ "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "External Apps management" : "إدارة التطبيقات الخارجية", - "Admin options saved" : "تمّ حفظ خيارات المشرف", - "Failed to save admin options" : "تعذّر حفظ خيارات المشرف", + "Admin options saved" : "تمّ حفظ خيارات المدير", + "Failed to save admin options" : "تعذّر حفظ خيارات المدير", "Update to {version}" : "التحديث إلى {version}", "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", @@ -43,7 +43,7 @@ "Visit website" : "زيارة الموقع", "Report a bug" : "الإبلاغ عن خطإٍ", "User documentation" : "دليل المستخدم", - "Admin documentation" : "دليل المُشرِف", + "Admin documentation" : "دليل المدير", "Developer documentation" : "دليل المُطوّر", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", "{license}-licensed" : "{license} مُرخّصٌ", @@ -65,7 +65,7 @@ "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], "Deploy Daemon" : "نشر البرنامج الخفي", - "Type" : "حسب النوع", + "Type" : "النوع", "Display Name" : "إسم العرض", "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", @@ -78,7 +78,7 @@ "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", - "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المشرف. راجع سجل الحركات", + "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", From 72ba228124f420ac00ebcd5bfdfff548bb7dcb77 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 26 Oct 2024 00:27:02 +0000 Subject: [PATCH 018/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 0c06fbe3..80608d17 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -160,7 +160,7 @@ OC.L10N.register( "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", - "URL should start with http:// or https://" : "عناوين الوب يجب أن تبدأ بـ http:// أو بـ https://", + "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", diff --git a/l10n/ar.json b/l10n/ar.json index ea16f516..77a474de 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -158,7 +158,7 @@ "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", - "URL should start with http:// or https://" : "عناوين الوب يجب أن تبدأ بـ http:// أو بـ https://", + "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", From 6201c83fcd5120a78a0d72e7ef0f05b84050e0f3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 27 Oct 2024 00:29:23 +0000 Subject: [PATCH 019/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 1 + l10n/fr.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index 30facc1f..be725535 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -94,6 +94,7 @@ OC.L10N.register( "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", "No Deploy daemons configured" : "Aucun service de déploiement configuré", diff --git a/l10n/fr.json b/l10n/fr.json index 891f2f72..28c51135 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -92,6 +92,7 @@ "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", "No Deploy daemons configured" : "Aucun service de déploiement configuré", From 4265bcfcd4f64a9cf83340c7a123833670058bb3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 28 Oct 2024 00:27:10 +0000 Subject: [PATCH 020/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 3 +++ l10n/fr.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index be725535..ab708bab 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -135,6 +136,7 @@ OC.L10N.register( "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", + "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", @@ -146,6 +148,7 @@ OC.L10N.register( "Save" : "Enregistrer", "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", + "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", diff --git a/l10n/fr.json b/l10n/fr.json index 28c51135..791cd7cd 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -18,6 +18,7 @@ "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -133,6 +134,7 @@ "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", + "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", @@ -144,6 +146,7 @@ "Save" : "Enregistrer", "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", + "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", From 3ddcd2ab0a0ab9ee0359d77223717a49f1b3ac2d Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:56:31 +0300 Subject: [PATCH 021/244] fix(CI-stable29): updating tests (#427) Manual backport with adjustments of https://github.com/nextcloud/app_api/pull/426 Signed-off-by: Alexander Piskun --- .github/workflows/docs-check.yml | 23 ---- .github/workflows/docs.yml | 44 ------- .github/workflows/tests-deploy.yml | 175 +++++++++++++--------------- .github/workflows/tests-special.yml | 3 +- .github/workflows/tests.yml | 59 +++------- tests/test_occ_commands_docker.py | 26 ++--- 6 files changed, 116 insertions(+), 214 deletions(-) delete mode 100644 .github/workflows/docs-check.yml delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml deleted file mode 100644 index 113c8588..00000000 --- a/.github/workflows/docs-check.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Docs check -on: - pull_request: - -permissions: - contents: read - -jobs: - build_docs: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - - name: Install Docs dependencies - run: python3 -m pip install -r docs/requirements.txt - - - name: Build and push Docs - run: | - make html SPHINXOPTS="-W" diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 9c83d026..00000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Docs -on: - push: - branches: [ main ] - paths: - - '.github/workflows/docs.yml' - - 'docs/**' - -permissions: - contents: read - -jobs: - build_push_docs: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - - name: Install Docs dependencies - run: python3 -m pip install -r docs/requirements.txt - - - name: Build and push Docs - run: | - export CHANGES_DATE=`date -d"@$(git log -1 --pretty=%ct)" --iso-8601=seconds` - make html - git config --global user.name bigcat88 - git config --global user.email "bigcat88@users.noreply.github.com" - docroot=`mktemp -d` - rsync -av "docs/_build/html/" "${docroot}/" - pushd "${docroot}" - git init - git remote add deploy "https://token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" - git checkout -b gh-pages - touch .nojekyll - git add . - msg="Docs: commit ${GITHUB_SHA} made on ${CHANGES_DATE} from ${GITHUB_REF} by ${GITHUB_ACTOR}" - git commit -am "${msg}" - git push deploy gh-pages --force - popd - env: - GITHUB_TOKEN: ${{ secrets.TOKEN_DOCS }} diff --git a/.github/workflows/tests-deploy.yml b/.github/workflows/tests-deploy.yml index 5b597a7a..14b02284 100644 --- a/.github/workflows/tests-deploy.yml +++ b/.github/workflows/tests-deploy.yml @@ -5,7 +5,6 @@ on: branches: [stable29] push: branches: [stable29] - workflow_dispatch: permissions: contents: read @@ -17,15 +16,7 @@ concurrency: jobs: nc-host-app-docker: runs-on: ubuntu-22.04 - name: NC In Host • ${{ matrix.server-version }} • 🐘${{ matrix.php-version }} - strategy: - fail-fast: false - matrix: - php-version: [ '8.1' ] - server-version: [ 'stable28' ] - include: - - server-version: "stable29" - php-version: "8.2" + name: NC In Host • 🐘8.2 services: postgres: @@ -47,17 +38,17 @@ jobs: with: submodules: true repository: nextcloud/server - ref: ${{ matrix.server-version }} + ref: 'stable29' - name: Checkout AppAPI uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: path: apps/${{ env.APP_NAME }} - - name: Set up php ${{ matrix.php-version }} + - name: Set up php uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2 with: - php-version: ${{ matrix.php-version }} + php-version: 8.2 extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, pgsql, pdo_pgsql coverage: none ini-file: development @@ -93,25 +84,25 @@ jobs: run: | PHP_CLI_SERVER_WORKERS=2 php -S 127.0.0.1:8080 & ./occ app_api:daemon:register docker_local_sock Docker docker-install http /var/run/docker.sock http://127.0.0.1:8080/index.php - ./occ app_api:app:register skeleton docker_local_sock \ - --info-xml https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml - ./occ app_api:app:enable skeleton - ./occ app_api:app:disable skeleton + ./occ app_api:app:register app-skeleton-python docker_local_sock \ + --info-xml https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml + ./occ app_api:app:enable app-skeleton-python + ./occ app_api:app:disable app-skeleton-python - name: Check logs run: | - grep -q 'Hello from skeleton :)' data/nextcloud.log || error - grep -q 'Bye bye from skeleton :(' data/nextcloud.log || error + grep -q 'Hello from app-skeleton-python :)' data/nextcloud.log || error + grep -q 'Bye bye from app-skeleton-python :(' data/nextcloud.log || error - name: Save container info & logs if: always() run: | - docker inspect nc_app_skeleton | json_pp > container.json - docker logs nc_app_skeleton > container.log 2>&1 + docker inspect nc_app_app-skeleton-python | json_pp > container.json + docker logs nc_app_app-skeleton-python > container.log 2>&1 - name: Unregister Skeleton & Daemon run: | - ./occ app_api:app:unregister skeleton + ./occ app_api:app:unregister app-skeleton-python ./occ app_api:daemon:unregister docker_local_sock - name: Test OCC commands(docker) @@ -121,7 +112,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_app_docker_${{ matrix.server-version }}_${{ matrix.php-version }}_container.json + name: nc_host_app_docker_container.json path: container.json if-no-files-found: warn @@ -129,7 +120,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_app_docker_${{ matrix.server-version }}_${{ matrix.php-version }}_container.log + name: nc_host_app_docker_container.log path: container.log if-no-files-found: warn @@ -137,7 +128,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_app_docker_${{ matrix.server-version }}_${{ matrix.php-version }}_nextcloud.log + name: nc_host_app_docker_nextcloud.log path: data/nextcloud.log if-no-files-found: warn @@ -145,7 +136,7 @@ jobs: runs-on: ubuntu-22.04 name: NC In Julius Docker • 🐘8.1 env: - docker-image: ghcr.io/juliushaertl/nextcloud-dev-php81:20231202-1 + docker-image: ghcr.io/juliusknorr/nextcloud-dev-php81:20231202-1 steps: - name: Set app env @@ -154,13 +145,13 @@ jobs: - name: Create container run: | docker network create master_bridge - docker run --net master_bridge --name nextcloud --rm -d -v /var/run/docker.sock:/var/run/docker.sock -e SERVER_BRANCH=stable29 ${{ env.docker-image }} + docker run --net master_bridge --name nextcloud --rm -e SERVER_BRANCH=stable29 -d -v /var/run/docker.sock:/var/run/docker.sock ${{ env.docker-image }} sudo chmod 766 /var/run/docker.sock sleep 120s - name: Install AppAPI run: | - docker exec -w /var/www/html/apps nextcloud git clone https://github.com/cloud-py-api/${{ env.APP_NAME }}.git + docker exec -w /var/www/html/apps nextcloud git clone --branch stable29 https://github.com/nextcloud/${{ env.APP_NAME }}.git docker exec -w /var/www/html/apps/${{ env.APP_NAME }} nextcloud git fetch origin $GITHUB_REF docker exec -w /var/www/html/apps/${{ env.APP_NAME }} nextcloud git checkout FETCH_HEAD docker exec nextcloud sudo -u www-data php occ app:enable app_api @@ -168,10 +159,10 @@ jobs: docker_local_sock Docker docker-install http /var/run/docker.sock http://nextcloud/index.php \ --net=master_bridge docker exec nextcloud sudo -u www-data php occ app_api:daemon:list - docker exec nextcloud sudo -u www-data php occ app_api:app:register skeleton docker_local_sock \ - --info-xml https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml - docker exec nextcloud sudo -u www-data php occ app_api:app:enable skeleton - docker exec nextcloud sudo -u www-data php occ app_api:app:disable skeleton + docker exec nextcloud sudo -u www-data php occ app_api:app:register app-skeleton-python docker_local_sock \ + --info-xml https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml + docker exec nextcloud sudo -u www-data php occ app_api:app:enable app-skeleton-python + docker exec nextcloud sudo -u www-data php occ app_api:app:disable app-skeleton-python - name: Copy NC log to host if: always() @@ -179,18 +170,18 @@ jobs: - name: Check logs run: | - grep -q 'Hello from skeleton :)' nextcloud.log || error - grep -q 'Bye bye from skeleton :(' nextcloud.log || error + grep -q 'Hello from app-skeleton-python :)' nextcloud.log || error + grep -q 'Bye bye from app-skeleton-python :(' nextcloud.log || error - name: Save container info & logs if: always() run: | - docker inspect nc_app_skeleton | json_pp > container.json - docker logs nc_app_skeleton > container.log 2>&1 + docker inspect nc_app_app-skeleton-python | json_pp > container.json + docker logs nc_app_app-skeleton-python > container.log 2>&1 - name: Unregister Skeleton & Daemon run: | - docker exec nextcloud sudo -u www-data php occ app_api:app:unregister skeleton + docker exec nextcloud sudo -u www-data php occ app_api:app:unregister app-skeleton-python docker exec nextcloud sudo -u www-data php occ app_api:daemon:unregister docker_local_sock - name: Upload Container info @@ -221,7 +212,7 @@ jobs: runs-on: ubuntu-22.04 name: NC In Julius Docker(DSP-HTTP) • 🐘8.1 env: - docker-image: ghcr.io/juliushaertl/nextcloud-dev-php81:20231202-1 + docker-image: ghcr.io/juliusknorr/nextcloud-dev-php81:20231202-1 steps: - name: Set app env @@ -233,13 +224,13 @@ jobs: docker run -v /var/run/docker.sock:/var/run/docker.sock \ -e NC_HAPROXY_PASSWORD="some_secure_password" \ --net master_bridge --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp \ - --privileged -d ghcr.io/cloud-py-api/nextcloud-appapi-dsp:latest - docker run --net master_bridge --name nextcloud --rm -d -e SERVER_BRANCH=stable29 ${{ env.docker-image }} + --privileged -d ghcr.io/nextcloud/nextcloud-appapi-dsp:latest + docker run --net master_bridge --name nextcloud --rm -e SERVER_BRANCH=stable29 -d ${{ env.docker-image }} sleep 60s - name: Install AppAPI run: | - docker exec -w /var/www/html/apps nextcloud git clone https://github.com/cloud-py-api/${{ env.APP_NAME }}.git + docker exec -w /var/www/html/apps nextcloud git clone --branch stable29 https://github.com/nextcloud/${{ env.APP_NAME }}.git docker exec -w /var/www/html/apps/${{ env.APP_NAME }} nextcloud git fetch origin $GITHUB_REF docker exec -w /var/www/html/apps/${{ env.APP_NAME }} nextcloud git checkout FETCH_HEAD docker exec nextcloud sudo -u www-data php occ app:enable app_api @@ -247,10 +238,10 @@ jobs: docker_by_port Docker docker-install http nextcloud-appapi-dsp:2375 http://nextcloud/index.php \ --net=master_bridge --haproxy_password=some_secure_password docker exec nextcloud sudo -u www-data php occ app_api:daemon:list - docker exec nextcloud sudo -u www-data php occ app_api:app:register skeleton docker_by_port \ - --info-xml https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml - docker exec nextcloud sudo -u www-data php occ app_api:app:enable skeleton - docker exec nextcloud sudo -u www-data php occ app_api:app:disable skeleton + docker exec nextcloud sudo -u www-data php occ app_api:app:register app-skeleton-python docker_by_port \ + --info-xml https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml + docker exec nextcloud sudo -u www-data php occ app_api:app:enable app-skeleton-python + docker exec nextcloud sudo -u www-data php occ app_api:app:disable app-skeleton-python - name: Copy NC log to host if: always() @@ -258,18 +249,18 @@ jobs: - name: Check logs run: | - grep -q 'Hello from skeleton :)' nextcloud.log || error - grep -q 'Bye bye from skeleton :(' nextcloud.log || error + grep -q 'Hello from app-skeleton-python :)' nextcloud.log || error + grep -q 'Bye bye from app-skeleton-python :(' nextcloud.log || error - name: Save container info & logs if: always() run: | - docker inspect nc_app_skeleton | json_pp > container.json - docker logs nc_app_skeleton > container.log 2>&1 + docker inspect nc_app_app-skeleton-python | json_pp > container.json + docker logs nc_app_app-skeleton-python > container.log 2>&1 - name: Unregister Skeleton & Daemon run: | - docker exec nextcloud sudo -u www-data php occ app_api:app:unregister skeleton + docker exec nextcloud sudo -u www-data php occ app_api:app:unregister app-skeleton-python docker exec nextcloud sudo -u www-data php occ app_api:daemon:unregister docker_by_port - name: Upload Container info @@ -300,7 +291,7 @@ jobs: runs-on: ubuntu-22.04 name: NC In Julius Docker(DSP-HTTPS) • 🐘8.1 env: - docker-image: ghcr.io/juliushaertl/nextcloud-dev-php81:20231202-1 + docker-image: ghcr.io/juliusknorr/nextcloud-dev-php81:20231202-1 steps: - name: Set app env @@ -320,7 +311,7 @@ jobs: -e BIND_ADDRESS="172.17.0.1" \ -e EX_APPS_NET="ipv4@localhost" \ --net host --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp \ - --privileged -d ghcr.io/cloud-py-api/nextcloud-appapi-dsp:latest + --privileged -d ghcr.io/nextcloud/nextcloud-appapi-dsp:latest docker run --net=bridge --name=nextcloud -p 8080:80 -e SERVER_BRANCH=stable29 --rm -d ${{ env.docker-image }} sleep 60s hostname -I @@ -328,7 +319,7 @@ jobs: - name: Install AppAPI run: | - docker exec -w /var/www/html/apps nextcloud git clone https://github.com/cloud-py-api/${{ env.APP_NAME }}.git + docker exec -w /var/www/html/apps nextcloud git clone --branch stable29 https://github.com/nextcloud/${{ env.APP_NAME }}.git docker exec -w /var/www/html/apps/${{ env.APP_NAME }} nextcloud git fetch origin $GITHUB_REF docker exec -w /var/www/html/apps/${{ env.APP_NAME }} nextcloud git checkout FETCH_HEAD docker exec nextcloud sudo -u www-data php occ app:enable app_api @@ -338,10 +329,10 @@ jobs: docker_by_port Docker docker-install https host.docker.internal:2375 http://localhost:8080/index.php \ --net=host --haproxy_password=some_secure_password docker exec nextcloud sudo -u www-data php occ app_api:daemon:list - docker exec nextcloud sudo -u www-data php occ app_api:app:register skeleton docker_by_port \ - --info-xml https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml - docker exec nextcloud sudo -u www-data php occ app_api:app:enable skeleton - docker exec nextcloud sudo -u www-data php occ app_api:app:disable skeleton + docker exec nextcloud sudo -u www-data php occ app_api:app:register app-skeleton-python docker_by_port \ + --info-xml https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml + docker exec nextcloud sudo -u www-data php occ app_api:app:enable app-skeleton-python + docker exec nextcloud sudo -u www-data php occ app_api:app:disable app-skeleton-python - name: Copy NC log to host if: always() @@ -349,8 +340,8 @@ jobs: - name: Check logs run: | - grep -q 'Hello from skeleton :)' nextcloud.log || error - grep -q 'Bye bye from skeleton :(' nextcloud.log || error + grep -q 'Hello from app-skeleton-python :)' nextcloud.log || error + grep -q 'Bye bye from app-skeleton-python :(' nextcloud.log || error - name: Save HaProxy logs if: always() @@ -359,12 +350,12 @@ jobs: - name: Save container info & logs if: always() run: | - docker inspect nc_app_skeleton | json_pp > container.json - docker logs nc_app_skeleton > container.log 2>&1 + docker inspect nc_app_app-skeleton-python | json_pp > container.json + docker logs nc_app_app-skeleton-python > container.log 2>&1 - name: Unregister Skeleton & Daemon run: | - docker exec nextcloud sudo -u www-data php occ app_api:app:unregister skeleton + docker exec nextcloud sudo -u www-data php occ app_api:app:unregister app-skeleton-python docker exec nextcloud sudo -u www-data php occ app_api:daemon:unregister docker_by_port - name: Upload HaProxy logs @@ -401,7 +392,7 @@ jobs: nc-host-app-docker-redis: runs-on: ubuntu-22.04 - name: NC In Host(Redis) • stable28 • 🐘8.1 + name: NC In Host(Redis) • 🐘8.1 services: postgres: @@ -433,14 +424,14 @@ jobs: with: submodules: true repository: nextcloud/server - ref: stable28 + ref: stable29 - name: Checkout AppAPI uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: path: apps/${{ env.APP_NAME }} - - name: Set up php 8.1 + - name: Set up php uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2 with: php-version: 8.1 @@ -487,25 +478,25 @@ jobs: PHP_CLI_SERVER_WORKERS=2 php -S 127.0.0.1:8080 & ./occ app_api:daemon:register docker_local_sock Docker docker-install http /var/run/docker.sock http://127.0.0.1:8080/index.php ./occ app_api:daemon:list - ./occ app_api:app:register skeleton docker_local_sock \ - --info-xml https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml - ./occ app_api:app:enable skeleton - ./occ app_api:app:disable skeleton + ./occ app_api:app:register app-skeleton-python docker_local_sock \ + --info-xml https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml + ./occ app_api:app:enable app-skeleton-python + ./occ app_api:app:disable app-skeleton-python - name: Check logs run: | - grep -q 'Hello from skeleton :)' data/nextcloud.log || error - grep -q 'Bye bye from skeleton :(' data/nextcloud.log || error + grep -q 'Hello from app-skeleton-python :)' data/nextcloud.log || error + grep -q 'Bye bye from app-skeleton-python :(' data/nextcloud.log || error - name: Save container info & logs if: always() run: | - docker inspect nc_app_skeleton | json_pp > container.json - docker logs nc_app_skeleton > container.log 2>&1 + docker inspect nc_app_app-skeleton-python | json_pp > container.json + docker logs nc_app_app-skeleton-python > container.log 2>&1 - name: Unregister Skeleton & Daemon run: | - ./occ app_api:app:unregister skeleton + ./occ app_api:app:unregister app-skeleton-python ./occ app_api:daemon:unregister docker_local_sock - name: Test OCC commands(docker) @@ -519,7 +510,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_app_docker_redis_stable28_8.1_container.json + name: nc_host_app_docker_redis_container.json path: container.json if-no-files-found: warn @@ -527,7 +518,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_app_docker_redis_stable28_8.1_container.log + name: nc_host_app_docker_redis_container.log path: container.log if-no-files-found: warn @@ -535,13 +526,13 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_app_docker_redis_stable28_8.1_nextcloud.log + name: nc_host_app_docker_redis_nextcloud.log path: data/nextcloud.log if-no-files-found: warn nc-host-network-host: runs-on: ubuntu-22.04 - name: NC In Host(network=host) • stable29 • 🐘8.2 + name: NC In Host(network=host) • 🐘8.2 services: postgres: @@ -563,14 +554,14 @@ jobs: with: submodules: true repository: nextcloud/server - ref: stable29 + ref: 'stable29' - name: Checkout AppAPI uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: path: apps/${{ env.APP_NAME }} - - name: Set up php 8.2 + - name: Set up php uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2 with: php-version: 8.2 @@ -611,25 +602,25 @@ jobs: docker_socket_local Docker docker-install http /var/run/docker.sock http://127.0.0.1:8080/index.php \ --net=host --set-default ./occ app_api:daemon:list - ./occ app_api:app:register skeleton \ - --info-xml https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml - ./occ app_api:app:enable skeleton - ./occ app_api:app:disable skeleton + ./occ app_api:app:register app-skeleton-python \ + --info-xml https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml + ./occ app_api:app:enable app-skeleton-python + ./occ app_api:app:disable app-skeleton-python - name: Check logs run: | - grep -q 'Hello from skeleton :)' data/nextcloud.log || error - grep -q 'Bye bye from skeleton :(' data/nextcloud.log || error + grep -q 'Hello from app-skeleton-python :)' data/nextcloud.log || error + grep -q 'Bye bye from app-skeleton-python :(' data/nextcloud.log || error - name: Save container info & logs if: always() run: | - docker inspect nc_app_skeleton | json_pp > container.json - docker logs nc_app_skeleton > container.log 2>&1 + docker inspect nc_app_app-skeleton-python | json_pp > container.json + docker logs nc_app_app-skeleton-python > container.log 2>&1 - name: Unregister Skeleton & Daemon run: | - ./occ app_api:app:unregister skeleton + ./occ app_api:app:unregister app-skeleton-python ./occ app_api:daemon:unregister docker_socket_local - name: Test OCC commands(docker) @@ -639,7 +630,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_network_host_master_8.2_container.json + name: nc_host_network_host_container.json path: container.json if-no-files-found: warn @@ -647,7 +638,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_network_host_master_8.2_container.log + name: nc_host_network_host_container.log path: container.log if-no-files-found: warn @@ -655,7 +646,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: nc_host_network_host_master_8.2_nextcloud.log + name: nc_host_network_host_nextcloud.log path: data/nextcloud.log if-no-files-found: warn diff --git a/.github/workflows/tests-special.yml b/.github/workflows/tests-special.yml index 3aed2bef..d78df992 100644 --- a/.github/workflows/tests-special.yml +++ b/.github/workflows/tests-special.yml @@ -5,7 +5,6 @@ on: branches: [stable29] push: branches: [stable29] - workflow_dispatch: permissions: contents: read @@ -51,7 +50,7 @@ jobs: with: submodules: true repository: nextcloud/server - ref: 'stable28' + ref: 'stable29' - name: Checkout AppAPI uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 21d674f2..95a91728 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,6 @@ on: branches: [stable29] push: branches: [stable29] - workflow_dispatch: permissions: contents: read @@ -25,15 +24,11 @@ env: jobs: nc-py-api-pgsql: runs-on: ubuntu-22.04 - name: NC_Py_API • ${{ matrix.server-version }} • 🐘${{ matrix.php-version }} • PgSQL + name: NC_Py_API • 🐘${{ matrix.php-version }} • PgSQL strategy: fail-fast: false matrix: - php-version: [ '8.1' ] - server-version: [ 'stable28' ] - include: - - server-version: "stable29" - php-version: "8.2" + php-version: [ '8.2', '8.3' ] env: DATABASE_PGSQL: 1 @@ -61,13 +56,13 @@ jobs: with: submodules: true repository: nextcloud/server - ref: ${{ matrix.server-version }} + ref: 'stable29' - name: Checkout Notifications uses: actions/checkout@v3 with: repository: nextcloud/notifications - ref: ${{ matrix.server-version }} + ref: 'stable29' path: apps/notifications - name: Checkout AppAPI @@ -75,14 +70,6 @@ jobs: with: path: apps/${{ env.APP_NAME }} - - name: Checkout Notes - uses: actions/checkout@v4 - if: ${{ !startsWith(matrix.server-version, 'master') }} - with: - repository: nextcloud/notes - ref: "main" - path: apps/notes - - name: Set up php ${{ matrix.php-version }} uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2 with: @@ -115,10 +102,6 @@ jobs: ./occ app:enable notifications ./occ app:enable --force ${{ env.APP_NAME }} - - name: Enable Notes - if: ${{ !startsWith(matrix.server-version, 'master') }} - run: ./occ app:enable notes - - name: Run Nextcloud run: PHP_CLI_SERVER_WORKERS=2 php -S 127.0.0.1:8080 & @@ -151,13 +134,13 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: pgsql_nc_py_api_${{ matrix.server-version }}_${{ matrix.php-version }}_nextcloud.log + name: pgsql_nc_py_api_${{ matrix.php-version }}_nextcloud.log path: data/nextcloud.log if-no-files-found: warn nc-py-api-mysql: runs-on: ubuntu-22.04 - name: NC_Py_API • stable28 • 8.1 • MySQL + name: NC_Py_API • 🐘8.1 • MySQL services: mysql: @@ -181,13 +164,13 @@ jobs: with: submodules: true repository: nextcloud/server - ref: stable28 + ref: 'stable29' - name: Checkout Notifications uses: actions/checkout@v3 with: repository: nextcloud/notifications - ref: stable28 + ref: 'stable29' path: apps/notifications - name: Checkout AppAPI @@ -195,7 +178,7 @@ jobs: with: path: apps/${{ env.APP_NAME }} - - name: Set up php 8.1 + - name: Set up php uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2 with: php-version: '8.1' @@ -264,13 +247,13 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: mysql_nc_py_api_stable28_8.1_nextcloud.log + name: mysql_nc_py_api_nextcloud.log path: data/nextcloud.log if-no-files-found: warn nc-py-api-mysql-apcu: runs-on: ubuntu-22.04 - name: APCu • NC_Py_API • stable29 • 8.1 • MySQL + name: APCu • NC_Py_API • 🐘8.1 • MySQL services: mysql: @@ -294,13 +277,13 @@ jobs: with: submodules: true repository: nextcloud/server - ref: stable29 + ref: 'stable29' - name: Checkout Notifications uses: actions/checkout@v3 with: repository: nextcloud/notifications - ref: stable28 + ref: 'stable29' path: apps/notifications - name: Checkout AppAPI @@ -308,7 +291,7 @@ jobs: with: path: apps/${{ env.APP_NAME }} - - name: Set up php 8.1 + - name: Set up php uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2 with: php-version: '8.1' @@ -380,17 +363,13 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: apcu_mysql_nc_py_api_stable29_8.1_nextcloud.log + name: apcu_mysql_nc_py_api_nextcloud.log path: data/nextcloud.log if-no-files-found: warn nc-py-api-oci: runs-on: ubuntu-22.04 - name: NC_Py_API • ${{ matrix.server-version }} • 8.2 • Oracle - strategy: - fail-fast: false - matrix: - server-version: [ 'stable28', 'stable29' ] + name: NC_Py_API • 🐘8.2 • Oracle services: oracle: @@ -420,13 +399,13 @@ jobs: with: submodules: true repository: nextcloud/server - ref: ${{ matrix.server-version }} + ref: 'stable29' - name: Checkout Notifications uses: actions/checkout@v3 with: repository: nextcloud/notifications - ref: ${{ matrix.server-version }} + ref: 'stable29' path: apps/notifications - name: Checkout AppAPI @@ -496,7 +475,7 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: oci_nc_py_api_${{ matrix.server-version }}_8.2_nextcloud.log + name: oci_nc_py_api_nextcloud.log path: data/nextcloud.log if-no-files-found: warn diff --git a/tests/test_occ_commands_docker.py b/tests/test_occ_commands_docker.py index eeb41b8f..b729b498 100644 --- a/tests/test_occ_commands_docker.py +++ b/tests/test_occ_commands_docker.py @@ -2,7 +2,7 @@ SKELETON_XML_URL = ( - "https://raw.githubusercontent.com/cloud-py-api/app-skeleton-python/main/appinfo/info.xml" + "https://raw.githubusercontent.com/nextcloud/app-skeleton-python/main/appinfo/info.xml" ) @@ -27,13 +27,13 @@ def unregister_daemon(): def deploy_register(): run( - f"php occ app_api:app:deploy skeleton docker_local_sock --info-xml {SKELETON_XML_URL}".split(), + f"php occ app_api:app:deploy app-skeleton-python docker_local_sock --info-xml {SKELETON_XML_URL}".split(), stderr=DEVNULL, stdout=DEVNULL, check=True, ) run( - f"php occ app_api:app:register skeleton docker_local_sock --info-xml {SKELETON_XML_URL}".split(), + f"php occ app_api:app:register app-skeleton-python docker_local_sock --info-xml {SKELETON_XML_URL}".split(), stderr=DEVNULL, stdout=DEVNULL, check=True, @@ -57,29 +57,29 @@ def deploy_register(): assert r_output.find("http://127.0.0.1:8080/index.php/") == -1 assert r_output.find("http://127.0.0.1:8080/index.php") != -1 # silent should not fail, as there are not such ExApp - r = run("php occ --no-warnings app_api:app:unregister skeleton --silent".split(), stdout=PIPE, stderr=PIPE, check=True) + r = run("php occ --no-warnings app_api:app:unregister app-skeleton-python --silent".split(), stdout=PIPE, stderr=PIPE, check=True) assert not r.stderr.decode("UTF-8") r_output = r.stdout.decode("UTF-8") assert not r_output, f"Output should be empty: {r_output}" # without "--silent" it should fail, as there are not such ExApp - r = run("php occ --no-warnings app_api:app:unregister skeleton".split(), stdout=PIPE) + r = run("php occ --no-warnings app_api:app:unregister app-skeleton-python".split(), stdout=PIPE) assert r.returncode assert r.stdout.decode("UTF-8"), "Output should be non empty" # testing if volume is kept by default deploy_register() - r = run("php occ --no-warnings app_api:app:unregister skeleton".split(), stdout=PIPE, check=True) + r = run("php occ --no-warnings app_api:app:unregister app-skeleton-python".split(), stdout=PIPE, check=True) assert r.stdout.decode("UTF-8"), "Output should be non empty" - run("docker volume inspect nc_app_skeleton_data".split(), check=True) + run("docker volume inspect nc_app_app-skeleton-python_data".split(), check=True) # test if volume will be removed with "--rm-data" deploy_register() - run("php occ --no-warnings app_api:app:unregister skeleton --rm-data".split(), check=True) - r = run("docker volume inspect nc_app_skeleton_data".split()) + run("php occ --no-warnings app_api:app:unregister app-skeleton-python --rm-data".split(), check=True) + r = run("docker volume inspect nc_app_app-skeleton-python_data".split()) assert r.returncode # test "--force" option deploy_register() - run("docker container rm --force nc_app_skeleton".split(), check=True) - r = run("php occ --no-warnings app_api:app:unregister skeleton".split()) + run("docker container rm --force nc_app_app-skeleton-python".split(), check=True) + r = run("php occ --no-warnings app_api:app:unregister app-skeleton-python".split()) assert r.returncode - r = run("php occ --no-warnings app_api:app:unregister skeleton --silent".split()) + r = run("php occ --no-warnings app_api:app:unregister app-skeleton-python --silent".split()) assert r.returncode - run("php occ --no-warnings app_api:app:unregister skeleton --force".split(), check=True) + run("php occ --no-warnings app_api:app:unregister app-skeleton-python --force".split(), check=True) From 9cbed7d383c6bfff386e0a22ad306e90e01c5b9f Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Mon, 28 Oct 2024 19:29:14 +0300 Subject: [PATCH 022/244] fix(AppAPIService): encode query parameter array via http_build_query [backport/stable29] (#424) Manual backport of https://github.com/nextcloud/app_api/pull/412 Signed-off-by: Alexander Piskun --- lib/Service/AppAPIService.php | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/lib/Service/AppAPIService.php b/lib/Service/AppAPIService.php index cc391b36..e006d62e 100644 --- a/lib/Service/AppAPIService.php +++ b/lib/Service/AppAPIService.php @@ -181,7 +181,7 @@ private function prepareRequestToExApp( if ((!array_key_exists('multipart', $options)) && (count($params)) > 0) { if ($method === 'GET') { - $url .= '?' . $this->getUriEncodedParams($params); + $url .= '?' . http_build_query($params); } else { $options['json'] = $params; } @@ -231,7 +231,7 @@ private function prepareRequestToExApp2( if ((!array_key_exists('multipart', $options))) { if (count($queryParams) > 0) { - $url .= '?' . $this->getUriEncodedParams($queryParams); + $url .= '?' . http_build_query($queryParams); } if ($method !== 'GET' && count($bodyParams) > 0) { $options['json'] = $bodyParams; @@ -258,19 +258,6 @@ private function swapAuthorizationHeader(array $headers): array { return $headers; } - private function getUriEncodedParams(array $params): string { - $paramsContent = ''; - foreach ($params as $key => $value) { - if (is_array($value)) { - foreach ($value as $oneArrayValue) { - $paramsContent .= $key . '[]=' . urlencode($oneArrayValue) . '&'; - } - unset($params[$key]); - } - } - return $paramsContent . http_build_query($params); - } - /** * AppAPI authentication request validation for Nextcloud: * - checks if ExApp exists and is enabled From 8a0ecd0db65af72cbfc9aa88e963afeb901c934b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 29 Oct 2024 00:26:58 +0000 Subject: [PATCH 023/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 2 ++ l10n/fr.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index ab708bab..66fa96b8 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -102,6 +102,7 @@ OC.L10N.register( "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", "Register Daemon" : "Inscrire Daemon", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", + "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", "More info" : "Plus d'informations", "Download ExApp logs" : "Télécharger les logs d'ExApp", "Remove test ExApp" : "Supprimer le test ExApp", @@ -151,6 +152,7 @@ OC.L10N.register( "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", + "With https enabled network is set to host" : "Avec https activé, le réseau est configuré pour être héberger", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", diff --git a/l10n/fr.json b/l10n/fr.json index 791cd7cd..4062dba4 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -100,6 +100,7 @@ "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", "Register Daemon" : "Inscrire Daemon", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", + "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", "More info" : "Plus d'informations", "Download ExApp logs" : "Télécharger les logs d'ExApp", "Remove test ExApp" : "Supprimer le test ExApp", @@ -149,6 +150,7 @@ "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", + "With https enabled network is set to host" : "Avec https activé, le réseau est configuré pour être héberger", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", From 891f12dfce4a973149f1490c1400b2341ecbe8c2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 30 Oct 2024 00:27:27 +0000 Subject: [PATCH 024/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/af.js | 10 +++---- l10n/af.json | 10 +++---- l10n/ar.js | 72 +++++++++++++++++++++++----------------------- l10n/ar.json | 72 +++++++++++++++++++++++----------------------- l10n/ast.js | 54 +++++++++++++++++----------------- l10n/ast.json | 54 +++++++++++++++++----------------- l10n/az.js | 14 ++++----- l10n/az.json | 14 ++++----- l10n/bg.js | 26 ++++++++--------- l10n/bg.json | 26 ++++++++--------- l10n/bn_BD.js | 8 +++--- l10n/bn_BD.json | 8 +++--- l10n/br.js | 18 ++++++------ l10n/br.json | 18 ++++++------ l10n/bs.js | 8 +++--- l10n/bs.json | 8 +++--- l10n/ca.js | 26 ++++++++--------- l10n/ca.json | 26 ++++++++--------- l10n/cs.js | 72 +++++++++++++++++++++++----------------------- l10n/cs.json | 72 +++++++++++++++++++++++----------------------- l10n/cy_GB.js | 12 ++++---- l10n/cy_GB.json | 12 ++++---- l10n/da.js | 22 +++++++------- l10n/da.json | 22 +++++++------- l10n/de.js | 72 +++++++++++++++++++++++----------------------- l10n/de.json | 72 +++++++++++++++++++++++----------------------- l10n/de_DE.js | 72 +++++++++++++++++++++++----------------------- l10n/de_DE.json | 72 +++++++++++++++++++++++----------------------- l10n/el.js | 24 ++++++++-------- l10n/el.json | 24 ++++++++-------- l10n/en_GB.js | 72 +++++++++++++++++++++++----------------------- l10n/en_GB.json | 72 +++++++++++++++++++++++----------------------- l10n/eo.js | 18 ++++++------ l10n/eo.json | 18 ++++++------ l10n/es.js | 70 ++++++++++++++++++++++---------------------- l10n/es.json | 70 ++++++++++++++++++++++---------------------- l10n/es_419.js | 14 ++++----- l10n/es_419.json | 14 ++++----- l10n/es_AR.js | 16 +++++------ l10n/es_AR.json | 16 +++++------ l10n/es_CL.js | 16 +++++------ l10n/es_CL.json | 16 +++++------ l10n/es_CO.js | 16 +++++------ l10n/es_CO.json | 16 +++++------ l10n/es_CR.js | 16 +++++------ l10n/es_CR.json | 16 +++++------ l10n/es_DO.js | 16 +++++------ l10n/es_DO.json | 16 +++++------ l10n/es_EC.js | 24 ++++++++-------- l10n/es_EC.json | 24 ++++++++-------- l10n/es_GT.js | 16 +++++------ l10n/es_GT.json | 16 +++++------ l10n/es_HN.js | 16 +++++------ l10n/es_HN.json | 16 +++++------ l10n/es_MX.js | 24 ++++++++-------- l10n/es_MX.json | 24 ++++++++-------- l10n/es_NI.js | 16 +++++------ l10n/es_NI.json | 16 +++++------ l10n/es_PA.js | 16 +++++------ l10n/es_PA.json | 16 +++++------ l10n/es_PE.js | 16 +++++------ l10n/es_PE.json | 16 +++++------ l10n/es_PR.js | 16 +++++------ l10n/es_PR.json | 16 +++++------ l10n/es_PY.js | 16 +++++------ l10n/es_PY.json | 16 +++++------ l10n/es_SV.js | 16 +++++------ l10n/es_SV.json | 16 +++++------ l10n/es_UY.js | 16 +++++------ l10n/es_UY.json | 16 +++++------ l10n/et_EE.js | 22 +++++++------- l10n/et_EE.json | 22 +++++++------- l10n/eu.js | 30 +++++++++---------- l10n/eu.json | 30 +++++++++---------- l10n/fa.js | 26 ++++++++--------- l10n/fa.json | 26 ++++++++--------- l10n/fi.js | 24 ++++++++-------- l10n/fi.json | 24 ++++++++-------- l10n/fr.js | 72 +++++++++++++++++++++++----------------------- l10n/fr.json | 72 +++++++++++++++++++++++----------------------- l10n/ga.js | 72 +++++++++++++++++++++++----------------------- l10n/ga.json | 72 +++++++++++++++++++++++----------------------- l10n/gd.js | 8 +++--- l10n/gd.json | 8 +++--- l10n/gl.js | 72 +++++++++++++++++++++++----------------------- l10n/gl.json | 72 +++++++++++++++++++++++----------------------- l10n/he.js | 24 ++++++++-------- l10n/he.json | 24 ++++++++-------- l10n/hr.js | 24 ++++++++-------- l10n/hr.json | 24 ++++++++-------- l10n/hu.js | 24 ++++++++-------- l10n/hu.json | 24 ++++++++-------- l10n/ia.js | 12 ++++---- l10n/ia.json | 12 ++++---- l10n/id.js | 20 ++++++------- l10n/id.json | 20 ++++++------- l10n/is.js | 22 +++++++------- l10n/is.json | 22 +++++++------- l10n/it.js | 26 ++++++++--------- l10n/it.json | 26 ++++++++--------- l10n/ja.js | 24 ++++++++-------- l10n/ja.json | 24 ++++++++-------- l10n/ka.js | 26 ++++++++--------- l10n/ka.json | 26 ++++++++--------- l10n/ka_GE.js | 20 ++++++------- l10n/ka_GE.json | 20 ++++++------- l10n/kab.js | 6 ++-- l10n/kab.json | 6 ++-- l10n/km.js | 6 ++-- l10n/km.json | 6 ++-- l10n/ko.js | 72 +++++++++++++++++++++++----------------------- l10n/ko.json | 72 +++++++++++++++++++++++----------------------- l10n/lb.js | 8 +++--- l10n/lb.json | 8 +++--- l10n/lo.js | 8 +++--- l10n/lo.json | 8 +++--- l10n/lt_LT.js | 24 ++++++++-------- l10n/lt_LT.json | 24 ++++++++-------- l10n/lv.js | 20 ++++++------- l10n/lv.json | 20 ++++++------- l10n/mk.js | 26 ++++++++--------- l10n/mk.json | 26 ++++++++--------- l10n/mn.js | 16 +++++------ l10n/mn.json | 16 +++++------ l10n/nb.js | 72 +++++++++++++++++++++++----------------------- l10n/nb.json | 72 +++++++++++++++++++++++----------------------- l10n/nl.js | 30 +++++++++---------- l10n/nl.json | 30 +++++++++---------- l10n/nn_NO.js | 10 +++---- l10n/nn_NO.json | 10 +++---- l10n/oc.js | 20 ++++++------- l10n/oc.json | 20 ++++++------- l10n/pl.js | 28 +++++++++--------- l10n/pl.json | 28 +++++++++--------- l10n/pt_BR.js | 72 +++++++++++++++++++++++----------------------- l10n/pt_BR.json | 72 +++++++++++++++++++++++----------------------- l10n/pt_PT.js | 24 ++++++++-------- l10n/pt_PT.json | 24 ++++++++-------- l10n/ro.js | 22 +++++++------- l10n/ro.json | 22 +++++++------- l10n/ru.js | 70 ++++++++++++++++++++++---------------------- l10n/ru.json | 70 ++++++++++++++++++++++---------------------- l10n/sc.js | 26 ++++++++--------- l10n/sc.json | 26 ++++++++--------- l10n/si.js | 8 +++--- l10n/si.json | 8 +++--- l10n/sk.js | 26 ++++++++--------- l10n/sk.json | 26 ++++++++--------- l10n/sl.js | 26 ++++++++--------- l10n/sl.json | 26 ++++++++--------- l10n/sq.js | 20 ++++++------- l10n/sq.json | 20 ++++++------- l10n/sr.js | 72 +++++++++++++++++++++++----------------------- l10n/sr.json | 72 +++++++++++++++++++++++----------------------- l10n/sr@latin.js | 10 +++---- l10n/sr@latin.json | 10 +++---- l10n/sv.js | 28 +++++++++--------- l10n/sv.json | 28 +++++++++--------- l10n/ta.js | 8 +++--- l10n/ta.json | 8 +++--- l10n/th.js | 20 ++++++------- l10n/th.json | 20 ++++++------- l10n/tk.js | 6 ++-- l10n/tk.json | 6 ++-- l10n/tr.js | 72 +++++++++++++++++++++++----------------------- l10n/tr.json | 72 +++++++++++++++++++++++----------------------- l10n/uk.js | 22 +++++++------- l10n/uk.json | 22 +++++++------- l10n/uz.js | 8 +++--- l10n/uz.json | 8 +++--- l10n/vi.js | 20 ++++++------- l10n/vi.json | 20 ++++++------- l10n/zh_CN.js | 40 +++++++++++++------------- l10n/zh_CN.json | 40 +++++++++++++------------- l10n/zh_HK.js | 72 +++++++++++++++++++++++----------------------- l10n/zh_HK.json | 72 +++++++++++++++++++++++----------------------- l10n/zh_TW.js | 72 +++++++++++++++++++++++----------------------- l10n/zh_TW.json | 72 +++++++++++++++++++++++----------------------- 178 files changed, 2594 insertions(+), 2594 deletions(-) diff --git a/l10n/af.js b/l10n/af.js index 8f7e5741..d71164cf 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -1,6 +1,11 @@ OC.L10N.register( "app_api", { + "Delete" : "Skrap", + "Host" : "Gasheer", + "Confirm" : "Bevestig", + "Save" : "Stoor", + "Register" : "Registreer", "Update to {version}" : "Werk by na {version}", "View in store" : "Bekyk in winkel", "Visit website" : "Besoek webwerf", @@ -11,11 +16,6 @@ OC.L10N.register( "Version" : "Weergawe", "Actions" : "Aksies", "Display Name" : "Vertoonnaam", - "Delete" : "Skrap", - "Host" : "Gasheer", - "Confirm" : "Bevestig", - "Save" : "Stoor", - "Register" : "Registreer", "Your apps" : "U toeps", "Documentation" : "Dokumentasie", "Details" : "Besonderhede", diff --git a/l10n/af.json b/l10n/af.json index 43f1271c..05b7afaa 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -1,4 +1,9 @@ { "translations": { + "Delete" : "Skrap", + "Host" : "Gasheer", + "Confirm" : "Bevestig", + "Save" : "Stoor", + "Register" : "Registreer", "Update to {version}" : "Werk by na {version}", "View in store" : "Bekyk in winkel", "Visit website" : "Besoek webwerf", @@ -9,11 +14,6 @@ "Version" : "Weergawe", "Actions" : "Aksies", "Display Name" : "Vertoonnaam", - "Delete" : "Skrap", - "Host" : "Gasheer", - "Confirm" : "Bevestig", - "Save" : "Stoor", - "Register" : "Registreer", "Your apps" : "U toeps", "Documentation" : "Dokumentasie", "Details" : "Besonderhede", diff --git a/l10n/ar.js b/l10n/ar.js index 80608d17..45eafd37 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "تطبيقات خارجية", "Daemon config not found" : "تعذّر العثور على التكوين الخفي daemon", "Error starting install of ExApp" : "حدث خطأ عند البدء في تثبيت ExApp", "ExApp failed to register, check the NC logs" : "التطبيق الخارجي ExApp فشل في التسجيل. تحقق من سجل الحركات في نكست كلاود.", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", - "Update to {version}" : "التحديث إلى {version}", - "Remove" : "حذف", - "Delete data on remove" : "إحذف البيانات عند الإزالة", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "هذا التطبيق لم يُحدّد فيه أقدم إصدار متوافق معه من نكست كلاود. هذا قد يسبب خطأ في المستقبل.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : " لم يتم تعيين الحد الأقصى لهذا التطبيق لإصدار نكست كلاود. وهذا سيكون خطأ في المستقبل.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "تعذّر تنصيب التطبيق بسبب عدم توافر التَبعِيّات dependencies التالية:", - "View in store" : "العرض في المتجر store", - "Visit website" : "زيارة الموقع", - "Report a bug" : "الإبلاغ عن خطإٍ", - "User documentation" : "دليل المستخدم", - "Admin documentation" : "دليل المدير", - "Developer documentation" : "دليل المُطوّر", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", - "{license}-licensed" : "{license} مُرخّصٌ", - "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", - "Supported" : "مدعومٌ", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", - "Featured" : "مميزة", - "Update to {update}" : "التحديث إلى {update}", - "All ExApps are up-to-date." : "جميع التطبيقات الخارجية مُحدّثة حتى آخر إصدار.", - "Default Deploy daemon is not accessible" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن.", - "Icon" : "الأيقونة", - "Name" : "الاسم", - "Version" : "الإصدار", - "Daemon" : "برنامج خفي Daemon", - "Level" : "الدرجة", - "Actions" : "الإجراءات", - "Results from other categories" : "نتائج من تصنيفاتٍ أخرى", - "No apps found" : "لا توجد أي تطبيقات", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], - "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], - "Deploy Daemon" : "نشر البرنامج الخفي", - "Type" : "النوع", - "Display Name" : "إسم العرض", - "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", + "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "البرنامج الخفي للتثبيت اليدوي يُستعمل عادةً في مرحلة التطوير؛ و لا يمكن تعيينه كبرنامج خفي تلقائي.", "ExApps installed" : "البرنامج الخارحي ExApps تمّ تثبيته", + "Name" : "الاسم", "Protocol" : "بروتوكول", "Host" : "المضيف", "Deploy config" : "تهيئة النشر", "Docker network" : "شبكة \"دوكر\" Docker", "Nextcloud URL" : "رابط الخادم السحابي نكست كلاود", "HaProxy password" : "كلمة مرور HaProxy", + "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", "Verify connection" : "تحقّق من الاتصال", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", + "External Apps" : "تطبيقات خارجية", + "Update to {version}" : "التحديث إلى {version}", + "Remove" : "حذف", + "Delete data on remove" : "إحذف البيانات عند الإزالة", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "هذا التطبيق لم يُحدّد فيه أقدم إصدار متوافق معه من نكست كلاود. هذا قد يسبب خطأ في المستقبل.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : " لم يتم تعيين الحد الأقصى لهذا التطبيق لإصدار نكست كلاود. وهذا سيكون خطأ في المستقبل.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "تعذّر تنصيب التطبيق بسبب عدم توافر التَبعِيّات dependencies التالية:", + "View in store" : "العرض في المتجر store", + "Visit website" : "زيارة الموقع", + "Report a bug" : "الإبلاغ عن خطإٍ", + "User documentation" : "دليل المستخدم", + "Admin documentation" : "دليل المدير", + "Developer documentation" : "دليل المُطوّر", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", + "{license}-licensed" : "{license} مُرخّصٌ", + "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", + "Supported" : "مدعومٌ", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", + "Featured" : "مميزة", + "Update to {update}" : "التحديث إلى {update}", + "All ExApps are up-to-date." : "جميع التطبيقات الخارجية مُحدّثة حتى آخر إصدار.", + "Default Deploy daemon is not accessible" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن.", + "Icon" : "الأيقونة", + "Version" : "الإصدار", + "Daemon" : "برنامج خفي Daemon", + "Level" : "الدرجة", + "Actions" : "الإجراءات", + "Results from other categories" : "نتائج من تصنيفاتٍ أخرى", + "No apps found" : "لا توجد أي تطبيقات", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], + "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], + "Type" : "النوع", + "Display Name" : "إسم العرض", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", "Details" : "التفاصيل", diff --git a/l10n/ar.json b/l10n/ar.json index 77a474de..38ed3e92 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "تطبيقات خارجية", "Daemon config not found" : "تعذّر العثور على التكوين الخفي daemon", "Error starting install of ExApp" : "حدث خطأ عند البدء في تثبيت ExApp", "ExApp failed to register, check the NC logs" : "التطبيق الخارجي ExApp فشل في التسجيل. تحقق من سجل الحركات في نكست كلاود.", @@ -33,41 +32,6 @@ "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", - "Update to {version}" : "التحديث إلى {version}", - "Remove" : "حذف", - "Delete data on remove" : "إحذف البيانات عند الإزالة", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "هذا التطبيق لم يُحدّد فيه أقدم إصدار متوافق معه من نكست كلاود. هذا قد يسبب خطأ في المستقبل.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : " لم يتم تعيين الحد الأقصى لهذا التطبيق لإصدار نكست كلاود. وهذا سيكون خطأ في المستقبل.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "تعذّر تنصيب التطبيق بسبب عدم توافر التَبعِيّات dependencies التالية:", - "View in store" : "العرض في المتجر store", - "Visit website" : "زيارة الموقع", - "Report a bug" : "الإبلاغ عن خطإٍ", - "User documentation" : "دليل المستخدم", - "Admin documentation" : "دليل المدير", - "Developer documentation" : "دليل المُطوّر", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", - "{license}-licensed" : "{license} مُرخّصٌ", - "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", - "Supported" : "مدعومٌ", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", - "Featured" : "مميزة", - "Update to {update}" : "التحديث إلى {update}", - "All ExApps are up-to-date." : "جميع التطبيقات الخارجية مُحدّثة حتى آخر إصدار.", - "Default Deploy daemon is not accessible" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن.", - "Icon" : "الأيقونة", - "Name" : "الاسم", - "Version" : "الإصدار", - "Daemon" : "برنامج خفي Daemon", - "Level" : "الدرجة", - "Actions" : "الإجراءات", - "Results from other categories" : "نتائج من تصنيفاتٍ أخرى", - "No apps found" : "لا توجد أي تطبيقات", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], - "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], - "Deploy Daemon" : "نشر البرنامج الخفي", - "Type" : "النوع", - "Display Name" : "إسم العرض", - "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", + "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "البرنامج الخفي للتثبيت اليدوي يُستعمل عادةً في مرحلة التطوير؛ و لا يمكن تعيينه كبرنامج خفي تلقائي.", "ExApps installed" : "البرنامج الخارحي ExApps تمّ تثبيته", + "Name" : "الاسم", "Protocol" : "بروتوكول", "Host" : "المضيف", "Deploy config" : "تهيئة النشر", "Docker network" : "شبكة \"دوكر\" Docker", "Nextcloud URL" : "رابط الخادم السحابي نكست كلاود", "HaProxy password" : "كلمة مرور HaProxy", + "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", "Verify connection" : "تحقّق من الاتصال", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", + "External Apps" : "تطبيقات خارجية", + "Update to {version}" : "التحديث إلى {version}", + "Remove" : "حذف", + "Delete data on remove" : "إحذف البيانات عند الإزالة", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "هذا التطبيق لم يُحدّد فيه أقدم إصدار متوافق معه من نكست كلاود. هذا قد يسبب خطأ في المستقبل.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : " لم يتم تعيين الحد الأقصى لهذا التطبيق لإصدار نكست كلاود. وهذا سيكون خطأ في المستقبل.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "تعذّر تنصيب التطبيق بسبب عدم توافر التَبعِيّات dependencies التالية:", + "View in store" : "العرض في المتجر store", + "Visit website" : "زيارة الموقع", + "Report a bug" : "الإبلاغ عن خطإٍ", + "User documentation" : "دليل المستخدم", + "Admin documentation" : "دليل المدير", + "Developer documentation" : "دليل المُطوّر", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", + "{license}-licensed" : "{license} مُرخّصٌ", + "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", + "Supported" : "مدعومٌ", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", + "Featured" : "مميزة", + "Update to {update}" : "التحديث إلى {update}", + "All ExApps are up-to-date." : "جميع التطبيقات الخارجية مُحدّثة حتى آخر إصدار.", + "Default Deploy daemon is not accessible" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن.", + "Icon" : "الأيقونة", + "Version" : "الإصدار", + "Daemon" : "برنامج خفي Daemon", + "Level" : "الدرجة", + "Actions" : "الإجراءات", + "Results from other categories" : "نتائج من تصنيفاتٍ أخرى", + "No apps found" : "لا توجد أي تطبيقات", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], + "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], + "Type" : "النوع", + "Display Name" : "إسم العرض", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", "Details" : "التفاصيل", diff --git a/l10n/ast.js b/l10n/ast.js index abde32e4..916c6ec9 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Aplicaciones esternes", "Error starting install of ExApp" : "Hebo un error al aniciar la instalación de l'aplicación esterna", "Could not perform installation of ExApp" : "Nun se pudo facer la instalación de l'aplicación esterna", "Could not update ExApp" : "Nun se pudo anovar la aplicación esterna", @@ -10,32 +9,6 @@ OC.L10N.register( "Nextcloud AppAPI" : "AppAPI de Nextcloud", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "External Apps management" : "Xestión d'aplicaciones esternes", - "Update to {version}" : "Anovar a la versión {version}", - "Remove" : "Quitar", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", - "View in store" : "Ver na tienda", - "Visit website" : "Visitar el sitiu web", - "Report a bug" : "Informar d'un fallu", - "User documentation" : "Documentación pa usuarios", - "Admin documentation" : "Documentación p'alministradores", - "Developer documentation" : "Documentación pa desendolcadores", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación nun ta rexistrada na tienda d'aplicaciones. Nun hai más información disponible. Namás se permiten les aiciones d'activar/desactivar y quitar.", - "{license}-licensed" : "Con llicencia {license}", - "Supported" : "Compatible", - "Featured" : "Destacada", - "All ExApps are up-to-date." : "Toles aplicaciones esternes tán anovaes.", - "Icon" : "Iconu", - "Name" : "Nome", - "Version" : "Versión", - "Daemon" : "Degorriu", - "Level" : "Nivel", - "Actions" : "Aiciones", - "Results from other categories" : "Resultaos d'otres categoríes", - "No apps found" : "Nun s'atopó nenguna aplicación", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["Hai %n aplicación esterna que tien un anovamientu disponible","Hai %n aplicaciones esternes que tienen un anovamientu disponible"], - "_Update_::_Update all_" : ["Anovar","Anovar too"], - "Type" : "Tipu", - "Display Name" : "Nome visible", "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", @@ -43,6 +16,7 @@ OC.L10N.register( "Default" : "Por defeutu", "Set as default" : "Predeterminar", "Edit" : "Editar", + "Name" : "Nome", "Protocol" : "Protocolu", "Host" : "Agospiador", "Docker network" : "Rede de Docker", @@ -64,6 +38,32 @@ OC.L10N.register( "Register" : "Rexistrase", "Check connection" : "Comprobar la conexón", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", + "External Apps" : "Aplicaciones esternes", + "Update to {version}" : "Anovar a la versión {version}", + "Remove" : "Quitar", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", + "View in store" : "Ver na tienda", + "Visit website" : "Visitar el sitiu web", + "Report a bug" : "Informar d'un fallu", + "User documentation" : "Documentación pa usuarios", + "Admin documentation" : "Documentación p'alministradores", + "Developer documentation" : "Documentación pa desendolcadores", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación nun ta rexistrada na tienda d'aplicaciones. Nun hai más información disponible. Namás se permiten les aiciones d'activar/desactivar y quitar.", + "{license}-licensed" : "Con llicencia {license}", + "Supported" : "Compatible", + "Featured" : "Destacada", + "All ExApps are up-to-date." : "Toles aplicaciones esternes tán anovaes.", + "Icon" : "Iconu", + "Version" : "Versión", + "Daemon" : "Degorriu", + "Level" : "Nivel", + "Actions" : "Aiciones", + "Results from other categories" : "Resultaos d'otres categoríes", + "No apps found" : "Nun s'atopó nenguna aplicación", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["Hai %n aplicación esterna que tien un anovamientu disponible","Hai %n aplicaciones esternes que tienen un anovamientu disponible"], + "_Update_::_Update all_" : ["Anovar","Anovar too"], + "Type" : "Tipu", + "Display Name" : "Nome visible", "Your apps" : "Les tos aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/ast.json b/l10n/ast.json index 3b76a8ac..067895fe 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Aplicaciones esternes", "Error starting install of ExApp" : "Hebo un error al aniciar la instalación de l'aplicación esterna", "Could not perform installation of ExApp" : "Nun se pudo facer la instalación de l'aplicación esterna", "Could not update ExApp" : "Nun se pudo anovar la aplicación esterna", @@ -8,32 +7,6 @@ "Nextcloud AppAPI" : "AppAPI de Nextcloud", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "External Apps management" : "Xestión d'aplicaciones esternes", - "Update to {version}" : "Anovar a la versión {version}", - "Remove" : "Quitar", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", - "View in store" : "Ver na tienda", - "Visit website" : "Visitar el sitiu web", - "Report a bug" : "Informar d'un fallu", - "User documentation" : "Documentación pa usuarios", - "Admin documentation" : "Documentación p'alministradores", - "Developer documentation" : "Documentación pa desendolcadores", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación nun ta rexistrada na tienda d'aplicaciones. Nun hai más información disponible. Namás se permiten les aiciones d'activar/desactivar y quitar.", - "{license}-licensed" : "Con llicencia {license}", - "Supported" : "Compatible", - "Featured" : "Destacada", - "All ExApps are up-to-date." : "Toles aplicaciones esternes tán anovaes.", - "Icon" : "Iconu", - "Name" : "Nome", - "Version" : "Versión", - "Daemon" : "Degorriu", - "Level" : "Nivel", - "Actions" : "Aiciones", - "Results from other categories" : "Resultaos d'otres categoríes", - "No apps found" : "Nun s'atopó nenguna aplicación", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["Hai %n aplicación esterna que tien un anovamientu disponible","Hai %n aplicaciones esternes que tienen un anovamientu disponible"], - "_Update_::_Update all_" : ["Anovar","Anovar too"], - "Type" : "Tipu", - "Display Name" : "Nome visible", "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", @@ -41,6 +14,7 @@ "Default" : "Por defeutu", "Set as default" : "Predeterminar", "Edit" : "Editar", + "Name" : "Nome", "Protocol" : "Protocolu", "Host" : "Agospiador", "Docker network" : "Rede de Docker", @@ -62,6 +36,32 @@ "Register" : "Rexistrase", "Check connection" : "Comprobar la conexón", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", + "External Apps" : "Aplicaciones esternes", + "Update to {version}" : "Anovar a la versión {version}", + "Remove" : "Quitar", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", + "View in store" : "Ver na tienda", + "Visit website" : "Visitar el sitiu web", + "Report a bug" : "Informar d'un fallu", + "User documentation" : "Documentación pa usuarios", + "Admin documentation" : "Documentación p'alministradores", + "Developer documentation" : "Documentación pa desendolcadores", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación nun ta rexistrada na tienda d'aplicaciones. Nun hai más información disponible. Namás se permiten les aiciones d'activar/desactivar y quitar.", + "{license}-licensed" : "Con llicencia {license}", + "Supported" : "Compatible", + "Featured" : "Destacada", + "All ExApps are up-to-date." : "Toles aplicaciones esternes tán anovaes.", + "Icon" : "Iconu", + "Version" : "Versión", + "Daemon" : "Degorriu", + "Level" : "Nivel", + "Actions" : "Aiciones", + "Results from other categories" : "Resultaos d'otres categoríes", + "No apps found" : "Nun s'atopó nenguna aplicación", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["Hai %n aplicación esterna que tien un anovamientu disponible","Hai %n aplicaciones esternes que tienen un anovamientu disponible"], + "_Update_::_Update all_" : ["Anovar","Anovar too"], + "Type" : "Tipu", + "Display Name" : "Nome visible", "Your apps" : "Les tos aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/az.js b/l10n/az.js index 655f4792..000ef036 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -1,6 +1,13 @@ OC.L10N.register( "app_api", { + "Delete" : "Sil", + "Edit" : "Dəyişiklik et", + "Name" : "Ad", + "Host" : "Şəbəkədə ünvan", + "Enabled" : "İşə salınıb", + "Confirm" : "Təsdiq edin", + "Save" : "Saxla", "Update to {version}" : "{version} dək yenilə", "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu proqram yüklənə bilməz ona görə ki, göstərilən asılılıqlar yerinə yetirilməyib:", "View in store" : "Dükanda bax", @@ -11,15 +18,8 @@ OC.L10N.register( "Developer documentation" : "Yaradıcı sənədləşməsi", "Supported" : "Dəstəklənir", "Featured" : "Seçilmiş", - "Name" : "Ad", "Version" : "Versiya", "Actions" : "İşlər", - "Delete" : "Sil", - "Edit" : "Dəyişiklik et", - "Host" : "Şəbəkədə ünvan", - "Enabled" : "İşə salınıb", - "Confirm" : "Təsdiq edin", - "Save" : "Saxla", "Documentation" : "Sənədlər", "Details" : "Detallar", "Changelog" : "Dəyişikliklər jurnalı", diff --git a/l10n/az.json b/l10n/az.json index b3047bc3..39122fde 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -1,4 +1,11 @@ { "translations": { + "Delete" : "Sil", + "Edit" : "Dəyişiklik et", + "Name" : "Ad", + "Host" : "Şəbəkədə ünvan", + "Enabled" : "İşə salınıb", + "Confirm" : "Təsdiq edin", + "Save" : "Saxla", "Update to {version}" : "{version} dək yenilə", "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu proqram yüklənə bilməz ona görə ki, göstərilən asılılıqlar yerinə yetirilməyib:", "View in store" : "Dükanda bax", @@ -9,15 +16,8 @@ "Developer documentation" : "Yaradıcı sənədləşməsi", "Supported" : "Dəstəklənir", "Featured" : "Seçilmiş", - "Name" : "Ad", "Version" : "Versiya", "Actions" : "İşlər", - "Delete" : "Sil", - "Edit" : "Dəyişiklik et", - "Host" : "Şəbəkədə ünvan", - "Enabled" : "İşə salınıb", - "Confirm" : "Təsdiq edin", - "Save" : "Saxla", "Documentation" : "Sənədlər", "Details" : "Detallar", "Changelog" : "Dəyişikliklər jurnalı", diff --git a/l10n/bg.js b/l10n/bg.js index 1c81ec62..2170175c 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "Отказ", + "Delete" : "Изтриване", + "Default" : "По подразбиране", + "Edit" : "Редактиране", + "Name" : "Име", + "Host" : "Хост", + "Nextcloud URL" : "URL адрес на Nextcloud", + "Enabled" : "Включено", + "Display name" : "Име за визуализация", + "Network" : "Мрежа", + "Confirm" : "Потвърдете", + "Save" : "Запиши", + "Register" : "Регистрация", "Update to {version}" : "Актуализирай до {version}", "Remove" : "Премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", @@ -19,7 +32,6 @@ OC.L10N.register( "Featured" : "Препоръчани", "Update to {update}" : "Актуализирай до {update}", "Icon" : "Икона", - "Name" : "Име", "Version" : "Версия", "Level" : "Ниво", "Actions" : "Действия", @@ -27,18 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], "Type" : "Тип", "Display Name" : "Име за визуализация", - "Cancel" : "Отказ", - "Delete" : "Изтриване", - "Default" : "По подразбиране", - "Edit" : "Редактиране", - "Host" : "Хост", - "Nextcloud URL" : "URL адрес на Nextcloud", - "Enabled" : "Включено", - "Display name" : "Име за визуализация", - "Network" : "Мрежа", - "Confirm" : "Потвърдете", - "Save" : "Запиши", - "Register" : "Регистрация", "Your apps" : "Вашите приложения", "Documentation" : "Документация", "Details" : "Подробности", diff --git a/l10n/bg.json b/l10n/bg.json index 34cf0dc8..035d5f3d 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "Отказ", + "Delete" : "Изтриване", + "Default" : "По подразбиране", + "Edit" : "Редактиране", + "Name" : "Име", + "Host" : "Хост", + "Nextcloud URL" : "URL адрес на Nextcloud", + "Enabled" : "Включено", + "Display name" : "Име за визуализация", + "Network" : "Мрежа", + "Confirm" : "Потвърдете", + "Save" : "Запиши", + "Register" : "Регистрация", "Update to {version}" : "Актуализирай до {version}", "Remove" : "Премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", @@ -17,7 +30,6 @@ "Featured" : "Препоръчани", "Update to {update}" : "Актуализирай до {update}", "Icon" : "Икона", - "Name" : "Име", "Version" : "Версия", "Level" : "Ниво", "Actions" : "Действия", @@ -25,18 +37,6 @@ "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], "Type" : "Тип", "Display Name" : "Име за визуализация", - "Cancel" : "Отказ", - "Delete" : "Изтриване", - "Default" : "По подразбиране", - "Edit" : "Редактиране", - "Host" : "Хост", - "Nextcloud URL" : "URL адрес на Nextcloud", - "Enabled" : "Включено", - "Display name" : "Име за визуализация", - "Network" : "Мрежа", - "Confirm" : "Потвърдете", - "Save" : "Запиши", - "Register" : "Регистрация", "Your apps" : "Вашите приложения", "Documentation" : "Документация", "Details" : "Подробности", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index 898f746b..45563541 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -1,16 +1,16 @@ OC.L10N.register( "app_api", { - "Name" : "নাম", - "Version" : "ভার্সন", - "Actions" : "পদক্ষেপসমূহ", - "Type" : "ধরণ", "Cancel" : "বাতিল করুন", "Delete" : "মুছে", "Edit" : "সম্পাদনা", + "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", "Save" : "সংরক্ষণ", + "Version" : "ভার্সন", + "Actions" : "পদক্ষেপসমূহ", + "Type" : "ধরণ", "Documentation" : "নথিবদ্ধকরণ", "Details" : "বিসতারিত", "Disable" : "নিষ্ক্রিয়" diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index b0560d2e..a21d0d28 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -1,14 +1,14 @@ { "translations": { - "Name" : "নাম", - "Version" : "ভার্সন", - "Actions" : "পদক্ষেপসমূহ", - "Type" : "ধরণ", "Cancel" : "বাতিল করুন", "Delete" : "মুছে", "Edit" : "সম্পাদনা", + "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", "Save" : "সংরক্ষণ", + "Version" : "ভার্সন", + "Actions" : "পদক্ষেপসমূহ", + "Type" : "ধরণ", "Documentation" : "নথিবদ্ধকরণ", "Details" : "বিসতারিত", "Disable" : "নিষ্ক্রিয়" diff --git a/l10n/br.js b/l10n/br.js index 07cf310f..c70e8f98 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -1,6 +1,15 @@ OC.L10N.register( "app_api", { + "Cancel" : "Nullañ", + "Delete" : "Lemel", + "Edit" : "Embann", + "Name" : "Anv", + "Host" : "Ostiz", + "Display name" : "Anv ardivink", + "Network" : "Rouedad", + "Confirm" : "Kadarnañ", + "Save" : "Enrollañ", "Update to {version}" : "Oc'h adneveziñ da {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "N'en deus ket ar meziant ur stumm izelañ evit Nextcloud. Ur fazi a vo en dazont.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ar meziant n'en deus ket ur stumm huela eus Nextcloud merked. Ur fazi vo en dazont.", @@ -18,19 +27,10 @@ OC.L10N.register( "Featured" : "Perzhiet", "Update to {update}" : "Adnevesiñ da {update}", "Icon" : "Skeudennig", - "Name" : "Anv", "Version" : "Stumm", "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", "Type" : "Stumm", - "Cancel" : "Nullañ", - "Delete" : "Lemel", - "Edit" : "Embann", - "Host" : "Ostiz", - "Display name" : "Anv ardivink", - "Network" : "Rouedad", - "Confirm" : "Kadarnañ", - "Save" : "Enrollañ", "Your apps" : "Ho meziantoù", "Documentation" : "Diellvadur", "Details" : "Munudoù", diff --git a/l10n/br.json b/l10n/br.json index c041aad4..8789ff3e 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -1,4 +1,13 @@ { "translations": { + "Cancel" : "Nullañ", + "Delete" : "Lemel", + "Edit" : "Embann", + "Name" : "Anv", + "Host" : "Ostiz", + "Display name" : "Anv ardivink", + "Network" : "Rouedad", + "Confirm" : "Kadarnañ", + "Save" : "Enrollañ", "Update to {version}" : "Oc'h adneveziñ da {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "N'en deus ket ar meziant ur stumm izelañ evit Nextcloud. Ur fazi a vo en dazont.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ar meziant n'en deus ket ur stumm huela eus Nextcloud merked. Ur fazi vo en dazont.", @@ -16,19 +25,10 @@ "Featured" : "Perzhiet", "Update to {update}" : "Adnevesiñ da {update}", "Icon" : "Skeudennig", - "Name" : "Anv", "Version" : "Stumm", "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", "Type" : "Stumm", - "Cancel" : "Nullañ", - "Delete" : "Lemel", - "Edit" : "Embann", - "Host" : "Ostiz", - "Display name" : "Anv ardivink", - "Network" : "Rouedad", - "Confirm" : "Kadarnañ", - "Save" : "Enrollañ", "Your apps" : "Ho meziantoù", "Documentation" : "Diellvadur", "Details" : "Munudoù", diff --git a/l10n/bs.js b/l10n/bs.js index 7273c697..b183e2a1 100644 --- a/l10n/bs.js +++ b/l10n/bs.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", - "Name" : "Ime", - "Version" : "Verzija", - "Actions" : "Radnje", "Cancel" : "Odustani", "Delete" : "Obriši", "Edit" : "Izmjeni", + "Name" : "Ime", "Enabled" : "Aktivirano", "Save" : "Spremi", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", + "Version" : "Verzija", + "Actions" : "Radnje", "Documentation" : "Dokumentacija", "Updates" : "Ažuriranja", "Disable" : "Onemogući" diff --git a/l10n/bs.json b/l10n/bs.json index 51b094b9..3eff3a94 100644 --- a/l10n/bs.json +++ b/l10n/bs.json @@ -1,13 +1,13 @@ { "translations": { - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", - "Name" : "Ime", - "Version" : "Verzija", - "Actions" : "Radnje", "Cancel" : "Odustani", "Delete" : "Obriši", "Edit" : "Izmjeni", + "Name" : "Ime", "Enabled" : "Aktivirano", "Save" : "Spremi", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", + "Version" : "Verzija", + "Actions" : "Radnje", "Documentation" : "Dokumentacija", "Updates" : "Ažuriranja", "Disable" : "Onemogući" diff --git a/l10n/ca.js b/l10n/ca.js index f814c662..54be55ef 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Apps externes", "Failed to enable ExApp" : "No s'ha pogut activar ExApp", "Failed to disable ExApp" : "No s'ha pogut desactivar ExApp", "Could not update ExApp" : "No s'ha pogut actualitzar ExApp", @@ -13,6 +12,19 @@ OC.L10N.register( "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", + "Cancel" : "Cancelar", + "Delete" : "Suprimir", + "Edit" : "Edició", + "Name" : "Nom", + "Host" : "Servidor", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Habilitat", + "Display name" : "Nom de visualització", + "Network" : "Xarxa", + "Confirm" : "Confirma", + "Save" : "Desar", + "Register" : "Registra", + "External Apps" : "Apps externes", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", @@ -31,7 +43,6 @@ OC.L10N.register( "Featured" : "Destacada", "Update to {update}" : "Actualitza a {update}", "Icon" : "Icona", - "Name" : "Nom", "Version" : "Versió", "Daemon" : "Dimoni", "Level" : "Nivell", @@ -40,17 +51,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", - "Cancel" : "Cancelar", - "Delete" : "Suprimir", - "Edit" : "Edició", - "Host" : "Servidor", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Habilitat", - "Display name" : "Nom de visualització", - "Network" : "Xarxa", - "Confirm" : "Confirma", - "Save" : "Desar", - "Register" : "Registra", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", "Details" : "Detalls", diff --git a/l10n/ca.json b/l10n/ca.json index 1beeeb7b..308e7589 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Apps externes", "Failed to enable ExApp" : "No s'ha pogut activar ExApp", "Failed to disable ExApp" : "No s'ha pogut desactivar ExApp", "Could not update ExApp" : "No s'ha pogut actualitzar ExApp", @@ -11,6 +10,19 @@ "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", + "Cancel" : "Cancelar", + "Delete" : "Suprimir", + "Edit" : "Edició", + "Name" : "Nom", + "Host" : "Servidor", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Habilitat", + "Display name" : "Nom de visualització", + "Network" : "Xarxa", + "Confirm" : "Confirma", + "Save" : "Desar", + "Register" : "Registra", + "External Apps" : "Apps externes", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", @@ -29,7 +41,6 @@ "Featured" : "Destacada", "Update to {update}" : "Actualitza a {update}", "Icon" : "Icona", - "Name" : "Nom", "Version" : "Versió", "Daemon" : "Dimoni", "Level" : "Nivell", @@ -38,17 +49,6 @@ "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", - "Cancel" : "Cancelar", - "Delete" : "Suprimir", - "Edit" : "Edició", - "Host" : "Servidor", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Habilitat", - "Display name" : "Nom de visualització", - "Network" : "Xarxa", - "Confirm" : "Confirma", - "Save" : "Desar", - "Register" : "Registra", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", "Details" : "Detalls", diff --git a/l10n/cs.js b/l10n/cs.js index d39b7572..411c3eb6 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Externí aplikace", "Daemon config not found" : "Nastavení pro proces služby nenalezeno", "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", @@ -34,41 +33,6 @@ OC.L10N.register( "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", - "Update to {version}" : "Aktualizovat na {version}", - "Remove" : "Odebrat", - "Delete data on remove" : "Při odebrání smazat data", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", - "View in store" : "Zobrazit v katalogu aplikací", - "Visit website" : "Navštívit webovou stránku", - "Report a bug" : "Nahlásit chybu", - "User documentation" : "Dokumentace pro uživatele", - "Admin documentation" : "Dokumentace pro správce", - "Developer documentation" : "Dokumentace pro vývojáře", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", - "{license}-licensed" : "licencováno pod {license}", - "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", - "Supported" : "Podporováno", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", - "Featured" : "Doporučené", - "Update to {update}" : "Aktualizovat na {update}", - "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", - "Default Deploy daemon is not accessible" : "Výchozí proces služby nasazování není dostupný", - "Icon" : "Ikona", - "Name" : "Název", - "Version" : "Verze", - "Daemon" : "Proces služby", - "Level" : "Stupeň podrobnosti/závažnosti", - "Actions" : "Akce", - "Results from other categories" : "Výsledky z ostatních kategorií", - "No apps found" : "Nenalezeny žádné aplikace", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], - "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], - "Deploy Daemon" : "Nasadit proces služby", - "Type" : "Typ", - "Display Name" : "Zobrazované jméno", - "GPUs support" : "Podpora pro výpočty na GPU", "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", @@ -82,15 +46,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", + "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", + "Name" : "Název", "Protocol" : "Protokol", "Host" : "Hostitel", "Deploy config" : "Nastavení nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", + "GPUs support" : "Podpora pro výpočty na GPU", "Compute device" : "Výpočetní zařízení", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", @@ -166,6 +133,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", + "External Apps" : "Externí aplikace", + "Update to {version}" : "Aktualizovat na {version}", + "Remove" : "Odebrat", + "Delete data on remove" : "Při odebrání smazat data", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", + "View in store" : "Zobrazit v katalogu aplikací", + "Visit website" : "Navštívit webovou stránku", + "Report a bug" : "Nahlásit chybu", + "User documentation" : "Dokumentace pro uživatele", + "Admin documentation" : "Dokumentace pro správce", + "Developer documentation" : "Dokumentace pro vývojáře", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", + "{license}-licensed" : "licencováno pod {license}", + "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", + "Supported" : "Podporováno", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", + "Featured" : "Doporučené", + "Update to {update}" : "Aktualizovat na {update}", + "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", + "Default Deploy daemon is not accessible" : "Výchozí proces služby nasazování není dostupný", + "Icon" : "Ikona", + "Version" : "Verze", + "Daemon" : "Proces služby", + "Level" : "Stupeň podrobnosti/závažnosti", + "Actions" : "Akce", + "Results from other categories" : "Výsledky z ostatních kategorií", + "No apps found" : "Nenalezeny žádné aplikace", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], + "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], + "Type" : "Typ", + "Display Name" : "Zobrazované jméno", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/cs.json b/l10n/cs.json index aa35a382..e05810a6 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Externí aplikace", "Daemon config not found" : "Nastavení pro proces služby nenalezeno", "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", @@ -32,41 +31,6 @@ "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", - "Update to {version}" : "Aktualizovat na {version}", - "Remove" : "Odebrat", - "Delete data on remove" : "Při odebrání smazat data", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", - "View in store" : "Zobrazit v katalogu aplikací", - "Visit website" : "Navštívit webovou stránku", - "Report a bug" : "Nahlásit chybu", - "User documentation" : "Dokumentace pro uživatele", - "Admin documentation" : "Dokumentace pro správce", - "Developer documentation" : "Dokumentace pro vývojáře", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", - "{license}-licensed" : "licencováno pod {license}", - "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", - "Supported" : "Podporováno", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", - "Featured" : "Doporučené", - "Update to {update}" : "Aktualizovat na {update}", - "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", - "Default Deploy daemon is not accessible" : "Výchozí proces služby nasazování není dostupný", - "Icon" : "Ikona", - "Name" : "Název", - "Version" : "Verze", - "Daemon" : "Proces služby", - "Level" : "Stupeň podrobnosti/závažnosti", - "Actions" : "Akce", - "Results from other categories" : "Výsledky z ostatních kategorií", - "No apps found" : "Nenalezeny žádné aplikace", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], - "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], - "Deploy Daemon" : "Nasadit proces služby", - "Type" : "Typ", - "Display Name" : "Zobrazované jméno", - "GPUs support" : "Podpora pro výpočty na GPU", "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", @@ -80,15 +44,18 @@ "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", + "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", + "Name" : "Název", "Protocol" : "Protokol", "Host" : "Hostitel", "Deploy config" : "Nastavení nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", + "GPUs support" : "Podpora pro výpočty na GPU", "Compute device" : "Výpočetní zařízení", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", @@ -164,6 +131,39 @@ "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", + "External Apps" : "Externí aplikace", + "Update to {version}" : "Aktualizovat na {version}", + "Remove" : "Odebrat", + "Delete data on remove" : "Při odebrání smazat data", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", + "View in store" : "Zobrazit v katalogu aplikací", + "Visit website" : "Navštívit webovou stránku", + "Report a bug" : "Nahlásit chybu", + "User documentation" : "Dokumentace pro uživatele", + "Admin documentation" : "Dokumentace pro správce", + "Developer documentation" : "Dokumentace pro vývojáře", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", + "{license}-licensed" : "licencováno pod {license}", + "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", + "Supported" : "Podporováno", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", + "Featured" : "Doporučené", + "Update to {update}" : "Aktualizovat na {update}", + "All ExApps are up-to-date." : "Všechny ExApps jsou aktuální.", + "Default Deploy daemon is not accessible" : "Výchozí proces služby nasazování není dostupný", + "Icon" : "Ikona", + "Version" : "Verze", + "Daemon" : "Proces služby", + "Level" : "Stupeň podrobnosti/závažnosti", + "Actions" : "Akce", + "Results from other categories" : "Výsledky z ostatních kategorií", + "No apps found" : "Nenalezeny žádné aplikace", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], + "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], + "Type" : "Typ", + "Display Name" : "Zobrazované jméno", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js index 062d0db6..becdbe28 100644 --- a/l10n/cy_GB.js +++ b/l10n/cy_GB.js @@ -1,19 +1,19 @@ OC.L10N.register( "app_api", { + "Delete" : "Dileu", + "Edit" : "Golygu", + "Name" : "Enw", + "Confirm" : "Cadarnhau", + "Save" : "Cadw", + "Register" : "Cofrestru", "User documentation" : "Dogfennaeth defnyddiwr", "Admin documentation" : "Dogfennaeth weinyddol", "Developer documentation" : "Dogfennaeth datblygwr", "Featured" : "Nodwedd", - "Name" : "Enw", "Version" : "Fersiwn", "Actions" : "Gweithredoedd", "Type" : "Math", - "Delete" : "Dileu", - "Edit" : "Golygu", - "Confirm" : "Cadarnhau", - "Save" : "Cadw", - "Register" : "Cofrestru", "Documentation" : "Dogfennaeth", "Details" : "Manylion", "Changelog" : "Cofnod newid", diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json index fc4c8687..3f120e3c 100644 --- a/l10n/cy_GB.json +++ b/l10n/cy_GB.json @@ -1,17 +1,17 @@ { "translations": { + "Delete" : "Dileu", + "Edit" : "Golygu", + "Name" : "Enw", + "Confirm" : "Cadarnhau", + "Save" : "Cadw", + "Register" : "Cofrestru", "User documentation" : "Dogfennaeth defnyddiwr", "Admin documentation" : "Dogfennaeth weinyddol", "Developer documentation" : "Dogfennaeth datblygwr", "Featured" : "Nodwedd", - "Name" : "Enw", "Version" : "Fersiwn", "Actions" : "Gweithredoedd", "Type" : "Math", - "Delete" : "Dileu", - "Edit" : "Golygu", - "Confirm" : "Cadarnhau", - "Save" : "Cadw", - "Register" : "Cofrestru", "Documentation" : "Dogfennaeth", "Details" : "Manylion", "Changelog" : "Cofnod newid", diff --git a/l10n/da.js b/l10n/da.js index 7363a87e..67619d15 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -1,6 +1,17 @@ OC.L10N.register( "app_api", { + "Cancel" : "Annullér", + "Delete" : "Slet", + "Edit" : "Redigér", + "Name" : "Navn", + "Host" : "Vært", + "Enabled" : "Aktiveret", + "Display name" : "Vist navn", + "Network" : "Netværk", + "Confirm" : "Bekræft", + "Save" : "Gem", + "Register" : "Registér", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en mindste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", @@ -19,7 +30,6 @@ OC.L10N.register( "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", "Icon" : "Ikon", - "Name" : "Navn", "Version" : "Version", "Level" : "Niveau", "Actions" : "Handlinger", @@ -27,16 +37,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Opdatér","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", - "Cancel" : "Annullér", - "Delete" : "Slet", - "Edit" : "Redigér", - "Host" : "Vært", - "Enabled" : "Aktiveret", - "Display name" : "Vist navn", - "Network" : "Netværk", - "Confirm" : "Bekræft", - "Save" : "Gem", - "Register" : "Registér", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", "Details" : "Detaljer", diff --git a/l10n/da.json b/l10n/da.json index 3a9b3537..c22c562a 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,4 +1,15 @@ { "translations": { + "Cancel" : "Annullér", + "Delete" : "Slet", + "Edit" : "Redigér", + "Name" : "Navn", + "Host" : "Vært", + "Enabled" : "Aktiveret", + "Display name" : "Vist navn", + "Network" : "Netværk", + "Confirm" : "Bekræft", + "Save" : "Gem", + "Register" : "Registér", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en mindste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", @@ -17,7 +28,6 @@ "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", "Icon" : "Ikon", - "Name" : "Navn", "Version" : "Version", "Level" : "Niveau", "Actions" : "Handlinger", @@ -25,16 +35,6 @@ "_Update_::_Update all_" : ["Opdatér","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", - "Cancel" : "Annullér", - "Delete" : "Slet", - "Edit" : "Redigér", - "Host" : "Vært", - "Enabled" : "Aktiveret", - "Display name" : "Vist navn", - "Network" : "Netværk", - "Confirm" : "Bekræft", - "Save" : "Gem", - "Register" : "Registér", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", "Details" : "Detaljer", diff --git a/l10n/de.js b/l10n/de.js index 67885828..6808c9dc 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Externe Apps", "Daemon config not found" : "Daemon-Konfiguration nicht gefunden", "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", - "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", - "Delete data on remove" : "Daten beim Entfernen löschen", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "View in store" : "Im Store anzeigen", - "Visit website" : "Webseite besuchen", - "Report a bug" : "Einen technischen Fehler melden", - "User documentation" : "Benutzer-Dokumentation", - "Admin documentation" : "Administratoren-Dokumentation", - "Developer documentation" : "Entwickler-Dokumentation", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", - "This app is supported via your current Nextcloud subscription." : "Diese App wird von deinem aktuellen Nextcloud-Abonnement unterstützt.", - "Supported" : "Unterstützt", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Community entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", - "Featured" : "Vorgestellt", - "Update to {update}" : "Aktualisieren auf {update}", - "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", - "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", - "Icon" : "Symbol", - "Name" : "Name", - "Version" : "Version", - "Daemon" : "Daemon", - "Level" : "Level", - "Actions" : "Aktionen", - "Results from other categories" : "Ergebnisse aus anderen Kategorien", - "No apps found" : "Keine Apps gefunden", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], - "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], - "Deploy Daemon" : "Daemon bereitstellen", - "Type" : "Typ", - "Display Name" : "Anzeigename", - "GPUs support" : "GPUs Unterstützung", "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", + "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", + "External Apps" : "Externe Apps", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Delete data on remove" : "Daten beim Entfernen löschen", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", + "View in store" : "Im Store anzeigen", + "Visit website" : "Webseite besuchen", + "Report a bug" : "Einen technischen Fehler melden", + "User documentation" : "Benutzer-Dokumentation", + "Admin documentation" : "Administratoren-Dokumentation", + "Developer documentation" : "Entwickler-Dokumentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", + "{license}-licensed" : "{license}-Lizenziert", + "This app is supported via your current Nextcloud subscription." : "Diese App wird von deinem aktuellen Nextcloud-Abonnement unterstützt.", + "Supported" : "Unterstützt", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Community entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", + "Featured" : "Vorgestellt", + "Update to {update}" : "Aktualisieren auf {update}", + "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", + "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", + "Icon" : "Symbol", + "Version" : "Version", + "Daemon" : "Daemon", + "Level" : "Level", + "Actions" : "Aktionen", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found" : "Keine Apps gefunden", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], + "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Type" : "Typ", + "Display Name" : "Anzeigename", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/de.json b/l10n/de.json index 453d9a97..9becdeca 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Externe Apps", "Daemon config not found" : "Daemon-Konfiguration nicht gefunden", "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", @@ -33,41 +32,6 @@ "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", - "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", - "Delete data on remove" : "Daten beim Entfernen löschen", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "View in store" : "Im Store anzeigen", - "Visit website" : "Webseite besuchen", - "Report a bug" : "Einen technischen Fehler melden", - "User documentation" : "Benutzer-Dokumentation", - "Admin documentation" : "Administratoren-Dokumentation", - "Developer documentation" : "Entwickler-Dokumentation", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", - "This app is supported via your current Nextcloud subscription." : "Diese App wird von deinem aktuellen Nextcloud-Abonnement unterstützt.", - "Supported" : "Unterstützt", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Community entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", - "Featured" : "Vorgestellt", - "Update to {update}" : "Aktualisieren auf {update}", - "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", - "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", - "Icon" : "Symbol", - "Name" : "Name", - "Version" : "Version", - "Daemon" : "Daemon", - "Level" : "Level", - "Actions" : "Aktionen", - "Results from other categories" : "Ergebnisse aus anderen Kategorien", - "No apps found" : "Keine Apps gefunden", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], - "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], - "Deploy Daemon" : "Daemon bereitstellen", - "Type" : "Typ", - "Display Name" : "Anzeigename", - "GPUs support" : "GPUs Unterstützung", "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", + "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", + "External Apps" : "Externe Apps", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Delete data on remove" : "Daten beim Entfernen löschen", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", + "View in store" : "Im Store anzeigen", + "Visit website" : "Webseite besuchen", + "Report a bug" : "Einen technischen Fehler melden", + "User documentation" : "Benutzer-Dokumentation", + "Admin documentation" : "Administratoren-Dokumentation", + "Developer documentation" : "Entwickler-Dokumentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", + "{license}-licensed" : "{license}-Lizenziert", + "This app is supported via your current Nextcloud subscription." : "Diese App wird von deinem aktuellen Nextcloud-Abonnement unterstützt.", + "Supported" : "Unterstützt", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Community entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", + "Featured" : "Vorgestellt", + "Update to {update}" : "Aktualisieren auf {update}", + "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", + "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", + "Icon" : "Symbol", + "Version" : "Version", + "Daemon" : "Daemon", + "Level" : "Level", + "Actions" : "Aktionen", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found" : "Keine Apps gefunden", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], + "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Type" : "Typ", + "Display Name" : "Anzeigename", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index d6e3b6b9..582f6d99 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Externe Apps", "Daemon config not found" : "Konfiguration für Hintergrunddienst nicht gefunden", "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", - "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", - "Delete data on remove" : "Daten beim Entfernen löschen", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "View in store" : "Im App Store anzeigen", - "Visit website" : "Webseite besuchen", - "Report a bug" : "Einen technischen Fehler melden", - "User documentation" : "Benutzer-Dokumentation", - "Admin documentation" : "Dokumentation für die Administration", - "Developer documentation" : "Entwickler-Dokumentation", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", - "This app is supported via your current Nextcloud subscription." : "Diese App wird von Ihrem aktuellen Nextcloud-Abonnement unterstützt.", - "Supported" : "Unterstützt", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Gemeinschaft entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", - "Featured" : "Vorgestellt", - "Update to {update}" : "Aktualisieren auf {update}", - "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", - "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", - "Icon" : "Symbol", - "Name" : "Name", - "Version" : "Version", - "Daemon" : "Daemon", - "Level" : "Stufe", - "Actions" : "Aktionen", - "Results from other categories" : "Ergebnisse aus anderen Kategorien", - "No apps found" : "Keine Apps gefunden", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], - "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], - "Deploy Daemon" : "Daemon bereitstellen", - "Type" : "Typ", - "Display Name" : "Anzeigename", - "GPUs support" : "GPUs Unterstützung", "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", + "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", + "External Apps" : "Externe Apps", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Delete data on remove" : "Daten beim Entfernen löschen", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", + "View in store" : "Im App Store anzeigen", + "Visit website" : "Webseite besuchen", + "Report a bug" : "Einen technischen Fehler melden", + "User documentation" : "Benutzer-Dokumentation", + "Admin documentation" : "Dokumentation für die Administration", + "Developer documentation" : "Entwickler-Dokumentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", + "{license}-licensed" : "{license}-Lizenziert", + "This app is supported via your current Nextcloud subscription." : "Diese App wird von Ihrem aktuellen Nextcloud-Abonnement unterstützt.", + "Supported" : "Unterstützt", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Gemeinschaft entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", + "Featured" : "Vorgestellt", + "Update to {update}" : "Aktualisieren auf {update}", + "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", + "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", + "Icon" : "Symbol", + "Version" : "Version", + "Daemon" : "Daemon", + "Level" : "Stufe", + "Actions" : "Aktionen", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found" : "Keine Apps gefunden", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], + "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Type" : "Typ", + "Display Name" : "Anzeigename", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 0d9899da..e82dfa40 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Externe Apps", "Daemon config not found" : "Konfiguration für Hintergrunddienst nicht gefunden", "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", @@ -33,41 +32,6 @@ "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", - "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", - "Delete data on remove" : "Daten beim Entfernen löschen", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "View in store" : "Im App Store anzeigen", - "Visit website" : "Webseite besuchen", - "Report a bug" : "Einen technischen Fehler melden", - "User documentation" : "Benutzer-Dokumentation", - "Admin documentation" : "Dokumentation für die Administration", - "Developer documentation" : "Entwickler-Dokumentation", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", - "This app is supported via your current Nextcloud subscription." : "Diese App wird von Ihrem aktuellen Nextcloud-Abonnement unterstützt.", - "Supported" : "Unterstützt", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Gemeinschaft entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", - "Featured" : "Vorgestellt", - "Update to {update}" : "Aktualisieren auf {update}", - "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", - "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", - "Icon" : "Symbol", - "Name" : "Name", - "Version" : "Version", - "Daemon" : "Daemon", - "Level" : "Stufe", - "Actions" : "Aktionen", - "Results from other categories" : "Ergebnisse aus anderen Kategorien", - "No apps found" : "Keine Apps gefunden", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], - "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], - "Deploy Daemon" : "Daemon bereitstellen", - "Type" : "Typ", - "Display Name" : "Anzeigename", - "GPUs support" : "GPUs Unterstützung", "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", + "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", + "External Apps" : "Externe Apps", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Delete data on remove" : "Daten beim Entfernen löschen", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", + "View in store" : "Im App Store anzeigen", + "Visit website" : "Webseite besuchen", + "Report a bug" : "Einen technischen Fehler melden", + "User documentation" : "Benutzer-Dokumentation", + "Admin documentation" : "Dokumentation für die Administration", + "Developer documentation" : "Entwickler-Dokumentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", + "{license}-licensed" : "{license}-Lizenziert", + "This app is supported via your current Nextcloud subscription." : "Diese App wird von Ihrem aktuellen Nextcloud-Abonnement unterstützt.", + "Supported" : "Unterstützt", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Gemeinschaft entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", + "Featured" : "Vorgestellt", + "Update to {update}" : "Aktualisieren auf {update}", + "All ExApps are up-to-date." : "Alle ExApps sind auf dem neuesten Stand.", + "Default Deploy daemon is not accessible" : "Der Standard-Deploy-Daemon ist nicht zugänglich", + "Icon" : "Symbol", + "Version" : "Version", + "Daemon" : "Daemon", + "Level" : "Stufe", + "Actions" : "Aktionen", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found" : "Keine Apps gefunden", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], + "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Type" : "Typ", + "Display Name" : "Anzeigename", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/el.js b/l10n/el.js index f51c7a07..a50501c3 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Ακύρωση", + "Delete" : "Διαγραφή", + "Default" : "Προεπιλογή", + "Edit" : "Επεξεργασία", + "Name" : "Όνομα", + "Host" : "Διακομιστής", + "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", + "Enabled" : "Ενεργοποιημένο", + "Network" : "Δίκτυο", + "Confirm" : "Επιβεβαίωση", + "Save" : "Αποθήκευση", + "Register" : "Εγγραφή", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Remove" : "Αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "Προτεινόμενες", "Update to {update}" : "Ενημέρωση σε {update}", "Icon" : "Εικονίδιο", - "Name" : "Όνομα", "Version" : "Έκδοση", "Daemon" : "Υπηρεσία", "Level" : "Επίπεδο", @@ -28,17 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", - "Cancel" : "Ακύρωση", - "Delete" : "Διαγραφή", - "Default" : "Προεπιλογή", - "Edit" : "Επεξεργασία", - "Host" : "Διακομιστής", - "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", - "Enabled" : "Ενεργοποιημένο", - "Network" : "Δίκτυο", - "Confirm" : "Επιβεβαίωση", - "Save" : "Αποθήκευση", - "Register" : "Εγγραφή", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", "Details" : "Λεπτομέρειες", diff --git a/l10n/el.json b/l10n/el.json index a736cd1f..698d909d 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Ακύρωση", + "Delete" : "Διαγραφή", + "Default" : "Προεπιλογή", + "Edit" : "Επεξεργασία", + "Name" : "Όνομα", + "Host" : "Διακομιστής", + "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", + "Enabled" : "Ενεργοποιημένο", + "Network" : "Δίκτυο", + "Confirm" : "Επιβεβαίωση", + "Save" : "Αποθήκευση", + "Register" : "Εγγραφή", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Remove" : "Αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", @@ -17,7 +29,6 @@ "Featured" : "Προτεινόμενες", "Update to {update}" : "Ενημέρωση σε {update}", "Icon" : "Εικονίδιο", - "Name" : "Όνομα", "Version" : "Έκδοση", "Daemon" : "Υπηρεσία", "Level" : "Επίπεδο", @@ -26,17 +37,6 @@ "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", - "Cancel" : "Ακύρωση", - "Delete" : "Διαγραφή", - "Default" : "Προεπιλογή", - "Edit" : "Επεξεργασία", - "Host" : "Διακομιστής", - "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", - "Enabled" : "Ενεργοποιημένο", - "Network" : "Δίκτυο", - "Confirm" : "Επιβεβαίωση", - "Save" : "Αποθήκευση", - "Register" : "Εγγραφή", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", "Details" : "Λεπτομέρειες", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index d16fbcfd..bdadefac 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "External Apps", "Daemon config not found" : "Daemon config not found", "Error starting install of ExApp" : "Error starting install of ExApp", "ExApp failed to register, check the NC logs" : "ExApp failed to register, check the NC logs", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", - "Update to {version}" : "Update to {version}", - "Remove" : "Remove", - "Delete data on remove" : "Delete data on remove", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", - "View in store" : "View in store", - "Visit website" : "Visit website", - "Report a bug" : "Report a bug", - "User documentation" : "User documentation", - "Admin documentation" : "Admin documentation", - "Developer documentation" : "Developer documentation", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed.", - "{license}-licensed" : "{license}-licensed", - "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", - "Supported" : "Supported", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", - "Featured" : "Featured", - "Update to {update}" : "Update to {update}", - "All ExApps are up-to-date." : "All ExApps are up-to-date.", - "Default Deploy daemon is not accessible" : "Default Deploy daemon is not accessible", - "Icon" : "Icon", - "Name" : "Surname", - "Version" : "Version", - "Daemon" : "Daemon", - "Level" : "Level", - "Actions" : "Actions", - "Results from other categories" : "Results from other categories", - "No apps found" : "No apps found", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n apps have an update available"], - "_Update_::_Update all_" : ["Update","Update all"], - "Deploy Daemon" : "Deploy Daemon", - "Type" : "Type", - "Display Name" : "Display Name", - "GPUs support" : "GPUs support", "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", "Password confirmation failed" : "Password confirmation failed", "Deploy daemon config details" : "Deploy daemon config details", + "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon usually used for development. It cannot be set as default daemon.", "ExApps installed" : "ExApps installed", + "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", "Deploy config" : "Deploy config", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy password", + "GPUs support" : "GPUs support", "Compute device" : "Compute device", "Additional options" : "Additional options", "Verify connection" : "Verify connection", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", + "External Apps" : "External Apps", + "Update to {version}" : "Update to {version}", + "Remove" : "Remove", + "Delete data on remove" : "Delete data on remove", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", + "View in store" : "View in store", + "Visit website" : "Visit website", + "Report a bug" : "Report a bug", + "User documentation" : "User documentation", + "Admin documentation" : "Admin documentation", + "Developer documentation" : "Developer documentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed.", + "{license}-licensed" : "{license}-licensed", + "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", + "Supported" : "Supported", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", + "Featured" : "Featured", + "Update to {update}" : "Update to {update}", + "All ExApps are up-to-date." : "All ExApps are up-to-date.", + "Default Deploy daemon is not accessible" : "Default Deploy daemon is not accessible", + "Icon" : "Icon", + "Version" : "Version", + "Daemon" : "Daemon", + "Level" : "Level", + "Actions" : "Actions", + "Results from other categories" : "Results from other categories", + "No apps found" : "No apps found", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n apps have an update available"], + "_Update_::_Update all_" : ["Update","Update all"], + "Type" : "Type", + "Display Name" : "Display Name", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 0fa276d9..31e6676a 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "External Apps", "Daemon config not found" : "Daemon config not found", "Error starting install of ExApp" : "Error starting install of ExApp", "ExApp failed to register, check the NC logs" : "ExApp failed to register, check the NC logs", @@ -33,41 +32,6 @@ "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", - "Update to {version}" : "Update to {version}", - "Remove" : "Remove", - "Delete data on remove" : "Delete data on remove", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", - "View in store" : "View in store", - "Visit website" : "Visit website", - "Report a bug" : "Report a bug", - "User documentation" : "User documentation", - "Admin documentation" : "Admin documentation", - "Developer documentation" : "Developer documentation", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed.", - "{license}-licensed" : "{license}-licensed", - "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", - "Supported" : "Supported", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", - "Featured" : "Featured", - "Update to {update}" : "Update to {update}", - "All ExApps are up-to-date." : "All ExApps are up-to-date.", - "Default Deploy daemon is not accessible" : "Default Deploy daemon is not accessible", - "Icon" : "Icon", - "Name" : "Surname", - "Version" : "Version", - "Daemon" : "Daemon", - "Level" : "Level", - "Actions" : "Actions", - "Results from other categories" : "Results from other categories", - "No apps found" : "No apps found", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n apps have an update available"], - "_Update_::_Update all_" : ["Update","Update all"], - "Deploy Daemon" : "Deploy Daemon", - "Type" : "Type", - "Display Name" : "Display Name", - "GPUs support" : "GPUs support", "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", "Password confirmation failed" : "Password confirmation failed", "Deploy daemon config details" : "Deploy daemon config details", + "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon usually used for development. It cannot be set as default daemon.", "ExApps installed" : "ExApps installed", + "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", "Deploy config" : "Deploy config", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy password", + "GPUs support" : "GPUs support", "Compute device" : "Compute device", "Additional options" : "Additional options", "Verify connection" : "Verify connection", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", + "External Apps" : "External Apps", + "Update to {version}" : "Update to {version}", + "Remove" : "Remove", + "Delete data on remove" : "Delete data on remove", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", + "View in store" : "View in store", + "Visit website" : "Visit website", + "Report a bug" : "Report a bug", + "User documentation" : "User documentation", + "Admin documentation" : "Admin documentation", + "Developer documentation" : "Developer documentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed.", + "{license}-licensed" : "{license}-licensed", + "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", + "Supported" : "Supported", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", + "Featured" : "Featured", + "Update to {update}" : "Update to {update}", + "All ExApps are up-to-date." : "All ExApps are up-to-date.", + "Default Deploy daemon is not accessible" : "Default Deploy daemon is not accessible", + "Icon" : "Icon", + "Version" : "Version", + "Daemon" : "Daemon", + "Level" : "Level", + "Actions" : "Actions", + "Results from other categories" : "Results from other categories", + "No apps found" : "No apps found", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n apps have an update available"], + "_Update_::_Update all_" : ["Update","Update all"], + "Type" : "Type", + "Display Name" : "Display Name", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", diff --git a/l10n/eo.js b/l10n/eo.js index d72772e6..c472172d 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -1,6 +1,15 @@ OC.L10N.register( "app_api", { + "Delete" : "Forigi", + "Edit" : "Modifi", + "Name" : "Nomo", + "Host" : "Gastigo", + "Display name" : "Vidiga nomo", + "Network" : "Reto", + "Confirm" : "Konfirmi", + "Save" : "Konservi", + "Register" : "Registriĝi", "Update to {version}" : "Ĝisdatigi al {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas minimuman Nextcloud-version. Tio estos eraro en la estonteco.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas maksimuman Nextcloud-version. Tio estos eraro en la estonteco.", @@ -18,20 +27,11 @@ OC.L10N.register( "Featured" : "Elstaraj", "Update to {update}" : "Ĝisdatigi al {update}", "Icon" : "Piktogramo", - "Name" : "Nomo", "Version" : "Versio", "Level" : "Nivelo", "Actions" : "Agoj", "Results from other categories" : "Rezultoj el aliaj kategorioj", "Type" : "Tipo", - "Delete" : "Forigi", - "Edit" : "Modifi", - "Host" : "Gastigo", - "Display name" : "Vidiga nomo", - "Network" : "Reto", - "Confirm" : "Konfirmi", - "Save" : "Konservi", - "Register" : "Registriĝi", "Your apps" : "Viaj aplikaĵoj", "Documentation" : "Dokumentaro", "Details" : "Detaloj", diff --git a/l10n/eo.json b/l10n/eo.json index 45b018fc..8db8f10d 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -1,4 +1,13 @@ { "translations": { + "Delete" : "Forigi", + "Edit" : "Modifi", + "Name" : "Nomo", + "Host" : "Gastigo", + "Display name" : "Vidiga nomo", + "Network" : "Reto", + "Confirm" : "Konfirmi", + "Save" : "Konservi", + "Register" : "Registriĝi", "Update to {version}" : "Ĝisdatigi al {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas minimuman Nextcloud-version. Tio estos eraro en la estonteco.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas maksimuman Nextcloud-version. Tio estos eraro en la estonteco.", @@ -16,20 +25,11 @@ "Featured" : "Elstaraj", "Update to {update}" : "Ĝisdatigi al {update}", "Icon" : "Piktogramo", - "Name" : "Nomo", "Version" : "Versio", "Level" : "Nivelo", "Actions" : "Agoj", "Results from other categories" : "Rezultoj el aliaj kategorioj", "Type" : "Tipo", - "Delete" : "Forigi", - "Edit" : "Modifi", - "Host" : "Gastigo", - "Display name" : "Vidiga nomo", - "Network" : "Reto", - "Confirm" : "Konfirmi", - "Save" : "Konservi", - "Register" : "Registriĝi", "Your apps" : "Viaj aplikaĵoj", "Documentation" : "Dokumentaro", "Details" : "Detaloj", diff --git a/l10n/es.js b/l10n/es.js index 065bf8fc..8a14066d 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Apps Externas", "Daemon config not found" : "No se pudo conseguir la configuración del Daemon", "Error starting install of ExApp" : "Error iniciando la instalación de ExApp", "ExApp failed to register, check the NC logs" : "La ExApp falló al registrarse, revise los registros de NC", @@ -35,40 +34,6 @@ OC.L10N.register( "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", - "Update to {version}" : "Actualizar a {version}", - "Remove" : "Quitar", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "View in store" : "Ver en la tienda", - "Visit website" : "Visite el sitio web", - "Report a bug" : "Notificar un error", - "User documentation" : "Documentación de usuario", - "Admin documentation" : "Documentación de administrador", - "Developer documentation" : "Documentación de desarrollador", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no está registrada en el AppStore. No hay información extra disponible. Sólo están permitidas las acciones de habilitar/deshabilitar.", - "{license}-licensed" : "licenciado bajo {license}", - "This app is supported via your current Nextcloud subscription." : "Esta App está soportada a través de su suscripción actual de Nexcloud.", - "Supported" : "Soportada", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", - "Featured" : "Destacadas", - "Update to {update}" : "Actualizar a {update}", - "All ExApps are up-to-date." : "Todas las ExApps están al día.", - "Default Deploy daemon is not accessible" : "No se puede acceder al Daemon de despliegue predeterminado", - "Icon" : "Icono", - "Name" : "Nombre", - "Version" : "Versión", - "Daemon" : "Daemon", - "Level" : "Nivel", - "Actions" : "Acciones", - "Results from other categories" : "Resultados de otras categorías", - "No apps found" : "No se encontraron apps", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app externa tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], - "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], - "Deploy Daemon" : "Daemon de despligue", - "Type" : "Tipo", - "Display Name" : "Nombre a mostrar", - "GPUs support" : "Soporte a GPUs", "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", @@ -81,15 +46,18 @@ OC.L10N.register( "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", + "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El daemon de instalación manual se utiliza normalmente para desarrollo. No puede establecerse como predeterminado", "ExApps installed" : "ExApp instaladas", + "Name" : "Nombre", "Protocol" : "Protocolo", "Host" : "Servidor", "Deploy config" : "Configuración de despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", + "GPUs support" : "Soporte a GPUs", "Compute device" : "Dispositivo de cómputo", "Additional options" : "Opciones adicionales", "Verify connection" : "Verificar conexión", @@ -159,6 +127,38 @@ OC.L10N.register( "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", + "External Apps" : "Apps Externas", + "Update to {version}" : "Actualizar a {version}", + "Remove" : "Quitar", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", + "View in store" : "Ver en la tienda", + "Visit website" : "Visite el sitio web", + "Report a bug" : "Notificar un error", + "User documentation" : "Documentación de usuario", + "Admin documentation" : "Documentación de administrador", + "Developer documentation" : "Documentación de desarrollador", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no está registrada en el AppStore. No hay información extra disponible. Sólo están permitidas las acciones de habilitar/deshabilitar.", + "{license}-licensed" : "licenciado bajo {license}", + "This app is supported via your current Nextcloud subscription." : "Esta App está soportada a través de su suscripción actual de Nexcloud.", + "Supported" : "Soportada", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", + "Featured" : "Destacadas", + "Update to {update}" : "Actualizar a {update}", + "All ExApps are up-to-date." : "Todas las ExApps están al día.", + "Default Deploy daemon is not accessible" : "No se puede acceder al Daemon de despliegue predeterminado", + "Icon" : "Icono", + "Version" : "Versión", + "Daemon" : "Daemon", + "Level" : "Nivel", + "Actions" : "Acciones", + "Results from other categories" : "Resultados de otras categorías", + "No apps found" : "No se encontraron apps", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app externa tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], + "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], + "Type" : "Tipo", + "Display Name" : "Nombre a mostrar", "Your apps" : "Tus apps", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es.json b/l10n/es.json index dc8795f2..45c2d566 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Apps Externas", "Daemon config not found" : "No se pudo conseguir la configuración del Daemon", "Error starting install of ExApp" : "Error iniciando la instalación de ExApp", "ExApp failed to register, check the NC logs" : "La ExApp falló al registrarse, revise los registros de NC", @@ -33,40 +32,6 @@ "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", - "Update to {version}" : "Actualizar a {version}", - "Remove" : "Quitar", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "View in store" : "Ver en la tienda", - "Visit website" : "Visite el sitio web", - "Report a bug" : "Notificar un error", - "User documentation" : "Documentación de usuario", - "Admin documentation" : "Documentación de administrador", - "Developer documentation" : "Documentación de desarrollador", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no está registrada en el AppStore. No hay información extra disponible. Sólo están permitidas las acciones de habilitar/deshabilitar.", - "{license}-licensed" : "licenciado bajo {license}", - "This app is supported via your current Nextcloud subscription." : "Esta App está soportada a través de su suscripción actual de Nexcloud.", - "Supported" : "Soportada", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", - "Featured" : "Destacadas", - "Update to {update}" : "Actualizar a {update}", - "All ExApps are up-to-date." : "Todas las ExApps están al día.", - "Default Deploy daemon is not accessible" : "No se puede acceder al Daemon de despliegue predeterminado", - "Icon" : "Icono", - "Name" : "Nombre", - "Version" : "Versión", - "Daemon" : "Daemon", - "Level" : "Nivel", - "Actions" : "Acciones", - "Results from other categories" : "Resultados de otras categorías", - "No apps found" : "No se encontraron apps", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app externa tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], - "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], - "Deploy Daemon" : "Daemon de despligue", - "Type" : "Tipo", - "Display Name" : "Nombre a mostrar", - "GPUs support" : "Soporte a GPUs", "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", @@ -79,15 +44,18 @@ "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", + "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El daemon de instalación manual se utiliza normalmente para desarrollo. No puede establecerse como predeterminado", "ExApps installed" : "ExApp instaladas", + "Name" : "Nombre", "Protocol" : "Protocolo", "Host" : "Servidor", "Deploy config" : "Configuración de despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", + "GPUs support" : "Soporte a GPUs", "Compute device" : "Dispositivo de cómputo", "Additional options" : "Opciones adicionales", "Verify connection" : "Verificar conexión", @@ -157,6 +125,38 @@ "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", + "External Apps" : "Apps Externas", + "Update to {version}" : "Actualizar a {version}", + "Remove" : "Quitar", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", + "View in store" : "Ver en la tienda", + "Visit website" : "Visite el sitio web", + "Report a bug" : "Notificar un error", + "User documentation" : "Documentación de usuario", + "Admin documentation" : "Documentación de administrador", + "Developer documentation" : "Documentación de desarrollador", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no está registrada en el AppStore. No hay información extra disponible. Sólo están permitidas las acciones de habilitar/deshabilitar.", + "{license}-licensed" : "licenciado bajo {license}", + "This app is supported via your current Nextcloud subscription." : "Esta App está soportada a través de su suscripción actual de Nexcloud.", + "Supported" : "Soportada", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", + "Featured" : "Destacadas", + "Update to {update}" : "Actualizar a {update}", + "All ExApps are up-to-date." : "Todas las ExApps están al día.", + "Default Deploy daemon is not accessible" : "No se puede acceder al Daemon de despliegue predeterminado", + "Icon" : "Icono", + "Version" : "Versión", + "Daemon" : "Daemon", + "Level" : "Nivel", + "Actions" : "Acciones", + "Results from other categories" : "Resultados de otras categorías", + "No apps found" : "No se encontraron apps", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app externa tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], + "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], + "Type" : "Tipo", + "Display Name" : "Nombre a mostrar", "Your apps" : "Tus apps", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_419.js b/l10n/es_419.js index 760c228a..2c69728c 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -1,6 +1,13 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,18 +20,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_419.json b/l10n/es_419.json index ef0738de..80512734 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -1,4 +1,11 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,18 +18,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index babe2d2f..7bd4eff2 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Eliminar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", @@ -14,19 +22,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Escribir", "Display Name" : "Nombre a desplegar", - "Delete" : "Eliminar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Sus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index f9393ecf..a0382fff 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Eliminar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", @@ -12,19 +20,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Escribir", "Display Name" : "Nombre a desplegar", - "Delete" : "Eliminar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Sus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_CL.js b/l10n/es_CL.js index 023e5cef..6849c2d9 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", @@ -14,20 +22,12 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Changelog" : "Bitácora de cambios", diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 07a6c8cf..2ebff2ac 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", @@ -12,20 +20,12 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Changelog" : "Bitácora de cambios", diff --git a/l10n/es_CO.js b/l10n/es_CO.js index 86a39c84..585e6290 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,20 +21,12 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_CO.json b/l10n/es_CO.json index fd0d5fd9..bd5bfd65 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,20 +19,12 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_CR.js b/l10n/es_CR.js index e44fe3b9..97e12429 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_CR.json b/l10n/es_CR.json index 537d57b5..5e3ad693 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_DO.js b/l10n/es_DO.js index 0a953c01..2ca2fe44 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_DO.json b/l10n/es_DO.json index 6ecc99e8..6b0e0db0 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index d51c9a27..ecb86d9d 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancelar", + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Nextcloud URL" : "URL de Nextcloud", + "Enabled" : "Habilitado", + "Display name" : "Nombre para mostrar", + "Network" : "Red", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -18,7 +30,6 @@ OC.L10N.register( "Featured" : "Destacado", "Update to {update}" : "Actualizar a {update}", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", @@ -27,17 +38,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Cancel" : "Cancelar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Nextcloud URL" : "URL de Nextcloud", - "Enabled" : "Habilitado", - "Display name" : "Nombre para mostrar", - "Network" : "Red", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index 6da7cd1e..cb9d51a0 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Cancelar", + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Nextcloud URL" : "URL de Nextcloud", + "Enabled" : "Habilitado", + "Display name" : "Nombre para mostrar", + "Network" : "Red", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -16,7 +28,6 @@ "Featured" : "Destacado", "Update to {update}" : "Actualizar a {update}", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", @@ -25,17 +36,6 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Cancel" : "Cancelar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Nextcloud URL" : "URL de Nextcloud", - "Enabled" : "Habilitado", - "Display name" : "Nombre para mostrar", - "Network" : "Red", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index 86a39c84..585e6290 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,20 +21,12 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_GT.json b/l10n/es_GT.json index fd0d5fd9..bd5bfd65 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,20 +19,12 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_HN.js b/l10n/es_HN.js index 86a39c84..585e6290 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,20 +21,12 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_HN.json b/l10n/es_HN.json index fd0d5fd9..bd5bfd65 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,20 +19,12 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 5da0cd60..b396134c 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancelar", + "Delete" : "Eliminar", + "Default" : "Por omisión", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Display name" : "Nombre para mostrar", + "Network" : "Red", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "Destacado", "Update to {update}" : "Actualizar a {update}", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", @@ -28,17 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Cancel" : "Cancelar", - "Delete" : "Eliminar", - "Default" : "Por omisión", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Display name" : "Nombre para mostrar", - "Network" : "Red", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 5ec1ddbc..04a7d910 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Cancelar", + "Delete" : "Eliminar", + "Default" : "Por omisión", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Display name" : "Nombre para mostrar", + "Network" : "Red", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", @@ -17,7 +29,6 @@ "Featured" : "Destacado", "Update to {update}" : "Actualizar a {update}", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", @@ -26,17 +37,6 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Cancel" : "Cancelar", - "Delete" : "Eliminar", - "Default" : "Por omisión", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Display name" : "Nombre para mostrar", - "Network" : "Red", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_NI.js b/l10n/es_NI.js index e371ec93..f9a4dd3b 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_NI.json b/l10n/es_NI.json index c734ae8d..13cd8506 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PA.js b/l10n/es_PA.js index e371ec93..f9a4dd3b 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PA.json b/l10n/es_PA.json index c734ae8d..13cd8506 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PE.js b/l10n/es_PE.js index e371ec93..f9a4dd3b 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PE.json b/l10n/es_PE.json index c734ae8d..13cd8506 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PR.js b/l10n/es_PR.js index e371ec93..f9a4dd3b 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PR.json b/l10n/es_PR.json index c734ae8d..13cd8506 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PY.js b/l10n/es_PY.js index e371ec93..f9a4dd3b 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_PY.json b/l10n/es_PY.json index c734ae8d..13cd8506 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_SV.js b/l10n/es_SV.js index 86a39c84..585e6290 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,20 +21,12 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_SV.json b/l10n/es_SV.json index fd0d5fd9..bd5bfd65 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,20 +19,12 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Daemon" : "Demonio", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_UY.js b/l10n/es_UY.js index e371ec93..f9a4dd3b 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -1,6 +1,14 @@ OC.L10N.register( "app_api", { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -13,19 +21,11 @@ OC.L10N.register( "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es_UY.json b/l10n/es_UY.json index c734ae8d..13cd8506 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -1,4 +1,12 @@ { "translations": { + "Delete" : "Borrar", + "Edit" : "Editar", + "Name" : "Nombre", + "Host" : "Servidor", + "Enabled" : "Habilitado", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -11,19 +19,11 @@ "Developer documentation" : "Documentación del desarrollador", "Featured" : "Destacado", "Icon" : "Ícono", - "Name" : "Nombre", "Version" : "Versión", "Level" : "Nivel", "Actions" : "Acciones", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", - "Delete" : "Borrar", - "Edit" : "Editar", - "Host" : "Servidor", - "Enabled" : "Habilitado", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registrar", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 4810b3fc..d2a5d04d 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -1,6 +1,17 @@ OC.L10N.register( "app_api", { + "Cancel" : "Tühista", + "Delete" : "Kustuta", + "Edit" : "Redigeeri", + "Name" : "Nimi", + "Host" : "Host", + "Enabled" : "Sisse lülitatud", + "Display name" : "Kuvatav nimi", + "Network" : "Võrk", + "Confirm" : "Kinnita", + "Save" : "Salvesta", + "Register" : "Registreeru", "Update to {version}" : "Uuenda versioonile {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", @@ -13,22 +24,11 @@ OC.L10N.register( "{license}-licensed" : "{license} litsents", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", - "Name" : "Nimi", "Version" : "Versioon", "Level" : "Tase", "Actions" : "Tegevused", "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", - "Cancel" : "Tühista", - "Delete" : "Kustuta", - "Edit" : "Redigeeri", - "Host" : "Host", - "Enabled" : "Sisse lülitatud", - "Display name" : "Kuvatav nimi", - "Network" : "Võrk", - "Confirm" : "Kinnita", - "Save" : "Salvesta", - "Register" : "Registreeru", "Your apps" : "Sinu rakendused", "Documentation" : "Dokumentatsioon", "Details" : "Üksikasjad", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index b3f27062..8c6b498c 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -1,4 +1,15 @@ { "translations": { + "Cancel" : "Tühista", + "Delete" : "Kustuta", + "Edit" : "Redigeeri", + "Name" : "Nimi", + "Host" : "Host", + "Enabled" : "Sisse lülitatud", + "Display name" : "Kuvatav nimi", + "Network" : "Võrk", + "Confirm" : "Kinnita", + "Save" : "Salvesta", + "Register" : "Registreeru", "Update to {version}" : "Uuenda versioonile {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", @@ -11,22 +22,11 @@ "{license}-licensed" : "{license} litsents", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", - "Name" : "Nimi", "Version" : "Versioon", "Level" : "Tase", "Actions" : "Tegevused", "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", - "Cancel" : "Tühista", - "Delete" : "Kustuta", - "Edit" : "Redigeeri", - "Host" : "Host", - "Enabled" : "Sisse lülitatud", - "Display name" : "Kuvatav nimi", - "Network" : "Võrk", - "Confirm" : "Kinnita", - "Save" : "Salvesta", - "Register" : "Registreeru", "Your apps" : "Sinu rakendused", "Documentation" : "Dokumentatsioon", "Details" : "Üksikasjad", diff --git a/l10n/eu.js b/l10n/eu.js index d8421b16..2ac1c199 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Kanpoko aplikazioak", "Error starting install of ExApp" : "Errore bat gertatu da ExApp instalatzen hastean", "ExApp not found, failed to get status" : "Ez da ExApp aurkitu, ezin izan da lortu egoera", "Could not perform installation of ExApp" : "Ezin izan da ExApp-ren instalazioa egin", @@ -19,6 +18,21 @@ OC.L10N.register( "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", + "Cancel" : "Utzi", + "Delete" : "Ezabatu", + "Default" : "Lehenetsia", + "Edit" : "Aldatu", + "Name" : "Izena", + "Protocol" : "Protokoloa", + "Host" : "Ostalaria", + "Nextcloud URL" : "Nextcloud URLa", + "Enabled" : "Gaituta", + "Display name" : "Erakusteko izena", + "Network" : "Sarea", + "Confirm" : "Berretsi", + "Save" : "Gorde", + "Register" : "Erregistratu", + "External Apps" : "Kanpoko aplikazioak", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", @@ -37,7 +51,6 @@ OC.L10N.register( "Featured" : "Nabarmendua", "Update to {update}" : "Eguneratu {update} bertsiora", "Icon" : "Ikonoa", - "Name" : "Izena", "Version" : "Bertsioa", "Daemon" : "Daemona", "Level" : "Maila", @@ -47,19 +60,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], "Type" : "Mota", "Display Name" : "Izena erakutsi", - "Cancel" : "Utzi", - "Delete" : "Ezabatu", - "Default" : "Lehenetsia", - "Edit" : "Aldatu", - "Protocol" : "Protokoloa", - "Host" : "Ostalaria", - "Nextcloud URL" : "Nextcloud URLa", - "Enabled" : "Gaituta", - "Display name" : "Erakusteko izena", - "Network" : "Sarea", - "Confirm" : "Berretsi", - "Save" : "Gorde", - "Register" : "Erregistratu", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", "Details" : "Xehetasunak", diff --git a/l10n/eu.json b/l10n/eu.json index 9e3678da..43169b3d 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Kanpoko aplikazioak", "Error starting install of ExApp" : "Errore bat gertatu da ExApp instalatzen hastean", "ExApp not found, failed to get status" : "Ez da ExApp aurkitu, ezin izan da lortu egoera", "Could not perform installation of ExApp" : "Ezin izan da ExApp-ren instalazioa egin", @@ -17,6 +16,21 @@ "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", + "Cancel" : "Utzi", + "Delete" : "Ezabatu", + "Default" : "Lehenetsia", + "Edit" : "Aldatu", + "Name" : "Izena", + "Protocol" : "Protokoloa", + "Host" : "Ostalaria", + "Nextcloud URL" : "Nextcloud URLa", + "Enabled" : "Gaituta", + "Display name" : "Erakusteko izena", + "Network" : "Sarea", + "Confirm" : "Berretsi", + "Save" : "Gorde", + "Register" : "Erregistratu", + "External Apps" : "Kanpoko aplikazioak", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", @@ -35,7 +49,6 @@ "Featured" : "Nabarmendua", "Update to {update}" : "Eguneratu {update} bertsiora", "Icon" : "Ikonoa", - "Name" : "Izena", "Version" : "Bertsioa", "Daemon" : "Daemona", "Level" : "Maila", @@ -45,19 +58,6 @@ "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], "Type" : "Mota", "Display Name" : "Izena erakutsi", - "Cancel" : "Utzi", - "Delete" : "Ezabatu", - "Default" : "Lehenetsia", - "Edit" : "Aldatu", - "Protocol" : "Protokoloa", - "Host" : "Ostalaria", - "Nextcloud URL" : "Nextcloud URLa", - "Enabled" : "Gaituta", - "Display name" : "Erakusteko izena", - "Network" : "Sarea", - "Confirm" : "Berretsi", - "Save" : "Gorde", - "Register" : "Erregistratu", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", "Details" : "Xehetasunak", diff --git a/l10n/fa.js b/l10n/fa.js index 3cf79f90..56b49243 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "منصرف شدن", + "Delete" : "حذف", + "Default" : "پیش‌فرض", + "Edit" : "ویرایش", + "Name" : "نام", + "Host" : "میزبان", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "فعال شده", + "Display name" : "Display name", + "Network" : "شبکه", + "Confirm" : "تأیید", + "Save" : "ذخیره", + "Register" : "ثبت‌نام", "Update to {version}" : "به‌روز رسانی به {version}", "Remove" : "حذف", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداقل دارای نسخه بعدی نکست کلود است. این یک خطا در آینده خواهد بود.", @@ -19,7 +32,6 @@ OC.L10N.register( "Featured" : "برگزیده", "Update to {update}" : "به‌روز رسانی به {update} ", "Icon" : "Icon", - "Name" : "نام", "Version" : "نسخه", "Daemon" : "فرایندهای پس زمینه", "Level" : "مرحله", @@ -27,18 +39,6 @@ OC.L10N.register( "Results from other categories" : "نتایج از دیگر دسته‌ها", "_Update_::_Update all_" : ["به‌روز رسانی","به‌روز رسانی همه"], "Type" : "نوع", - "Cancel" : "منصرف شدن", - "Delete" : "حذف", - "Default" : "پیش‌فرض", - "Edit" : "ویرایش", - "Host" : "میزبان", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "فعال شده", - "Display name" : "Display name", - "Network" : "شبکه", - "Confirm" : "تأیید", - "Save" : "ذخیره", - "Register" : "ثبت‌نام", "Your apps" : "برنامه‌های شما", "Documentation" : "مستندات", "Details" : "جزییات", diff --git a/l10n/fa.json b/l10n/fa.json index 7b98fce8..631cbae0 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "منصرف شدن", + "Delete" : "حذف", + "Default" : "پیش‌فرض", + "Edit" : "ویرایش", + "Name" : "نام", + "Host" : "میزبان", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "فعال شده", + "Display name" : "Display name", + "Network" : "شبکه", + "Confirm" : "تأیید", + "Save" : "ذخیره", + "Register" : "ثبت‌نام", "Update to {version}" : "به‌روز رسانی به {version}", "Remove" : "حذف", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداقل دارای نسخه بعدی نکست کلود است. این یک خطا در آینده خواهد بود.", @@ -17,7 +30,6 @@ "Featured" : "برگزیده", "Update to {update}" : "به‌روز رسانی به {update} ", "Icon" : "Icon", - "Name" : "نام", "Version" : "نسخه", "Daemon" : "فرایندهای پس زمینه", "Level" : "مرحله", @@ -25,18 +37,6 @@ "Results from other categories" : "نتایج از دیگر دسته‌ها", "_Update_::_Update all_" : ["به‌روز رسانی","به‌روز رسانی همه"], "Type" : "نوع", - "Cancel" : "منصرف شدن", - "Delete" : "حذف", - "Default" : "پیش‌فرض", - "Edit" : "ویرایش", - "Host" : "میزبان", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "فعال شده", - "Display name" : "Display name", - "Network" : "شبکه", - "Confirm" : "تأیید", - "Save" : "ذخیره", - "Register" : "ثبت‌نام", "Your apps" : "برنامه‌های شما", "Documentation" : "مستندات", "Details" : "جزییات", diff --git a/l10n/fi.js b/l10n/fi.js index b2adf066..ef511790 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Peruuta", + "Delete" : "Poista", + "Edit" : "Muokkaa", + "Name" : "Nimi", + "Host" : "Palvelin", + "Nextcloud URL" : "Nextcloudin URL-osoite", + "Enabled" : "Käytössä", + "Display name" : "Näyttönimi", + "Network" : "Verkko", + "Confirm" : "Vahvista", + "Save" : "Tallenna", + "Register" : "Rekisteröidy", "Update to {version}" : "Päivitä versioon {version}", "Remove" : "Poista", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "Poiminta", "Update to {update}" : "Päivitä versioon {update}", "Icon" : "Kuvake", - "Name" : "Nimi", "Version" : "Versio", "Daemon" : "Taustapalvelu", "Level" : "Taso", @@ -28,17 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Päivitä","Päivitä kaikki"], "Type" : "Tyyppi", "Display Name" : "Näyttönimi", - "Cancel" : "Peruuta", - "Delete" : "Poista", - "Edit" : "Muokkaa", - "Host" : "Palvelin", - "Nextcloud URL" : "Nextcloudin URL-osoite", - "Enabled" : "Käytössä", - "Display name" : "Näyttönimi", - "Network" : "Verkko", - "Confirm" : "Vahvista", - "Save" : "Tallenna", - "Register" : "Rekisteröidy", "Your apps" : "Sovelluksesi", "Documentation" : "Dokumentaatio", "Details" : "Tiedot", diff --git a/l10n/fi.json b/l10n/fi.json index 85a5ef79..eed3bff7 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Peruuta", + "Delete" : "Poista", + "Edit" : "Muokkaa", + "Name" : "Nimi", + "Host" : "Palvelin", + "Nextcloud URL" : "Nextcloudin URL-osoite", + "Enabled" : "Käytössä", + "Display name" : "Näyttönimi", + "Network" : "Verkko", + "Confirm" : "Vahvista", + "Save" : "Tallenna", + "Register" : "Rekisteröidy", "Update to {version}" : "Päivitä versioon {version}", "Remove" : "Poista", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", @@ -17,7 +29,6 @@ "Featured" : "Poiminta", "Update to {update}" : "Päivitä versioon {update}", "Icon" : "Kuvake", - "Name" : "Nimi", "Version" : "Versio", "Daemon" : "Taustapalvelu", "Level" : "Taso", @@ -26,17 +37,6 @@ "_Update_::_Update all_" : ["Päivitä","Päivitä kaikki"], "Type" : "Tyyppi", "Display Name" : "Näyttönimi", - "Cancel" : "Peruuta", - "Delete" : "Poista", - "Edit" : "Muokkaa", - "Host" : "Palvelin", - "Nextcloud URL" : "Nextcloudin URL-osoite", - "Enabled" : "Käytössä", - "Display name" : "Näyttönimi", - "Network" : "Verkko", - "Confirm" : "Vahvista", - "Save" : "Tallenna", - "Register" : "Rekisteröidy", "Your apps" : "Sovelluksesi", "Documentation" : "Dokumentaatio", "Details" : "Tiedot", diff --git a/l10n/fr.js b/l10n/fr.js index 66fa96b8..7e7265ef 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Applications externes", "Daemon config not found" : "Daemon configuration introuvable", "Error starting install of ExApp" : "Erreur lors du démarrage de l'installation d'ExApp", "ExApp failed to register, check the NC logs" : "ExApp n'a pas réussi à s'inscrire, vérifiez les logs NC", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", - "Update to {version}" : "Mettre à jour vers {version}", - "Remove" : "Retirer", - "Delete data on remove" : "Suppression des données retirer", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", - "View in store" : "Afficher dans le magasin d’applications", - "Visit website" : "Visiter le site web", - "Report a bug" : "Signaler un bug", - "User documentation" : "Documentation utilisateur", - "Admin documentation" : "Documentation administrateur", - "Developer documentation" : "Documentation développeurs", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", - "{license}-licensed" : "Sous licence {license}", - "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", - "Supported" : "Prise en charge", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", - "Featured" : "En vedette", - "Update to {update}" : "Mettre à jour vers {update}", - "All ExApps are up-to-date." : "Tous les ExApps sont à jour.", - "Default Deploy daemon is not accessible" : "Le service de déploiement par défaut n'est pas accessible", - "Icon" : "Icône", - "Name" : "Nom", - "Version" : "Version", - "Daemon" : "Processus", - "Level" : "Niveau", - "Actions" : "Actions", - "Results from other categories" : "Résultats d’autres catégories", - "No apps found" : "Aucune application trouvée", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp a une mise à jour disponible","%n applications ont une mise à jour disponible","%n applications ont une mise à jour disponible"], - "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], - "Deploy Daemon" : "Deamon de déploiement", - "Type" : "Type", - "Display Name" : "Nom affiché", - "GPUs support" : "Prise en charge des cartes graphiques", "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Deploy daemon config details" : "Déployer les détails de la configuration du service", + "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", "ExApps installed" : "ExApps installés", + "Name" : "Nom", "Protocol" : "Protocole", "Host" : "Hôte", "Deploy config" : "Déployer la configuration", "Docker network" : "Réseau Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", + "GPUs support" : "Prise en charge des cartes graphiques", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", @@ -161,6 +128,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", + "External Apps" : "Applications externes", + "Update to {version}" : "Mettre à jour vers {version}", + "Remove" : "Retirer", + "Delete data on remove" : "Suppression des données retirer", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", + "View in store" : "Afficher dans le magasin d’applications", + "Visit website" : "Visiter le site web", + "Report a bug" : "Signaler un bug", + "User documentation" : "Documentation utilisateur", + "Admin documentation" : "Documentation administrateur", + "Developer documentation" : "Documentation développeurs", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", + "{license}-licensed" : "Sous licence {license}", + "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", + "Supported" : "Prise en charge", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", + "Featured" : "En vedette", + "Update to {update}" : "Mettre à jour vers {update}", + "All ExApps are up-to-date." : "Tous les ExApps sont à jour.", + "Default Deploy daemon is not accessible" : "Le service de déploiement par défaut n'est pas accessible", + "Icon" : "Icône", + "Version" : "Version", + "Daemon" : "Processus", + "Level" : "Niveau", + "Actions" : "Actions", + "Results from other categories" : "Résultats d’autres catégories", + "No apps found" : "Aucune application trouvée", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp a une mise à jour disponible","%n applications ont une mise à jour disponible","%n applications ont une mise à jour disponible"], + "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], + "Type" : "Type", + "Display Name" : "Nom affiché", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", diff --git a/l10n/fr.json b/l10n/fr.json index 4062dba4..3a9b7b8c 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Applications externes", "Daemon config not found" : "Daemon configuration introuvable", "Error starting install of ExApp" : "Erreur lors du démarrage de l'installation d'ExApp", "ExApp failed to register, check the NC logs" : "ExApp n'a pas réussi à s'inscrire, vérifiez les logs NC", @@ -33,41 +32,6 @@ "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", - "Update to {version}" : "Mettre à jour vers {version}", - "Remove" : "Retirer", - "Delete data on remove" : "Suppression des données retirer", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", - "View in store" : "Afficher dans le magasin d’applications", - "Visit website" : "Visiter le site web", - "Report a bug" : "Signaler un bug", - "User documentation" : "Documentation utilisateur", - "Admin documentation" : "Documentation administrateur", - "Developer documentation" : "Documentation développeurs", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", - "{license}-licensed" : "Sous licence {license}", - "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", - "Supported" : "Prise en charge", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", - "Featured" : "En vedette", - "Update to {update}" : "Mettre à jour vers {update}", - "All ExApps are up-to-date." : "Tous les ExApps sont à jour.", - "Default Deploy daemon is not accessible" : "Le service de déploiement par défaut n'est pas accessible", - "Icon" : "Icône", - "Name" : "Nom", - "Version" : "Version", - "Daemon" : "Processus", - "Level" : "Niveau", - "Actions" : "Actions", - "Results from other categories" : "Résultats d’autres catégories", - "No apps found" : "Aucune application trouvée", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp a une mise à jour disponible","%n applications ont une mise à jour disponible","%n applications ont une mise à jour disponible"], - "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], - "Deploy Daemon" : "Deamon de déploiement", - "Type" : "Type", - "Display Name" : "Nom affiché", - "GPUs support" : "Prise en charge des cartes graphiques", "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Deploy daemon config details" : "Déployer les détails de la configuration du service", + "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", "ExApps installed" : "ExApps installés", + "Name" : "Nom", "Protocol" : "Protocole", "Host" : "Hôte", "Deploy config" : "Déployer la configuration", "Docker network" : "Réseau Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", + "GPUs support" : "Prise en charge des cartes graphiques", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", @@ -159,6 +126,39 @@ "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", + "External Apps" : "Applications externes", + "Update to {version}" : "Mettre à jour vers {version}", + "Remove" : "Retirer", + "Delete data on remove" : "Suppression des données retirer", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", + "View in store" : "Afficher dans le magasin d’applications", + "Visit website" : "Visiter le site web", + "Report a bug" : "Signaler un bug", + "User documentation" : "Documentation utilisateur", + "Admin documentation" : "Documentation administrateur", + "Developer documentation" : "Documentation développeurs", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", + "{license}-licensed" : "Sous licence {license}", + "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", + "Supported" : "Prise en charge", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", + "Featured" : "En vedette", + "Update to {update}" : "Mettre à jour vers {update}", + "All ExApps are up-to-date." : "Tous les ExApps sont à jour.", + "Default Deploy daemon is not accessible" : "Le service de déploiement par défaut n'est pas accessible", + "Icon" : "Icône", + "Version" : "Version", + "Daemon" : "Processus", + "Level" : "Niveau", + "Actions" : "Actions", + "Results from other categories" : "Résultats d’autres catégories", + "No apps found" : "Aucune application trouvée", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp a une mise à jour disponible","%n applications ont une mise à jour disponible","%n applications ont une mise à jour disponible"], + "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], + "Type" : "Type", + "Display Name" : "Nom affiché", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", diff --git a/l10n/ga.js b/l10n/ga.js index de563a23..2676ac12 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Aipeanna Seachtrach", "Daemon config not found" : "Deamhan cumraíochta gan aimsiú", "Error starting install of ExApp" : "Earráid agus suiteáil ExApp á thosú", "ExApp failed to register, check the NC logs" : "Theip ar ExApp clárú, seiceáil na logaí NC", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", - "Update to {version}" : "Nuashonraigh go {version}", - "Remove" : "Bain", - "Delete data on remove" : "Scrios sonraí ar bhaint", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan íosta de Nextcloud sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan Nextcloud uasta sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ní féidir an aip seo a shuiteáil toisc nach bhfuil na spleáchais seo a leanas comhlíonta:", - "View in store" : "Amharc sa siopa", - "Visit website" : "Tabhair cuairt ar an suíomh Gréasáin", - "Report a bug" : "Tuairiscigh fabht", - "User documentation" : "Doiciméadú úsáideora", - "Admin documentation" : "Doiciméadúchán riaracháin", - "Developer documentation" : "Doiciméadú forbróra", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo cláraithe in AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", - "{license}-licensed" : "{license}-cheadúnaithe", - "This app is supported via your current Nextcloud subscription." : "Tacaítear leis an aip seo trí do shíntiús reatha Nextcloud.", - "Supported" : "Tacaithe", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forbraíonn an pobal agus laistigh den phobal aipeanna sainghnéitheacha. Cuireann siad feidhmiúlacht lárnach ar fáil agus tá siad réidh le húsáid táirgeachta.", - "Featured" : "Feiceálach", - "Update to {update}" : "Nuashonraigh go {update}", - "All ExApps are up-to-date." : "Tá gach ExApps cothrom le dáta.", - "Default Deploy daemon is not accessible" : "Níl an deamhan Réamhshocrú Imscaradh inrochtana", - "Icon" : "Deilbhín", - "Name" : "Ainm", - "Version" : "Leagan", - "Daemon" : "Deamhan", - "Level" : "Leibhéal", - "Actions" : "Gníomhartha", - "Results from other categories" : "Torthaí ó chatagóirí eile", - "No apps found" : "Níor aimsíodh aon aipeanna", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n Tá nuashonrú ar fáil ag ExApp","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip"], - "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], - "Deploy Daemon" : "Imscaradh Deamhan", - "Type" : "Cineál", - "Display Name" : "Ainm taispeána", - "GPUs support" : "Tacaíocht GPUs", "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", + "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Deamhan suiteála láimhe a úsáidtear de ghnáth le haghaidh forbartha. Ní féidir é a shocrú mar dheamhan réamhshocraithe.", "ExApps installed" : "ExApps suiteáilte", + "Name" : "Ainm", "Protocol" : "Prótacal", "Host" : "Óstach", "Deploy config" : "Imscaradh config", "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Pasfhocal HaProxy", + "GPUs support" : "Tacaíocht GPUs", "Compute device" : "Gléas ríomh", "Additional options" : "Roghanna breise", "Verify connection" : "Fíoraigh ceangal", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", + "External Apps" : "Aipeanna Seachtrach", + "Update to {version}" : "Nuashonraigh go {version}", + "Remove" : "Bain", + "Delete data on remove" : "Scrios sonraí ar bhaint", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan íosta de Nextcloud sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan Nextcloud uasta sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Ní féidir an aip seo a shuiteáil toisc nach bhfuil na spleáchais seo a leanas comhlíonta:", + "View in store" : "Amharc sa siopa", + "Visit website" : "Tabhair cuairt ar an suíomh Gréasáin", + "Report a bug" : "Tuairiscigh fabht", + "User documentation" : "Doiciméadú úsáideora", + "Admin documentation" : "Doiciméadúchán riaracháin", + "Developer documentation" : "Doiciméadú forbróra", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo cláraithe in AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", + "{license}-licensed" : "{license}-cheadúnaithe", + "This app is supported via your current Nextcloud subscription." : "Tacaítear leis an aip seo trí do shíntiús reatha Nextcloud.", + "Supported" : "Tacaithe", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forbraíonn an pobal agus laistigh den phobal aipeanna sainghnéitheacha. Cuireann siad feidhmiúlacht lárnach ar fáil agus tá siad réidh le húsáid táirgeachta.", + "Featured" : "Feiceálach", + "Update to {update}" : "Nuashonraigh go {update}", + "All ExApps are up-to-date." : "Tá gach ExApps cothrom le dáta.", + "Default Deploy daemon is not accessible" : "Níl an deamhan Réamhshocrú Imscaradh inrochtana", + "Icon" : "Deilbhín", + "Version" : "Leagan", + "Daemon" : "Deamhan", + "Level" : "Leibhéal", + "Actions" : "Gníomhartha", + "Results from other categories" : "Torthaí ó chatagóirí eile", + "No apps found" : "Níor aimsíodh aon aipeanna", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n Tá nuashonrú ar fáil ag ExApp","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip"], + "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], + "Type" : "Cineál", + "Display Name" : "Ainm taispeána", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", "Details" : "Sonraí", diff --git a/l10n/ga.json b/l10n/ga.json index 2cce2420..fa3dc8c4 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Aipeanna Seachtrach", "Daemon config not found" : "Deamhan cumraíochta gan aimsiú", "Error starting install of ExApp" : "Earráid agus suiteáil ExApp á thosú", "ExApp failed to register, check the NC logs" : "Theip ar ExApp clárú, seiceáil na logaí NC", @@ -33,41 +32,6 @@ "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", - "Update to {version}" : "Nuashonraigh go {version}", - "Remove" : "Bain", - "Delete data on remove" : "Scrios sonraí ar bhaint", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan íosta de Nextcloud sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan Nextcloud uasta sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ní féidir an aip seo a shuiteáil toisc nach bhfuil na spleáchais seo a leanas comhlíonta:", - "View in store" : "Amharc sa siopa", - "Visit website" : "Tabhair cuairt ar an suíomh Gréasáin", - "Report a bug" : "Tuairiscigh fabht", - "User documentation" : "Doiciméadú úsáideora", - "Admin documentation" : "Doiciméadúchán riaracháin", - "Developer documentation" : "Doiciméadú forbróra", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo cláraithe in AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", - "{license}-licensed" : "{license}-cheadúnaithe", - "This app is supported via your current Nextcloud subscription." : "Tacaítear leis an aip seo trí do shíntiús reatha Nextcloud.", - "Supported" : "Tacaithe", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forbraíonn an pobal agus laistigh den phobal aipeanna sainghnéitheacha. Cuireann siad feidhmiúlacht lárnach ar fáil agus tá siad réidh le húsáid táirgeachta.", - "Featured" : "Feiceálach", - "Update to {update}" : "Nuashonraigh go {update}", - "All ExApps are up-to-date." : "Tá gach ExApps cothrom le dáta.", - "Default Deploy daemon is not accessible" : "Níl an deamhan Réamhshocrú Imscaradh inrochtana", - "Icon" : "Deilbhín", - "Name" : "Ainm", - "Version" : "Leagan", - "Daemon" : "Deamhan", - "Level" : "Leibhéal", - "Actions" : "Gníomhartha", - "Results from other categories" : "Torthaí ó chatagóirí eile", - "No apps found" : "Níor aimsíodh aon aipeanna", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n Tá nuashonrú ar fáil ag ExApp","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip"], - "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], - "Deploy Daemon" : "Imscaradh Deamhan", - "Type" : "Cineál", - "Display Name" : "Ainm taispeána", - "GPUs support" : "Tacaíocht GPUs", "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", + "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Deamhan suiteála láimhe a úsáidtear de ghnáth le haghaidh forbartha. Ní féidir é a shocrú mar dheamhan réamhshocraithe.", "ExApps installed" : "ExApps suiteáilte", + "Name" : "Ainm", "Protocol" : "Prótacal", "Host" : "Óstach", "Deploy config" : "Imscaradh config", "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Pasfhocal HaProxy", + "GPUs support" : "Tacaíocht GPUs", "Compute device" : "Gléas ríomh", "Additional options" : "Roghanna breise", "Verify connection" : "Fíoraigh ceangal", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", + "External Apps" : "Aipeanna Seachtrach", + "Update to {version}" : "Nuashonraigh go {version}", + "Remove" : "Bain", + "Delete data on remove" : "Scrios sonraí ar bhaint", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan íosta de Nextcloud sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan Nextcloud uasta sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Ní féidir an aip seo a shuiteáil toisc nach bhfuil na spleáchais seo a leanas comhlíonta:", + "View in store" : "Amharc sa siopa", + "Visit website" : "Tabhair cuairt ar an suíomh Gréasáin", + "Report a bug" : "Tuairiscigh fabht", + "User documentation" : "Doiciméadú úsáideora", + "Admin documentation" : "Doiciméadúchán riaracháin", + "Developer documentation" : "Doiciméadú forbróra", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo cláraithe in AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", + "{license}-licensed" : "{license}-cheadúnaithe", + "This app is supported via your current Nextcloud subscription." : "Tacaítear leis an aip seo trí do shíntiús reatha Nextcloud.", + "Supported" : "Tacaithe", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forbraíonn an pobal agus laistigh den phobal aipeanna sainghnéitheacha. Cuireann siad feidhmiúlacht lárnach ar fáil agus tá siad réidh le húsáid táirgeachta.", + "Featured" : "Feiceálach", + "Update to {update}" : "Nuashonraigh go {update}", + "All ExApps are up-to-date." : "Tá gach ExApps cothrom le dáta.", + "Default Deploy daemon is not accessible" : "Níl an deamhan Réamhshocrú Imscaradh inrochtana", + "Icon" : "Deilbhín", + "Version" : "Leagan", + "Daemon" : "Deamhan", + "Level" : "Leibhéal", + "Actions" : "Gníomhartha", + "Results from other categories" : "Torthaí ó chatagóirí eile", + "No apps found" : "Níor aimsíodh aon aipeanna", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n Tá nuashonrú ar fáil ag ExApp","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip"], + "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], + "Type" : "Cineál", + "Display Name" : "Ainm taispeána", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", "Details" : "Sonraí", diff --git a/l10n/gd.js b/l10n/gd.js index 73cc4c8e..628c3c7a 100644 --- a/l10n/gd.js +++ b/l10n/gd.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "Remove" : "Thoir air falbh", - "Name" : "Ainm", - "Version" : "Tionndadh", - "Type" : "Seòrsa", "Cancel" : "Sguir dheth", "Delete" : "Sguab às", "Default" : "Bunaiteach", "Edit" : "Deasaich", + "Name" : "Ainm", "Save" : "Sàbhail", + "Remove" : "Thoir air falbh", + "Version" : "Tionndadh", + "Type" : "Seòrsa", "Details" : "Mion-fhiosrachadh", "Disable" : "Cuir à comas" }, diff --git a/l10n/gd.json b/l10n/gd.json index 4f9abd69..14a3d1b8 100644 --- a/l10n/gd.json +++ b/l10n/gd.json @@ -1,13 +1,13 @@ { "translations": { - "Remove" : "Thoir air falbh", - "Name" : "Ainm", - "Version" : "Tionndadh", - "Type" : "Seòrsa", "Cancel" : "Sguir dheth", "Delete" : "Sguab às", "Default" : "Bunaiteach", "Edit" : "Deasaich", + "Name" : "Ainm", "Save" : "Sàbhail", + "Remove" : "Thoir air falbh", + "Version" : "Tionndadh", + "Type" : "Seòrsa", "Details" : "Mion-fhiosrachadh", "Disable" : "Cuir à comas" },"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;" diff --git a/l10n/gl.js b/l10n/gl.js index f15bc12d..6e4c0d5f 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Aplicacións externas", "Daemon config not found" : "Non se atopou a configuración do servizo", "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", - "Update to {version}" : "Actualizar a {version}", - "Remove" : "Retirar", - "Delete data on remove" : "Eliminar os datos ao retirar", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión mínima de Nextcloud asignada. Isto será un erro no futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión máxima de Nextcloud asignada. Isto será un erro no futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", - "View in store" : "Ver na tenda", - "Visit website" : "Visite o sitio web", - "Report a bug" : "Informar dun fallo", - "User documentation" : "Documentación do usuario", - "Admin documentation" : "Documentación da administración da instancia", - "Developer documentation" : "Documentación para desenvolvedores", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", - "{license}-licensed" : "Licenciado baixo a {license}", - "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", - "Supported" : "Compatíbel", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", - "Featured" : "Destacada", - "Update to {update}" : "Actualizar a {update}", - "All ExApps are up-to-date." : "Todas as aplicacións externas (ExApps) están actualizadas.", - "Default Deploy daemon is not accessible" : "Non é posíbel acceder ao servizo predeterminado de despregadura.", - "Icon" : "Icona", - "Name" : "Nome", - "Version" : "Versión", - "Daemon" : "Servizo", - "Level" : "Nivel", - "Actions" : "Accións", - "Results from other categories" : "Resultados doutras categorías", - "No apps found" : "Non se atoparon aplicacións", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], - "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], - "Deploy Daemon" : "Servizo de despregadura", - "Type" : "Escribir", - "Display Name" : "Nome para amosar", - "GPUs support" : "Compatibilidade con GPU", "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", "All ExApps on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) deste servizo", "All ExApps installed on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) instaladas neste servizo", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Comprobe os rexistros", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", + "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "ExApps installed" : "Aplicacións externas (ExApps) instaladas", + "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "Deploy config" : "Configuración da despregadura", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contrasinal de HaProxy", + "GPUs support" : "Compatibilidade con GPU", "Compute device" : "Dispositivo de computación", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Comprobe os rexistros", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", + "External Apps" : "Aplicacións externas", + "Update to {version}" : "Actualizar a {version}", + "Remove" : "Retirar", + "Delete data on remove" : "Eliminar os datos ao retirar", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión mínima de Nextcloud asignada. Isto será un erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión máxima de Nextcloud asignada. Isto será un erro no futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", + "View in store" : "Ver na tenda", + "Visit website" : "Visite o sitio web", + "Report a bug" : "Informar dun fallo", + "User documentation" : "Documentación do usuario", + "Admin documentation" : "Documentación da administración da instancia", + "Developer documentation" : "Documentación para desenvolvedores", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "{license}-licensed" : "Licenciado baixo a {license}", + "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", + "Supported" : "Compatíbel", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", + "Featured" : "Destacada", + "Update to {update}" : "Actualizar a {update}", + "All ExApps are up-to-date." : "Todas as aplicacións externas (ExApps) están actualizadas.", + "Default Deploy daemon is not accessible" : "Non é posíbel acceder ao servizo predeterminado de despregadura.", + "Icon" : "Icona", + "Version" : "Versión", + "Daemon" : "Servizo", + "Level" : "Nivel", + "Actions" : "Accións", + "Results from other categories" : "Resultados doutras categorías", + "No apps found" : "Non se atoparon aplicacións", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], + "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], + "Type" : "Escribir", + "Display Name" : "Nome para amosar", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/gl.json b/l10n/gl.json index 511e466c..abc075e0 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Aplicacións externas", "Daemon config not found" : "Non se atopou a configuración do servizo", "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", @@ -33,41 +32,6 @@ "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", - "Update to {version}" : "Actualizar a {version}", - "Remove" : "Retirar", - "Delete data on remove" : "Eliminar os datos ao retirar", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión mínima de Nextcloud asignada. Isto será un erro no futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión máxima de Nextcloud asignada. Isto será un erro no futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", - "View in store" : "Ver na tenda", - "Visit website" : "Visite o sitio web", - "Report a bug" : "Informar dun fallo", - "User documentation" : "Documentación do usuario", - "Admin documentation" : "Documentación da administración da instancia", - "Developer documentation" : "Documentación para desenvolvedores", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", - "{license}-licensed" : "Licenciado baixo a {license}", - "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", - "Supported" : "Compatíbel", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", - "Featured" : "Destacada", - "Update to {update}" : "Actualizar a {update}", - "All ExApps are up-to-date." : "Todas as aplicacións externas (ExApps) están actualizadas.", - "Default Deploy daemon is not accessible" : "Non é posíbel acceder ao servizo predeterminado de despregadura.", - "Icon" : "Icona", - "Name" : "Nome", - "Version" : "Versión", - "Daemon" : "Servizo", - "Level" : "Nivel", - "Actions" : "Accións", - "Results from other categories" : "Resultados doutras categorías", - "No apps found" : "Non se atoparon aplicacións", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], - "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], - "Deploy Daemon" : "Servizo de despregadura", - "Type" : "Escribir", - "Display Name" : "Nome para amosar", - "GPUs support" : "Compatibilidade con GPU", "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", "All ExApps on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) deste servizo", "All ExApps installed on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) instaladas neste servizo", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Comprobe os rexistros", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", + "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "ExApps installed" : "Aplicacións externas (ExApps) instaladas", + "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "Deploy config" : "Configuración da despregadura", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contrasinal de HaProxy", + "GPUs support" : "Compatibilidade con GPU", "Compute device" : "Dispositivo de computación", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Comprobe os rexistros", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", + "External Apps" : "Aplicacións externas", + "Update to {version}" : "Actualizar a {version}", + "Remove" : "Retirar", + "Delete data on remove" : "Eliminar os datos ao retirar", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión mínima de Nextcloud asignada. Isto será un erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión máxima de Nextcloud asignada. Isto será un erro no futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", + "View in store" : "Ver na tenda", + "Visit website" : "Visite o sitio web", + "Report a bug" : "Informar dun fallo", + "User documentation" : "Documentación do usuario", + "Admin documentation" : "Documentación da administración da instancia", + "Developer documentation" : "Documentación para desenvolvedores", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "{license}-licensed" : "Licenciado baixo a {license}", + "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", + "Supported" : "Compatíbel", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", + "Featured" : "Destacada", + "Update to {update}" : "Actualizar a {update}", + "All ExApps are up-to-date." : "Todas as aplicacións externas (ExApps) están actualizadas.", + "Default Deploy daemon is not accessible" : "Non é posíbel acceder ao servizo predeterminado de despregadura.", + "Icon" : "Icona", + "Version" : "Versión", + "Daemon" : "Servizo", + "Level" : "Nivel", + "Actions" : "Accións", + "Results from other categories" : "Resultados doutras categorías", + "No apps found" : "Non se atoparon aplicacións", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], + "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], + "Type" : "Escribir", + "Display Name" : "Nome para amosar", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/he.js b/l10n/he.js index 8f603a35..a9e5bfbb 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "ביטול", + "Delete" : "מחיקה", + "Default" : "ברירת מחדל", + "Edit" : "עריכה", + "Name" : "שם", + "Host" : "מארח", + "Nextcloud URL" : "כתובת Nextcloud", + "Enabled" : "מופעל", + "Network" : "רשת", + "Confirm" : "אימות", + "Save" : "שמירה", + "Register" : "רישום", "Update to {version}" : "עדכון ל־{version}", "Remove" : "הסרה", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "מומלץ", "Update to {update}" : "עדכון ל־{version}", "Icon" : "סמל", - "Name" : "שם", "Version" : "גרסה", "Daemon" : "סוכן", "Level" : "רמה", @@ -27,17 +38,6 @@ OC.L10N.register( "Results from other categories" : "תוצאות מקטגוריות אחרות", "Type" : "סוג", "Display Name" : "שם תצוגה", - "Cancel" : "ביטול", - "Delete" : "מחיקה", - "Default" : "ברירת מחדל", - "Edit" : "עריכה", - "Host" : "מארח", - "Nextcloud URL" : "כתובת Nextcloud", - "Enabled" : "מופעל", - "Network" : "רשת", - "Confirm" : "אימות", - "Save" : "שמירה", - "Register" : "רישום", "Your apps" : "היישומונים שלך", "Documentation" : "תיעוד", "Details" : "פרטים", diff --git a/l10n/he.json b/l10n/he.json index 1109286c..6c524d4c 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "ביטול", + "Delete" : "מחיקה", + "Default" : "ברירת מחדל", + "Edit" : "עריכה", + "Name" : "שם", + "Host" : "מארח", + "Nextcloud URL" : "כתובת Nextcloud", + "Enabled" : "מופעל", + "Network" : "רשת", + "Confirm" : "אימות", + "Save" : "שמירה", + "Register" : "רישום", "Update to {version}" : "עדכון ל־{version}", "Remove" : "הסרה", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", @@ -17,7 +29,6 @@ "Featured" : "מומלץ", "Update to {update}" : "עדכון ל־{version}", "Icon" : "סמל", - "Name" : "שם", "Version" : "גרסה", "Daemon" : "סוכן", "Level" : "רמה", @@ -25,17 +36,6 @@ "Results from other categories" : "תוצאות מקטגוריות אחרות", "Type" : "סוג", "Display Name" : "שם תצוגה", - "Cancel" : "ביטול", - "Delete" : "מחיקה", - "Default" : "ברירת מחדל", - "Edit" : "עריכה", - "Host" : "מארח", - "Nextcloud URL" : "כתובת Nextcloud", - "Enabled" : "מופעל", - "Network" : "רשת", - "Confirm" : "אימות", - "Save" : "שמירה", - "Register" : "רישום", "Your apps" : "היישומונים שלך", "Documentation" : "תיעוד", "Details" : "פרטים", diff --git a/l10n/hr.js b/l10n/hr.js index a8106380..e3e7cc41 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Odustani", + "Delete" : "Izbriši", + "Default" : "Zadani", + "Edit" : "Uredi", + "Name" : "Naziv", + "Host" : "Glavno računalo", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Omogućeno", + "Network" : "Mreža", + "Confirm" : "Potvrdi", + "Save" : "Spremi", + "Register" : "Registriraj se", "Update to {version}" : "Ažuriraj na {version}", "Remove" : "Ukloni", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najmanja inačica Nextclouda. To će biti pogreška u budućnosti.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "Istaknuto", "Update to {update}" : "Ažuriraj na {update}", "Icon" : "Ikona", - "Name" : "Naziv", "Version" : "Inačica", "Daemon" : "Daemon", "Level" : "Razina", @@ -27,17 +38,6 @@ OC.L10N.register( "Results from other categories" : "Rezultati iz drugih kategorija", "Type" : "Vrsta", "Display Name" : "Ime", - "Cancel" : "Odustani", - "Delete" : "Izbriši", - "Default" : "Zadani", - "Edit" : "Uredi", - "Host" : "Glavno računalo", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Omogućeno", - "Network" : "Mreža", - "Confirm" : "Potvrdi", - "Save" : "Spremi", - "Register" : "Registriraj se", "Your apps" : "Vaše aplikacije", "Documentation" : "Dokumentacija", "Details" : "Pojedinosti", diff --git a/l10n/hr.json b/l10n/hr.json index 64f0d11b..c4d0ca31 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Odustani", + "Delete" : "Izbriši", + "Default" : "Zadani", + "Edit" : "Uredi", + "Name" : "Naziv", + "Host" : "Glavno računalo", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Omogućeno", + "Network" : "Mreža", + "Confirm" : "Potvrdi", + "Save" : "Spremi", + "Register" : "Registriraj se", "Update to {version}" : "Ažuriraj na {version}", "Remove" : "Ukloni", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najmanja inačica Nextclouda. To će biti pogreška u budućnosti.", @@ -17,7 +29,6 @@ "Featured" : "Istaknuto", "Update to {update}" : "Ažuriraj na {update}", "Icon" : "Ikona", - "Name" : "Naziv", "Version" : "Inačica", "Daemon" : "Daemon", "Level" : "Razina", @@ -25,17 +36,6 @@ "Results from other categories" : "Rezultati iz drugih kategorija", "Type" : "Vrsta", "Display Name" : "Ime", - "Cancel" : "Odustani", - "Delete" : "Izbriši", - "Default" : "Zadani", - "Edit" : "Uredi", - "Host" : "Glavno računalo", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Omogućeno", - "Network" : "Mreža", - "Confirm" : "Potvrdi", - "Save" : "Spremi", - "Register" : "Registriraj se", "Your apps" : "Vaše aplikacije", "Documentation" : "Dokumentacija", "Details" : "Pojedinosti", diff --git a/l10n/hu.js b/l10n/hu.js index 2cc2297e..f97c2685 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Mégse", + "Delete" : "Törlés", + "Edit" : "Szerkesztés", + "Name" : "Név", + "Host" : "Kiszolgáló", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Engedélyezve", + "Display name" : "Megjelenítendő név", + "Network" : "Hálózat", + "Confirm" : "Megerősítés", + "Save" : "Mentés", + "Register" : "Regisztráció", "Update to {version}" : "Frissítés erre: {version}", "Remove" : "Eltávolítás", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "Kiemelt", "Update to {update}" : "Frissítés erre: {update}", "Icon" : "Ikon", - "Name" : "Név", "Version" : "Verzió", "Daemon" : "Démon", "Level" : "Szint", @@ -28,17 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Frissítés","Összes frissítése"], "Type" : "Típus", "Display Name" : "Megjelenített név", - "Cancel" : "Mégse", - "Delete" : "Törlés", - "Edit" : "Szerkesztés", - "Host" : "Kiszolgáló", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Engedélyezve", - "Display name" : "Megjelenítendő név", - "Network" : "Hálózat", - "Confirm" : "Megerősítés", - "Save" : "Mentés", - "Register" : "Regisztráció", "Your apps" : "Az Ön alkalmazásai", "Documentation" : "Dokumentáció", "Details" : "Részletek", diff --git a/l10n/hu.json b/l10n/hu.json index fc9afebb..132ebfa9 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Mégse", + "Delete" : "Törlés", + "Edit" : "Szerkesztés", + "Name" : "Név", + "Host" : "Kiszolgáló", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Engedélyezve", + "Display name" : "Megjelenítendő név", + "Network" : "Hálózat", + "Confirm" : "Megerősítés", + "Save" : "Mentés", + "Register" : "Regisztráció", "Update to {version}" : "Frissítés erre: {version}", "Remove" : "Eltávolítás", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", @@ -17,7 +29,6 @@ "Featured" : "Kiemelt", "Update to {update}" : "Frissítés erre: {update}", "Icon" : "Ikon", - "Name" : "Név", "Version" : "Verzió", "Daemon" : "Démon", "Level" : "Szint", @@ -26,17 +37,6 @@ "_Update_::_Update all_" : ["Frissítés","Összes frissítése"], "Type" : "Típus", "Display Name" : "Megjelenített név", - "Cancel" : "Mégse", - "Delete" : "Törlés", - "Edit" : "Szerkesztés", - "Host" : "Kiszolgáló", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Engedélyezve", - "Display name" : "Megjelenítendő név", - "Network" : "Hálózat", - "Confirm" : "Megerősítés", - "Save" : "Mentés", - "Register" : "Regisztráció", "Your apps" : "Az Ön alkalmazásai", "Documentation" : "Dokumentáció", "Details" : "Részletek", diff --git a/l10n/ia.js b/l10n/ia.js index f225b351..d0141e96 100644 --- a/l10n/ia.js +++ b/l10n/ia.js @@ -1,6 +1,12 @@ OC.L10N.register( "app_api", { + "Delete" : "Deler", + "Edit" : "Modificar", + "Host" : "Hospite", + "Enabled" : "Activate", + "Confirm" : "Confirmar", + "Save" : "Salveguardar", "Visit website" : "Visitar sito web", "Report a bug" : "Reportar un defecto", "User documentation" : "Documentation de usator", @@ -9,12 +15,6 @@ OC.L10N.register( "Version" : "Version", "Actions" : "Actiones", "Type" : "Typo", - "Delete" : "Deler", - "Edit" : "Modificar", - "Host" : "Hospite", - "Enabled" : "Activate", - "Confirm" : "Confirmar", - "Save" : "Salveguardar", "Documentation" : "Documentation", "Details" : "Detalios", "Disable" : "Disactivar" diff --git a/l10n/ia.json b/l10n/ia.json index 059ed00d..6275d553 100644 --- a/l10n/ia.json +++ b/l10n/ia.json @@ -1,4 +1,10 @@ { "translations": { + "Delete" : "Deler", + "Edit" : "Modificar", + "Host" : "Hospite", + "Enabled" : "Activate", + "Confirm" : "Confirmar", + "Save" : "Salveguardar", "Visit website" : "Visitar sito web", "Report a bug" : "Reportar un defecto", "User documentation" : "Documentation de usator", @@ -7,12 +13,6 @@ "Version" : "Version", "Actions" : "Actiones", "Type" : "Typo", - "Delete" : "Deler", - "Edit" : "Modificar", - "Host" : "Hospite", - "Enabled" : "Activate", - "Confirm" : "Confirmar", - "Save" : "Salveguardar", "Documentation" : "Documentation", "Details" : "Detalios", "Disable" : "Disactivar" diff --git a/l10n/id.js b/l10n/id.js index e2d34ab4..28b311dc 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Cancel" : "Batal", + "Delete" : "Hapus", + "Default" : "Default", + "Edit" : "Sunting", + "Name" : "Nama", + "Host" : "Host", + "Enabled" : "Diaktifkan", + "Confirm" : "Konfirmasi", + "Save" : "Simpan", + "Register" : "Daftar", "Update to {version}" : "Perbarui ke {version}", "Remove" : "Hapus", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", @@ -18,21 +28,11 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", - "Name" : "Nama", "Version" : "Versi", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", "_Update_::_Update all_" : ["Perbarui semua"], "Type" : "tipe", - "Cancel" : "Batal", - "Delete" : "Hapus", - "Default" : "Default", - "Edit" : "Sunting", - "Host" : "Host", - "Enabled" : "Diaktifkan", - "Confirm" : "Konfirmasi", - "Save" : "Simpan", - "Register" : "Daftar", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", diff --git a/l10n/id.json b/l10n/id.json index 80d0d3d0..ba1b1d5c 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -1,4 +1,14 @@ { "translations": { + "Cancel" : "Batal", + "Delete" : "Hapus", + "Default" : "Default", + "Edit" : "Sunting", + "Name" : "Nama", + "Host" : "Host", + "Enabled" : "Diaktifkan", + "Confirm" : "Konfirmasi", + "Save" : "Simpan", + "Register" : "Daftar", "Update to {version}" : "Perbarui ke {version}", "Remove" : "Hapus", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", @@ -16,21 +26,11 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", - "Name" : "Nama", "Version" : "Versi", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", "_Update_::_Update all_" : ["Perbarui semua"], "Type" : "tipe", - "Cancel" : "Batal", - "Delete" : "Hapus", - "Default" : "Default", - "Edit" : "Sunting", - "Host" : "Host", - "Enabled" : "Diaktifkan", - "Confirm" : "Konfirmasi", - "Save" : "Simpan", - "Register" : "Daftar", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", diff --git a/l10n/is.js b/l10n/is.js index a39d875e..4cb32c1d 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -1,6 +1,17 @@ OC.L10N.register( "app_api", { + "Cancel" : "Hætta við", + "Delete" : "Eyða", + "Edit" : "Breyta", + "Name" : "Heiti", + "Host" : "Þjónn", + "Enabled" : "Virkt", + "Display name" : "Birtingarnafn", + "Network" : "Netkerfi", + "Confirm" : "Staðfesta", + "Save" : "Vista", + "Register" : "Nýskráning", "Update to {version}" : "Uppfæra í {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", @@ -18,7 +29,6 @@ OC.L10N.register( "Featured" : "Í deiglunni", "Update to {update}" : "Uppfæra í {update}", "Icon" : "Táknmynd", - "Name" : "Heiti", "Version" : "Útgáfa", "Daemon" : "Púki", "Level" : "Stig", @@ -27,16 +37,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], "Type" : "Tegund", "Display Name" : "Birtingarnafn", - "Cancel" : "Hætta við", - "Delete" : "Eyða", - "Edit" : "Breyta", - "Host" : "Þjónn", - "Enabled" : "Virkt", - "Display name" : "Birtingarnafn", - "Network" : "Netkerfi", - "Confirm" : "Staðfesta", - "Save" : "Vista", - "Register" : "Nýskráning", "Your apps" : "Forritin þín", "Documentation" : "Hjálparskjöl", "Details" : "Nánar", diff --git a/l10n/is.json b/l10n/is.json index 40347def..59158fc8 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -1,4 +1,15 @@ { "translations": { + "Cancel" : "Hætta við", + "Delete" : "Eyða", + "Edit" : "Breyta", + "Name" : "Heiti", + "Host" : "Þjónn", + "Enabled" : "Virkt", + "Display name" : "Birtingarnafn", + "Network" : "Netkerfi", + "Confirm" : "Staðfesta", + "Save" : "Vista", + "Register" : "Nýskráning", "Update to {version}" : "Uppfæra í {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", @@ -16,7 +27,6 @@ "Featured" : "Í deiglunni", "Update to {update}" : "Uppfæra í {update}", "Icon" : "Táknmynd", - "Name" : "Heiti", "Version" : "Útgáfa", "Daemon" : "Púki", "Level" : "Stig", @@ -25,16 +35,6 @@ "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], "Type" : "Tegund", "Display Name" : "Birtingarnafn", - "Cancel" : "Hætta við", - "Delete" : "Eyða", - "Edit" : "Breyta", - "Host" : "Þjónn", - "Enabled" : "Virkt", - "Display name" : "Birtingarnafn", - "Network" : "Netkerfi", - "Confirm" : "Staðfesta", - "Save" : "Vista", - "Register" : "Nýskráning", "Your apps" : "Forritin þín", "Documentation" : "Hjálparskjöl", "Details" : "Nánar", diff --git a/l10n/it.js b/l10n/it.js index 3597ae40..94c2e161 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "Annulla", + "Delete" : "Elimina", + "Default" : "Predefinito", + "Edit" : "Modifica", + "Name" : "Nome", + "Host" : "Host", + "Nextcloud URL" : "URL Nextcloud", + "Enabled" : "Abilitata", + "Display name" : "Nome visualizzato", + "Network" : "Rete", + "Confirm" : "Conferma", + "Save" : "Salva", + "Register" : "Registra", "Update to {version}" : "Aggiorna a {version}", "Remove" : "Rimuovi", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", @@ -19,7 +32,6 @@ OC.L10N.register( "Featured" : "In evidenza", "Update to {update}" : "Aggiorna a {update}", "Icon" : "Icona", - "Name" : "Nome", "Version" : "Versione", "Daemon" : "Demone", "Level" : "Livello", @@ -28,18 +40,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], "Type" : "Tipo", "Display Name" : "Nome visualizzato", - "Cancel" : "Annulla", - "Delete" : "Elimina", - "Default" : "Predefinito", - "Edit" : "Modifica", - "Host" : "Host", - "Nextcloud URL" : "URL Nextcloud", - "Enabled" : "Abilitata", - "Display name" : "Nome visualizzato", - "Network" : "Rete", - "Confirm" : "Conferma", - "Save" : "Salva", - "Register" : "Registra", "Your apps" : "Le tue applicazioni", "Documentation" : "Documentazione", "Details" : "Dettagli", diff --git a/l10n/it.json b/l10n/it.json index 70a31334..3fc7216d 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "Annulla", + "Delete" : "Elimina", + "Default" : "Predefinito", + "Edit" : "Modifica", + "Name" : "Nome", + "Host" : "Host", + "Nextcloud URL" : "URL Nextcloud", + "Enabled" : "Abilitata", + "Display name" : "Nome visualizzato", + "Network" : "Rete", + "Confirm" : "Conferma", + "Save" : "Salva", + "Register" : "Registra", "Update to {version}" : "Aggiorna a {version}", "Remove" : "Rimuovi", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", @@ -17,7 +30,6 @@ "Featured" : "In evidenza", "Update to {update}" : "Aggiorna a {update}", "Icon" : "Icona", - "Name" : "Nome", "Version" : "Versione", "Daemon" : "Demone", "Level" : "Livello", @@ -26,18 +38,6 @@ "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], "Type" : "Tipo", "Display Name" : "Nome visualizzato", - "Cancel" : "Annulla", - "Delete" : "Elimina", - "Default" : "Predefinito", - "Edit" : "Modifica", - "Host" : "Host", - "Nextcloud URL" : "URL Nextcloud", - "Enabled" : "Abilitata", - "Display name" : "Nome visualizzato", - "Network" : "Rete", - "Confirm" : "Conferma", - "Save" : "Salva", - "Register" : "Registra", "Your apps" : "Le tue applicazioni", "Documentation" : "Documentazione", "Details" : "Dettagli", diff --git a/l10n/ja.js b/l10n/ja.js index dc9c61a3..98d8352d 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "キャンセル", + "Delete" : "削除", + "Edit" : "編集", + "Name" : "名前", + "Host" : "ホスト", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "有効", + "Display name" : "表示名", + "Network" : "ネットワーク", + "Confirm" : "承認", + "Save" : "保存する", + "Register" : "登録", "Update to {version}" : "{version} にアップデート", "Remove" : "削除", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "注目", "Update to {update}" : "{update} にアップデート", "Icon" : "アイコン", - "Name" : "名前", "Version" : "バージョン", "Daemon" : "デーモン", "Level" : "レベル", @@ -28,17 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", - "Cancel" : "キャンセル", - "Delete" : "削除", - "Edit" : "編集", - "Host" : "ホスト", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "有効", - "Display name" : "表示名", - "Network" : "ネットワーク", - "Confirm" : "承認", - "Save" : "保存する", - "Register" : "登録", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", "Details" : "詳細", diff --git a/l10n/ja.json b/l10n/ja.json index 0fec1437..21dc33b0 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "キャンセル", + "Delete" : "削除", + "Edit" : "編集", + "Name" : "名前", + "Host" : "ホスト", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "有効", + "Display name" : "表示名", + "Network" : "ネットワーク", + "Confirm" : "承認", + "Save" : "保存する", + "Register" : "登録", "Update to {version}" : "{version} にアップデート", "Remove" : "削除", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", @@ -17,7 +29,6 @@ "Featured" : "注目", "Update to {update}" : "{update} にアップデート", "Icon" : "アイコン", - "Name" : "名前", "Version" : "バージョン", "Daemon" : "デーモン", "Level" : "レベル", @@ -26,17 +37,6 @@ "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", - "Cancel" : "キャンセル", - "Delete" : "削除", - "Edit" : "編集", - "Host" : "ホスト", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "有効", - "Display name" : "表示名", - "Network" : "ネットワーク", - "Confirm" : "承認", - "Save" : "保存する", - "Register" : "登録", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", "Details" : "詳細", diff --git a/l10n/ka.js b/l10n/ka.js index d9f3768c..568aea71 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", + "Delete" : "Delete", + "Default" : "Default", + "Edit" : "Edit", + "Name" : "Name", + "Host" : "Host", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Enabled", + "Display name" : "Display name", + "Network" : "Network", + "Confirm" : "Confirm", + "Save" : "Save", + "Register" : "Register", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", @@ -19,25 +32,12 @@ OC.L10N.register( "Featured" : "Featured", "Update to {update}" : "Update to {update}", "Icon" : "Icon", - "Name" : "Name", "Version" : "Version", "Level" : "Level", "Actions" : "Actions", "Results from other categories" : "Results from other categories", "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", - "Cancel" : "Cancel", - "Delete" : "Delete", - "Default" : "Default", - "Edit" : "Edit", - "Host" : "Host", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Enabled", - "Display name" : "Display name", - "Network" : "Network", - "Confirm" : "Confirm", - "Save" : "Save", - "Register" : "Register", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", diff --git a/l10n/ka.json b/l10n/ka.json index dba7d8bf..978cde6b 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "Cancel", + "Delete" : "Delete", + "Default" : "Default", + "Edit" : "Edit", + "Name" : "Name", + "Host" : "Host", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Enabled", + "Display name" : "Display name", + "Network" : "Network", + "Confirm" : "Confirm", + "Save" : "Save", + "Register" : "Register", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", @@ -17,25 +30,12 @@ "Featured" : "Featured", "Update to {update}" : "Update to {update}", "Icon" : "Icon", - "Name" : "Name", "Version" : "Version", "Level" : "Level", "Actions" : "Actions", "Results from other categories" : "Results from other categories", "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", - "Cancel" : "Cancel", - "Delete" : "Delete", - "Default" : "Default", - "Edit" : "Edit", - "Host" : "Host", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Enabled", - "Display name" : "Display name", - "Network" : "Network", - "Confirm" : "Confirm", - "Save" : "Save", - "Register" : "Register", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index 678c73c0..71a1b9f2 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Cancel" : "გაუქმება", + "Delete" : "წაშლა", + "Default" : "საწყისი პარამეტრები", + "Edit" : "შეცვლა", + "Name" : "სახელი", + "Host" : "ჰოსტი", + "Enabled" : "მოქმედია", + "Confirm" : "დადასტურება", + "Save" : "შენახვა", + "Register" : "რეგისტრაცია", "Update to {version}" : "განაახლეთ ვერსიაზე {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მინიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", @@ -14,21 +24,11 @@ OC.L10N.register( "Supported" : "მხარდაჭერილია", "Featured" : "გამორჩეულები", "Icon" : "პიქტოგრამა", - "Name" : "სახელი", "Version" : "ვერსია", "Daemon" : "დაემონი", "Level" : "დონე", "Actions" : "მოქმედებები", "Display Name" : "დისპლეი სახელი", - "Cancel" : "გაუქმება", - "Delete" : "წაშლა", - "Default" : "საწყისი პარამეტრები", - "Edit" : "შეცვლა", - "Host" : "ჰოსტი", - "Enabled" : "მოქმედია", - "Confirm" : "დადასტურება", - "Save" : "შენახვა", - "Register" : "რეგისტრაცია", "Your apps" : "თქვენი აპლიკაციები", "Documentation" : "დოკუმენტაცია", "Details" : "დეტალები", diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 0691eb3b..6b27ddad 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -1,4 +1,14 @@ { "translations": { + "Cancel" : "გაუქმება", + "Delete" : "წაშლა", + "Default" : "საწყისი პარამეტრები", + "Edit" : "შეცვლა", + "Name" : "სახელი", + "Host" : "ჰოსტი", + "Enabled" : "მოქმედია", + "Confirm" : "დადასტურება", + "Save" : "შენახვა", + "Register" : "რეგისტრაცია", "Update to {version}" : "განაახლეთ ვერსიაზე {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მინიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", @@ -12,21 +22,11 @@ "Supported" : "მხარდაჭერილია", "Featured" : "გამორჩეულები", "Icon" : "პიქტოგრამა", - "Name" : "სახელი", "Version" : "ვერსია", "Daemon" : "დაემონი", "Level" : "დონე", "Actions" : "მოქმედებები", "Display Name" : "დისპლეი სახელი", - "Cancel" : "გაუქმება", - "Delete" : "წაშლა", - "Default" : "საწყისი პარამეტრები", - "Edit" : "შეცვლა", - "Host" : "ჰოსტი", - "Enabled" : "მოქმედია", - "Confirm" : "დადასტურება", - "Save" : "შენახვა", - "Register" : "რეგისტრაცია", "Your apps" : "თქვენი აპლიკაციები", "Documentation" : "დოკუმენტაცია", "Details" : "დეტალები", diff --git a/l10n/kab.js b/l10n/kab.js index cbee8b03..fe7b19cb 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "Remove" : "Kkes", - "Name" : "Nom", - "Type" : "Anaw", "Delete" : "Kkes", "Default" : "Prédéfini(e)", "Edit" : "Ẓreg", + "Name" : "Nom", "Enabled" : "Yermed", "Confirm" : "Serggeg", "Save" : "Sekles", + "Remove" : "Kkes", + "Type" : "Anaw", "Details" : "Talqayt", "Disable" : "Désactiver" }, diff --git a/l10n/kab.json b/l10n/kab.json index b165ae0a..8872e938 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -1,13 +1,13 @@ { "translations": { - "Remove" : "Kkes", - "Name" : "Nom", - "Type" : "Anaw", "Delete" : "Kkes", "Default" : "Prédéfini(e)", "Edit" : "Ẓreg", + "Name" : "Nom", "Enabled" : "Yermed", "Confirm" : "Serggeg", "Save" : "Sekles", + "Remove" : "Kkes", + "Type" : "Anaw", "Details" : "Talqayt", "Disable" : "Désactiver" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/km.js b/l10n/km.js index 66c025c0..e204efe4 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "Name" : "ឈ្មោះ", - "Version" : "កំណែ", - "Type" : "ប្រភេទ", "Cancel" : "លើកលែង", "Delete" : "លុប", "Edit" : "កែប្រែ", + "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", "Save" : "រក្សាទុក", + "Version" : "កំណែ", + "Type" : "ប្រភេទ", "Documentation" : "កម្រង​ឯកសារ", "Details" : "ព័ត៌មាន​លម្អិត", "Disable" : "បិទ" diff --git a/l10n/km.json b/l10n/km.json index 85069ce5..3f8367ec 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -1,13 +1,13 @@ { "translations": { - "Name" : "ឈ្មោះ", - "Version" : "កំណែ", - "Type" : "ប្រភេទ", "Cancel" : "លើកលែង", "Delete" : "លុប", "Edit" : "កែប្រែ", + "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", "Save" : "រក្សាទុក", + "Version" : "កំណែ", + "Type" : "ប្រភេទ", "Documentation" : "កម្រង​ឯកសារ", "Details" : "ព័ត៌មាន​លម្អិត", "Disable" : "បិទ" diff --git a/l10n/ko.js b/l10n/ko.js index d35c7e23..56a09a09 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "외부 응용 프로그램", "Daemon config not found" : "데몬 구성을 찾을 수 없음", "Error starting install of ExApp" : "외부 응용 프로그램 설치에 오류가 발생", "ExApp failed to register, check the NC logs" : "외부 응용 프로그램 등록 실패, NC 로그 확인", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "외부 응용 프로그램 관리", "Admin options saved" : "관리자 옵션이 저장됨", "Failed to save admin options" : "관리자 옵션 저장 실패", - "Update to {version}" : "{version}(으)로 업데이트", - "Remove" : "삭제", - "Delete data on remove" : "제거 시 데이터 삭제", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", - "View in store" : "스토어에서 보기", - "Visit website" : "웹 사이트 방문", - "Report a bug" : "버그 보고", - "User documentation" : "사용자 문서", - "Admin documentation" : "관리 문서", - "Developer documentation" : "개발자 문서", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "이 앱은 AppStore에 등록되어 있지 않습니다. 추가 정보가 없습니다. 활성화/비활성화 및 삭제 작업만 허용됩니다.", - "{license}-licensed" : "{license} 라이선스", - "This app is supported via your current Nextcloud subscription." : "이 앱은 당신의 현재 Nextcloud 구독을 통해 지원됩니다.", - "Supported" : "지원됨", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "추천 앱은 커뮤니티에서 개발했습니다. 이들은 생산성 업무에 있어 중심적인 기능을 담당하며 즉각 사용될 수 있습니다.", - "Featured" : "추천", - "Update to {update}" : "{update}(으)로 업데이트", - "All ExApps are up-to-date." : "모든 외부 응용 프로그램들이 최신 상태입니다.", - "Default Deploy daemon is not accessible" : "기본 배포 데몬에 액세스할 수 없음", - "Icon" : "아이콘", - "Name" : "이름", - "Version" : "버전", - "Daemon" : "데몬", - "Level" : "단계", - "Actions" : "동작", - "Results from other categories" : "다른 카테고리로부터의 결과", - "No apps found" : "앱이 발견되지 않음", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n개의 앱에 가능한 업데이트가 있음"], - "_Update_::_Update all_" : ["모두 업데이트"], - "Deploy Daemon" : "배포 데몬", - "Type" : "종류", - "Display Name" : "표시 이름", - "GPUs support" : "GPU 지원
", "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", @@ -82,15 +46,18 @@ OC.L10N.register( "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", + "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "일반적으로 개발에 사용되는 수동 설치 데몬입니다. 기본 데몬으로 설정할 수 없습니다.", "ExApps installed" : "외부 응용 프로그램이 설치됨", + "Name" : "이름", "Protocol" : "프로토콜", "Host" : "호스트", "Deploy config" : "구성 배포", "Docker network" : "Docker 네트워크", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 비밀번호", + "GPUs support" : "GPU 지원
", "Compute device" : "컴퓨팅 장치", "Additional options" : "추가 옵션", "Verify connection" : "연결 확인", @@ -160,6 +127,39 @@ OC.L10N.register( "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", + "External Apps" : "외부 응용 프로그램", + "Update to {version}" : "{version}(으)로 업데이트", + "Remove" : "삭제", + "Delete data on remove" : "제거 시 데이터 삭제", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", + "View in store" : "스토어에서 보기", + "Visit website" : "웹 사이트 방문", + "Report a bug" : "버그 보고", + "User documentation" : "사용자 문서", + "Admin documentation" : "관리 문서", + "Developer documentation" : "개발자 문서", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "이 앱은 AppStore에 등록되어 있지 않습니다. 추가 정보가 없습니다. 활성화/비활성화 및 삭제 작업만 허용됩니다.", + "{license}-licensed" : "{license} 라이선스", + "This app is supported via your current Nextcloud subscription." : "이 앱은 당신의 현재 Nextcloud 구독을 통해 지원됩니다.", + "Supported" : "지원됨", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "추천 앱은 커뮤니티에서 개발했습니다. 이들은 생산성 업무에 있어 중심적인 기능을 담당하며 즉각 사용될 수 있습니다.", + "Featured" : "추천", + "Update to {update}" : "{update}(으)로 업데이트", + "All ExApps are up-to-date." : "모든 외부 응용 프로그램들이 최신 상태입니다.", + "Default Deploy daemon is not accessible" : "기본 배포 데몬에 액세스할 수 없음", + "Icon" : "아이콘", + "Version" : "버전", + "Daemon" : "데몬", + "Level" : "단계", + "Actions" : "동작", + "Results from other categories" : "다른 카테고리로부터의 결과", + "No apps found" : "앱이 발견되지 않음", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n개의 앱에 가능한 업데이트가 있음"], + "_Update_::_Update all_" : ["모두 업데이트"], + "Type" : "종류", + "Display Name" : "표시 이름", "Your apps" : "내 앱", "Documentation" : "문서", "Details" : "세부사항", diff --git a/l10n/ko.json b/l10n/ko.json index 743388ad..b439602c 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "외부 응용 프로그램", "Daemon config not found" : "데몬 구성을 찾을 수 없음", "Error starting install of ExApp" : "외부 응용 프로그램 설치에 오류가 발생", "ExApp failed to register, check the NC logs" : "외부 응용 프로그램 등록 실패, NC 로그 확인", @@ -33,41 +32,6 @@ "External Apps management" : "외부 응용 프로그램 관리", "Admin options saved" : "관리자 옵션이 저장됨", "Failed to save admin options" : "관리자 옵션 저장 실패", - "Update to {version}" : "{version}(으)로 업데이트", - "Remove" : "삭제", - "Delete data on remove" : "제거 시 데이터 삭제", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", - "View in store" : "스토어에서 보기", - "Visit website" : "웹 사이트 방문", - "Report a bug" : "버그 보고", - "User documentation" : "사용자 문서", - "Admin documentation" : "관리 문서", - "Developer documentation" : "개발자 문서", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "이 앱은 AppStore에 등록되어 있지 않습니다. 추가 정보가 없습니다. 활성화/비활성화 및 삭제 작업만 허용됩니다.", - "{license}-licensed" : "{license} 라이선스", - "This app is supported via your current Nextcloud subscription." : "이 앱은 당신의 현재 Nextcloud 구독을 통해 지원됩니다.", - "Supported" : "지원됨", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "추천 앱은 커뮤니티에서 개발했습니다. 이들은 생산성 업무에 있어 중심적인 기능을 담당하며 즉각 사용될 수 있습니다.", - "Featured" : "추천", - "Update to {update}" : "{update}(으)로 업데이트", - "All ExApps are up-to-date." : "모든 외부 응용 프로그램들이 최신 상태입니다.", - "Default Deploy daemon is not accessible" : "기본 배포 데몬에 액세스할 수 없음", - "Icon" : "아이콘", - "Name" : "이름", - "Version" : "버전", - "Daemon" : "데몬", - "Level" : "단계", - "Actions" : "동작", - "Results from other categories" : "다른 카테고리로부터의 결과", - "No apps found" : "앱이 발견되지 않음", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n개의 앱에 가능한 업데이트가 있음"], - "_Update_::_Update all_" : ["모두 업데이트"], - "Deploy Daemon" : "배포 데몬", - "Type" : "종류", - "Display Name" : "표시 이름", - "GPUs support" : "GPU 지원
", "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", @@ -80,15 +44,18 @@ "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", + "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "일반적으로 개발에 사용되는 수동 설치 데몬입니다. 기본 데몬으로 설정할 수 없습니다.", "ExApps installed" : "외부 응용 프로그램이 설치됨", + "Name" : "이름", "Protocol" : "프로토콜", "Host" : "호스트", "Deploy config" : "구성 배포", "Docker network" : "Docker 네트워크", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 비밀번호", + "GPUs support" : "GPU 지원
", "Compute device" : "컴퓨팅 장치", "Additional options" : "추가 옵션", "Verify connection" : "연결 확인", @@ -158,6 +125,39 @@ "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", + "External Apps" : "외부 응용 프로그램", + "Update to {version}" : "{version}(으)로 업데이트", + "Remove" : "삭제", + "Delete data on remove" : "제거 시 데이터 삭제", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", + "View in store" : "스토어에서 보기", + "Visit website" : "웹 사이트 방문", + "Report a bug" : "버그 보고", + "User documentation" : "사용자 문서", + "Admin documentation" : "관리 문서", + "Developer documentation" : "개발자 문서", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "이 앱은 AppStore에 등록되어 있지 않습니다. 추가 정보가 없습니다. 활성화/비활성화 및 삭제 작업만 허용됩니다.", + "{license}-licensed" : "{license} 라이선스", + "This app is supported via your current Nextcloud subscription." : "이 앱은 당신의 현재 Nextcloud 구독을 통해 지원됩니다.", + "Supported" : "지원됨", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "추천 앱은 커뮤니티에서 개발했습니다. 이들은 생산성 업무에 있어 중심적인 기능을 담당하며 즉각 사용될 수 있습니다.", + "Featured" : "추천", + "Update to {update}" : "{update}(으)로 업데이트", + "All ExApps are up-to-date." : "모든 외부 응용 프로그램들이 최신 상태입니다.", + "Default Deploy daemon is not accessible" : "기본 배포 데몬에 액세스할 수 없음", + "Icon" : "아이콘", + "Version" : "버전", + "Daemon" : "데몬", + "Level" : "단계", + "Actions" : "동작", + "Results from other categories" : "다른 카테고리로부터의 결과", + "No apps found" : "앱이 발견되지 않음", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n개의 앱에 가능한 업데이트가 있음"], + "_Update_::_Update all_" : ["모두 업데이트"], + "Type" : "종류", + "Display Name" : "표시 이름", "Your apps" : "내 앱", "Documentation" : "문서", "Details" : "세부사항", diff --git a/l10n/lb.js b/l10n/lb.js index 71c889ee..7cb62155 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -1,16 +1,16 @@ OC.L10N.register( "app_api", { - "Report a bug" : "E Feeler melden", - "Name" : "Numm", - "Actions" : "Aktiounen", - "Type" : "Typ", "Delete" : "Läschen", "Edit" : "Änneren", + "Name" : "Numm", "Host" : "Host", "Enabled" : "Aktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", + "Report a bug" : "E Feeler melden", + "Actions" : "Aktiounen", + "Type" : "Typ", "Documentation" : "Dokumentatioun", "Details" : "Detailer", "Updates" : "Updates", diff --git a/l10n/lb.json b/l10n/lb.json index 239511b0..eebd16c0 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -1,14 +1,14 @@ { "translations": { - "Report a bug" : "E Feeler melden", - "Name" : "Numm", - "Actions" : "Aktiounen", - "Type" : "Typ", "Delete" : "Läschen", "Edit" : "Änneren", + "Name" : "Numm", "Host" : "Host", "Enabled" : "Aktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", + "Report a bug" : "E Feeler melden", + "Actions" : "Aktiounen", + "Type" : "Typ", "Documentation" : "Dokumentatioun", "Details" : "Detailer", "Updates" : "Updates", diff --git a/l10n/lo.js b/l10n/lo.js index 70e0ba44..57be4d45 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -1,16 +1,16 @@ OC.L10N.register( "app_api", { - "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Remove" : "ຍ້າຍອອກ", - "Name" : "ຊື່", - "Type" : "ພິມ", "Cancel" : "ຍົກເລີກ", "Delete" : "ລຶບ", "Default" : "ເລີ່ມຕົ້ນ", "Edit" : "ແກ້ໄຂ", + "Name" : "ຊື່", "Confirm" : "ຢືນຢັນ", "Save" : "ບັນທຶກ", + "Update to {version}" : "ປັບປຸງ ເປັນ {version}", + "Remove" : "ຍ້າຍອອກ", + "Type" : "ພິມ", "Details" : "ລາຍລະອຽດ", "Disable" : "ປິດ" }, diff --git a/l10n/lo.json b/l10n/lo.json index 1422c058..864be0f6 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -1,14 +1,14 @@ { "translations": { - "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Remove" : "ຍ້າຍອອກ", - "Name" : "ຊື່", - "Type" : "ພິມ", "Cancel" : "ຍົກເລີກ", "Delete" : "ລຶບ", "Default" : "ເລີ່ມຕົ້ນ", "Edit" : "ແກ້ໄຂ", + "Name" : "ຊື່", "Confirm" : "ຢືນຢັນ", "Save" : "ບັນທຶກ", + "Update to {version}" : "ປັບປຸງ ເປັນ {version}", + "Remove" : "ຍ້າຍອອກ", + "Type" : "ພິມ", "Details" : "ລາຍລະອຽດ", "Disable" : "ປິດ" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 813ec2bc..cf8c8508 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Atsisakyti", + "Delete" : "Ištrinti", + "Default" : "Numatytasis", + "Edit" : "Taisyti", + "Name" : "Vardas", + "Host" : "Serveris", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Įjungta", + "Network" : "Tinklas", + "Confirm" : "Patvirtinti", + "Save" : "Įrašyti", + "Register" : "Registruotis", "Update to {version}" : "Atnaujinti į versiją {version}", "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", @@ -19,7 +31,6 @@ OC.L10N.register( "Featured" : "Siūlomos", "Update to {update}" : "Atnaujinti į {update}", "Icon" : "Piktograma", - "Name" : "Vardas", "Version" : "Versija", "Daemon" : "Tarnyba", "Level" : "Lygmuo", @@ -28,17 +39,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", - "Cancel" : "Atsisakyti", - "Delete" : "Ištrinti", - "Default" : "Numatytasis", - "Edit" : "Taisyti", - "Host" : "Serveris", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Įjungta", - "Network" : "Tinklas", - "Confirm" : "Patvirtinti", - "Save" : "Įrašyti", - "Register" : "Registruotis", "Your apps" : "Jūsų programėlės", "Documentation" : "Dokumentacija", "Details" : "Išsamiau", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index a3dac8ac..c6e46dda 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Atsisakyti", + "Delete" : "Ištrinti", + "Default" : "Numatytasis", + "Edit" : "Taisyti", + "Name" : "Vardas", + "Host" : "Serveris", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Įjungta", + "Network" : "Tinklas", + "Confirm" : "Patvirtinti", + "Save" : "Įrašyti", + "Register" : "Registruotis", "Update to {version}" : "Atnaujinti į versiją {version}", "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", @@ -17,7 +29,6 @@ "Featured" : "Siūlomos", "Update to {update}" : "Atnaujinti į {update}", "Icon" : "Piktograma", - "Name" : "Vardas", "Version" : "Versija", "Daemon" : "Tarnyba", "Level" : "Lygmuo", @@ -26,17 +37,6 @@ "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", - "Cancel" : "Atsisakyti", - "Delete" : "Ištrinti", - "Default" : "Numatytasis", - "Edit" : "Taisyti", - "Host" : "Serveris", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Įjungta", - "Network" : "Tinklas", - "Confirm" : "Patvirtinti", - "Save" : "Įrašyti", - "Register" : "Registruotis", "Your apps" : "Jūsų programėlės", "Documentation" : "Dokumentacija", "Details" : "Išsamiau", diff --git a/l10n/lv.js b/l10n/lv.js index 498ff13a..458727ec 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Delete" : "Dzēst", + "Edit" : "Labot", + "Name" : "Nosaukums", + "Host" : "Resursdators", + "More info" : "Vairāk informācijas", + "Enabled" : "Iespējots", + "Display name" : "Attēlojamais vārds", + "Network" : "Tīkls", + "Confirm" : "Apstiprināt", + "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", "Remove" : "Izņemt", "Visit website" : "Apmeklējiet vietni", @@ -10,22 +20,12 @@ OC.L10N.register( "Developer documentation" : "Izstrādātāja dokumentācija", "Update to {update}" : "Atjaunināt uz {update}", "Icon" : "Ikona", - "Name" : "Nosaukums", "Version" : "Versija", "Level" : "Līmenis", "Actions" : "Darbības", "_Update_::_Update all_" : ["Atjaunināt visas","Atjaunināt","Atjaunināt visas"], "Type" : "Veids", "Display Name" : "Attēlojamais vārds", - "Delete" : "Dzēst", - "Edit" : "Labot", - "Host" : "Resursdators", - "More info" : "Vairāk informācijas", - "Enabled" : "Iespējots", - "Display name" : "Attēlojamais vārds", - "Network" : "Tīkls", - "Confirm" : "Apstiprināt", - "Save" : "Saglabāt", "Documentation" : "Dokumentācija", "Details" : "Detaļas", "Changelog" : "Izmaiņu žurnāls", diff --git a/l10n/lv.json b/l10n/lv.json index c7df4e6a..40b373e8 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -1,4 +1,14 @@ { "translations": { + "Delete" : "Dzēst", + "Edit" : "Labot", + "Name" : "Nosaukums", + "Host" : "Resursdators", + "More info" : "Vairāk informācijas", + "Enabled" : "Iespējots", + "Display name" : "Attēlojamais vārds", + "Network" : "Tīkls", + "Confirm" : "Apstiprināt", + "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", "Remove" : "Izņemt", "Visit website" : "Apmeklējiet vietni", @@ -8,22 +18,12 @@ "Developer documentation" : "Izstrādātāja dokumentācija", "Update to {update}" : "Atjaunināt uz {update}", "Icon" : "Ikona", - "Name" : "Nosaukums", "Version" : "Versija", "Level" : "Līmenis", "Actions" : "Darbības", "_Update_::_Update all_" : ["Atjaunināt visas","Atjaunināt","Atjaunināt visas"], "Type" : "Veids", "Display Name" : "Attēlojamais vārds", - "Delete" : "Dzēst", - "Edit" : "Labot", - "Host" : "Resursdators", - "More info" : "Vairāk informācijas", - "Enabled" : "Iespējots", - "Display name" : "Attēlojamais vārds", - "Network" : "Tīkls", - "Confirm" : "Apstiprināt", - "Save" : "Saglabāt", "Documentation" : "Dokumentācija", "Details" : "Detaļas", "Changelog" : "Izmaiņu žurnāls", diff --git a/l10n/mk.js b/l10n/mk.js index fb4c6a6f..9339a221 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "Откажи", + "Delete" : "Избриши", + "Default" : "Предефиниран", + "Edit" : "Уреди", + "Name" : "Име", + "Host" : "Домаќин", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Овозможено", + "Display name" : "Име и презиме", + "Network" : "Мрежа", + "Confirm" : "Потврди", + "Save" : "Сними", + "Register" : "Регистрирај се", "Update to {version}" : "Надгради на {version}", "Remove" : "Отстрани ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена минимална верзија. Може да настане грешка во иднина.", @@ -19,25 +32,12 @@ OC.L10N.register( "Featured" : "Истакнати", "Update to {update}" : "Надгради на {update}", "Icon" : "Икона", - "Name" : "Име", "Version" : "Верзија", "Level" : "Ниво", "Actions" : "Акции", "Results from other categories" : "Резултати од други категории", "_Update_::_Update all_" : ["Ажурирај","Ажурирај ги сите"], "Type" : "Вид", - "Cancel" : "Откажи", - "Delete" : "Избриши", - "Default" : "Предефиниран", - "Edit" : "Уреди", - "Host" : "Домаќин", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Овозможено", - "Display name" : "Име и презиме", - "Network" : "Мрежа", - "Confirm" : "Потврди", - "Save" : "Сними", - "Register" : "Регистрирај се", "Your apps" : "Ваши апликации", "Documentation" : "Документација", "Details" : "Детали", diff --git a/l10n/mk.json b/l10n/mk.json index e2321008..243b87df 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "Откажи", + "Delete" : "Избриши", + "Default" : "Предефиниран", + "Edit" : "Уреди", + "Name" : "Име", + "Host" : "Домаќин", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Овозможено", + "Display name" : "Име и презиме", + "Network" : "Мрежа", + "Confirm" : "Потврди", + "Save" : "Сними", + "Register" : "Регистрирај се", "Update to {version}" : "Надгради на {version}", "Remove" : "Отстрани ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена минимална верзија. Може да настане грешка во иднина.", @@ -17,25 +30,12 @@ "Featured" : "Истакнати", "Update to {update}" : "Надгради на {update}", "Icon" : "Икона", - "Name" : "Име", "Version" : "Верзија", "Level" : "Ниво", "Actions" : "Акции", "Results from other categories" : "Резултати од други категории", "_Update_::_Update all_" : ["Ажурирај","Ажурирај ги сите"], "Type" : "Вид", - "Cancel" : "Откажи", - "Delete" : "Избриши", - "Default" : "Предефиниран", - "Edit" : "Уреди", - "Host" : "Домаќин", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Овозможено", - "Display name" : "Име и презиме", - "Network" : "Мрежа", - "Confirm" : "Потврди", - "Save" : "Сними", - "Register" : "Регистрирај се", "Your apps" : "Ваши апликации", "Documentation" : "Документација", "Details" : "Детали", diff --git a/l10n/mn.js b/l10n/mn.js index fe6d3b4d..4e7071f9 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -1,24 +1,24 @@ OC.L10N.register( "app_api", { + "Cancel" : "Цуцлах", + "Delete" : "Устгах", + "Edit" : "Өөрчлөх", + "Name" : "Нэр", + "Host" : "хост", + "Enabled" : "Идэвхижүүлэх", + "Confirm" : "Батлах", + "Save" : "Хадгалах", "Update to {version}" : "{version} хувилбар руу шинэчлэх", "Visit website" : "Цахим хуудсаар зочлох", "User documentation" : "Хэрэглэгчийн баримт бичиг", "Admin documentation" : "Админы баримт бичиг", "Featured" : "Алдартай", "Icon" : "Тэмдэгт ", - "Name" : "Нэр", "Version" : "төрөл", "Level" : "түвшин", "Actions" : "Үйл ажиллагаа", "Type" : "Төрөл", - "Cancel" : "Цуцлах", - "Delete" : "Устгах", - "Edit" : "Өөрчлөх", - "Host" : "хост", - "Enabled" : "Идэвхижүүлэх", - "Confirm" : "Батлах", - "Save" : "Хадгалах", "Your apps" : "Таны аппликэйшнүүд", "Details" : "Дэлгэрэнгүй", "Disabled apps" : "Идэвхижээгүй аппликэйшнүүд" diff --git a/l10n/mn.json b/l10n/mn.json index 1b7dd3a8..e89476a4 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -1,22 +1,22 @@ { "translations": { + "Cancel" : "Цуцлах", + "Delete" : "Устгах", + "Edit" : "Өөрчлөх", + "Name" : "Нэр", + "Host" : "хост", + "Enabled" : "Идэвхижүүлэх", + "Confirm" : "Батлах", + "Save" : "Хадгалах", "Update to {version}" : "{version} хувилбар руу шинэчлэх", "Visit website" : "Цахим хуудсаар зочлох", "User documentation" : "Хэрэглэгчийн баримт бичиг", "Admin documentation" : "Админы баримт бичиг", "Featured" : "Алдартай", "Icon" : "Тэмдэгт ", - "Name" : "Нэр", "Version" : "төрөл", "Level" : "түвшин", "Actions" : "Үйл ажиллагаа", "Type" : "Төрөл", - "Cancel" : "Цуцлах", - "Delete" : "Устгах", - "Edit" : "Өөрчлөх", - "Host" : "хост", - "Enabled" : "Идэвхижүүлэх", - "Confirm" : "Батлах", - "Save" : "Хадгалах", "Your apps" : "Таны аппликэйшнүүд", "Details" : "Дэлгэрэнгүй", "Disabled apps" : "Идэвхижээгүй аппликэйшнүүд" diff --git a/l10n/nb.js b/l10n/nb.js index 46e42195..397b6c13 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Eksterne apper", "Daemon config not found" : "Daemon-konfigurasjon ikke funnet", "Error starting install of ExApp" : "Feil ved start av installasjon av ExApp", "ExApp failed to register, check the NC logs" : "ExApp-registrering feilet, sjekk NC-loggene", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Administrasjon av eksterne apper", "Admin options saved" : "Administrasjonsalternativer lagret", "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", - "Update to {version}" : "Oppdater til {version}", - "Remove" : "Fjern", - "Delete data on remove" : "Slett data ved fjerning", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen minimumversjon av Nextcloud definert. Dette vil være en feil i fremtiden.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", - "View in store" : "Vis i butikk", - "Visit website" : "Besøk nettsiden", - "Report a bug" : "Rapporter en feil", - "User documentation" : "Brukerdokumentasjon", - "Admin documentation" : "Administratordokumentasjon", - "Developer documentation" : "Utviklerdokumentasjon", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne appen er ikke registrert i AppStore. Ingen ekstra informasjon tilgjengelig. Bare aktivere-/deaktivere- og fjerne handlinger er tillatt.", - "{license}-licensed" : "{license}-lisensiert", - "This app is supported via your current Nextcloud subscription." : "Denne appen er støttet av ditt nåværende Nextcloud abonnement.", - "Supported" : "Støttet", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Anbefalte apper er utviklet av og innenfor fellesskapet. De tilbyr sentral funksjonalitet og er klare for bruk i produksjon.", - "Featured" : "Anbefalt", - "Update to {update}" : "Oppdater til {update}", - "All ExApps are up-to-date." : "Alle ExApps er oppdatert.", - "Default Deploy daemon is not accessible" : "Standard distribuerings-daemon er ikke tilgjengelig.", - "Icon" : "Ikon", - "Name" : "Navn", - "Version" : "Versjon", - "Daemon" : "Nisse", - "Level" : "Nivå", - "Actions" : "Handlinger", - "Results from other categories" : "Resultater fra andre kategorier", - "No apps found" : "Ingen apper funnet", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en oppdatering tilgjengelig","%n apper har en oppdatering tilgjengelig"], - "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], - "Deploy Daemon" : "Distribuerings-daemon", - "Type" : "Type", - "Display Name" : "Visningsnavn", - "GPUs support" : "Støtte for GPUer", "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", "Password confirmation failed" : "Passordbekreftelse feilet", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", + "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuell installasjon-daemon vanligvis brukt for utvikling. Den kan ikke angis som standard daemon.", "ExApps installed" : "ExApps installert", + "Name" : "Navn", "Protocol" : "Protokoll", "Host" : "Server", "Deploy config" : "Konfigurasjon for distribuering", "Docker network" : "Docker-nettverk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy-passord", + "GPUs support" : "Støtte for GPUer", "Compute device" : "Beregningsenhet", "Additional options" : "Ytterligere alternativer", "Verify connection" : "Verifiser forbindelse", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", + "External Apps" : "Eksterne apper", + "Update to {version}" : "Oppdater til {version}", + "Remove" : "Fjern", + "Delete data on remove" : "Slett data ved fjerning", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen minimumversjon av Nextcloud definert. Dette vil være en feil i fremtiden.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", + "View in store" : "Vis i butikk", + "Visit website" : "Besøk nettsiden", + "Report a bug" : "Rapporter en feil", + "User documentation" : "Brukerdokumentasjon", + "Admin documentation" : "Administratordokumentasjon", + "Developer documentation" : "Utviklerdokumentasjon", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne appen er ikke registrert i AppStore. Ingen ekstra informasjon tilgjengelig. Bare aktivere-/deaktivere- og fjerne handlinger er tillatt.", + "{license}-licensed" : "{license}-lisensiert", + "This app is supported via your current Nextcloud subscription." : "Denne appen er støttet av ditt nåværende Nextcloud abonnement.", + "Supported" : "Støttet", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Anbefalte apper er utviklet av og innenfor fellesskapet. De tilbyr sentral funksjonalitet og er klare for bruk i produksjon.", + "Featured" : "Anbefalt", + "Update to {update}" : "Oppdater til {update}", + "All ExApps are up-to-date." : "Alle ExApps er oppdatert.", + "Default Deploy daemon is not accessible" : "Standard distribuerings-daemon er ikke tilgjengelig.", + "Icon" : "Ikon", + "Version" : "Versjon", + "Daemon" : "Nisse", + "Level" : "Nivå", + "Actions" : "Handlinger", + "Results from other categories" : "Resultater fra andre kategorier", + "No apps found" : "Ingen apper funnet", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en oppdatering tilgjengelig","%n apper har en oppdatering tilgjengelig"], + "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], + "Type" : "Type", + "Display Name" : "Visningsnavn", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", "Details" : "Detaljer", diff --git a/l10n/nb.json b/l10n/nb.json index aa504798..d7a1037a 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Eksterne apper", "Daemon config not found" : "Daemon-konfigurasjon ikke funnet", "Error starting install of ExApp" : "Feil ved start av installasjon av ExApp", "ExApp failed to register, check the NC logs" : "ExApp-registrering feilet, sjekk NC-loggene", @@ -33,41 +32,6 @@ "External Apps management" : "Administrasjon av eksterne apper", "Admin options saved" : "Administrasjonsalternativer lagret", "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", - "Update to {version}" : "Oppdater til {version}", - "Remove" : "Fjern", - "Delete data on remove" : "Slett data ved fjerning", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen minimumversjon av Nextcloud definert. Dette vil være en feil i fremtiden.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", - "View in store" : "Vis i butikk", - "Visit website" : "Besøk nettsiden", - "Report a bug" : "Rapporter en feil", - "User documentation" : "Brukerdokumentasjon", - "Admin documentation" : "Administratordokumentasjon", - "Developer documentation" : "Utviklerdokumentasjon", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne appen er ikke registrert i AppStore. Ingen ekstra informasjon tilgjengelig. Bare aktivere-/deaktivere- og fjerne handlinger er tillatt.", - "{license}-licensed" : "{license}-lisensiert", - "This app is supported via your current Nextcloud subscription." : "Denne appen er støttet av ditt nåværende Nextcloud abonnement.", - "Supported" : "Støttet", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Anbefalte apper er utviklet av og innenfor fellesskapet. De tilbyr sentral funksjonalitet og er klare for bruk i produksjon.", - "Featured" : "Anbefalt", - "Update to {update}" : "Oppdater til {update}", - "All ExApps are up-to-date." : "Alle ExApps er oppdatert.", - "Default Deploy daemon is not accessible" : "Standard distribuerings-daemon er ikke tilgjengelig.", - "Icon" : "Ikon", - "Name" : "Navn", - "Version" : "Versjon", - "Daemon" : "Nisse", - "Level" : "Nivå", - "Actions" : "Handlinger", - "Results from other categories" : "Resultater fra andre kategorier", - "No apps found" : "Ingen apper funnet", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en oppdatering tilgjengelig","%n apper har en oppdatering tilgjengelig"], - "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], - "Deploy Daemon" : "Distribuerings-daemon", - "Type" : "Type", - "Display Name" : "Visningsnavn", - "GPUs support" : "Støtte for GPUer", "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", "Password confirmation failed" : "Passordbekreftelse feilet", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", + "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuell installasjon-daemon vanligvis brukt for utvikling. Den kan ikke angis som standard daemon.", "ExApps installed" : "ExApps installert", + "Name" : "Navn", "Protocol" : "Protokoll", "Host" : "Server", "Deploy config" : "Konfigurasjon for distribuering", "Docker network" : "Docker-nettverk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy-passord", + "GPUs support" : "Støtte for GPUer", "Compute device" : "Beregningsenhet", "Additional options" : "Ytterligere alternativer", "Verify connection" : "Verifiser forbindelse", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", + "External Apps" : "Eksterne apper", + "Update to {version}" : "Oppdater til {version}", + "Remove" : "Fjern", + "Delete data on remove" : "Slett data ved fjerning", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen minimumversjon av Nextcloud definert. Dette vil være en feil i fremtiden.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", + "View in store" : "Vis i butikk", + "Visit website" : "Besøk nettsiden", + "Report a bug" : "Rapporter en feil", + "User documentation" : "Brukerdokumentasjon", + "Admin documentation" : "Administratordokumentasjon", + "Developer documentation" : "Utviklerdokumentasjon", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne appen er ikke registrert i AppStore. Ingen ekstra informasjon tilgjengelig. Bare aktivere-/deaktivere- og fjerne handlinger er tillatt.", + "{license}-licensed" : "{license}-lisensiert", + "This app is supported via your current Nextcloud subscription." : "Denne appen er støttet av ditt nåværende Nextcloud abonnement.", + "Supported" : "Støttet", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Anbefalte apper er utviklet av og innenfor fellesskapet. De tilbyr sentral funksjonalitet og er klare for bruk i produksjon.", + "Featured" : "Anbefalt", + "Update to {update}" : "Oppdater til {update}", + "All ExApps are up-to-date." : "Alle ExApps er oppdatert.", + "Default Deploy daemon is not accessible" : "Standard distribuerings-daemon er ikke tilgjengelig.", + "Icon" : "Ikon", + "Version" : "Versjon", + "Daemon" : "Nisse", + "Level" : "Nivå", + "Actions" : "Handlinger", + "Results from other categories" : "Resultater fra andre kategorier", + "No apps found" : "Ingen apper funnet", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en oppdatering tilgjengelig","%n apper har en oppdatering tilgjengelig"], + "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], + "Type" : "Type", + "Display Name" : "Visningsnavn", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", "Details" : "Detaljer", diff --git a/l10n/nl.js b/l10n/nl.js index 5e83f43f..994cd2ff 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -1,9 +1,23 @@ OC.L10N.register( "app_api", { - "External Apps" : "Externe apps", "Daemon config not found" : "Daemon configuratie niet gevonden", "Error starting install of ExApp" : "Fout bij starten installatie van ExApp", + "Cancel" : "Annuleren", + "Delete" : "Verwijder", + "Default" : "Standaard", + "Set as default" : "Zet as standaard", + "Edit" : "Bewerken", + "Name" : "Naam", + "Host" : "Host", + "Nextcloud URL" : "Nextcloud URL", + "More info" : "Meer info", + "Enabled" : "Ingeschakeld", + "Network" : "Netwerk", + "Confirm" : "Bevestigen", + "Save" : "Opslaan", + "Register" : "Aanmelden", + "External Apps" : "Externe apps", "Update to {version}" : "Update naar {version}", "Remove" : "Verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", @@ -22,7 +36,6 @@ OC.L10N.register( "Featured" : "Aanbevolen", "Update to {update}" : "Update naar {update}", "Icon" : "Pictogram", - "Name" : "Naam", "Version" : "Versie", "Daemon" : "Daemon", "Level" : "Niveau", @@ -30,19 +43,6 @@ OC.L10N.register( "Results from other categories" : "Resultaten van andere categorieën", "Type" : "Type", "Display Name" : "Weergavenaam", - "Cancel" : "Annuleren", - "Delete" : "Verwijder", - "Default" : "Standaard", - "Set as default" : "Zet as standaard", - "Edit" : "Bewerken", - "Host" : "Host", - "Nextcloud URL" : "Nextcloud URL", - "More info" : "Meer info", - "Enabled" : "Ingeschakeld", - "Network" : "Netwerk", - "Confirm" : "Bevestigen", - "Save" : "Opslaan", - "Register" : "Aanmelden", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", "Details" : "Details", diff --git a/l10n/nl.json b/l10n/nl.json index af671220..a031a0a0 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -1,7 +1,21 @@ { "translations": { - "External Apps" : "Externe apps", "Daemon config not found" : "Daemon configuratie niet gevonden", "Error starting install of ExApp" : "Fout bij starten installatie van ExApp", + "Cancel" : "Annuleren", + "Delete" : "Verwijder", + "Default" : "Standaard", + "Set as default" : "Zet as standaard", + "Edit" : "Bewerken", + "Name" : "Naam", + "Host" : "Host", + "Nextcloud URL" : "Nextcloud URL", + "More info" : "Meer info", + "Enabled" : "Ingeschakeld", + "Network" : "Netwerk", + "Confirm" : "Bevestigen", + "Save" : "Opslaan", + "Register" : "Aanmelden", + "External Apps" : "Externe apps", "Update to {version}" : "Update naar {version}", "Remove" : "Verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", @@ -20,7 +34,6 @@ "Featured" : "Aanbevolen", "Update to {update}" : "Update naar {update}", "Icon" : "Pictogram", - "Name" : "Naam", "Version" : "Versie", "Daemon" : "Daemon", "Level" : "Niveau", @@ -28,19 +41,6 @@ "Results from other categories" : "Resultaten van andere categorieën", "Type" : "Type", "Display Name" : "Weergavenaam", - "Cancel" : "Annuleren", - "Delete" : "Verwijder", - "Default" : "Standaard", - "Set as default" : "Zet as standaard", - "Edit" : "Bewerken", - "Host" : "Host", - "Nextcloud URL" : "Nextcloud URL", - "More info" : "Meer info", - "Enabled" : "Ingeschakeld", - "Network" : "Netwerk", - "Confirm" : "Bevestigen", - "Save" : "Opslaan", - "Register" : "Aanmelden", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", "Details" : "Details", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index c0d5fd49..34014d69 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -1,18 +1,18 @@ OC.L10N.register( "app_api", { + "Delete" : "Slett", + "Edit" : "Rediger", + "Name" : "Namn", + "Host" : "Tenar", + "Save" : "Lagre", "Visit website" : "Besøk nettstaden", "Report a bug" : "Rapporter feil", "User documentation" : "Brukardokumentasjon", "Admin documentation" : "Admin-dokumentasjon", - "Name" : "Namn", "Version" : "Utgåve", "Actions" : "Handlingar", "Type" : "Skriv", - "Delete" : "Slett", - "Edit" : "Rediger", - "Host" : "Tenar", - "Save" : "Lagre", "Documentation" : "Dokumentasjon", "Details" : "Detaljar", "Enable" : "SLå på", diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index dcafed89..feb39bb0 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -1,16 +1,16 @@ { "translations": { + "Delete" : "Slett", + "Edit" : "Rediger", + "Name" : "Namn", + "Host" : "Tenar", + "Save" : "Lagre", "Visit website" : "Besøk nettstaden", "Report a bug" : "Rapporter feil", "User documentation" : "Brukardokumentasjon", "Admin documentation" : "Admin-dokumentasjon", - "Name" : "Namn", "Version" : "Utgåve", "Actions" : "Handlingar", "Type" : "Skriv", - "Delete" : "Slett", - "Edit" : "Rediger", - "Host" : "Tenar", - "Save" : "Lagre", "Documentation" : "Dokumentasjon", "Details" : "Detaljar", "Enable" : "SLå på", diff --git a/l10n/oc.js b/l10n/oc.js index d3d0c1de..ac45f9d9 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Cancel" : "Anullar", + "Delete" : "Suprimir", + "Edit" : "Modificar", + "Name" : "Nom", + "Host" : "Òste", + "Nextcloud URL" : "URL Nextcloud", + "Enabled" : "Activada", + "Confirm" : "Confirmar", + "Save" : "Enregistrar", + "Register" : "S'inscriure", "Update to {version}" : "Metre a jorn cap a {version}", "Remove" : "Suprimir", "View in store" : "Veire a la botiga", @@ -10,19 +20,9 @@ OC.L10N.register( "Admin documentation" : "Documentacion admin", "Developer documentation" : "Documentacion desvolopaire", "Update to {update}" : "Actualizar en {update}", - "Name" : "Nom", "Version" : "Version", "Actions" : "Accions", "Type" : "Tipe", - "Cancel" : "Anullar", - "Delete" : "Suprimir", - "Edit" : "Modificar", - "Host" : "Òste", - "Nextcloud URL" : "URL Nextcloud", - "Enabled" : "Activada", - "Confirm" : "Confirmar", - "Save" : "Enregistrar", - "Register" : "S'inscriure", "Your apps" : "Vòstras aplicacions", "Documentation" : "Documentacion", "Details" : "Per lo Menut", diff --git a/l10n/oc.json b/l10n/oc.json index 121c8cea..4bbf23c4 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -1,4 +1,14 @@ { "translations": { + "Cancel" : "Anullar", + "Delete" : "Suprimir", + "Edit" : "Modificar", + "Name" : "Nom", + "Host" : "Òste", + "Nextcloud URL" : "URL Nextcloud", + "Enabled" : "Activada", + "Confirm" : "Confirmar", + "Save" : "Enregistrar", + "Register" : "S'inscriure", "Update to {version}" : "Metre a jorn cap a {version}", "Remove" : "Suprimir", "View in store" : "Veire a la botiga", @@ -8,19 +18,9 @@ "Admin documentation" : "Documentacion admin", "Developer documentation" : "Documentacion desvolopaire", "Update to {update}" : "Actualizar en {update}", - "Name" : "Nom", "Version" : "Version", "Actions" : "Accions", "Type" : "Tipe", - "Cancel" : "Anullar", - "Delete" : "Suprimir", - "Edit" : "Modificar", - "Host" : "Òste", - "Nextcloud URL" : "URL Nextcloud", - "Enabled" : "Activada", - "Confirm" : "Confirmar", - "Save" : "Enregistrar", - "Register" : "S'inscriure", "Your apps" : "Vòstras aplicacions", "Documentation" : "Documentacion", "Details" : "Per lo Menut", diff --git a/l10n/pl.js b/l10n/pl.js index 874327fd..608b3d47 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -1,10 +1,23 @@ OC.L10N.register( "app_api", { - "External Apps" : "Aplikacje zewnętrzne", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", + "Cancel" : "Anuluj", + "Delete" : "Usuń", + "Default" : "Domyślny", + "Edit" : "Edycja", + "Name" : "Nazwa", + "Host" : "Host", + "Nextcloud URL" : "Adres URL Nextcloud", + "Enabled" : "Włączone", + "Display name" : "Wyświetlana nazwa", + "Network" : "Sieć", + "Confirm" : "Potwierdź", + "Save" : "Zapisz", + "Register" : "Zarejestruj się", + "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", @@ -24,7 +37,6 @@ OC.L10N.register( "Featured" : "Polecane", "Update to {update}" : "Zaktualizuj do {update}", "Icon" : "Ikona", - "Name" : "Nazwa", "Version" : "Wersja", "Daemon" : "Demon", "Level" : "Poziom", @@ -34,18 +46,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", - "Cancel" : "Anuluj", - "Delete" : "Usuń", - "Default" : "Domyślny", - "Edit" : "Edycja", - "Host" : "Host", - "Nextcloud URL" : "Adres URL Nextcloud", - "Enabled" : "Włączone", - "Display name" : "Wyświetlana nazwa", - "Network" : "Sieć", - "Confirm" : "Potwierdź", - "Save" : "Zapisz", - "Register" : "Zarejestruj się", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", "Details" : "Szczegóły", diff --git a/l10n/pl.json b/l10n/pl.json index 9e8b8f40..1b909577 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -1,8 +1,21 @@ { "translations": { - "External Apps" : "Aplikacje zewnętrzne", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", + "Cancel" : "Anuluj", + "Delete" : "Usuń", + "Default" : "Domyślny", + "Edit" : "Edycja", + "Name" : "Nazwa", + "Host" : "Host", + "Nextcloud URL" : "Adres URL Nextcloud", + "Enabled" : "Włączone", + "Display name" : "Wyświetlana nazwa", + "Network" : "Sieć", + "Confirm" : "Potwierdź", + "Save" : "Zapisz", + "Register" : "Zarejestruj się", + "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", @@ -22,7 +35,6 @@ "Featured" : "Polecane", "Update to {update}" : "Zaktualizuj do {update}", "Icon" : "Ikona", - "Name" : "Nazwa", "Version" : "Wersja", "Daemon" : "Demon", "Level" : "Poziom", @@ -32,18 +44,6 @@ "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", - "Cancel" : "Anuluj", - "Delete" : "Usuń", - "Default" : "Domyślny", - "Edit" : "Edycja", - "Host" : "Host", - "Nextcloud URL" : "Adres URL Nextcloud", - "Enabled" : "Włączone", - "Display name" : "Wyświetlana nazwa", - "Network" : "Sieć", - "Confirm" : "Potwierdź", - "Save" : "Zapisz", - "Register" : "Zarejestruj się", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", "Details" : "Szczegóły", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 1fc148a6..a49ad6f2 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Apps Externos", "Daemon config not found" : "Configuração do Daemon não encontrada", "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Gestão de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", - "Update to {version}" : "Atualizar para {version}", - "Remove" : "Remover", - "Delete data on remove" : "Excluir dados ao remover", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", - "View in store" : "Ver na loja", - "Visit website" : "Visitar website", - "Report a bug" : "Reportar um erro", - "User documentation" : "Documentação do usuário", - "Admin documentation" : "Documentação do administrador", - "Developer documentation" : "Documentação do desenvolvedor", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", - "{license}-licensed" : "{license}-licenciado", - "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", - "Supported" : "Suportado", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", - "Featured" : "Destaques", - "Update to {update}" : "Atualizar para {update}", - "All ExApps are up-to-date." : "Todos os ExApps estão atualizados.", - "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", - "Icon" : "Ícone", - "Name" : "Nome", - "Version" : "Versão", - "Daemon" : "Daemon", - "Level" : "Nível", - "Actions" : "Ações", - "Results from other categories" : "Resultados de outras categorias", - "No apps found" : "Nenhum app encontrado", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n apps têm uma atualização disponível","%n apps têm uma atualização disponível"], - "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], - "Deploy Daemon" : "Deploy Daemon", - "Type" : "Tipo", - "Display Name" : "Nome", - "GPUs support" : "Suporte a GPUs", "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", "Password confirmation failed" : "Falha na confirmação da senha", "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", + "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Instalação manual do daemon geralmente usada para desenvolvimento. Não pode ser definido como daemon padrão.", "ExApps installed" : "ExApps instalados", + "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "Deploy config" : "Configuração de Deploy", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha HaProxy", + "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", + "External Apps" : "Apps Externos", + "Update to {version}" : "Atualizar para {version}", + "Remove" : "Remover", + "Delete data on remove" : "Excluir dados ao remover", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", + "View in store" : "Ver na loja", + "Visit website" : "Visitar website", + "Report a bug" : "Reportar um erro", + "User documentation" : "Documentação do usuário", + "Admin documentation" : "Documentação do administrador", + "Developer documentation" : "Documentação do desenvolvedor", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", + "{license}-licensed" : "{license}-licenciado", + "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", + "Supported" : "Suportado", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", + "Featured" : "Destaques", + "Update to {update}" : "Atualizar para {update}", + "All ExApps are up-to-date." : "Todos os ExApps estão atualizados.", + "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", + "Icon" : "Ícone", + "Version" : "Versão", + "Daemon" : "Daemon", + "Level" : "Nível", + "Actions" : "Ações", + "Results from other categories" : "Resultados de outras categorias", + "No apps found" : "Nenhum app encontrado", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n apps têm uma atualização disponível","%n apps têm uma atualização disponível"], + "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], + "Type" : "Tipo", + "Display Name" : "Nome", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 4a0a6ffc..f6315a35 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Apps Externos", "Daemon config not found" : "Configuração do Daemon não encontrada", "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", @@ -33,41 +32,6 @@ "External Apps management" : "Gestão de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", - "Update to {version}" : "Atualizar para {version}", - "Remove" : "Remover", - "Delete data on remove" : "Excluir dados ao remover", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", - "View in store" : "Ver na loja", - "Visit website" : "Visitar website", - "Report a bug" : "Reportar um erro", - "User documentation" : "Documentação do usuário", - "Admin documentation" : "Documentação do administrador", - "Developer documentation" : "Documentação do desenvolvedor", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", - "{license}-licensed" : "{license}-licenciado", - "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", - "Supported" : "Suportado", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", - "Featured" : "Destaques", - "Update to {update}" : "Atualizar para {update}", - "All ExApps are up-to-date." : "Todos os ExApps estão atualizados.", - "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", - "Icon" : "Ícone", - "Name" : "Nome", - "Version" : "Versão", - "Daemon" : "Daemon", - "Level" : "Nível", - "Actions" : "Ações", - "Results from other categories" : "Resultados de outras categorias", - "No apps found" : "Nenhum app encontrado", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n apps têm uma atualização disponível","%n apps têm uma atualização disponível"], - "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], - "Deploy Daemon" : "Deploy Daemon", - "Type" : "Tipo", - "Display Name" : "Nome", - "GPUs support" : "Suporte a GPUs", "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", "Password confirmation failed" : "Falha na confirmação da senha", "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", + "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Instalação manual do daemon geralmente usada para desenvolvimento. Não pode ser definido como daemon padrão.", "ExApps installed" : "ExApps instalados", + "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "Deploy config" : "Configuração de Deploy", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha HaProxy", + "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", + "External Apps" : "Apps Externos", + "Update to {version}" : "Atualizar para {version}", + "Remove" : "Remover", + "Delete data on remove" : "Excluir dados ao remover", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", + "View in store" : "Ver na loja", + "Visit website" : "Visitar website", + "Report a bug" : "Reportar um erro", + "User documentation" : "Documentação do usuário", + "Admin documentation" : "Documentação do administrador", + "Developer documentation" : "Documentação do desenvolvedor", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", + "{license}-licensed" : "{license}-licenciado", + "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", + "Supported" : "Suportado", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", + "Featured" : "Destaques", + "Update to {update}" : "Atualizar para {update}", + "All ExApps are up-to-date." : "Todos os ExApps estão atualizados.", + "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", + "Icon" : "Ícone", + "Version" : "Versão", + "Daemon" : "Daemon", + "Level" : "Nível", + "Actions" : "Ações", + "Results from other categories" : "Resultados de outras categorias", + "No apps found" : "Nenhum app encontrado", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n apps têm uma atualização disponível","%n apps têm uma atualização disponível"], + "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], + "Type" : "Tipo", + "Display Name" : "Nome", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 53d5c0e6..23e25f3c 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -1,6 +1,18 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancelar", + "Delete" : "Eliminar", + "Default" : "Predefinido", + "Edit" : "Editar", + "Name" : "Nome", + "Host" : "Anfitrião", + "Enabled" : "Activo", + "Display name" : "Nome a exibir", + "Network" : "Rede", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registar", "Update to {version}" : "Actualizar para {version}", "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", @@ -14,24 +26,12 @@ OC.L10N.register( "Developer documentation" : "Documentação de programador", "Supported" : "Suportado", "Featured" : "Destacado", - "Name" : "Nome", "Version" : "Versão", "Level" : "Nível", "Actions" : "Acções", "Results from other categories" : "Resultados de outras categorias", "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", - "Cancel" : "Cancelar", - "Delete" : "Eliminar", - "Default" : "Predefinido", - "Edit" : "Editar", - "Host" : "Anfitrião", - "Enabled" : "Activo", - "Display name" : "Nome a exibir", - "Network" : "Rede", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registar", "Your apps" : "As suas apps", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index c2a1f134..a35c7c15 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -1,4 +1,16 @@ { "translations": { + "Cancel" : "Cancelar", + "Delete" : "Eliminar", + "Default" : "Predefinido", + "Edit" : "Editar", + "Name" : "Nome", + "Host" : "Anfitrião", + "Enabled" : "Activo", + "Display name" : "Nome a exibir", + "Network" : "Rede", + "Confirm" : "Confirmar", + "Save" : "Guardar", + "Register" : "Registar", "Update to {version}" : "Actualizar para {version}", "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", @@ -12,24 +24,12 @@ "Developer documentation" : "Documentação de programador", "Supported" : "Suportado", "Featured" : "Destacado", - "Name" : "Nome", "Version" : "Versão", "Level" : "Nível", "Actions" : "Acções", "Results from other categories" : "Resultados de outras categorias", "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", - "Cancel" : "Cancelar", - "Delete" : "Eliminar", - "Default" : "Predefinido", - "Edit" : "Editar", - "Host" : "Anfitrião", - "Enabled" : "Activo", - "Display name" : "Nome a exibir", - "Network" : "Rede", - "Confirm" : "Confirmar", - "Save" : "Guardar", - "Register" : "Registar", "Your apps" : "As suas apps", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/ro.js b/l10n/ro.js index fc84073b..667b83eb 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -1,6 +1,17 @@ OC.L10N.register( "app_api", { + "Cancel" : "Anulare", + "Delete" : "Șterge", + "Default" : "Implicită", + "Edit" : "Editează", + "Name" : "Nume", + "Host" : "Gazdă", + "Enabled" : "Activat", + "Display name" : "Nume afișat", + "Confirm" : "Confirmă", + "Save" : "Salvează", + "Register" : "Înregistrează-te", "Update to {version}" : "Actualizare la {version}", "Remove" : "Elimină", "View in store" : "Vezi în magazin", @@ -11,21 +22,10 @@ OC.L10N.register( "Developer documentation" : "Documentație pentru dezvoltatori", "Featured" : "Recomandată", "Icon" : "Pictogramă", - "Name" : "Nume", "Version" : "Versiune", "Level" : "Nivel", "Actions" : "Acțiuni", "Type" : "Tip", - "Cancel" : "Anulare", - "Delete" : "Șterge", - "Default" : "Implicită", - "Edit" : "Editează", - "Host" : "Gazdă", - "Enabled" : "Activat", - "Display name" : "Nume afișat", - "Confirm" : "Confirmă", - "Save" : "Salvează", - "Register" : "Înregistrează-te", "Your apps" : "Aplicațiile tale", "Documentation" : "Documentație", "Details" : "Detalii", diff --git a/l10n/ro.json b/l10n/ro.json index 28a21319..28e9e615 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -1,4 +1,15 @@ { "translations": { + "Cancel" : "Anulare", + "Delete" : "Șterge", + "Default" : "Implicită", + "Edit" : "Editează", + "Name" : "Nume", + "Host" : "Gazdă", + "Enabled" : "Activat", + "Display name" : "Nume afișat", + "Confirm" : "Confirmă", + "Save" : "Salvează", + "Register" : "Înregistrează-te", "Update to {version}" : "Actualizare la {version}", "Remove" : "Elimină", "View in store" : "Vezi în magazin", @@ -9,21 +20,10 @@ "Developer documentation" : "Documentație pentru dezvoltatori", "Featured" : "Recomandată", "Icon" : "Pictogramă", - "Name" : "Nume", "Version" : "Versiune", "Level" : "Nivel", "Actions" : "Acțiuni", "Type" : "Tip", - "Cancel" : "Anulare", - "Delete" : "Șterge", - "Default" : "Implicită", - "Edit" : "Editează", - "Host" : "Gazdă", - "Enabled" : "Activat", - "Display name" : "Nume afișat", - "Confirm" : "Confirmă", - "Save" : "Salvează", - "Register" : "Înregistrează-te", "Your apps" : "Aplicațiile tale", "Documentation" : "Documentație", "Details" : "Detalii", diff --git a/l10n/ru.js b/l10n/ru.js index 6b24cc97..90551109 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Внешние приложения", "Daemon config not found" : "Конфигурация службы не найдена", "Error starting install of ExApp" : "Ошибка при запуске установки ExApp", "ExApp failed to register, check the NC logs" : "ExApp не удалось зарегистрироваться, проверьте журналы NC", @@ -35,40 +34,6 @@ OC.L10N.register( "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", - "Update to {version}" : "Обновление до версии {version}", - "Remove" : "Удалить", - "Delete data on remove" : "Удалить данные при удалении", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "View in store" : "Перейти в магазин приложений", - "Visit website" : "Перейти на веб-сайт", - "Report a bug" : "Сообщить об ошибке", - "User documentation" : "Пользовательская документация", - "Admin documentation" : "Документация администратора", - "Developer documentation" : "Документация разработчика", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение не зарегистрировано в AppStore. Дополнительная информация отсутствует. Разрешены только действия включения/выключения и удаления.", - "{license}-licensed" : "Лицензия: {license}", - "This app is supported via your current Nextcloud subscription." : "Это приложение поддерживается через вашу текущую подписку Nextcloud.", - "Supported" : "Поддерживается", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", - "Featured" : "Рекомендуемые", - "Update to {update}" : "Обновить до {update}", - "All ExApps are up-to-date." : "Все ExApps обновлены.", - "Default Deploy daemon is not accessible" : "Служба публикации по умолчанию недоступна", - "Icon" : "Значок", - "Name" : "Имя", - "Version" : "Версия", - "Daemon" : "Служба", - "Level" : "Уровень", - "Actions" : "Действия", - "Results from other categories" : "Результаты из других категорий", - "No apps found" : "Приложения не найдены", - "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], - "Deploy Daemon" : "Служба публикации", - "Type" : "Тип", - "Display Name" : "Отображаемое имя", - "GPUs support" : "Поддержка графических процессоров", "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", @@ -82,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", "Password confirmation failed" : "Подтверждение пароля не удалось", "Deploy daemon config details" : "Подробности конфигурации службы публикации", + "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", "ExApps installed" : "ExApps установлены", + "Name" : "Имя", "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", "Deploy config" : "Развертывание конфигурации", "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", "HaProxy password" : "HaProxy пароль ", + "GPUs support" : "Поддержка графических процессоров", "Compute device" : "Вычислительное устройство", "Additional options" : "Дополнительные возможности", "Verify connection" : "Проверить соединение", @@ -166,6 +134,38 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте логи", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте логи", + "External Apps" : "Внешние приложения", + "Update to {version}" : "Обновление до версии {version}", + "Remove" : "Удалить", + "Delete data on remove" : "Удалить данные при удалении", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", + "View in store" : "Перейти в магазин приложений", + "Visit website" : "Перейти на веб-сайт", + "Report a bug" : "Сообщить об ошибке", + "User documentation" : "Пользовательская документация", + "Admin documentation" : "Документация администратора", + "Developer documentation" : "Документация разработчика", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение не зарегистрировано в AppStore. Дополнительная информация отсутствует. Разрешены только действия включения/выключения и удаления.", + "{license}-licensed" : "Лицензия: {license}", + "This app is supported via your current Nextcloud subscription." : "Это приложение поддерживается через вашу текущую подписку Nextcloud.", + "Supported" : "Поддерживается", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", + "Featured" : "Рекомендуемые", + "Update to {update}" : "Обновить до {update}", + "All ExApps are up-to-date." : "Все ExApps обновлены.", + "Default Deploy daemon is not accessible" : "Служба публикации по умолчанию недоступна", + "Icon" : "Значок", + "Version" : "Версия", + "Daemon" : "Служба", + "Level" : "Уровень", + "Actions" : "Действия", + "Results from other categories" : "Результаты из других категорий", + "No apps found" : "Приложения не найдены", + "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], + "Type" : "Тип", + "Display Name" : "Отображаемое имя", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", diff --git a/l10n/ru.json b/l10n/ru.json index 2f07668f..1678683d 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Внешние приложения", "Daemon config not found" : "Конфигурация службы не найдена", "Error starting install of ExApp" : "Ошибка при запуске установки ExApp", "ExApp failed to register, check the NC logs" : "ExApp не удалось зарегистрироваться, проверьте журналы NC", @@ -33,40 +32,6 @@ "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", - "Update to {version}" : "Обновление до версии {version}", - "Remove" : "Удалить", - "Delete data on remove" : "Удалить данные при удалении", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "View in store" : "Перейти в магазин приложений", - "Visit website" : "Перейти на веб-сайт", - "Report a bug" : "Сообщить об ошибке", - "User documentation" : "Пользовательская документация", - "Admin documentation" : "Документация администратора", - "Developer documentation" : "Документация разработчика", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение не зарегистрировано в AppStore. Дополнительная информация отсутствует. Разрешены только действия включения/выключения и удаления.", - "{license}-licensed" : "Лицензия: {license}", - "This app is supported via your current Nextcloud subscription." : "Это приложение поддерживается через вашу текущую подписку Nextcloud.", - "Supported" : "Поддерживается", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", - "Featured" : "Рекомендуемые", - "Update to {update}" : "Обновить до {update}", - "All ExApps are up-to-date." : "Все ExApps обновлены.", - "Default Deploy daemon is not accessible" : "Служба публикации по умолчанию недоступна", - "Icon" : "Значок", - "Name" : "Имя", - "Version" : "Версия", - "Daemon" : "Служба", - "Level" : "Уровень", - "Actions" : "Действия", - "Results from other categories" : "Результаты из других категорий", - "No apps found" : "Приложения не найдены", - "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], - "Deploy Daemon" : "Служба публикации", - "Type" : "Тип", - "Display Name" : "Отображаемое имя", - "GPUs support" : "Поддержка графических процессоров", "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", @@ -80,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", "Password confirmation failed" : "Подтверждение пароля не удалось", "Deploy daemon config details" : "Подробности конфигурации службы публикации", + "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", "ExApps installed" : "ExApps установлены", + "Name" : "Имя", "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", "Deploy config" : "Развертывание конфигурации", "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", "HaProxy password" : "HaProxy пароль ", + "GPUs support" : "Поддержка графических процессоров", "Compute device" : "Вычислительное устройство", "Additional options" : "Дополнительные возможности", "Verify connection" : "Проверить соединение", @@ -164,6 +132,38 @@ "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте логи", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте логи", + "External Apps" : "Внешние приложения", + "Update to {version}" : "Обновление до версии {version}", + "Remove" : "Удалить", + "Delete data on remove" : "Удалить данные при удалении", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", + "View in store" : "Перейти в магазин приложений", + "Visit website" : "Перейти на веб-сайт", + "Report a bug" : "Сообщить об ошибке", + "User documentation" : "Пользовательская документация", + "Admin documentation" : "Документация администратора", + "Developer documentation" : "Документация разработчика", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение не зарегистрировано в AppStore. Дополнительная информация отсутствует. Разрешены только действия включения/выключения и удаления.", + "{license}-licensed" : "Лицензия: {license}", + "This app is supported via your current Nextcloud subscription." : "Это приложение поддерживается через вашу текущую подписку Nextcloud.", + "Supported" : "Поддерживается", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", + "Featured" : "Рекомендуемые", + "Update to {update}" : "Обновить до {update}", + "All ExApps are up-to-date." : "Все ExApps обновлены.", + "Default Deploy daemon is not accessible" : "Служба публикации по умолчанию недоступна", + "Icon" : "Значок", + "Version" : "Версия", + "Daemon" : "Служба", + "Level" : "Уровень", + "Actions" : "Действия", + "Results from other categories" : "Результаты из других категорий", + "No apps found" : "Приложения не найдены", + "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], + "Type" : "Тип", + "Display Name" : "Отображаемое имя", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", diff --git a/l10n/sc.js b/l10n/sc.js index f50c319e..a424a5a9 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "Annulla", + "Delete" : "Cantzella", + "Default" : "Predefinidu", + "Edit" : "Modìfica", + "Name" : "Nùmene", + "Host" : "Retzidore", + "Nextcloud URL" : "URL de Nextcloud", + "Enabled" : "Ativadu", + "Display name" : "Ammustra nùmene", + "Network" : "Rete", + "Confirm" : "Cunfirma", + "Save" : "Sarva", + "Register" : "Registra", "Update to {version}" : "Agiorna a {version}", "Remove" : "Boga", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione mìnima de Nextcloud assignada. At a èssere unu problema in su benidore.", @@ -19,24 +32,11 @@ OC.L10N.register( "Featured" : "In evidèntzia", "Update to {update}" : "Agiorna a {update}", "Icon" : "Icona", - "Name" : "Nùmene", "Version" : "Versione", "Level" : "Livellu", "Actions" : "Atziones", "Results from other categories" : "Resurtados dae àteras categorias", "Type" : "Genia", - "Cancel" : "Annulla", - "Delete" : "Cantzella", - "Default" : "Predefinidu", - "Edit" : "Modìfica", - "Host" : "Retzidore", - "Nextcloud URL" : "URL de Nextcloud", - "Enabled" : "Ativadu", - "Display name" : "Ammustra nùmene", - "Network" : "Rete", - "Confirm" : "Cunfirma", - "Save" : "Sarva", - "Register" : "Registra", "Your apps" : "Is aplicatziones tuas", "Documentation" : "Documentatzione", "Details" : "Detàllios", diff --git a/l10n/sc.json b/l10n/sc.json index 2cc2309c..c5792366 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "Annulla", + "Delete" : "Cantzella", + "Default" : "Predefinidu", + "Edit" : "Modìfica", + "Name" : "Nùmene", + "Host" : "Retzidore", + "Nextcloud URL" : "URL de Nextcloud", + "Enabled" : "Ativadu", + "Display name" : "Ammustra nùmene", + "Network" : "Rete", + "Confirm" : "Cunfirma", + "Save" : "Sarva", + "Register" : "Registra", "Update to {version}" : "Agiorna a {version}", "Remove" : "Boga", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione mìnima de Nextcloud assignada. At a èssere unu problema in su benidore.", @@ -17,24 +30,11 @@ "Featured" : "In evidèntzia", "Update to {update}" : "Agiorna a {update}", "Icon" : "Icona", - "Name" : "Nùmene", "Version" : "Versione", "Level" : "Livellu", "Actions" : "Atziones", "Results from other categories" : "Resurtados dae àteras categorias", "Type" : "Genia", - "Cancel" : "Annulla", - "Delete" : "Cantzella", - "Default" : "Predefinidu", - "Edit" : "Modìfica", - "Host" : "Retzidore", - "Nextcloud URL" : "URL de Nextcloud", - "Enabled" : "Ativadu", - "Display name" : "Ammustra nùmene", - "Network" : "Rete", - "Confirm" : "Cunfirma", - "Save" : "Sarva", - "Register" : "Registra", "Your apps" : "Is aplicatziones tuas", "Documentation" : "Documentatzione", "Details" : "Detàllios", diff --git a/l10n/si.js b/l10n/si.js index 53298650..557b298d 100644 --- a/l10n/si.js +++ b/l10n/si.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "Remove" : "ඉවත් කරන්න", - "Name" : "නම", - "Version" : "අනුවාදය", - "Actions" : "ක්‍රියාමාර්ග", "Cancel" : "අවලංගු", "Edit" : "සංස්කරණය", + "Name" : "නම", "Host" : " ධාරකය", "Enabled" : "සබල කර ඇත", "Confirm" : "තහවුරු කරන්න", + "Remove" : "ඉවත් කරන්න", + "Version" : "අනුවාදය", + "Actions" : "ක්‍රියාමාර්ග", "Disable" : "අබල කරන්න" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json index 3f5f2cd2..7286fceb 100644 --- a/l10n/si.json +++ b/l10n/si.json @@ -1,13 +1,13 @@ { "translations": { - "Remove" : "ඉවත් කරන්න", - "Name" : "නම", - "Version" : "අනුවාදය", - "Actions" : "ක්‍රියාමාර්ග", "Cancel" : "අවලංගු", "Edit" : "සංස්කරණය", + "Name" : "නම", "Host" : " ධාරකය", "Enabled" : "සබල කර ඇත", "Confirm" : "තහවුරු කරන්න", + "Remove" : "ඉවත් කරන්න", + "Version" : "අනුවාදය", + "Actions" : "ක්‍රියාමාර්ග", "Disable" : "අබල කරන්න" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sk.js b/l10n/sk.js index 9b97e638..5441f6b7 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -1,11 +1,23 @@ OC.L10N.register( "app_api", { - "External Apps" : "Externé aplikácie", "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "Cancel" : "Zrušiť", + "Delete" : "Vymazať", + "Edit" : "Upraviť", + "Name" : "Názov", + "Host" : "Adresa servera", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Zapnuté", + "Display name" : "Zobrazované meno", + "Network" : "Sieť", + "Confirm" : "Potvrdiť", + "Save" : "Uložiť", + "Register" : "Registrovať", + "External Apps" : "Externé aplikácie", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", @@ -24,7 +36,6 @@ OC.L10N.register( "Featured" : "Doporučená", "Update to {update}" : "Aktualizovať na {update}", "Icon" : "Ikona", - "Name" : "Názov", "Version" : "Verzia", "Daemon" : "Daemon", "Level" : "Úroveň", @@ -33,17 +44,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], "Type" : "Typ", "Display Name" : "Zobrazované meno", - "Cancel" : "Zrušiť", - "Delete" : "Vymazať", - "Edit" : "Upraviť", - "Host" : "Adresa servera", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Zapnuté", - "Display name" : "Zobrazované meno", - "Network" : "Sieť", - "Confirm" : "Potvrdiť", - "Save" : "Uložiť", - "Register" : "Registrovať", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", "Details" : "Podrobnosti", diff --git a/l10n/sk.json b/l10n/sk.json index eeb6bdf7..1163400e 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -1,9 +1,21 @@ { "translations": { - "External Apps" : "Externé aplikácie", "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "Cancel" : "Zrušiť", + "Delete" : "Vymazať", + "Edit" : "Upraviť", + "Name" : "Názov", + "Host" : "Adresa servera", + "Nextcloud URL" : "Nextcloud URL", + "Enabled" : "Zapnuté", + "Display name" : "Zobrazované meno", + "Network" : "Sieť", + "Confirm" : "Potvrdiť", + "Save" : "Uložiť", + "Register" : "Registrovať", + "External Apps" : "Externé aplikácie", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", @@ -22,7 +34,6 @@ "Featured" : "Doporučená", "Update to {update}" : "Aktualizovať na {update}", "Icon" : "Ikona", - "Name" : "Názov", "Version" : "Verzia", "Daemon" : "Daemon", "Level" : "Úroveň", @@ -31,17 +42,6 @@ "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], "Type" : "Typ", "Display Name" : "Zobrazované meno", - "Cancel" : "Zrušiť", - "Delete" : "Vymazať", - "Edit" : "Upraviť", - "Host" : "Adresa servera", - "Nextcloud URL" : "Nextcloud URL", - "Enabled" : "Zapnuté", - "Display name" : "Zobrazované meno", - "Network" : "Sieť", - "Confirm" : "Potvrdiť", - "Save" : "Uložiť", - "Register" : "Registrovať", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", "Details" : "Podrobnosti", diff --git a/l10n/sl.js b/l10n/sl.js index 73f27402..a4971aee 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -1,6 +1,19 @@ OC.L10N.register( "app_api", { + "Cancel" : "Prekliči", + "Delete" : "Izbriši", + "Default" : "privzeto", + "Edit" : "Uredi", + "Name" : "Ime", + "Host" : "Gostitelj", + "Nextcloud URL" : "Naslov URL Nextcloud", + "Enabled" : "Omogočeno", + "Display name" : "Prikazno ime", + "Network" : "Omrežje", + "Confirm" : "Potrdi", + "Save" : "Shrani", + "Register" : "Vpis računa", "Update to {version}" : "Posodobitev na različico {version}", "Remove" : "Odstrani", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", @@ -19,7 +32,6 @@ OC.L10N.register( "Featured" : "Izbrano", "Update to {update}" : "Posodobi na različico {update}", "Icon" : "Ikona", - "Name" : "Ime", "Version" : "Različica", "Daemon" : "Ozadnji program", "Level" : "Vloga", @@ -27,18 +39,6 @@ OC.L10N.register( "Results from other categories" : "Rezultati iskanja med drugimi kategorijami", "_Update_::_Update all_" : ["Posodobi","Posodobi","Posodobi","Posodobi vse"], "Type" : "Vrsta", - "Cancel" : "Prekliči", - "Delete" : "Izbriši", - "Default" : "privzeto", - "Edit" : "Uredi", - "Host" : "Gostitelj", - "Nextcloud URL" : "Naslov URL Nextcloud", - "Enabled" : "Omogočeno", - "Display name" : "Prikazno ime", - "Network" : "Omrežje", - "Confirm" : "Potrdi", - "Save" : "Shrani", - "Register" : "Vpis računa", "Your apps" : "Vsi programi", "Documentation" : "Dokumentacija", "Details" : "Podrobnosti", diff --git a/l10n/sl.json b/l10n/sl.json index 8be27f2b..182cd33f 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -1,4 +1,17 @@ { "translations": { + "Cancel" : "Prekliči", + "Delete" : "Izbriši", + "Default" : "privzeto", + "Edit" : "Uredi", + "Name" : "Ime", + "Host" : "Gostitelj", + "Nextcloud URL" : "Naslov URL Nextcloud", + "Enabled" : "Omogočeno", + "Display name" : "Prikazno ime", + "Network" : "Omrežje", + "Confirm" : "Potrdi", + "Save" : "Shrani", + "Register" : "Vpis računa", "Update to {version}" : "Posodobitev na različico {version}", "Remove" : "Odstrani", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", @@ -17,7 +30,6 @@ "Featured" : "Izbrano", "Update to {update}" : "Posodobi na različico {update}", "Icon" : "Ikona", - "Name" : "Ime", "Version" : "Različica", "Daemon" : "Ozadnji program", "Level" : "Vloga", @@ -25,18 +37,6 @@ "Results from other categories" : "Rezultati iskanja med drugimi kategorijami", "_Update_::_Update all_" : ["Posodobi","Posodobi","Posodobi","Posodobi vse"], "Type" : "Vrsta", - "Cancel" : "Prekliči", - "Delete" : "Izbriši", - "Default" : "privzeto", - "Edit" : "Uredi", - "Host" : "Gostitelj", - "Nextcloud URL" : "Naslov URL Nextcloud", - "Enabled" : "Omogočeno", - "Display name" : "Prikazno ime", - "Network" : "Omrežje", - "Confirm" : "Potrdi", - "Save" : "Shrani", - "Register" : "Vpis računa", "Your apps" : "Vsi programi", "Documentation" : "Dokumentacija", "Details" : "Podrobnosti", diff --git a/l10n/sq.js b/l10n/sq.js index 01bd24c9..550b9457 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Cancel" : "Anuloje", + "Delete" : "Fshi", + "Default" : "Paraprake", + "Edit" : "Përpuno", + "Name" : "Emër", + "Host" : "Strehë", + "Enabled" : "E aktivizuar", + "Confirm" : "Konfirmo", + "Save" : "Ruaje", + "Register" : "Regjistrohu", "Update to {version}" : "Përditëso në {version}", "Remove" : "Hiqe", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një minimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", @@ -14,21 +24,11 @@ OC.L10N.register( "Developer documentation" : "Dokumentacioni e zhvilluesit", "Featured" : "I paraqitur", "Icon" : "Ikonë", - "Name" : "Emër", "Version" : "Versioni", "Level" : "Nivel", "Actions" : "Veprimet", "Type" : "Tipi", "Display Name" : "Trego Emrin", - "Cancel" : "Anuloje", - "Delete" : "Fshi", - "Default" : "Paraprake", - "Edit" : "Përpuno", - "Host" : "Strehë", - "Enabled" : "E aktivizuar", - "Confirm" : "Konfirmo", - "Save" : "Ruaje", - "Register" : "Regjistrohu", "Your apps" : "Aplikacionet tuaja ", "Documentation" : "Dokumentacioni", "Details" : "Detajet", diff --git a/l10n/sq.json b/l10n/sq.json index d3e9957f..c85ca157 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -1,4 +1,14 @@ { "translations": { + "Cancel" : "Anuloje", + "Delete" : "Fshi", + "Default" : "Paraprake", + "Edit" : "Përpuno", + "Name" : "Emër", + "Host" : "Strehë", + "Enabled" : "E aktivizuar", + "Confirm" : "Konfirmo", + "Save" : "Ruaje", + "Register" : "Regjistrohu", "Update to {version}" : "Përditëso në {version}", "Remove" : "Hiqe", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një minimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", @@ -12,21 +22,11 @@ "Developer documentation" : "Dokumentacioni e zhvilluesit", "Featured" : "I paraqitur", "Icon" : "Ikonë", - "Name" : "Emër", "Version" : "Versioni", "Level" : "Nivel", "Actions" : "Veprimet", "Type" : "Tipi", "Display Name" : "Trego Emrin", - "Cancel" : "Anuloje", - "Delete" : "Fshi", - "Default" : "Paraprake", - "Edit" : "Përpuno", - "Host" : "Strehë", - "Enabled" : "E aktivizuar", - "Confirm" : "Konfirmo", - "Save" : "Ruaje", - "Register" : "Regjistrohu", "Your apps" : "Aplikacionet tuaja ", "Documentation" : "Dokumentacioni", "Details" : "Detajet", diff --git a/l10n/sr.js b/l10n/sr.js index 6765558b..98afefdf 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Спољне апликације", "Daemon config not found" : "Није пронађена конфигурација даемона", "Error starting install of ExApp" : "Грешка приликом покретања инсталације ExApp", "ExApp failed to register, check the NC logs" : "Није успела регистрација ExApp, погледајте NC дневнике", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сауване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", - "Update to {version}" : "Ажурирај на верзију {version}", - "Remove" : "Уклони", - "Delete data on remove" : "Обриши податке приликом уклањања", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "View in store" : "Погледај у продавници", - "Visit website" : "Посети веб сајт", - "Report a bug" : "Пријави грешку", - "User documentation" : "Корисничка документација", - "Admin documentation" : "Администраторска документација", - "Developer documentation" : "Програмерска документација", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није регистрована у Продавници апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", - "{license}-licensed" : "{license}-лиценцирано", - "This app is supported via your current Nextcloud subscription." : "Ова апликација је подржана са Вашом тренутном Некстклауд претплатом.", - "Supported" : "Подржана", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Препоручене апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", - "Featured" : "Препоручене", - "Update to {update}" : "Ажурирај на {update}", - "All ExApps are up-to-date." : "Све ExApps су ажуриране.", - "Default Deploy daemon is not accessible" : "Није доступан подразумевани даемон за постављање ", - "Icon" : "Икона", - "Name" : "Име", - "Version" : "Верзија", - "Daemon" : "Сервис", - "Level" : "Ниво", - "Actions" : "Радње", - "Results from other categories" : "Резултати из других категорија", - "No apps found" : "Није пронађена ниједна апликација", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["Доступно је ажурирање за %n апликацију","Доступно је ажурирање за %n апликације","Доступно је ажурирање за %n апликација"], - "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], - "Deploy Daemon" : "Даемон за постављање", - "Type" : "Тип", - "Display Name" : "Име за приказ", - "GPUs support" : "Подршка за GPU", "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", "Password confirmation failed" : "Није успело потврђивање лозинке", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", + "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Даемон за ручно инсталирање се обично користи за развој. Он не може да се постави као подразумевани даемон.", "ExApps installed" : "ExApp су инсталиране", + "Name" : "Име", "Protocol" : "Протокол", "Host" : "Домаћин", "Deploy config" : "Конфигурација постављања", "Docker network" : "Docker мрежа", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy лозинка", + "GPUs support" : "Подршка за GPU", "Compute device" : "Рачунарски уређај", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", + "External Apps" : "Спољне апликације", + "Update to {version}" : "Ажурирај на верзију {version}", + "Remove" : "Уклони", + "Delete data on remove" : "Обриши податке приликом уклањања", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", + "View in store" : "Погледај у продавници", + "Visit website" : "Посети веб сајт", + "Report a bug" : "Пријави грешку", + "User documentation" : "Корисничка документација", + "Admin documentation" : "Администраторска документација", + "Developer documentation" : "Програмерска документација", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није регистрована у Продавници апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", + "{license}-licensed" : "{license}-лиценцирано", + "This app is supported via your current Nextcloud subscription." : "Ова апликација је подржана са Вашом тренутном Некстклауд претплатом.", + "Supported" : "Подржана", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Препоручене апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", + "Featured" : "Препоручене", + "Update to {update}" : "Ажурирај на {update}", + "All ExApps are up-to-date." : "Све ExApps су ажуриране.", + "Default Deploy daemon is not accessible" : "Није доступан подразумевани даемон за постављање ", + "Icon" : "Икона", + "Version" : "Верзија", + "Daemon" : "Сервис", + "Level" : "Ниво", + "Actions" : "Радње", + "Results from other categories" : "Резултати из других категорија", + "No apps found" : "Није пронађена ниједна апликација", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["Доступно је ажурирање за %n апликацију","Доступно је ажурирање за %n апликације","Доступно је ажурирање за %n апликација"], + "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], + "Type" : "Тип", + "Display Name" : "Име за приказ", "Your apps" : "Ваше апликације", "Documentation" : "Документација", "Details" : "Детаљи", diff --git a/l10n/sr.json b/l10n/sr.json index 66ce8ff5..ba29dc72 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Спољне апликације", "Daemon config not found" : "Није пронађена конфигурација даемона", "Error starting install of ExApp" : "Грешка приликом покретања инсталације ExApp", "ExApp failed to register, check the NC logs" : "Није успела регистрација ExApp, погледајте NC дневнике", @@ -33,41 +32,6 @@ "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сауване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", - "Update to {version}" : "Ажурирај на верзију {version}", - "Remove" : "Уклони", - "Delete data on remove" : "Обриши податке приликом уклањања", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "View in store" : "Погледај у продавници", - "Visit website" : "Посети веб сајт", - "Report a bug" : "Пријави грешку", - "User documentation" : "Корисничка документација", - "Admin documentation" : "Администраторска документација", - "Developer documentation" : "Програмерска документација", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није регистрована у Продавници апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", - "{license}-licensed" : "{license}-лиценцирано", - "This app is supported via your current Nextcloud subscription." : "Ова апликација је подржана са Вашом тренутном Некстклауд претплатом.", - "Supported" : "Подржана", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Препоручене апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", - "Featured" : "Препоручене", - "Update to {update}" : "Ажурирај на {update}", - "All ExApps are up-to-date." : "Све ExApps су ажуриране.", - "Default Deploy daemon is not accessible" : "Није доступан подразумевани даемон за постављање ", - "Icon" : "Икона", - "Name" : "Име", - "Version" : "Верзија", - "Daemon" : "Сервис", - "Level" : "Ниво", - "Actions" : "Радње", - "Results from other categories" : "Резултати из других категорија", - "No apps found" : "Није пронађена ниједна апликација", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["Доступно је ажурирање за %n апликацију","Доступно је ажурирање за %n апликације","Доступно је ажурирање за %n апликација"], - "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], - "Deploy Daemon" : "Даемон за постављање", - "Type" : "Тип", - "Display Name" : "Име за приказ", - "GPUs support" : "Подршка за GPU", "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", "Password confirmation failed" : "Није успело потврђивање лозинке", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", + "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Даемон за ручно инсталирање се обично користи за развој. Он не може да се постави као подразумевани даемон.", "ExApps installed" : "ExApp су инсталиране", + "Name" : "Име", "Protocol" : "Протокол", "Host" : "Домаћин", "Deploy config" : "Конфигурација постављања", "Docker network" : "Docker мрежа", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy лозинка", + "GPUs support" : "Подршка за GPU", "Compute device" : "Рачунарски уређај", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", + "External Apps" : "Спољне апликације", + "Update to {version}" : "Ажурирај на верзију {version}", + "Remove" : "Уклони", + "Delete data on remove" : "Обриши податке приликом уклањања", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", + "View in store" : "Погледај у продавници", + "Visit website" : "Посети веб сајт", + "Report a bug" : "Пријави грешку", + "User documentation" : "Корисничка документација", + "Admin documentation" : "Администраторска документација", + "Developer documentation" : "Програмерска документација", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није регистрована у Продавници апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", + "{license}-licensed" : "{license}-лиценцирано", + "This app is supported via your current Nextcloud subscription." : "Ова апликација је подржана са Вашом тренутном Некстклауд претплатом.", + "Supported" : "Подржана", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Препоручене апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", + "Featured" : "Препоручене", + "Update to {update}" : "Ажурирај на {update}", + "All ExApps are up-to-date." : "Све ExApps су ажуриране.", + "Default Deploy daemon is not accessible" : "Није доступан подразумевани даемон за постављање ", + "Icon" : "Икона", + "Version" : "Верзија", + "Daemon" : "Сервис", + "Level" : "Ниво", + "Actions" : "Радње", + "Results from other categories" : "Резултати из других категорија", + "No apps found" : "Није пронађена ниједна апликација", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["Доступно је ажурирање за %n апликацију","Доступно је ажурирање за %n апликације","Доступно је ажурирање за %n апликација"], + "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], + "Type" : "Тип", + "Display Name" : "Име за приказ", "Your apps" : "Ваше апликације", "Documentation" : "Документација", "Details" : "Детаљи", diff --git a/l10n/sr@latin.js b/l10n/sr@latin.js index 7c888aaa..60b746e1 100644 --- a/l10n/sr@latin.js +++ b/l10n/sr@latin.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "Update to {version}" : "Ažuriraj na verziju {version}", - "Report a bug" : "Prijavi grešku", - "Name" : "Ime", - "Version" : "Verzija", - "Type" : "Tip", "Cancel" : "Poništi", "Delete" : "Obriši", "Edit" : "Izmeni", + "Name" : "Ime", "Save" : "Sačuvaj", + "Update to {version}" : "Ažuriraj na verziju {version}", + "Report a bug" : "Prijavi grešku", + "Version" : "Verzija", + "Type" : "Tip", "Documentation" : "Dokumentacija", "Details" : "Detalji", "Disable" : "Isključi" diff --git a/l10n/sr@latin.json b/l10n/sr@latin.json index 56f893bd..badf3b3d 100644 --- a/l10n/sr@latin.json +++ b/l10n/sr@latin.json @@ -1,13 +1,13 @@ { "translations": { - "Update to {version}" : "Ažuriraj na verziju {version}", - "Report a bug" : "Prijavi grešku", - "Name" : "Ime", - "Version" : "Verzija", - "Type" : "Tip", "Cancel" : "Poništi", "Delete" : "Obriši", "Edit" : "Izmeni", + "Name" : "Ime", "Save" : "Sačuvaj", + "Update to {version}" : "Ažuriraj na verziju {version}", + "Report a bug" : "Prijavi grešku", + "Version" : "Verzija", + "Type" : "Tip", "Documentation" : "Dokumentacija", "Details" : "Detalji", "Disable" : "Isključi" diff --git a/l10n/sv.js b/l10n/sv.js index 185607e8..d6f7c790 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -1,8 +1,21 @@ OC.L10N.register( "app_api", { - "External Apps" : "Externa appar", "External Apps management" : "Hantering av externa appar", + "Cancel" : "Avbryt", + "Delete" : "Radera", + "Default" : "Förvald", + "Edit" : "Redigera", + "Name" : "Namn", + "Host" : "Server", + "Nextcloud URL" : "Nextcloud-URL", + "Enabled" : "Aktiverad", + "Display name" : "Visningsnamn", + "Network" : "Nätverk", + "Confirm" : "Bekräfta", + "Save" : "Spara", + "Register" : "Registrera", + "External Apps" : "Externa appar", "Update to {version}" : "Uppdatera till {version}", "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", @@ -21,7 +34,6 @@ OC.L10N.register( "Featured" : "Utvalda", "Update to {update}" : "Uppdatera till {update}", "Icon" : "Ikon", - "Name" : "Namn", "Version" : "Version", "Daemon" : "Demon", "Level" : "Nivå", @@ -30,18 +42,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", - "Cancel" : "Avbryt", - "Delete" : "Radera", - "Default" : "Förvald", - "Edit" : "Redigera", - "Host" : "Server", - "Nextcloud URL" : "Nextcloud-URL", - "Enabled" : "Aktiverad", - "Display name" : "Visningsnamn", - "Network" : "Nätverk", - "Confirm" : "Bekräfta", - "Save" : "Spara", - "Register" : "Registrera", "Your apps" : "Dina appar", "Documentation" : "Dokumentation", "Details" : "Detaljer", diff --git a/l10n/sv.json b/l10n/sv.json index 60ca2af4..ea168e54 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -1,6 +1,19 @@ { "translations": { - "External Apps" : "Externa appar", "External Apps management" : "Hantering av externa appar", + "Cancel" : "Avbryt", + "Delete" : "Radera", + "Default" : "Förvald", + "Edit" : "Redigera", + "Name" : "Namn", + "Host" : "Server", + "Nextcloud URL" : "Nextcloud-URL", + "Enabled" : "Aktiverad", + "Display name" : "Visningsnamn", + "Network" : "Nätverk", + "Confirm" : "Bekräfta", + "Save" : "Spara", + "Register" : "Registrera", + "External Apps" : "Externa appar", "Update to {version}" : "Uppdatera till {version}", "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", @@ -19,7 +32,6 @@ "Featured" : "Utvalda", "Update to {update}" : "Uppdatera till {update}", "Icon" : "Ikon", - "Name" : "Namn", "Version" : "Version", "Daemon" : "Demon", "Level" : "Nivå", @@ -28,18 +40,6 @@ "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", - "Cancel" : "Avbryt", - "Delete" : "Radera", - "Default" : "Förvald", - "Edit" : "Redigera", - "Host" : "Server", - "Nextcloud URL" : "Nextcloud-URL", - "Enabled" : "Aktiverad", - "Display name" : "Visningsnamn", - "Network" : "Nätverk", - "Confirm" : "Bekräfta", - "Save" : "Spara", - "Register" : "Registrera", "Your apps" : "Dina appar", "Documentation" : "Dokumentation", "Details" : "Detaljer", diff --git a/l10n/ta.js b/l10n/ta.js index d3e575c0..a4c36c9b 100644 --- a/l10n/ta.js +++ b/l10n/ta.js @@ -1,15 +1,15 @@ OC.L10N.register( "app_api", { - "Remove" : "அகற்றுக", - "Name" : "பெயர்", - "Actions" : "செயல்கள்", - "Type" : "வகை", "Cancel" : "ரத்து செய்", "Delete" : "நீக்குக", "Edit" : "தொகுக்க", + "Name" : "பெயர்", "Host" : "ஓம்புனர்", "Save" : "சேமிக்க ", + "Remove" : "அகற்றுக", + "Actions" : "செயல்கள்", + "Type" : "வகை", "Documentation" : "ஆவணமாக்கல்", "Details" : "விவரங்கள்", "Enable" : "இயலுமைப்படுத்துக", diff --git a/l10n/ta.json b/l10n/ta.json index c4e540ad..67808667 100644 --- a/l10n/ta.json +++ b/l10n/ta.json @@ -1,13 +1,13 @@ { "translations": { - "Remove" : "அகற்றுக", - "Name" : "பெயர்", - "Actions" : "செயல்கள்", - "Type" : "வகை", "Cancel" : "ரத்து செய்", "Delete" : "நீக்குக", "Edit" : "தொகுக்க", + "Name" : "பெயர்", "Host" : "ஓம்புனர்", "Save" : "சேமிக்க ", + "Remove" : "அகற்றுக", + "Actions" : "செயல்கள்", + "Type" : "வகை", "Documentation" : "ஆவணமாக்கல்", "Details" : "விவரங்கள்", "Enable" : "இயலுமைப்படுத்துக", diff --git a/l10n/th.js b/l10n/th.js index 538e326d..6e81591f 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Cancel" : "ยกเลิก", + "Delete" : "ลบ", + "Edit" : "แก้ไข", + "Name" : "ชื่อ", + "Host" : "โฮสต์", + "Enabled" : "เปิดใช้งาน", + "Display name" : "ชื่อที่แสดง", + "Confirm" : "ยืนยัน", + "Save" : "บันทึก", + "Register" : "ลงทะเบียน", "Update to {version}" : "อัปเดตเป็น {version}", "Remove" : "ลบออก", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นขั้นต่ำของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", @@ -18,20 +28,10 @@ OC.L10N.register( "Featured" : "แนะนำ", "Update to {update}" : "อัปเดตเป็น {update}", "Icon" : "ไอคอน", - "Name" : "ชื่อ", "Version" : "รุ่น", "Actions" : "การกระทำ", "Results from other categories" : "ผลลัพธ์จากหมวดหมู่อื่น ๆ", "Type" : "ประเภท", - "Cancel" : "ยกเลิก", - "Delete" : "ลบ", - "Edit" : "แก้ไข", - "Host" : "โฮสต์", - "Enabled" : "เปิดใช้งาน", - "Display name" : "ชื่อที่แสดง", - "Confirm" : "ยืนยัน", - "Save" : "บันทึก", - "Register" : "ลงทะเบียน", "Your apps" : "แอปของคุณ", "Documentation" : "เอกสารประกอบ", "Details" : "รายละเอียด", diff --git a/l10n/th.json b/l10n/th.json index ec44feda..4006fa2d 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -1,4 +1,14 @@ { "translations": { + "Cancel" : "ยกเลิก", + "Delete" : "ลบ", + "Edit" : "แก้ไข", + "Name" : "ชื่อ", + "Host" : "โฮสต์", + "Enabled" : "เปิดใช้งาน", + "Display name" : "ชื่อที่แสดง", + "Confirm" : "ยืนยัน", + "Save" : "บันทึก", + "Register" : "ลงทะเบียน", "Update to {version}" : "อัปเดตเป็น {version}", "Remove" : "ลบออก", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นขั้นต่ำของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", @@ -16,20 +26,10 @@ "Featured" : "แนะนำ", "Update to {update}" : "อัปเดตเป็น {update}", "Icon" : "ไอคอน", - "Name" : "ชื่อ", "Version" : "รุ่น", "Actions" : "การกระทำ", "Results from other categories" : "ผลลัพธ์จากหมวดหมู่อื่น ๆ", "Type" : "ประเภท", - "Cancel" : "ยกเลิก", - "Delete" : "ลบ", - "Edit" : "แก้ไข", - "Host" : "โฮสต์", - "Enabled" : "เปิดใช้งาน", - "Display name" : "ชื่อที่แสดง", - "Confirm" : "ยืนยัน", - "Save" : "บันทึก", - "Register" : "ลงทะเบียน", "Your apps" : "แอปของคุณ", "Documentation" : "เอกสารประกอบ", "Details" : "รายละเอียด", diff --git a/l10n/tk.js b/l10n/tk.js index 36f4b013..6ed05e8c 100644 --- a/l10n/tk.js +++ b/l10n/tk.js @@ -1,14 +1,14 @@ OC.L10N.register( "app_api", { - "Remove" : "Aýyrmak", - "Name" : "Ady", - "Type" : "Görnüşi", "Cancel" : "ýatyrmak", "Delete" : "Pozmak", "Default" : "Bellenen", "Edit" : "Redaktirläň", + "Name" : "Ady", "Save" : "Saklamak", + "Remove" : "Aýyrmak", + "Type" : "Görnüşi", "Details" : "Jikme-jiklikler", "Disable" : "Öçürmek" }, diff --git a/l10n/tk.json b/l10n/tk.json index b22f912b..c9cda836 100644 --- a/l10n/tk.json +++ b/l10n/tk.json @@ -1,12 +1,12 @@ { "translations": { - "Remove" : "Aýyrmak", - "Name" : "Ady", - "Type" : "Görnüşi", "Cancel" : "ýatyrmak", "Delete" : "Pozmak", "Default" : "Bellenen", "Edit" : "Redaktirläň", + "Name" : "Ady", "Save" : "Saklamak", + "Remove" : "Aýyrmak", + "Type" : "Görnüşi", "Details" : "Jikme-jiklikler", "Disable" : "Öçürmek" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/tr.js b/l10n/tr.js index 40168a28..5d3197e3 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "Dış uygulamalar", "Daemon config not found" : "Arka plan işlemi yapılandırması bulunamadı", "Error starting install of ExApp" : "ExApp kurulumu başlatılırken sorun çıktı", "ExApp failed to register, check the NC logs" : "ExApp kaydedilemedi. NC günlüklerine bakın", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", - "Update to {version}" : "{version} sürümüne güncelleniyor", - "Remove" : "Kaldır", - "Delete data on remove" : "Kaldırıldığında veriler silinsin", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aşağıdaki bağımlılıklar sağlanmadığından bu uygulama kurulamıyor:", - "View in store" : "Mağazada görüntüle", - "Visit website" : "Siteye bakın", - "Report a bug" : "Hata bildirin", - "User documentation" : "Kullanıcı belgeleri", - "Admin documentation" : "Yönetici belgeleri", - "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, devre dışı bırakma ve kaldırma işlemleri yapılabilir.", - "{license}-licensed" : "{license}-lisanslı", - "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", - "Supported" : "Destekleniyor", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", - "Featured" : "Öne çıkarılmış", - "Update to {update}" : "{update} sürümüne güncelle", - "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", - "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", - "Icon" : "Simge", - "Name" : "Ad", - "Version" : "Sürüm", - "Daemon" : "Arka plan işlemi", - "Level" : "Düzey", - "Actions" : "İşlemler", - "Results from other categories" : "Diğer kategorilerden sonuçlar", - "No apps found" : "Herhangi bir uygulama bulunamadı", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n dış uygulama için güncelleme yayınlanmış","%n dış uygulama için güncelleme yayınlanmış"], - "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], - "Deploy Daemon" : "Dağıtım arka plan işlemi", - "Type" : "Tür", - "Display Name" : "Görüntülenecek ad", - "GPUs support" : "Grafik işlemci desteği", "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Password confirmation failed" : "Parola doğrulanamadı", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", + "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", "ExApps installed" : "ExApps kuruldu", + "Name" : "Ad", "Protocol" : "İletişim kuralı", "Host" : "Sunucu", "Deploy config" : "Yapılandırmayı dağıt", "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", "HaProxy password" : "HaProxy parolası", + "GPUs support" : "Grafik işlemci desteği", "Compute device" : "Hesaplama aygıtı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", + "External Apps" : "Dış uygulamalar", + "Update to {version}" : "{version} sürümüne güncelleniyor", + "Remove" : "Kaldır", + "Delete data on remove" : "Kaldırıldığında veriler silinsin", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Aşağıdaki bağımlılıklar sağlanmadığından bu uygulama kurulamıyor:", + "View in store" : "Mağazada görüntüle", + "Visit website" : "Siteye bakın", + "Report a bug" : "Hata bildirin", + "User documentation" : "Kullanıcı belgeleri", + "Admin documentation" : "Yönetici belgeleri", + "Developer documentation" : "Geliştirici belgeleri", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, devre dışı bırakma ve kaldırma işlemleri yapılabilir.", + "{license}-licensed" : "{license}-lisanslı", + "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", + "Supported" : "Destekleniyor", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", + "Featured" : "Öne çıkarılmış", + "Update to {update}" : "{update} sürümüne güncelle", + "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", + "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", + "Icon" : "Simge", + "Version" : "Sürüm", + "Daemon" : "Arka plan işlemi", + "Level" : "Düzey", + "Actions" : "İşlemler", + "Results from other categories" : "Diğer kategorilerden sonuçlar", + "No apps found" : "Herhangi bir uygulama bulunamadı", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n dış uygulama için güncelleme yayınlanmış","%n dış uygulama için güncelleme yayınlanmış"], + "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], + "Type" : "Tür", + "Display Name" : "Görüntülenecek ad", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", "Details" : "Ayrıntılar", diff --git a/l10n/tr.json b/l10n/tr.json index dcaf9c9a..07adb303 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "Dış uygulamalar", "Daemon config not found" : "Arka plan işlemi yapılandırması bulunamadı", "Error starting install of ExApp" : "ExApp kurulumu başlatılırken sorun çıktı", "ExApp failed to register, check the NC logs" : "ExApp kaydedilemedi. NC günlüklerine bakın", @@ -33,41 +32,6 @@ "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", - "Update to {version}" : "{version} sürümüne güncelleniyor", - "Remove" : "Kaldır", - "Delete data on remove" : "Kaldırıldığında veriler silinsin", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Aşağıdaki bağımlılıklar sağlanmadığından bu uygulama kurulamıyor:", - "View in store" : "Mağazada görüntüle", - "Visit website" : "Siteye bakın", - "Report a bug" : "Hata bildirin", - "User documentation" : "Kullanıcı belgeleri", - "Admin documentation" : "Yönetici belgeleri", - "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, devre dışı bırakma ve kaldırma işlemleri yapılabilir.", - "{license}-licensed" : "{license}-lisanslı", - "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", - "Supported" : "Destekleniyor", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", - "Featured" : "Öne çıkarılmış", - "Update to {update}" : "{update} sürümüne güncelle", - "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", - "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", - "Icon" : "Simge", - "Name" : "Ad", - "Version" : "Sürüm", - "Daemon" : "Arka plan işlemi", - "Level" : "Düzey", - "Actions" : "İşlemler", - "Results from other categories" : "Diğer kategorilerden sonuçlar", - "No apps found" : "Herhangi bir uygulama bulunamadı", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n dış uygulama için güncelleme yayınlanmış","%n dış uygulama için güncelleme yayınlanmış"], - "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], - "Deploy Daemon" : "Dağıtım arka plan işlemi", - "Type" : "Tür", - "Display Name" : "Görüntülenecek ad", - "GPUs support" : "Grafik işlemci desteği", "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Password confirmation failed" : "Parola doğrulanamadı", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", + "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", "ExApps installed" : "ExApps kuruldu", + "Name" : "Ad", "Protocol" : "İletişim kuralı", "Host" : "Sunucu", "Deploy config" : "Yapılandırmayı dağıt", "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", "HaProxy password" : "HaProxy parolası", + "GPUs support" : "Grafik işlemci desteği", "Compute device" : "Hesaplama aygıtı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", + "External Apps" : "Dış uygulamalar", + "Update to {version}" : "{version} sürümüne güncelleniyor", + "Remove" : "Kaldır", + "Delete data on remove" : "Kaldırıldığında veriler silinsin", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Aşağıdaki bağımlılıklar sağlanmadığından bu uygulama kurulamıyor:", + "View in store" : "Mağazada görüntüle", + "Visit website" : "Siteye bakın", + "Report a bug" : "Hata bildirin", + "User documentation" : "Kullanıcı belgeleri", + "Admin documentation" : "Yönetici belgeleri", + "Developer documentation" : "Geliştirici belgeleri", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, devre dışı bırakma ve kaldırma işlemleri yapılabilir.", + "{license}-licensed" : "{license}-lisanslı", + "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", + "Supported" : "Destekleniyor", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", + "Featured" : "Öne çıkarılmış", + "Update to {update}" : "{update} sürümüne güncelle", + "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", + "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", + "Icon" : "Simge", + "Version" : "Sürüm", + "Daemon" : "Arka plan işlemi", + "Level" : "Düzey", + "Actions" : "İşlemler", + "Results from other categories" : "Diğer kategorilerden sonuçlar", + "No apps found" : "Herhangi bir uygulama bulunamadı", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n dış uygulama için güncelleme yayınlanmış","%n dış uygulama için güncelleme yayınlanmış"], + "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], + "Type" : "Tür", + "Display Name" : "Görüntülenecek ad", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", "Details" : "Ayrıntılar", diff --git a/l10n/uk.js b/l10n/uk.js index 1533d157..601d2f2e 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -1,6 +1,17 @@ OC.L10N.register( "app_api", { + "Cancel" : "Скасувати", + "Delete" : "Вилучати", + "Edit" : "Редагувати", + "Name" : "Назва", + "Host" : "Хост", + "Enabled" : "Увімкнено", + "Display name" : "Ім'я для показу", + "Network" : "Мережа", + "Confirm" : "Підтвердити", + "Save" : "Зберегти", + "Register" : "Зареєструватися", "External Apps" : "Зовнішні застосунки", "Update to {version}" : "Оновити до {version}", "Remove" : "Вилучити", @@ -20,7 +31,6 @@ OC.L10N.register( "Featured" : "Функціональні", "Update to {update}" : "Оновити до {update}", "Icon" : "Значок", - "Name" : "Назва", "Version" : "Версія", "Daemon" : "Демон", "Level" : "Рівень", @@ -28,16 +38,6 @@ OC.L10N.register( "Results from other categories" : "Результати з інших категорій", "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", - "Cancel" : "Скасувати", - "Delete" : "Вилучати", - "Edit" : "Редагувати", - "Host" : "Хост", - "Enabled" : "Увімкнено", - "Display name" : "Ім'я для показу", - "Network" : "Мережа", - "Confirm" : "Підтвердити", - "Save" : "Зберегти", - "Register" : "Зареєструватися", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", "Details" : "Деталі", diff --git a/l10n/uk.json b/l10n/uk.json index 68f2d2ec..7992343c 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -1,4 +1,15 @@ { "translations": { + "Cancel" : "Скасувати", + "Delete" : "Вилучати", + "Edit" : "Редагувати", + "Name" : "Назва", + "Host" : "Хост", + "Enabled" : "Увімкнено", + "Display name" : "Ім'я для показу", + "Network" : "Мережа", + "Confirm" : "Підтвердити", + "Save" : "Зберегти", + "Register" : "Зареєструватися", "External Apps" : "Зовнішні застосунки", "Update to {version}" : "Оновити до {version}", "Remove" : "Вилучити", @@ -18,7 +29,6 @@ "Featured" : "Функціональні", "Update to {update}" : "Оновити до {update}", "Icon" : "Значок", - "Name" : "Назва", "Version" : "Версія", "Daemon" : "Демон", "Level" : "Рівень", @@ -26,16 +36,6 @@ "Results from other categories" : "Результати з інших категорій", "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", - "Cancel" : "Скасувати", - "Delete" : "Вилучати", - "Edit" : "Редагувати", - "Host" : "Хост", - "Enabled" : "Увімкнено", - "Display name" : "Ім'я для показу", - "Network" : "Мережа", - "Confirm" : "Підтвердити", - "Save" : "Зберегти", - "Register" : "Зареєструватися", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", "Details" : "Деталі", diff --git a/l10n/uz.js b/l10n/uz.js index 2fdc16fe..b4bec869 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -1,17 +1,17 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", + "Delete" : "Delete", + "Name" : "Name", + "Confirm" : "Confirm", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", "Admin documentation" : "Admin documentation", "Developer documentation" : "developer hujjatlari", - "Name" : "Name", "Actions" : "Actions", - "Cancel" : "Cancel", - "Delete" : "Delete", - "Confirm" : "Confirm", "Details" : "Details", "Enable" : "Enable", "Disable" : "Oʻchirish" diff --git a/l10n/uz.json b/l10n/uz.json index e90ed4be..bb7cd762 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -1,15 +1,15 @@ { "translations": { + "Cancel" : "Cancel", + "Delete" : "Delete", + "Name" : "Name", + "Confirm" : "Confirm", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", "Admin documentation" : "Admin documentation", "Developer documentation" : "developer hujjatlari", - "Name" : "Name", "Actions" : "Actions", - "Cancel" : "Cancel", - "Delete" : "Delete", - "Confirm" : "Confirm", "Details" : "Details", "Enable" : "Enable", "Disable" : "Oʻchirish" diff --git a/l10n/vi.js b/l10n/vi.js index 17b46357..3285e7cc 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Cancel" : "Hủy", + "Delete" : "Xóa", + "Edit" : "Chỉnh sửa", + "Name" : "Tên", + "Host" : "Máy chủ", + "Nextcloud URL" : "vWorkspace URL", + "Enabled" : "Đá kích hoạt", + "Confirm" : "Xác nhận", + "Save" : "Lưu", + "Register" : "Đăng ký", "Update to {version}" : "Cập nhật tới {version}", "Remove" : "Xoá", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối thiểu được chỉ định. Đây sẽ là một lỗi trong tương lai.", @@ -19,22 +29,12 @@ OC.L10N.register( "Featured" : "Tính năng được trang bị", "Update to {update}" : "Cập nhật tới {update}", "Icon" : "Biểu tượng", - "Name" : "Tên", "Version" : "Phiên bản", "Level" : "Cấp độ", "Actions" : "Hành động", "Results from other categories" : "Kết quả từ các danh mục khác", "_Update_::_Update all_" : ["Cập nhật tất cả"], "Type" : "Loại", - "Cancel" : "Hủy", - "Delete" : "Xóa", - "Edit" : "Chỉnh sửa", - "Host" : "Máy chủ", - "Nextcloud URL" : "vWorkspace URL", - "Enabled" : "Đá kích hoạt", - "Confirm" : "Xác nhận", - "Save" : "Lưu", - "Register" : "Đăng ký", "Your apps" : "Ứng dụng của bạn", "Documentation" : "Tài liệu", "Details" : "Chi tiết", diff --git a/l10n/vi.json b/l10n/vi.json index d16104ec..24b7b0fc 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -1,4 +1,14 @@ { "translations": { + "Cancel" : "Hủy", + "Delete" : "Xóa", + "Edit" : "Chỉnh sửa", + "Name" : "Tên", + "Host" : "Máy chủ", + "Nextcloud URL" : "vWorkspace URL", + "Enabled" : "Đá kích hoạt", + "Confirm" : "Xác nhận", + "Save" : "Lưu", + "Register" : "Đăng ký", "Update to {version}" : "Cập nhật tới {version}", "Remove" : "Xoá", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối thiểu được chỉ định. Đây sẽ là một lỗi trong tương lai.", @@ -17,22 +27,12 @@ "Featured" : "Tính năng được trang bị", "Update to {update}" : "Cập nhật tới {update}", "Icon" : "Biểu tượng", - "Name" : "Tên", "Version" : "Phiên bản", "Level" : "Cấp độ", "Actions" : "Hành động", "Results from other categories" : "Kết quả từ các danh mục khác", "_Update_::_Update all_" : ["Cập nhật tất cả"], "Type" : "Loại", - "Cancel" : "Hủy", - "Delete" : "Xóa", - "Edit" : "Chỉnh sửa", - "Host" : "Máy chủ", - "Nextcloud URL" : "vWorkspace URL", - "Enabled" : "Đá kích hoạt", - "Confirm" : "Xác nhận", - "Save" : "Lưu", - "Register" : "Đăng ký", "Your apps" : "Ứng dụng của bạn", "Documentation" : "Tài liệu", "Details" : "Chi tiết", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 5822cf7c..148e53c8 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "外部应用", "Daemon config not found" : "未找到守护进程配置", "Error starting install of ExApp" : "开始安装外部应用时发生错误", "Failed to enable ExApp" : "无法启用外部程序", @@ -25,6 +24,26 @@ OC.L10N.register( "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", + "Cancel" : "取消", + "Delete" : "删除", + "Edit" : "编辑", + "Name" : "名称", + "Host" : "主机", + "Nextcloud URL" : "Nextcloud URL ", + "GPUs support" : "GPU 支持", + "Registered Deploy daemons list" : "已注册的部署守护进程列表", + "No Deploy daemons configured" : "没有部署守护进程配置", + "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", + "Register Daemon" : "注册守护进程", + "Enabled" : "已启用", + "Register Deploy Daemon" : "注册部署守护进程", + "Display name" : "显示名称", + "Deployment method" : "部署方式", + "Network" : "网络", + "Confirm" : "确认", + "Save" : "保存", + "Register" : "注册", + "External Apps" : "外部应用", "Update to {version}" : "更新至 {version}", "Remove" : "移除", "Delete data on remove" : "移除时删除数据", @@ -44,7 +63,6 @@ OC.L10N.register( "Featured" : "精选", "Update to {update}" : "更新至 {update}", "Icon" : "图标", - "Name" : "名称", "Version" : "版本", "Daemon" : "守护进程", "Level" : "级别", @@ -53,24 +71,6 @@ OC.L10N.register( "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", - "GPUs support" : "GPU 支持", - "Cancel" : "取消", - "Delete" : "删除", - "Edit" : "编辑", - "Host" : "主机", - "Nextcloud URL" : "Nextcloud URL ", - "Registered Deploy daemons list" : "已注册的部署守护进程列表", - "No Deploy daemons configured" : "没有部署守护进程配置", - "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", - "Register Daemon" : "注册守护进程", - "Enabled" : "已启用", - "Register Deploy Daemon" : "注册部署守护进程", - "Display name" : "显示名称", - "Deployment method" : "部署方式", - "Network" : "网络", - "Confirm" : "确认", - "Save" : "保存", - "Register" : "注册", "Your apps" : "您的应用", "Documentation" : "文档", "Details" : "详情", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 94eeea59..44c448b4 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "外部应用", "Daemon config not found" : "未找到守护进程配置", "Error starting install of ExApp" : "开始安装外部应用时发生错误", "Failed to enable ExApp" : "无法启用外部程序", @@ -23,6 +22,26 @@ "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", + "Cancel" : "取消", + "Delete" : "删除", + "Edit" : "编辑", + "Name" : "名称", + "Host" : "主机", + "Nextcloud URL" : "Nextcloud URL ", + "GPUs support" : "GPU 支持", + "Registered Deploy daemons list" : "已注册的部署守护进程列表", + "No Deploy daemons configured" : "没有部署守护进程配置", + "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", + "Register Daemon" : "注册守护进程", + "Enabled" : "已启用", + "Register Deploy Daemon" : "注册部署守护进程", + "Display name" : "显示名称", + "Deployment method" : "部署方式", + "Network" : "网络", + "Confirm" : "确认", + "Save" : "保存", + "Register" : "注册", + "External Apps" : "外部应用", "Update to {version}" : "更新至 {version}", "Remove" : "移除", "Delete data on remove" : "移除时删除数据", @@ -42,7 +61,6 @@ "Featured" : "精选", "Update to {update}" : "更新至 {update}", "Icon" : "图标", - "Name" : "名称", "Version" : "版本", "Daemon" : "守护进程", "Level" : "级别", @@ -51,24 +69,6 @@ "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", - "GPUs support" : "GPU 支持", - "Cancel" : "取消", - "Delete" : "删除", - "Edit" : "编辑", - "Host" : "主机", - "Nextcloud URL" : "Nextcloud URL ", - "Registered Deploy daemons list" : "已注册的部署守护进程列表", - "No Deploy daemons configured" : "没有部署守护进程配置", - "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", - "Register Daemon" : "注册守护进程", - "Enabled" : "已启用", - "Register Deploy Daemon" : "注册部署守护进程", - "Display name" : "显示名称", - "Deployment method" : "部署方式", - "Network" : "网络", - "Confirm" : "确认", - "Save" : "保存", - "Register" : "注册", "Your apps" : "您的应用", "Documentation" : "文档", "Details" : "详情", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 6a6227b7..ac499894 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "外部應用程式", "Daemon config not found" : "找不到幕後程式設定", "Error starting install of ExApp" : "錯誤開始安裝 ExApp", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "Update to {version}" : "更新到 {version}", - "Remove" : "移除", - "Delete data on remove" : "移除時刪除資料", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", - "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", - "View in store" : "在商店中檢視", - "Visit website" : "造訪網站", - "Report a bug" : "舉報錯誤", - "User documentation" : "用戶使用手冊", - "Admin documentation" : "管理員使用手冊", - "Developer documentation" : "開發人員使用手冊", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", - "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", - "Supported" : "支援", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", - "Featured" : "精選", - "Update to {update}" : "更新到 {update}", - "All ExApps are up-to-date." : "所有 ExApps 都是最新的。", - "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", - "Icon" : "圖示", - "Name" : "名字", - "Version" : "版本", - "Daemon" : "守護程式", - "Level" : "級別", - "Actions" : "操作", - "Results from other categories" : "其他分類的結果", - "No apps found" : "找不到應用程式", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], - "_Update_::_Update all_" : ["更新全部"], - "Deploy Daemon" : "部署幕後程式", - "Type" : "類型", - "Display Name" : "顯示名稱", - "GPUs support" : "GPUs 支援", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為默認幕後程式。", "ExApps installed" : "已安裝 ExApp", + "Name" : "名字", "Protocol" : "協定", "Host" : "主機", "Deploy config" : "部署設定", "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPUs support" : "GPUs 支援", "Compute device" : "計算裝置", "Additional options" : "附加選項", "Verify connection" : "驗證連線", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "External Apps" : "外部應用程式", + "Update to {version}" : "更新到 {version}", + "Remove" : "移除", + "Delete data on remove" : "移除時刪除資料", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", + "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", + "View in store" : "在商店中檢視", + "Visit website" : "造訪網站", + "Report a bug" : "舉報錯誤", + "User documentation" : "用戶使用手冊", + "Admin documentation" : "管理員使用手冊", + "Developer documentation" : "開發人員使用手冊", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", + "{license}-licensed" : "以 {license} 授權", + "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", + "Supported" : "支援", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", + "Featured" : "精選", + "Update to {update}" : "更新到 {update}", + "All ExApps are up-to-date." : "所有 ExApps 都是最新的。", + "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", + "Icon" : "圖示", + "Version" : "版本", + "Daemon" : "守護程式", + "Level" : "級別", + "Actions" : "操作", + "Results from other categories" : "其他分類的結果", + "No apps found" : "找不到應用程式", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], + "_Update_::_Update all_" : ["更新全部"], + "Type" : "類型", + "Display Name" : "顯示名稱", "Your apps" : "您的應用程式", "Documentation" : "說明書", "Details" : "細節", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 353f2b0c..b34b87f7 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "外部應用程式", "Daemon config not found" : "找不到幕後程式設定", "Error starting install of ExApp" : "錯誤開始安裝 ExApp", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", @@ -33,41 +32,6 @@ "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "Update to {version}" : "更新到 {version}", - "Remove" : "移除", - "Delete data on remove" : "移除時刪除資料", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", - "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", - "View in store" : "在商店中檢視", - "Visit website" : "造訪網站", - "Report a bug" : "舉報錯誤", - "User documentation" : "用戶使用手冊", - "Admin documentation" : "管理員使用手冊", - "Developer documentation" : "開發人員使用手冊", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", - "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", - "Supported" : "支援", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", - "Featured" : "精選", - "Update to {update}" : "更新到 {update}", - "All ExApps are up-to-date." : "所有 ExApps 都是最新的。", - "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", - "Icon" : "圖示", - "Name" : "名字", - "Version" : "版本", - "Daemon" : "守護程式", - "Level" : "級別", - "Actions" : "操作", - "Results from other categories" : "其他分類的結果", - "No apps found" : "找不到應用程式", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], - "_Update_::_Update all_" : ["更新全部"], - "Deploy Daemon" : "部署幕後程式", - "Type" : "類型", - "Display Name" : "顯示名稱", - "GPUs support" : "GPUs 支援", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為默認幕後程式。", "ExApps installed" : "已安裝 ExApp", + "Name" : "名字", "Protocol" : "協定", "Host" : "主機", "Deploy config" : "部署設定", "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPUs support" : "GPUs 支援", "Compute device" : "計算裝置", "Additional options" : "附加選項", "Verify connection" : "驗證連線", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "External Apps" : "外部應用程式", + "Update to {version}" : "更新到 {version}", + "Remove" : "移除", + "Delete data on remove" : "移除時刪除資料", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", + "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", + "View in store" : "在商店中檢視", + "Visit website" : "造訪網站", + "Report a bug" : "舉報錯誤", + "User documentation" : "用戶使用手冊", + "Admin documentation" : "管理員使用手冊", + "Developer documentation" : "開發人員使用手冊", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", + "{license}-licensed" : "以 {license} 授權", + "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", + "Supported" : "支援", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", + "Featured" : "精選", + "Update to {update}" : "更新到 {update}", + "All ExApps are up-to-date." : "所有 ExApps 都是最新的。", + "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", + "Icon" : "圖示", + "Version" : "版本", + "Daemon" : "守護程式", + "Level" : "級別", + "Actions" : "操作", + "Results from other categories" : "其他分類的結果", + "No apps found" : "找不到應用程式", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], + "_Update_::_Update all_" : ["更新全部"], + "Type" : "類型", + "Display Name" : "顯示名稱", "Your apps" : "您的應用程式", "Documentation" : "說明書", "Details" : "細節", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index fc829857..140a75ca 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -1,7 +1,6 @@ OC.L10N.register( "app_api", { - "External Apps" : "外部應用程式", "Daemon config not found" : "找不到幕後程式設定", "Error starting install of ExApp" : "開始安裝 ExApp 時發生錯誤", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", @@ -35,41 +34,6 @@ OC.L10N.register( "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "Update to {version}" : "更新到 {version}", - "Remove" : "移除", - "Delete data on remove" : "移除時刪除資料", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", - "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", - "View in store" : "在商店中檢視", - "Visit website" : "造訪網站", - "Report a bug" : "回報問題", - "User documentation" : "使用者說明文件", - "Admin documentation" : "管理員說明文件", - "Developer documentation" : "開發者說明文件", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", - "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", - "Supported" : "支援", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", - "Featured" : "精選", - "Update to {update}" : "更新到 {update}", - "All ExApps are up-to-date." : "所有 ExApp 均已最新。", - "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", - "Icon" : "圖示", - "Name" : "名稱", - "Version" : "版本", - "Daemon" : "守護程式", - "Level" : "層級", - "Actions" : "動作", - "Results from other categories" : "其他分類的結果", - "No apps found" : "找不到應用程式", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], - "_Update_::_Update all_" : ["更新全部"], - "Deploy Daemon" : "部署幕後程式", - "Type" : "類型", - "Display Name" : "顯示名稱", - "GPUs support" : "GPU 支援", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", @@ -83,15 +47,18 @@ OC.L10N.register( "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其上", "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", + "Name" : "名稱", "Protocol" : "協定", "Host" : "主機", "Deploy config" : "部署設定", "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", "Additional options" : "其他選項", "Verify connection" : "驗證連線", @@ -167,6 +134,39 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "External Apps" : "外部應用程式", + "Update to {version}" : "更新到 {version}", + "Remove" : "移除", + "Delete data on remove" : "移除時刪除資料", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", + "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", + "View in store" : "在商店中檢視", + "Visit website" : "造訪網站", + "Report a bug" : "回報問題", + "User documentation" : "使用者說明文件", + "Admin documentation" : "管理員說明文件", + "Developer documentation" : "開發者說明文件", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", + "{license}-licensed" : "以 {license} 授權", + "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", + "Supported" : "支援", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", + "Featured" : "精選", + "Update to {update}" : "更新到 {update}", + "All ExApps are up-to-date." : "所有 ExApp 均已最新。", + "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", + "Icon" : "圖示", + "Version" : "版本", + "Daemon" : "守護程式", + "Level" : "層級", + "Actions" : "動作", + "Results from other categories" : "其他分類的結果", + "No apps found" : "找不到應用程式", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], + "_Update_::_Update all_" : ["更新全部"], + "Type" : "類型", + "Display Name" : "顯示名稱", "Your apps" : "您的應用程式", "Documentation" : "文件", "Details" : "詳細資訊", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 786033e6..a412b9bc 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -1,5 +1,4 @@ { "translations": { - "External Apps" : "外部應用程式", "Daemon config not found" : "找不到幕後程式設定", "Error starting install of ExApp" : "開始安裝 ExApp 時發生錯誤", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", @@ -33,41 +32,6 @@ "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "Update to {version}" : "更新到 {version}", - "Remove" : "移除", - "Delete data on remove" : "移除時刪除資料", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", - "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", - "View in store" : "在商店中檢視", - "Visit website" : "造訪網站", - "Report a bug" : "回報問題", - "User documentation" : "使用者說明文件", - "Admin documentation" : "管理員說明文件", - "Developer documentation" : "開發者說明文件", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", - "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", - "Supported" : "支援", - "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", - "Featured" : "精選", - "Update to {update}" : "更新到 {update}", - "All ExApps are up-to-date." : "所有 ExApp 均已最新。", - "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", - "Icon" : "圖示", - "Name" : "名稱", - "Version" : "版本", - "Daemon" : "守護程式", - "Level" : "層級", - "Actions" : "動作", - "Results from other categories" : "其他分類的結果", - "No apps found" : "找不到應用程式", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], - "_Update_::_Update all_" : ["更新全部"], - "Deploy Daemon" : "部署幕後程式", - "Type" : "類型", - "Display Name" : "顯示名稱", - "GPUs support" : "GPU 支援", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", @@ -81,15 +45,18 @@ "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其上", "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", + "Name" : "名稱", "Protocol" : "協定", "Host" : "主機", "Deploy config" : "部署設定", "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", "Additional options" : "其他選項", "Verify connection" : "驗證連線", @@ -165,6 +132,39 @@ "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "External Apps" : "外部應用程式", + "Update to {version}" : "更新到 {version}", + "Remove" : "移除", + "Delete data on remove" : "移除時刪除資料", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", + "This app cannot be installed because the following dependencies are not fulfilled:" : "無法安裝此應用程式,因為無法滿足下列的依賴關係:", + "View in store" : "在商店中檢視", + "Visit website" : "造訪網站", + "Report a bug" : "回報問題", + "User documentation" : "使用者說明文件", + "Admin documentation" : "管理員說明文件", + "Developer documentation" : "開發者說明文件", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", + "{license}-licensed" : "以 {license} 授權", + "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", + "Supported" : "支援", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", + "Featured" : "精選", + "Update to {update}" : "更新到 {update}", + "All ExApps are up-to-date." : "所有 ExApp 均已最新。", + "Default Deploy daemon is not accessible" : "預設部署幕後程式無法使用", + "Icon" : "圖示", + "Version" : "版本", + "Daemon" : "守護程式", + "Level" : "層級", + "Actions" : "動作", + "Results from other categories" : "其他分類的結果", + "No apps found" : "找不到應用程式", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], + "_Update_::_Update all_" : ["更新全部"], + "Type" : "類型", + "Display Name" : "顯示名稱", "Your apps" : "您的應用程式", "Documentation" : "文件", "Details" : "詳細資訊", From e3cb3b63fc84311ae2a3f112cccb8315cb405bc1 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 31 Oct 2024 00:27:32 +0000 Subject: [PATCH 025/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 10 files changed, 10 insertions(+) diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 582f6d99..536715c0 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", "Failed to enable ExApp" : "Fehler beim Aktivieren von ExApp", "Failed to disable ExApp" : "Fehler beim Deaktivieren von ExApp", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index e82dfa40..74afb3d1 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", "Failed to enable ExApp" : "Fehler beim Aktivieren von ExApp", "Failed to disable ExApp" : "Fehler beim Deaktivieren von ExApp", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index bdadefac..e53012c0 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Error starting install of ExApp", "ExApp failed to register, check the NC logs" : "ExApp failed to register, check the NC logs", "ExApp not found, failed to get status" : "ExApp not found, failed to get status", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed.", "Could not perform installation of ExApp" : "Could not perform installation of ExApp", "Failed to enable ExApp" : "Failed to enable ExApp", "Failed to disable ExApp" : "Failed to disable ExApp", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 31e6676a..979aa304 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Error starting install of ExApp", "ExApp failed to register, check the NC logs" : "ExApp failed to register, check the NC logs", "ExApp not found, failed to get status" : "ExApp not found, failed to get status", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed.", "Could not perform installation of ExApp" : "Could not perform installation of ExApp", "Failed to enable ExApp" : "Failed to enable ExApp", "Failed to disable ExApp" : "Failed to disable ExApp", diff --git a/l10n/gl.js b/l10n/gl.js index 6e4c0d5f..2276deb2 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada dende a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", diff --git a/l10n/gl.json b/l10n/gl.json index abc075e0..c67cd3e2 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada dende a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index ac499894..62af40e1 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "錯誤開始安裝 ExApp", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp, 無法獲取狀態", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。無法提供額外信息。僅允許啟用/禁用和移除操作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝。", "Failed to enable ExApp" : "無法啟用 ExApp", "Failed to disable ExApp" : "無法停用 ExApp", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index b34b87f7..ec97b577 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "錯誤開始安裝 ExApp", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp, 無法獲取狀態", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。無法提供額外信息。僅允許啟用/禁用和移除操作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝。", "Failed to enable ExApp" : "無法啟用 ExApp", "Failed to disable ExApp" : "無法停用 ExApp", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 140a75ca..c7880871 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "開始安裝 ExApp 時發生錯誤", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp,無法取得狀態", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。未提供額外資訊。僅允許啟用/停用與移除動作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝", "Failed to enable ExApp" : "啟用 ExApp 失敗", "Failed to disable ExApp" : "停用 ExApp 失敗", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index a412b9bc..0f0274e6 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "開始安裝 ExApp 時發生錯誤", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp,無法取得狀態", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。未提供額外資訊。僅允許啟用/停用與移除動作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝", "Failed to enable ExApp" : "啟用 ExApp 失敗", "Failed to disable ExApp" : "停用 ExApp 失敗", From 2d2da9b7d7abd4d0133492dd344288e9abd45a72 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Thu, 31 Oct 2024 19:06:47 +0200 Subject: [PATCH 026/244] Stopping of docker containers when ExApp is disabling. Backport. (#435) Added stopping of docker containers when ExApp is disabling. Timeout of enable/disable increased to 60. Manual backport of https://github.com/nextcloud/app_api/pull/430 Signed-off-by: Alexander Piskun --- lib/Service/AppAPIService.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/lib/Service/AppAPIService.php b/lib/Service/AppAPIService.php index e006d62e..5618c735 100644 --- a/lib/Service/AppAPIService.php +++ b/lib/Service/AppAPIService.php @@ -43,6 +43,7 @@ public function __construct( private readonly DockerActions $dockerActions, private readonly ManualActions $manualActions, private readonly AppAPICommonService $commonService, + private readonly DaemonConfigService $daemonConfigService, ) { $this->client = $clientService->newClient(); } @@ -556,7 +557,13 @@ public function getExAppDomain(ExApp $exApp): string { */ public function enableExApp(ExApp $exApp): bool { if ($this->exAppService->enableExAppInternal($exApp)) { - $exAppEnabled = $this->requestToExApp($exApp, '/enabled?enabled=1', null, 'PUT', options: ['timeout' => 30]); + if ($exApp->getAcceptsDeployId() === $this->dockerActions->getAcceptsDeployId()) { + $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($exApp->getDaemonConfigName()); + $this->dockerActions->initGuzzleClient($daemonConfig); + $this->dockerActions->startContainer($this->dockerActions->buildDockerUrl($daemonConfig), $this->dockerActions->buildExAppContainerName($exApp->getAppid())); + } + + $exAppEnabled = $this->requestToExApp($exApp, '/enabled?enabled=1', null, 'PUT', options: ['timeout' => 60]); if ($exAppEnabled instanceof IResponse) { $response = json_decode($exAppEnabled->getBody(), true); if (!empty($response['error'])) { @@ -579,7 +586,7 @@ public function enableExApp(ExApp $exApp): bool { */ public function disableExApp(ExApp $exApp): bool { $result = true; - $exAppDisabled = $this->requestToExApp($exApp, '/enabled?enabled=0', null, 'PUT', options: ['timeout' => 30]); + $exAppDisabled = $this->requestToExApp($exApp, '/enabled?enabled=0', null, 'PUT', options: ['timeout' => 60]); if ($exAppDisabled instanceof IResponse) { $response = json_decode($exAppDisabled->getBody(), true); if (isset($response['error']) && strlen($response['error']) !== 0) { @@ -590,6 +597,11 @@ public function disableExApp(ExApp $exApp): bool { $this->logger->error(sprintf('Failed to disable ExApp %s. Error: %s', $exApp->getAppid(), $exAppDisabled['error'])); $result = false; } + if ($exApp->getAcceptsDeployId() === $this->dockerActions->getAcceptsDeployId()) { + $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($exApp->getDaemonConfigName()); + $this->dockerActions->initGuzzleClient($daemonConfig); + $this->dockerActions->stopContainer($this->dockerActions->buildDockerUrl($daemonConfig), $this->dockerActions->buildExAppContainerName($exApp->getAppid())); + } $this->exAppService->disableExAppInternal($exApp); return $result; } From 4276c4832453b2ceede248f5ef0acb37ef3f36f8 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Thu, 31 Oct 2024 19:06:47 +0200 Subject: [PATCH 027/244] check healthcheck and heartbeat after ExApp container start Signed-off-by: Alexander Piskun --- lib/Service/AppAPIService.php | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/Service/AppAPIService.php b/lib/Service/AppAPIService.php index 5618c735..de5deb2a 100644 --- a/lib/Service/AppAPIService.php +++ b/lib/Service/AppAPIService.php @@ -560,7 +560,23 @@ public function enableExApp(ExApp $exApp): bool { if ($exApp->getAcceptsDeployId() === $this->dockerActions->getAcceptsDeployId()) { $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($exApp->getDaemonConfigName()); $this->dockerActions->initGuzzleClient($daemonConfig); - $this->dockerActions->startContainer($this->dockerActions->buildDockerUrl($daemonConfig), $this->dockerActions->buildExAppContainerName($exApp->getAppid())); + $containerName = $this->dockerActions->buildExAppContainerName($exApp->getAppid()); + $this->dockerActions->startContainer($this->dockerActions->buildDockerUrl($daemonConfig), $containerName); + if (!$this->dockerActions->waitTillContainerStart($containerName, $daemonConfig)) { + $this->logger->error(sprintf('ExApp %s container startup failed.', $exApp->getAppid())); + return false; + } + if (!$this->dockerActions->healthcheckContainer($containerName, $daemonConfig, true)) { + $this->logger->error(sprintf('ExApp %s container healthcheck failed.', $exApp->getAppid())); + return false; + } + } + + $auth = []; + $exAppRootUrl = $this->getExAppUrl($exApp, $exApp->getPort(), $auth); + if (!$this->heartbeatExApp($exAppRootUrl, $auth, $exApp->getAppid())) { + $this->logger->error(sprintf('ExApp %s heartbeat failed.', $exApp->getAppid())); + return false; } $exAppEnabled = $this->requestToExApp($exApp, '/enabled?enabled=1', null, 'PUT', options: ['timeout' => 60]); From cb62340db5a715554a6c37dd3085c907dc0144af Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 1 Nov 2024 00:27:03 +0000 Subject: [PATCH 028/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + l10n/sk.js | 8 ++++++++ l10n/sk.json | 8 ++++++++ 8 files changed, 22 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index 6808c9dc..348e666a 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "ExApp konnte nicht installiert werden", "Failed to enable ExApp" : "Aktivieren von ExApp fehlgeschlagen", "Failed to disable ExApp" : "Deaktivieren von ExApp fehlgeschlagen", diff --git a/l10n/de.json b/l10n/de.json index 9becdeca..440a92ce 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "ExApp konnte nicht installiert werden", "Failed to enable ExApp" : "Aktivieren von ExApp fehlgeschlagen", "Failed to disable ExApp" : "Deaktivieren von ExApp fehlgeschlagen", diff --git a/l10n/ga.js b/l10n/ga.js index 2676ac12..db0b2e4d 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Earráid agus suiteáil ExApp á thosú", "ExApp failed to register, check the NC logs" : "Theip ar ExApp clárú, seiceáil na logaí NC", "ExApp not found, failed to get status" : "ExApp gan aimsiú, níor éirigh leis an stádas a fháil", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo suiteáilte ón AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", "Could not perform installation of ExApp" : "Níorbh fhéidir ExApp a shuiteáil", "Failed to enable ExApp" : "Theip ar chumasú ExApp", "Failed to disable ExApp" : "Theip ar ExApp a dhíchumasú", diff --git a/l10n/ga.json b/l10n/ga.json index fa3dc8c4..62fb6a79 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Earráid agus suiteáil ExApp á thosú", "ExApp failed to register, check the NC logs" : "Theip ar ExApp clárú, seiceáil na logaí NC", "ExApp not found, failed to get status" : "ExApp gan aimsiú, níor éirigh leis an stádas a fháil", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo suiteáilte ón AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", "Could not perform installation of ExApp" : "Níorbh fhéidir ExApp a shuiteáil", "Failed to enable ExApp" : "Theip ar chumasú ExApp", "Failed to disable ExApp" : "Theip ar ExApp a dhíchumasú", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index a49ad6f2..5bb22bd8 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado na AppStore. Sem informações extras disponíveis. Somente ativar/desativar e remover ações são permitidas.", "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", "Failed to disable ExApp" : "Falha ao desativar ExApp", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index f6315a35..19fbc7e0 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado na AppStore. Sem informações extras disponíveis. Somente ativar/desativar e remover ações são permitidas.", "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", "Failed to disable ExApp" : "Falha ao desativar ExApp", diff --git a/l10n/sk.js b/l10n/sk.js index 5441f6b7..3d801b7e 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -8,9 +8,12 @@ OC.L10N.register( "Cancel" : "Zrušiť", "Delete" : "Vymazať", "Edit" : "Upraviť", + "Deploy Daemon" : "Nasadiť proces služby", "Name" : "Názov", "Host" : "Adresa servera", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "Podpora GPU", + "Compute device" : "Výpočetné zariadenie", "Enabled" : "Zapnuté", "Display name" : "Zobrazované meno", "Network" : "Sieť", @@ -20,6 +23,7 @@ OC.L10N.register( "External Apps" : "Externé aplikácie", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", + "Delete data on remove" : "Pri odobraní zmazať dáta", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:", @@ -35,6 +39,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Odporúčané aplikácie sú vyvíjané komunitou Sú prepojené so zbytkom Nextcloud a pripravené na produkčné nasadenie.", "Featured" : "Doporučená", "Update to {update}" : "Aktualizovať na {update}", + "Default Deploy daemon is not accessible" : "Východzí proces služby nasadzovania nie je dostupný", "Icon" : "Ikona", "Version" : "Verzia", "Daemon" : "Daemon", @@ -54,11 +59,14 @@ OC.L10N.register( "Updates" : "Aktualizácie", "Featured apps" : "Odporúčané aplikácie", "Supported apps" : "Podporované aplikácie", + "manual-install apps cannot be updated" : "manuálne nainštalované aplikácie nemôžu byť aktualizované", + "Deploy and Enable" : "Nasadiť a zapnúť", "Enable" : "Povoliť", "Disable" : "Zakázať", "Allow untested app" : "Povoliť netestovanú aplikáciu", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Táto aplikácia nie je označená ako kompatibilná s vašou verziou Nextcloud. Ak budete pokračovať, aplikáciu budete môcť stále nainštalovať. Aplikácia nemusí fungovať podľa očakávania.", "An error occurred during the request. Unable to proceed." : "Počas vybavovania požiadavky nastala chyba. Nie je možné pokračovať.", + "The app has been enabled but needs to be updated." : "Aplikácia bola zapnutá ale je potrebné ju aktualizovať.", "Error: This app cannot be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera" }, "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 1163400e..55a8a517 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -6,9 +6,12 @@ "Cancel" : "Zrušiť", "Delete" : "Vymazať", "Edit" : "Upraviť", + "Deploy Daemon" : "Nasadiť proces služby", "Name" : "Názov", "Host" : "Adresa servera", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "Podpora GPU", + "Compute device" : "Výpočetné zariadenie", "Enabled" : "Zapnuté", "Display name" : "Zobrazované meno", "Network" : "Sieť", @@ -18,6 +21,7 @@ "External Apps" : "Externé aplikácie", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", + "Delete data on remove" : "Pri odobraní zmazať dáta", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:", @@ -33,6 +37,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Odporúčané aplikácie sú vyvíjané komunitou Sú prepojené so zbytkom Nextcloud a pripravené na produkčné nasadenie.", "Featured" : "Doporučená", "Update to {update}" : "Aktualizovať na {update}", + "Default Deploy daemon is not accessible" : "Východzí proces služby nasadzovania nie je dostupný", "Icon" : "Ikona", "Version" : "Verzia", "Daemon" : "Daemon", @@ -52,11 +57,14 @@ "Updates" : "Aktualizácie", "Featured apps" : "Odporúčané aplikácie", "Supported apps" : "Podporované aplikácie", + "manual-install apps cannot be updated" : "manuálne nainštalované aplikácie nemôžu byť aktualizované", + "Deploy and Enable" : "Nasadiť a zapnúť", "Enable" : "Povoliť", "Disable" : "Zakázať", "Allow untested app" : "Povoliť netestovanú aplikáciu", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Táto aplikácia nie je označená ako kompatibilná s vašou verziou Nextcloud. Ak budete pokračovať, aplikáciu budete môcť stále nainštalovať. Aplikácia nemusí fungovať podľa očakávania.", "An error occurred during the request. Unable to proceed." : "Počas vybavovania požiadavky nastala chyba. Nie je možné pokračovať.", + "The app has been enabled but needs to be updated." : "Aplikácia bola zapnutá ale je potrebné ju aktualizovať.", "Error: This app cannot be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera" },"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 From c345b7633df2e6769ca5a5649be72e69b23dbc5a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 2 Nov 2024 00:27:09 +0000 Subject: [PATCH 029/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 1 + l10n/ar.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/ar.js b/l10n/ar.js index 45eafd37..e89b5fc7 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "حدث خطأ عند البدء في تثبيت ExApp", "ExApp failed to register, check the NC logs" : "التطبيق الخارجي ExApp فشل في التسجيل. تحقق من سجل الحركات في نكست كلاود.", "ExApp not found, failed to get status" : "تعذّر العثور على التطبيقات الخارجية ExApp، و تعذّر الحصول على حالتها", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "لم يتم تثبيت هذا التطبيق من متجر التطبيقات. لا تتوفر معلومات إضافية عنه. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", "Could not perform installation of ExApp" : "تعذّر تنفيذ عملية تثبيت ExApp", "Failed to enable ExApp" : "تعذّر تمكين تطبيق خارجي ExApp", "Failed to disable ExApp" : "تعذّر تعطيل تطبيق خارجي ExApp", diff --git a/l10n/ar.json b/l10n/ar.json index 38ed3e92..e30f8d8d 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "حدث خطأ عند البدء في تثبيت ExApp", "ExApp failed to register, check the NC logs" : "التطبيق الخارجي ExApp فشل في التسجيل. تحقق من سجل الحركات في نكست كلاود.", "ExApp not found, failed to get status" : "تعذّر العثور على التطبيقات الخارجية ExApp، و تعذّر الحصول على حالتها", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "لم يتم تثبيت هذا التطبيق من متجر التطبيقات. لا تتوفر معلومات إضافية عنه. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", "Could not perform installation of ExApp" : "تعذّر تنفيذ عملية تثبيت ExApp", "Failed to enable ExApp" : "تعذّر تمكين تطبيق خارجي ExApp", "Failed to disable ExApp" : "تعذّر تعطيل تطبيق خارجي ExApp", From 375ee93ca0deb713dd4ef9d6dc2fa51cfc069ac3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 3 Nov 2024 00:31:18 +0000 Subject: [PATCH 030/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lt_LT.js | 1 + l10n/lt_LT.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index cf8c8508..d9d7b0b6 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -48,6 +48,7 @@ OC.L10N.register( "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", "Featured apps" : "Siūlomos programėlės", + "Supported apps" : "Palaikomos programėlės", "Enable" : "Aktyvuoti", "Disable" : "Išjungti", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ši programėlė nėra pažymėta kaip suderinama su jūsų Nextcloud versija. Jei tęsite, vis tiek galėsite įdiegti programėlę. Turėkite omenyje, kad programėlė gali neveikti taip, kaip tikimasi.", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index c6e46dda..d613dfd3 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -46,6 +46,7 @@ "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", "Featured apps" : "Siūlomos programėlės", + "Supported apps" : "Palaikomos programėlės", "Enable" : "Aktyvuoti", "Disable" : "Išjungti", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ši programėlė nėra pažymėta kaip suderinama su jūsų Nextcloud versija. Jei tęsite, vis tiek galėsite įdiegti programėlę. Turėkite omenyje, kad programėlė gali neveikti taip, kaip tikimasi.", From 6335fe3e58bc4a89f1ed85700e706ff3d3982082 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 4 Nov 2024 00:27:03 +0000 Subject: [PATCH 031/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/tr.js | 27 +++---- l10n/tr.json | 27 +++---- l10n/ug.js | 195 +++++++++++++++++++++++++++++++++++++++++++++++++++ l10n/ug.json | 193 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 416 insertions(+), 26 deletions(-) create mode 100644 l10n/ug.js create mode 100644 l10n/ug.json diff --git a/l10n/tr.js b/l10n/tr.js index 5d3197e3..096786d0 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -5,9 +5,10 @@ OC.L10N.register( "Error starting install of ExApp" : "ExApp kurulumu başlatılırken sorun çıktı", "ExApp failed to register, check the NC logs" : "ExApp kaydedilemedi. NC günlüklerine bakın", "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", - "Failed to enable ExApp" : "ExApp etkinleştirilemedi", - "Failed to disable ExApp" : "ExApp devre dışı bırakılamadı", + "Failed to enable ExApp" : "ExApp kullanıma alınamadı", + "Failed to disable ExApp" : "ExApp kullanımdan kaldırılamadı", "Could not update ExApp" : "ExApp güncellenemedi", "Error starting update of ExApp" : "ExApp güncellemesi başlatılırken sorun çıktı", "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", @@ -87,8 +88,8 @@ OC.L10N.register( "Check for the heartbeat is finished and healthy" : "Kalp atışının tamamlandığını ve sağlıklı olduğunu sınar", "Init step" : "Başlatma adımı", "Wait for initialization step to finish" : "Tamamlamak için başlatma adımını bekler", - "Enabled" : "Etkin", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Etkinleştirilmiş olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", + "Enabled" : "Kullanılıyor", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Kullanıma alınmış olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", @@ -125,11 +126,11 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "With https enabled network is set to host" : "https etkinken ağ, host olarak ayarlanmıştır", + "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi istenecek.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", @@ -147,7 +148,7 @@ OC.L10N.register( "User documentation" : "Kullanıcı belgeleri", "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, devre dışı bırakma ve kaldırma işlemleri yapılabilir.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "{license}-licensed" : "{license}-lisanslı", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", @@ -173,7 +174,7 @@ OC.L10N.register( "Changelog" : "Değişiklik günlüğü", "by {author}\n{license}" : "{author} tarafından\n{license}", "Active apps" : "Etkin uygulamalar", - "Disabled apps" : "Devre dışı uygulamalar", + "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", "Updates" : "Güncellemeler", "Featured apps" : "Öne çıkarılmış uygulamalar", "Supported apps" : "Desteklenen uygulamalar", @@ -181,16 +182,16 @@ OC.L10N.register( "{progress}% Deploying" : "Hazırlanıyor %{progress}", "{progress}% Initializing" : "%{progress} hazırlandı", "Healthchecking" : "Sağlık denetleniyor", - "Deploy and Enable" : "Dağıt ve etkinleştir", - "Enable" : "Etkinleştir", - "Disable" : "Devre dışı bırak", + "Deploy and Enable" : "Dağıt ve kullanıma al", + "Enable" : "Kullanıma al", + "Disable" : "Kullanımdan kaldır", "Allow untested app" : "Denenmemiş uygulamalar kullanılabilsin", "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Uygulama mağazadan indirilecek ve varsayılan dağıtım arka plan işlemi üzerine dağıtılacak", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", "Your ExApps" : "ExApp uygulamalarınız", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated." : "Uygulama etkinleştirilmiş ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez" + "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 07adb303..16f392be 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -3,9 +3,10 @@ "Error starting install of ExApp" : "ExApp kurulumu başlatılırken sorun çıktı", "ExApp failed to register, check the NC logs" : "ExApp kaydedilemedi. NC günlüklerine bakın", "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", - "Failed to enable ExApp" : "ExApp etkinleştirilemedi", - "Failed to disable ExApp" : "ExApp devre dışı bırakılamadı", + "Failed to enable ExApp" : "ExApp kullanıma alınamadı", + "Failed to disable ExApp" : "ExApp kullanımdan kaldırılamadı", "Could not update ExApp" : "ExApp güncellenemedi", "Error starting update of ExApp" : "ExApp güncellemesi başlatılırken sorun çıktı", "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", @@ -85,8 +86,8 @@ "Check for the heartbeat is finished and healthy" : "Kalp atışının tamamlandığını ve sağlıklı olduğunu sınar", "Init step" : "Başlatma adımı", "Wait for initialization step to finish" : "Tamamlamak için başlatma adımını bekler", - "Enabled" : "Etkin", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Etkinleştirilmiş olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", + "Enabled" : "Kullanılıyor", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Kullanıma alınmış olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", @@ -123,11 +124,11 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "With https enabled network is set to host" : "https etkinken ağ, host olarak ayarlanmıştır", + "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi istenecek.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", @@ -145,7 +146,7 @@ "User documentation" : "Kullanıcı belgeleri", "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, devre dışı bırakma ve kaldırma işlemleri yapılabilir.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "{license}-licensed" : "{license}-lisanslı", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", @@ -171,7 +172,7 @@ "Changelog" : "Değişiklik günlüğü", "by {author}\n{license}" : "{author} tarafından\n{license}", "Active apps" : "Etkin uygulamalar", - "Disabled apps" : "Devre dışı uygulamalar", + "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", "Updates" : "Güncellemeler", "Featured apps" : "Öne çıkarılmış uygulamalar", "Supported apps" : "Desteklenen uygulamalar", @@ -179,16 +180,16 @@ "{progress}% Deploying" : "Hazırlanıyor %{progress}", "{progress}% Initializing" : "%{progress} hazırlandı", "Healthchecking" : "Sağlık denetleniyor", - "Deploy and Enable" : "Dağıt ve etkinleştir", - "Enable" : "Etkinleştir", - "Disable" : "Devre dışı bırak", + "Deploy and Enable" : "Dağıt ve kullanıma al", + "Enable" : "Kullanıma al", + "Disable" : "Kullanımdan kaldır", "Allow untested app" : "Denenmemiş uygulamalar kullanılabilsin", "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Uygulama mağazadan indirilecek ve varsayılan dağıtım arka plan işlemi üzerine dağıtılacak", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", "Your ExApps" : "ExApp uygulamalarınız", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated." : "Uygulama etkinleştirilmiş ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez" + "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz" },"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..665c2094 --- /dev/null +++ b/l10n/ug.js @@ -0,0 +1,195 @@ +OC.L10N.register( + "app_api", + { + "Daemon config not found" : "Daemon سەپلىمىسى تېپىلمىدى", + "Error starting install of ExApp" : "ExApp نى قاچىلاشتا خاتالىق كۆرۈلدى", + "ExApp failed to register, check the NC logs" : "ExApp تىزىملاتمىدى ، NC خاتىرىسىنى تەكشۈرۈڭ", + "ExApp not found, failed to get status" : "ExApp تېپىلمىدى ، ئورۇنغا ئېرىشەلمىدى", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore دىن قاچىلانمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", + "Could not perform installation of ExApp" : "ExApp نى ئورنىتالمىدى", + "Failed to enable ExApp" : "ExApp نى قوزغىتىش مەغلۇب بولدى", + "Failed to disable ExApp" : "ExApp نى چەكلىيەلمىدى", + "Could not update ExApp" : "ExApp نى يېڭىلىيالمىدى", + "Error starting update of ExApp" : "ExApp نى يېڭىلاشنى باشلاشتا خاتالىق", + "Could not perform update of ExApp" : "ExApp نىڭ يېڭىلىنىشىنى قىلالمىدى", + "ExApp not found, failed to get logs" : "ExApp تېپىلمىدى ، خاتىرە ئالالمىدى", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق:% s", + "AppAPI authentication failed" : "AppAPI دەلىللەش مەغلۇپ بولدى", + "AppAPI ExApp notifier" : "AppAPI ExApp ئۇقتۇرۇشى", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", + "ExApps Settings" : "ExApps تەڭشەكلىرى", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى بىلەن Nextcloud نى قوزغىتىڭ.\n\n\nAppAPI كېيىنكى باسقۇچلۇق ئېكولوگىيىلىك سىستېما ئىچىدىكى بىر جەريان بولۇپ ، جەرياننى راۋانلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن\nقوللىنىشچان پروگرامما ئېچىش ، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش.\n\nئۇ ئاچقۇچىلار قۇرالايدىغان يېڭى ئۇسۇلنى ئوتتۇرىغا قويدى\nھەر خىل پروگرامما تىللىرىنى ئىشلىتىدىغان قوللىنىشچان پروگراممىلار PHP بىلەنلا چەكلەنمەيدۇ ، بۇ ئەنئەنىۋى ئۇسۇلدا Nextcloud ئېچىشتا ئىشلىتىلىدۇ.\n\n\n### AppAPI تەلەپ قىلىدىغان پروگراممىلار تىزىملىكى:\n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI] (https://github.com/nextcloud/sumupbot)\n\n_ئەگەر سىز بىر پروگراممىنى تەرەققىي قىلدۇرماقچى بولسىڭىز ، خۇشاللىق بىلەن سىزگە ياردەم قىلىمىز ۋە ياردەم قىلىمىز ._\n\n### قوللاش\n\nبىز بۇ تۈرنى قوللىغانلىقىمىزدىن مىننەتدارمىز:\n\n- G GitHub دىكى خىزمىتىمىزنى باشلاڭ\n- Iss مەسىلە ياكى ئىقتىدار تەلىپى قۇرۇش\n- an بىر مەسىلىنى ھەل قىلىپ ، تارتىش تەلىپىنى ھاسىل قىلىڭ\n- App AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىسىنى تەرەققىي قىلدۇرۇڭ\n\nبىز AppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ ئۆزگىرىش يوشۇرۇن كۈچىدىن ھەقىقىي ھاياجانلاندۇق\nNextcloud ئىچىدە قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلى.\n\nبىز بۇ سەپەرگە ئاتلانغىنىمىزدا ، سىزنى - پروگراممېرلار ، مۇتەپەككۇرلار ، ئىجادكارلار ۋە يىراقنى كۆرگۈچىلەرنى قىزغىن تەكلىپ قىلىمىز.\nتېخىمۇ كۆپ ئىقتىدارلىق ، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇڭ.\n\n* سىزنىڭ چۈشەنچىڭىز ، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن تولىمۇ قىممەتلىك. *", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", + "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon نى زىيارەت قىلغىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", + "ExApp init timeout (minutes)" : "ExApp init ۋاقتى (مىنۇت)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp باشلاش جەريانىنىڭ ۋاقتى ، ئۇنىڭدىن كېيىن AppAPI ئۇنى مەغلۇب دەپ بەلگە قويىدۇ", + "ExApp init timeout" : "ExApp init timeout", + "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", + "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", + "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", + "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", + "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", + "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", + "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", + "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", + "Cancel" : "بىكار قىلىش", + "Delete" : "ئۆچۈر", + "Default" : "سۈكۈتتىكى", + "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", + "Edit" : "تەھرىر", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", + "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", + "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", + "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "قولدا قاچىلاش daemon ئادەتتە ئېچىش ئۈچۈن ئىشلىتىلىدۇ. ئۇنى سۈكۈتتىكى daemon قىلىپ تەڭشىگىلى بولمايدۇ.", + "ExApps installed" : "ExApps قاچىلاندى", + "Name" : "ئاتى", + "Protocol" : "كېلىشىم", + "Host" : "باش ئاپپارات", + "Deploy config" : "سەپلىمە ئورۇنلاشتۇرۇڭ", + "Docker network" : "Docker تورى", + "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxy پارولى", + "GPUs support" : "GPUs نى قوللايدۇ", + "Compute device" : "ھېسابلاش ئۈسكۈنىسى", + "Additional options" : "قوشۇمچە تاللاشلار", + "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", + "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", + "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", + "Register Daemon" : "Daemon نى تىزىملىتىڭ", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", + "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", + "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", + "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", + "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", + "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", + "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", + "Image pull" : "رەسىم تارتىش", + "Check if the image is successfully pulled" : "رەسىمنىڭ مۇۋەپپەقىيەتلىك تارتىلغان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", + "Container started" : "كونتېينېر باشلاندى", + "Check if the image successfully pulled and container is created and started" : "رەسىمنىڭ مۇۋەپپەقىيەتلىك تارتىلغانلىقى ۋە قاچىنىڭ ياسالغان ۋە قوزغىتىلغانلىقىنى تەكشۈرۈڭ", + "Heartbeat" : "يۈرەك سوقۇشى", + "Check for the heartbeat is finished and healthy" : "يۈرەك سوقۇشىنىڭ تاماملانغانلىقىنى تەكشۈرۈڭ", + "Init step" : "Init step", + "Wait for initialization step to finish" : "دەسلەپكى قەدەم باسقۇچنىڭ تاماملىنىشىنى ساقلاڭ", + "Enabled" : "قوزغىتىلدى", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "ExApp قوزغىتىلغان پائالىيەتنى مۇۋەپپەقىيەتلىك بىر تەرەپ قىلغان-قىلمىغانلىقىنى تەكشۈرۈڭ", + "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", + "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", + "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{قەدەم}\" قەدەمدە مەغلۇپ بولدى", + "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", + "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", + "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", + "Select daemon configuration template" : "Daemon سەپلىمە قېلىپىنى تاللاڭ", + "Daemon registration form" : "Daemon تىزىملىتىش جەدۋىلى", + "Unique Deploy Daemon Name" : "ئۆزگىچە ئورۇنلاشتۇرۇش Daemon ئىسمى", + "Display name" : "كۆرسىتىش ئىسمى", + "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", + "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", + "Daemon host" : "Daemon host", + "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", + "Enable https" : "Https نى قوزغىتىڭ", + "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", + "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", + "Network" : "تور", + "Docker network name" : "Docker تور ئىسمى", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", + "Additional option" : "قوشۇمچە تاللاش", + "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", + "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", + "Option key (unique, e.g. my_key)" : "تاللاش ئاچقۇچى (ئۆزگىچە ، مەسىلەن my_key)", + "Option key is required" : "تاللاش ئاچقۇچى تەلەپ قىلىنىدۇ", + "Option value" : "تاللاش قىممىتى", + "Option value is required" : "تاللاش قىممىتى تەلەپ قىلىنىدۇ", + "Confirm" : "جەزملەشتۈرۈڭ", + "Save" : "ساقلا", + "Register" : "تىزىملىتىڭ", + "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", + "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", + "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", + "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", + "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", + "External Apps" : "سىرتقى ئەپلەر", + "Update to {version}" : "{نەشرىگە يېڭىلاش}", + "Remove" : "ئۆچۈرۈڭ", + "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ تۆۋەن Nextcloud نەشرى يوق. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ چوڭ Nextcloud نەشرى بېكىتىلمىگەن. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "تۆۋەندىكى بېقىنىشلار ئەمەلگە ئاشمىغاچقا ، بۇ دېتالنى قاچىلىغىلى بولمايدۇ:", + "View in store" : "دۇكاندا كۆرۈش", + "Visit website" : "توربېكەتنى زىيارەت قىلىڭ", + "Report a bug" : "خاتالىق مەلۇم قىلىڭ", + "User documentation" : "ئىشلەتكۈچى ھۆججەتلىرى", + "Admin documentation" : "باشقۇرۇش ھۆججىتى", + "Developer documentation" : "ئاچقۇچىلار ھۆججىتى", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore غا تىزىملاتمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", + "{license}-licensed" : "{ئىجازەتنامە", + "This app is supported via your current Nextcloud subscription." : "بۇ ئەپ نۆۋەتتىكى Nextcloud مۇشتەرىلىكىڭىز ئارقىلىق قوللىنىدۇ.", + "Supported" : "قوللىدى", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ئالاھىدە ئەپلەر جەمئىيەت تەرىپىدىن ۋە تەرەققىي قىلدۇرۇلغان. ئۇلار مەركىزى ئىقتىدار بىلەن تەمىنلەيدۇ ھەمدە ئىشلەپچىقىرىشقا تەييار.", + "Featured" : "Featured", + "Update to {update}" : "{يېڭىلاش} غا يېڭىلاش", + "All ExApps are up-to-date." : "بارلىق ExApps ئەڭ يېڭى.", + "Default Deploy daemon is not accessible" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش daemon نى زىيارەت قىلغىلى بولمايدۇ", + "Icon" : "سىنبەلگە", + "Version" : "نەشرى", + "Daemon" : "Daemon", + "Level" : "Level", + "Actions" : "مەشغۇلاتلار", + "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", + "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", + "Type" : "تىپ", + "Display Name" : "كۆرسىتىش ئىسمى", + "Your apps" : "ئەپلىرىڭىز", + "Documentation" : "قوللانما", + "Details" : "تەپسىلاتى", + "Changelog" : "Changelog", + "by {author}\n{license}" : "by {ئاپتور}\n{ئىجازەت}", + "Active apps" : "ئاكتىپ ئەپلەر", + "Disabled apps" : "چەكلەنگەن ئەپلەر", + "Updates" : "يېڭىلانمىلار", + "Featured apps" : "ئالاھىدە ئەپلەر", + "Supported apps" : "قوللايدىغان ئەپلەر", + "manual-install apps cannot be updated" : "قولدا قاچىلاش ئەپلىرىنى يېڭىلاشقا بولمايدۇ", + "{progress}% Deploying" : "{ئىلگىرىلەش}% ئورۇنلاشتۇرۇش", + "{progress}% Initializing" : "{ئىلگىرىلەش}% باشلاش", + "Healthchecking" : "سالامەتلىك تەكشۈرتۈش", + "Deploy and Enable" : "ئورۇنلاشتۇرۇش ۋە قوزغىتىش", + "Enable" : "قوزغىتىش", + "Disable" : "چەكلە", + "Allow untested app" : "سىناق قىلىنمىغان ئەپكە يول قويۇڭ", + "Default Deploy daemon is not accessible. Please verify configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش daemon نى زىيارەت قىلغىلى بولمايدۇ. سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "بۇ ئەپ ئەپ دۇكىنىدىن چۈشۈرۈلۈپ ، سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon غا ئورۇنلاشتۇرۇلىدۇ", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "بۇ ئەپ سىزنىڭ Nextcloud نەشرىڭىزگە ماس كەلمەيدۇ. داۋاملاشتۇرسىڭىز يەنىلا ئەپنى قاچىلىيالايسىز. شۇنىڭغا دىققەت قىلىڭكى ، بۇ دېتال مۆلچەردىكىدەك ئىشلىمەسلىكى مۇمكىن.", + "Your ExApps" : "ExApps", + "An error occurred during the request. Unable to proceed." : "تەلەپ جەريانىدا خاتالىق كۆرۈلدى. داۋاملاشتۇرالمىدى.", + "The app has been enabled but needs to be updated." : "بۇ دېتال قوزغىتىلغان ، ئەمما يېڭىلاشقا توغرا كېلىدۇ.", + "Error: This app cannot be enabled because it makes the server unstable" : "خاتالىق: بۇ ئەپنى قوزغىتىشقا بولمايدۇ ، چۈنكى ئۇ مۇلازىمېتىرنى تۇراقسىز قىلىدۇ" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ug.json b/l10n/ug.json new file mode 100644 index 00000000..55767f43 --- /dev/null +++ b/l10n/ug.json @@ -0,0 +1,193 @@ +{ "translations": { + "Daemon config not found" : "Daemon سەپلىمىسى تېپىلمىدى", + "Error starting install of ExApp" : "ExApp نى قاچىلاشتا خاتالىق كۆرۈلدى", + "ExApp failed to register, check the NC logs" : "ExApp تىزىملاتمىدى ، NC خاتىرىسىنى تەكشۈرۈڭ", + "ExApp not found, failed to get status" : "ExApp تېپىلمىدى ، ئورۇنغا ئېرىشەلمىدى", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore دىن قاچىلانمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", + "Could not perform installation of ExApp" : "ExApp نى ئورنىتالمىدى", + "Failed to enable ExApp" : "ExApp نى قوزغىتىش مەغلۇب بولدى", + "Failed to disable ExApp" : "ExApp نى چەكلىيەلمىدى", + "Could not update ExApp" : "ExApp نى يېڭىلىيالمىدى", + "Error starting update of ExApp" : "ExApp نى يېڭىلاشنى باشلاشتا خاتالىق", + "Could not perform update of ExApp" : "ExApp نىڭ يېڭىلىنىشىنى قىلالمىدى", + "ExApp not found, failed to get logs" : "ExApp تېپىلمىدى ، خاتىرە ئالالمىدى", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق:% s", + "AppAPI authentication failed" : "AppAPI دەلىللەش مەغلۇپ بولدى", + "AppAPI ExApp notifier" : "AppAPI ExApp ئۇقتۇرۇشى", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", + "ExApps Settings" : "ExApps تەڭشەكلىرى", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى بىلەن Nextcloud نى قوزغىتىڭ.\n\n\nAppAPI كېيىنكى باسقۇچلۇق ئېكولوگىيىلىك سىستېما ئىچىدىكى بىر جەريان بولۇپ ، جەرياننى راۋانلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن\nقوللىنىشچان پروگرامما ئېچىش ، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش.\n\nئۇ ئاچقۇچىلار قۇرالايدىغان يېڭى ئۇسۇلنى ئوتتۇرىغا قويدى\nھەر خىل پروگرامما تىللىرىنى ئىشلىتىدىغان قوللىنىشچان پروگراممىلار PHP بىلەنلا چەكلەنمەيدۇ ، بۇ ئەنئەنىۋى ئۇسۇلدا Nextcloud ئېچىشتا ئىشلىتىلىدۇ.\n\n\n### AppAPI تەلەپ قىلىدىغان پروگراممىلار تىزىملىكى:\n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI] (https://github.com/nextcloud/sumupbot)\n\n_ئەگەر سىز بىر پروگراممىنى تەرەققىي قىلدۇرماقچى بولسىڭىز ، خۇشاللىق بىلەن سىزگە ياردەم قىلىمىز ۋە ياردەم قىلىمىز ._\n\n### قوللاش\n\nبىز بۇ تۈرنى قوللىغانلىقىمىزدىن مىننەتدارمىز:\n\n- G GitHub دىكى خىزمىتىمىزنى باشلاڭ\n- Iss مەسىلە ياكى ئىقتىدار تەلىپى قۇرۇش\n- an بىر مەسىلىنى ھەل قىلىپ ، تارتىش تەلىپىنى ھاسىل قىلىڭ\n- App AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىسىنى تەرەققىي قىلدۇرۇڭ\n\nبىز AppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ ئۆزگىرىش يوشۇرۇن كۈچىدىن ھەقىقىي ھاياجانلاندۇق\nNextcloud ئىچىدە قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلى.\n\nبىز بۇ سەپەرگە ئاتلانغىنىمىزدا ، سىزنى - پروگراممېرلار ، مۇتەپەككۇرلار ، ئىجادكارلار ۋە يىراقنى كۆرگۈچىلەرنى قىزغىن تەكلىپ قىلىمىز.\nتېخىمۇ كۆپ ئىقتىدارلىق ، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇڭ.\n\n* سىزنىڭ چۈشەنچىڭىز ، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن تولىمۇ قىممەتلىك. *", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", + "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon نى زىيارەت قىلغىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", + "ExApp init timeout (minutes)" : "ExApp init ۋاقتى (مىنۇت)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp باشلاش جەريانىنىڭ ۋاقتى ، ئۇنىڭدىن كېيىن AppAPI ئۇنى مەغلۇب دەپ بەلگە قويىدۇ", + "ExApp init timeout" : "ExApp init timeout", + "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", + "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", + "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", + "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", + "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", + "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", + "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", + "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", + "Cancel" : "بىكار قىلىش", + "Delete" : "ئۆچۈر", + "Default" : "سۈكۈتتىكى", + "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", + "Edit" : "تەھرىر", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", + "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", + "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", + "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "قولدا قاچىلاش daemon ئادەتتە ئېچىش ئۈچۈن ئىشلىتىلىدۇ. ئۇنى سۈكۈتتىكى daemon قىلىپ تەڭشىگىلى بولمايدۇ.", + "ExApps installed" : "ExApps قاچىلاندى", + "Name" : "ئاتى", + "Protocol" : "كېلىشىم", + "Host" : "باش ئاپپارات", + "Deploy config" : "سەپلىمە ئورۇنلاشتۇرۇڭ", + "Docker network" : "Docker تورى", + "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxy پارولى", + "GPUs support" : "GPUs نى قوللايدۇ", + "Compute device" : "ھېسابلاش ئۈسكۈنىسى", + "Additional options" : "قوشۇمچە تاللاشلار", + "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", + "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", + "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", + "Register Daemon" : "Daemon نى تىزىملىتىڭ", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", + "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", + "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", + "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", + "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", + "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", + "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", + "Image pull" : "رەسىم تارتىش", + "Check if the image is successfully pulled" : "رەسىمنىڭ مۇۋەپپەقىيەتلىك تارتىلغان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", + "Container started" : "كونتېينېر باشلاندى", + "Check if the image successfully pulled and container is created and started" : "رەسىمنىڭ مۇۋەپپەقىيەتلىك تارتىلغانلىقى ۋە قاچىنىڭ ياسالغان ۋە قوزغىتىلغانلىقىنى تەكشۈرۈڭ", + "Heartbeat" : "يۈرەك سوقۇشى", + "Check for the heartbeat is finished and healthy" : "يۈرەك سوقۇشىنىڭ تاماملانغانلىقىنى تەكشۈرۈڭ", + "Init step" : "Init step", + "Wait for initialization step to finish" : "دەسلەپكى قەدەم باسقۇچنىڭ تاماملىنىشىنى ساقلاڭ", + "Enabled" : "قوزغىتىلدى", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "ExApp قوزغىتىلغان پائالىيەتنى مۇۋەپپەقىيەتلىك بىر تەرەپ قىلغان-قىلمىغانلىقىنى تەكشۈرۈڭ", + "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", + "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", + "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{قەدەم}\" قەدەمدە مەغلۇپ بولدى", + "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", + "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", + "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", + "Select daemon configuration template" : "Daemon سەپلىمە قېلىپىنى تاللاڭ", + "Daemon registration form" : "Daemon تىزىملىتىش جەدۋىلى", + "Unique Deploy Daemon Name" : "ئۆزگىچە ئورۇنلاشتۇرۇش Daemon ئىسمى", + "Display name" : "كۆرسىتىش ئىسمى", + "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", + "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", + "Daemon host" : "Daemon host", + "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", + "Enable https" : "Https نى قوزغىتىڭ", + "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", + "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", + "Network" : "تور", + "Docker network name" : "Docker تور ئىسمى", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", + "Additional option" : "قوشۇمچە تاللاش", + "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", + "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", + "Option key (unique, e.g. my_key)" : "تاللاش ئاچقۇچى (ئۆزگىچە ، مەسىلەن my_key)", + "Option key is required" : "تاللاش ئاچقۇچى تەلەپ قىلىنىدۇ", + "Option value" : "تاللاش قىممىتى", + "Option value is required" : "تاللاش قىممىتى تەلەپ قىلىنىدۇ", + "Confirm" : "جەزملەشتۈرۈڭ", + "Save" : "ساقلا", + "Register" : "تىزىملىتىڭ", + "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", + "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", + "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", + "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", + "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", + "External Apps" : "سىرتقى ئەپلەر", + "Update to {version}" : "{نەشرىگە يېڭىلاش}", + "Remove" : "ئۆچۈرۈڭ", + "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ تۆۋەن Nextcloud نەشرى يوق. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ چوڭ Nextcloud نەشرى بېكىتىلمىگەن. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "تۆۋەندىكى بېقىنىشلار ئەمەلگە ئاشمىغاچقا ، بۇ دېتالنى قاچىلىغىلى بولمايدۇ:", + "View in store" : "دۇكاندا كۆرۈش", + "Visit website" : "توربېكەتنى زىيارەت قىلىڭ", + "Report a bug" : "خاتالىق مەلۇم قىلىڭ", + "User documentation" : "ئىشلەتكۈچى ھۆججەتلىرى", + "Admin documentation" : "باشقۇرۇش ھۆججىتى", + "Developer documentation" : "ئاچقۇچىلار ھۆججىتى", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore غا تىزىملاتمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", + "{license}-licensed" : "{ئىجازەتنامە", + "This app is supported via your current Nextcloud subscription." : "بۇ ئەپ نۆۋەتتىكى Nextcloud مۇشتەرىلىكىڭىز ئارقىلىق قوللىنىدۇ.", + "Supported" : "قوللىدى", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ئالاھىدە ئەپلەر جەمئىيەت تەرىپىدىن ۋە تەرەققىي قىلدۇرۇلغان. ئۇلار مەركىزى ئىقتىدار بىلەن تەمىنلەيدۇ ھەمدە ئىشلەپچىقىرىشقا تەييار.", + "Featured" : "Featured", + "Update to {update}" : "{يېڭىلاش} غا يېڭىلاش", + "All ExApps are up-to-date." : "بارلىق ExApps ئەڭ يېڭى.", + "Default Deploy daemon is not accessible" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش daemon نى زىيارەت قىلغىلى بولمايدۇ", + "Icon" : "سىنبەلگە", + "Version" : "نەشرى", + "Daemon" : "Daemon", + "Level" : "Level", + "Actions" : "مەشغۇلاتلار", + "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", + "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", + "Type" : "تىپ", + "Display Name" : "كۆرسىتىش ئىسمى", + "Your apps" : "ئەپلىرىڭىز", + "Documentation" : "قوللانما", + "Details" : "تەپسىلاتى", + "Changelog" : "Changelog", + "by {author}\n{license}" : "by {ئاپتور}\n{ئىجازەت}", + "Active apps" : "ئاكتىپ ئەپلەر", + "Disabled apps" : "چەكلەنگەن ئەپلەر", + "Updates" : "يېڭىلانمىلار", + "Featured apps" : "ئالاھىدە ئەپلەر", + "Supported apps" : "قوللايدىغان ئەپلەر", + "manual-install apps cannot be updated" : "قولدا قاچىلاش ئەپلىرىنى يېڭىلاشقا بولمايدۇ", + "{progress}% Deploying" : "{ئىلگىرىلەش}% ئورۇنلاشتۇرۇش", + "{progress}% Initializing" : "{ئىلگىرىلەش}% باشلاش", + "Healthchecking" : "سالامەتلىك تەكشۈرتۈش", + "Deploy and Enable" : "ئورۇنلاشتۇرۇش ۋە قوزغىتىش", + "Enable" : "قوزغىتىش", + "Disable" : "چەكلە", + "Allow untested app" : "سىناق قىلىنمىغان ئەپكە يول قويۇڭ", + "Default Deploy daemon is not accessible. Please verify configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش daemon نى زىيارەت قىلغىلى بولمايدۇ. سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "بۇ ئەپ ئەپ دۇكىنىدىن چۈشۈرۈلۈپ ، سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon غا ئورۇنلاشتۇرۇلىدۇ", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "بۇ ئەپ سىزنىڭ Nextcloud نەشرىڭىزگە ماس كەلمەيدۇ. داۋاملاشتۇرسىڭىز يەنىلا ئەپنى قاچىلىيالايسىز. شۇنىڭغا دىققەت قىلىڭكى ، بۇ دېتال مۆلچەردىكىدەك ئىشلىمەسلىكى مۇمكىن.", + "Your ExApps" : "ExApps", + "An error occurred during the request. Unable to proceed." : "تەلەپ جەريانىدا خاتالىق كۆرۈلدى. داۋاملاشتۇرالمىدى.", + "The app has been enabled but needs to be updated." : "بۇ دېتال قوزغىتىلغان ، ئەمما يېڭىلاشقا توغرا كېلىدۇ.", + "Error: This app cannot be enabled because it makes the server unstable" : "خاتالىق: بۇ ئەپنى قوزغىتىشقا بولمايدۇ ، چۈنكى ئۇ مۇلازىمېتىرنى تۇراقسىز قىلىدۇ" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file From e7e668a9e7c15965ae21db748475cae0a138f446 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 5 Nov 2024 00:27:52 +0000 Subject: [PATCH 032/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lv.js | 2 +- l10n/lv.json | 2 +- l10n/sr.js | 1 + l10n/sr.json | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/lv.js b/l10n/lv.js index 458727ec..4bb80493 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -16,7 +16,7 @@ OC.L10N.register( "Visit website" : "Apmeklējiet vietni", "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", - "Admin documentation" : "Administratora dokumentācija", + "Admin documentation" : "Pārvaldītāja dokumentācija", "Developer documentation" : "Izstrādātāja dokumentācija", "Update to {update}" : "Atjaunināt uz {update}", "Icon" : "Ikona", diff --git a/l10n/lv.json b/l10n/lv.json index 40b373e8..d582eda5 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -14,7 +14,7 @@ "Visit website" : "Apmeklējiet vietni", "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", - "Admin documentation" : "Administratora dokumentācija", + "Admin documentation" : "Pārvaldītāja dokumentācija", "Developer documentation" : "Izstrādātāja dokumentācija", "Update to {update}" : "Atjaunināt uz {update}", "Icon" : "Ikona", diff --git a/l10n/sr.js b/l10n/sr.js index 98afefdf..ee4d8df9 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Грешка приликом покретања инсталације ExApp", "ExApp failed to register, check the NC logs" : "Није успела регистрација ExApp, погледајте NC дневнике", "ExApp not found, failed to get status" : "ExApp није пронађена, није успело добављање статуса", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није инсталирана из Продавнице апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", "Could not perform installation of ExApp" : "Није могла да се изврши инсталација ExApp", "Failed to enable ExApp" : "Није успело укључивање ExApp", "Failed to disable ExApp" : "Није успело искључивање ExApp", diff --git a/l10n/sr.json b/l10n/sr.json index ba29dc72..83976431 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Грешка приликом покретања инсталације ExApp", "ExApp failed to register, check the NC logs" : "Није успела регистрација ExApp, погледајте NC дневнике", "ExApp not found, failed to get status" : "ExApp није пронађена, није успело добављање статуса", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није инсталирана из Продавнице апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", "Could not perform installation of ExApp" : "Није могла да се изврши инсталација ExApp", "Failed to enable ExApp" : "Није успело укључивање ExApp", "Failed to disable ExApp" : "Није успело искључивање ExApp", From 5b81b88c96c67ad4dce876aedb1e51e725afb1cb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 9 Nov 2024 00:29:13 +0000 Subject: [PATCH 033/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ja.js | 8 ++++++++ l10n/ja.json | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/l10n/ja.js b/l10n/ja.js index 98d8352d..9ca0cac4 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -4,9 +4,12 @@ OC.L10N.register( "Cancel" : "キャンセル", "Delete" : "削除", "Edit" : "編集", + "Deploy Daemon" : "デーモンのデプロイ", "Name" : "名前", "Host" : "ホスト", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "GPUサポート", + "Compute device" : "計算デバイス", "Enabled" : "有効", "Display name" : "表示名", "Network" : "ネットワーク", @@ -15,6 +18,7 @@ OC.L10N.register( "Register" : "登録", "Update to {version}" : "{version} にアップデート", "Remove" : "削除", + "Delete data on remove" : "削除時にデータを消去する", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "This app cannot be installed because the following dependencies are not fulfilled:" : "次の依存関係が満たされないためこのアプリをインストールできません:", @@ -30,6 +34,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "注目のアプリはコミュニティ内で開発されています。これらのアプリは主要な機能を提供しており、すぐに本番で使用することができます。", "Featured" : "注目", "Update to {update}" : "{update} にアップデート", + "Default Deploy daemon is not accessible" : "デフォルトのデプロイデーモンにアクセスできません", "Icon" : "アイコン", "Version" : "バージョン", "Daemon" : "デーモン", @@ -49,11 +54,14 @@ OC.L10N.register( "Updates" : "アップデート", "Featured apps" : "注目のアプリ", "Supported apps" : "対応しているアプリ", + "manual-install apps cannot be updated" : "手動インストールしたアプリはアップデートできません", + "Deploy and Enable" : "デプロイと有効化", "Enable" : "有効にする", "Disable" : "無効", "Allow untested app" : "テストされていないアプリを許可する", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "このアプリはご利用中のNextcloudのバージョンと互換性があるとしてマークされていません。 続行しても、アプリをインストールすることはできます。 アプリが期待通りに動作しない可能性があることに注意してください。", "An error occurred during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", + "The app has been enabled but needs to be updated." : "アプリは有効になっているが、アップデートが必要です。", "Error: This app cannot be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。" }, "nplurals=1; plural=0;"); diff --git a/l10n/ja.json b/l10n/ja.json index 21dc33b0..9aa9ef56 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -2,9 +2,12 @@ "Cancel" : "キャンセル", "Delete" : "削除", "Edit" : "編集", + "Deploy Daemon" : "デーモンのデプロイ", "Name" : "名前", "Host" : "ホスト", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "GPUサポート", + "Compute device" : "計算デバイス", "Enabled" : "有効", "Display name" : "表示名", "Network" : "ネットワーク", @@ -13,6 +16,7 @@ "Register" : "登録", "Update to {version}" : "{version} にアップデート", "Remove" : "削除", + "Delete data on remove" : "削除時にデータを消去する", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "This app cannot be installed because the following dependencies are not fulfilled:" : "次の依存関係が満たされないためこのアプリをインストールできません:", @@ -28,6 +32,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "注目のアプリはコミュニティ内で開発されています。これらのアプリは主要な機能を提供しており、すぐに本番で使用することができます。", "Featured" : "注目", "Update to {update}" : "{update} にアップデート", + "Default Deploy daemon is not accessible" : "デフォルトのデプロイデーモンにアクセスできません", "Icon" : "アイコン", "Version" : "バージョン", "Daemon" : "デーモン", @@ -47,11 +52,14 @@ "Updates" : "アップデート", "Featured apps" : "注目のアプリ", "Supported apps" : "対応しているアプリ", + "manual-install apps cannot be updated" : "手動インストールしたアプリはアップデートできません", + "Deploy and Enable" : "デプロイと有効化", "Enable" : "有効にする", "Disable" : "無効", "Allow untested app" : "テストされていないアプリを許可する", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "このアプリはご利用中のNextcloudのバージョンと互換性があるとしてマークされていません。 続行しても、アプリをインストールすることはできます。 アプリが期待通りに動作しない可能性があることに注意してください。", "An error occurred during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", + "The app has been enabled but needs to be updated." : "アプリは有効になっているが、アップデートが必要です。", "Error: This app cannot be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file From fdf5523c911eab8feaca047b66fb644cf32ad2cb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 11 Nov 2024 00:28:24 +0000 Subject: [PATCH 034/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index e89b5fc7..7a69e9cc 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -104,7 +104,7 @@ OC.L10N.register( "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "Daemon host" : "مُضِيف البرنامج الخفي", "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", - "Set as default daemon" : "عيِّنه كبرنامج خفي تلقائي", + "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", "Enable https" : "تمكين https", "Show deploy config" : "أظهِر تهيئة النشر deploy config", "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", diff --git a/l10n/ar.json b/l10n/ar.json index e30f8d8d..a97a0e2a 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -102,7 +102,7 @@ "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "Daemon host" : "مُضِيف البرنامج الخفي", "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", - "Set as default daemon" : "عيِّنه كبرنامج خفي تلقائي", + "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", "Enable https" : "تمكين https", "Show deploy config" : "أظهِر تهيئة النشر deploy config", "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", From d95121dbed1da3b777685ffe0b0e9c59206390ec Mon Sep 17 00:00:00 2001 From: Alexander Piskun Date: Mon, 11 Nov 2024 12:10:27 +0300 Subject: [PATCH 035/244] stable29: updated CI to use actions/upload-artifact@v4 Signed-off-by: Alexander Piskun --- .github/workflows/tests-deploy.yml | 38 ++++++++++++++--------------- .github/workflows/tests-special.yml | 2 +- .github/workflows/tests.yml | 8 +++--- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/tests-deploy.yml b/.github/workflows/tests-deploy.yml index 14b02284..9e6b1aef 100644 --- a/.github/workflows/tests-deploy.yml +++ b/.github/workflows/tests-deploy.yml @@ -110,7 +110,7 @@ jobs: - name: Upload Container info if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_app_docker_container.json path: container.json @@ -118,7 +118,7 @@ jobs: - name: Upload Container logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_app_docker_container.log path: container.log @@ -126,7 +126,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_app_docker_nextcloud.log path: data/nextcloud.log @@ -186,7 +186,7 @@ jobs: - name: Upload Container info if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_docker_app_docker_container.json path: container.json @@ -194,7 +194,7 @@ jobs: - name: Upload Container logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_docker_app_docker_container.log path: container.log @@ -202,7 +202,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_docker_app_docker_nextcloud.log path: nextcloud.log @@ -265,7 +265,7 @@ jobs: - name: Upload Container info if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_http_container.json path: container.json @@ -273,7 +273,7 @@ jobs: - name: Upload Container logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_http_container.log path: container.log @@ -281,7 +281,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_http_nextcloud.log path: nextcloud.log @@ -360,7 +360,7 @@ jobs: - name: Upload HaProxy logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_https_haproxy.log path: haproxy.log @@ -368,7 +368,7 @@ jobs: - name: Upload Container info if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_https_container.json path: container.json @@ -376,7 +376,7 @@ jobs: - name: Upload Container logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_https_container.log path: container.log @@ -384,7 +384,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dsp_https_nextcloud.log path: nextcloud.log @@ -508,7 +508,7 @@ jobs: - name: Upload Container info if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_app_docker_redis_container.json path: container.json @@ -516,7 +516,7 @@ jobs: - name: Upload Container logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_app_docker_redis_container.log path: container.log @@ -524,7 +524,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_app_docker_redis_nextcloud.log path: data/nextcloud.log @@ -628,7 +628,7 @@ jobs: - name: Upload Container info if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_network_host_container.json path: container.json @@ -636,7 +636,7 @@ jobs: - name: Upload Container logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_network_host_container.log path: container.log @@ -644,7 +644,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nc_host_network_host_nextcloud.log path: data/nextcloud.log diff --git a/.github/workflows/tests-special.yml b/.github/workflows/tests-special.yml index d78df992..7cb38b26 100644 --- a/.github/workflows/tests-special.yml +++ b/.github/workflows/tests-special.yml @@ -118,7 +118,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: install_no_init.log path: data/nextcloud.log diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 95a91728..1af4506c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -132,7 +132,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pgsql_nc_py_api_${{ matrix.php-version }}_nextcloud.log path: data/nextcloud.log @@ -245,7 +245,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: mysql_nc_py_api_nextcloud.log path: data/nextcloud.log @@ -361,7 +361,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: apcu_mysql_nc_py_api_nextcloud.log path: data/nextcloud.log @@ -473,7 +473,7 @@ jobs: - name: Upload NC logs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: oci_nc_py_api_nextcloud.log path: data/nextcloud.log From 295138d2d1022caf72720eb6c4137b74e4c62f88 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 12 Nov 2024 00:29:53 +0000 Subject: [PATCH 036/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- l10n/hr.js | 2 +- l10n/hr.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 7a69e9cc..9025be72 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -185,7 +185,7 @@ OC.L10N.register( "Deploy and Enable" : "قُم بالنشر و التمكين", "Enable" : "تمكين", "Disable" : "تعطيل", - "Allow untested app" : "إسمَح للتطبيقات غير المُجازة untested app", + "Allow untested app" : "السماح للتطبيقات غير المجازة", "Default Deploy daemon is not accessible. Please verify configuration" : "لا يمكن الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات. راجع التهيئة من فضلك", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "سيتم تنزيل التطبيق من متجر التطبيقات و سيتم نشره على البرنامج الخفي التلقائي للنشر", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود الخاص بك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", diff --git a/l10n/ar.json b/l10n/ar.json index a97a0e2a..e61e2e8c 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -183,7 +183,7 @@ "Deploy and Enable" : "قُم بالنشر و التمكين", "Enable" : "تمكين", "Disable" : "تعطيل", - "Allow untested app" : "إسمَح للتطبيقات غير المُجازة untested app", + "Allow untested app" : "السماح للتطبيقات غير المجازة", "Default Deploy daemon is not accessible. Please verify configuration" : "لا يمكن الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات. راجع التهيئة من فضلك", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "سيتم تنزيل التطبيق من متجر التطبيقات و سيتم نشره على البرنامج الخفي التلقائي للنشر", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "لم يتم التعرّف على هذا التطبيق باعتباره متوافقاً مع إصدار نكست كلاود الخاص بك. إذا تابعت، فسيظل بإمكانك تنصيب التطبيق. ولكن يجب ملاحظة أن التطبيق قد لا يعمل بالشكل المتوقع.", diff --git a/l10n/hr.js b/l10n/hr.js index e3e7cc41..fa29953f 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -42,7 +42,7 @@ OC.L10N.register( "Documentation" : "Dokumentacija", "Details" : "Pojedinosti", "Changelog" : "Zapis promjena", - "by {author}\n{license}" : "{autor}\n{licenca}", + "by {author}\n{license}" : "{author}\n{license}", "Active apps" : "Aktivne aplikacije", "Disabled apps" : "Onemogućene aplikacije", "Updates" : "Ažuriranja", diff --git a/l10n/hr.json b/l10n/hr.json index c4d0ca31..8a91e12c 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -40,7 +40,7 @@ "Documentation" : "Dokumentacija", "Details" : "Pojedinosti", "Changelog" : "Zapis promjena", - "by {author}\n{license}" : "{autor}\n{licenca}", + "by {author}\n{license}" : "{author}\n{license}", "Active apps" : "Aktivne aplikacije", "Disabled apps" : "Onemogućene aplikacije", "Updates" : "Ažuriranja", From a138912eedc3e5c4e1ff521b23d8128ab08310cc Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 15 Nov 2024 00:28:59 +0000 Subject: [PATCH 037/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 148e53c8..92c66099 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -21,6 +21,7 @@ OC.L10N.register( "ExApp init timeout" : "外部应用初始化超时", "ExApp container restart policy" : "外部应用容器重启策略", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", + "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 44c448b4..8e5c24b2 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -19,6 +19,7 @@ "ExApp init timeout" : "外部应用初始化超时", "ExApp container restart policy" : "外部应用容器重启策略", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", + "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", From e17cb0654a75c0ace279fe21f7e65fd2636e04f0 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 17 Nov 2024 00:28:44 +0000 Subject: [PATCH 038/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lv.js | 1 + l10n/lv.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/lv.js b/l10n/lv.js index 4bb80493..83482f0b 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Atcelt", "Delete" : "Dzēst", "Edit" : "Labot", "Name" : "Nosaukums", diff --git a/l10n/lv.json b/l10n/lv.json index d582eda5..5638108e 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Atcelt", "Delete" : "Dzēst", "Edit" : "Labot", "Name" : "Nosaukums", From 5c3732d932a103588373c908492fd6cee888169b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 18 Nov 2024 00:27:37 +0000 Subject: [PATCH 039/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 1 + l10n/cs.json | 1 + l10n/gl.js | 2 +- l10n/gl.json | 2 +- l10n/pl.js | 4 ++++ l10n/pl.json | 4 ++++ 6 files changed, 12 insertions(+), 2 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index 411c3eb6..678253e2 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", "ExApp not found, failed to get status" : "ExApp nenalezena, nepodařilo se získat stav", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace nebyla nainstalována z katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", "Could not perform installation of ExApp" : "Nebylo možné provést instalaci ExApp", "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", "Failed to disable ExApp" : "Nepodařil ose vypnout ExApp", diff --git a/l10n/cs.json b/l10n/cs.json index e05810a6..ff63d785 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", "ExApp not found, failed to get status" : "ExApp nenalezena, nepodařilo se získat stav", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace nebyla nainstalována z katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", "Could not perform installation of ExApp" : "Nebylo možné provést instalaci ExApp", "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", "Failed to disable ExApp" : "Nepodařil ose vypnout ExApp", diff --git a/l10n/gl.js b/l10n/gl.js index 2276deb2..a37db5b1 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -5,7 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada dende a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", diff --git a/l10n/gl.json b/l10n/gl.json index c67cd3e2..56a0119c 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -3,7 +3,7 @@ "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada dende a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", diff --git a/l10n/pl.js b/l10n/pl.js index 608b3d47..cddc1257 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -11,6 +11,8 @@ OC.L10N.register( "Name" : "Nazwa", "Host" : "Host", "Nextcloud URL" : "Adres URL Nextcloud", + "GPUs support" : "Obsługa procesorów graficznych", + "Compute device" : "Urządzenie obliczeniowe", "Enabled" : "Włączone", "Display name" : "Wyświetlana nazwa", "Network" : "Sieć", @@ -20,6 +22,7 @@ OC.L10N.register( "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", + "Delete data on remove" : "Usuń dane przy usuwaniu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:", @@ -56,6 +59,7 @@ OC.L10N.register( "Updates" : "Aktualizacje", "Featured apps" : "Polecane aplikacje", "Supported apps" : "Obsługiwane aplikacje", + "manual-install apps cannot be updated" : "aplikacji instalowanych ręcznie nie można aktualizować", "Healthchecking" : "Sprawdzanie stanu zdrowia", "Enable" : "Włącz", "Disable" : "Wyłącz", diff --git a/l10n/pl.json b/l10n/pl.json index 1b909577..5295802a 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -9,6 +9,8 @@ "Name" : "Nazwa", "Host" : "Host", "Nextcloud URL" : "Adres URL Nextcloud", + "GPUs support" : "Obsługa procesorów graficznych", + "Compute device" : "Urządzenie obliczeniowe", "Enabled" : "Włączone", "Display name" : "Wyświetlana nazwa", "Network" : "Sieć", @@ -18,6 +20,7 @@ "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", + "Delete data on remove" : "Usuń dane przy usuwaniu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:", @@ -54,6 +57,7 @@ "Updates" : "Aktualizacje", "Featured apps" : "Polecane aplikacje", "Supported apps" : "Obsługiwane aplikacje", + "manual-install apps cannot be updated" : "aplikacji instalowanych ręcznie nie można aktualizować", "Healthchecking" : "Sprawdzanie stanu zdrowia", "Enable" : "Włącz", "Disable" : "Wyłącz", From 80ba654450cc7cb351a06c3666f7dde96296d359 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 19 Nov 2024 00:28:22 +0000 Subject: [PATCH 040/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 9025be72..b042c539 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -41,7 +41,7 @@ OC.L10N.register( "Cancel" : "إلغاء", "Delete" : "حذف", "Default" : "التلقائي", - "Set as default" : "عَيِّن كقيمة تلقائية", + "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", diff --git a/l10n/ar.json b/l10n/ar.json index e61e2e8c..83902efa 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -39,7 +39,7 @@ "Cancel" : "إلغاء", "Delete" : "حذف", "Default" : "التلقائي", - "Set as default" : "عَيِّن كقيمة تلقائية", + "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", From f404fcf098a168e47614cb6b943e0f7620f04ec6 Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Mon, 18 Nov 2024 19:23:47 +0300 Subject: [PATCH 041/244] (fix): do not expose haproxy password to UI Signed-off-by: Oleksander Piskun --- lib/Controller/DaemonConfigController.php | 45 ++++++++++++++++++++++- lib/Service/DaemonConfigService.php | 12 +++++- 2 files changed, 54 insertions(+), 3 deletions(-) diff --git a/lib/Controller/DaemonConfigController.php b/lib/Controller/DaemonConfigController.php index 7b2cfd83..0541708a 100644 --- a/lib/Controller/DaemonConfigController.php +++ b/lib/Controller/DaemonConfigController.php @@ -59,11 +59,37 @@ public function registerDaemonConfig(array $daemonConfigParams, bool $defaultDae #[PasswordConfirmationRequired] public function updateDaemonConfig(string $name, array $daemonConfigParams): Response { $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($name); + + // Safely check if "haproxy_password" exists before accessing it + $haproxyPassword = $daemonConfigParams['deployConfig']['haproxy_password'] ?? null; + + // Restore the original password if "dummySecret123" is provided + if ($haproxyPassword === 'dummySecret123') { + $daemonConfigParams['deployConfig']['haproxy_password'] = $daemonConfig->getDeployConfig()['haproxy_password'] ?? ""; + } + + // Create and update DaemonConfig instance $updatedDaemonConfig = new DaemonConfig($daemonConfigParams); $updatedDaemonConfig->setId($daemonConfig->getId()); $updatedDaemonConfig = $this->daemonConfigService->updateDaemonConfig($updatedDaemonConfig); + + // Check if update was successful before proceeding + if ($updatedDaemonConfig === null) { + return new JSONResponse([ + 'success' => false, + 'daemonConfig' => null, + ]); + } + + // Mask the password with "dummySecret123" if it is set + $updatedDeployConfig = $updatedDaemonConfig->getDeployConfig(); + if (!empty($updatedDeployConfig['haproxy_password'] ?? null)) { + $updatedDeployConfig['haproxy_password'] = 'dummySecret123'; + $updatedDaemonConfig->setDeployConfig($updatedDeployConfig); + } + return new JSONResponse([ - 'success' => $updatedDaemonConfig !== null, + 'success' => true, 'daemonConfig' => $updatedDaemonConfig, ]); } @@ -98,6 +124,23 @@ public function verifyDaemonConnection(string $name): Response { } public function checkDaemonConnection(array $daemonParams): Response { + // Safely check if "haproxy_password" exists before accessing it + // note: UI passes here 'deploy_config' instead of 'deployConfig' + $haproxyPassword = $daemonParams['deploy_config']['haproxy_password'] ?? null; + + if ($haproxyPassword === 'dummySecret123') { + // If the secret is "dummySecret123" we check if such record is present in DB + $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($daemonParams['name']); + if ($daemonConfig !== null) { + $haproxyPasswordDB = $daemonConfig->getDeployConfig()['haproxy_password'] ?? ""; + if ($haproxyPasswordDB) { + // if there is a record in the DB and there is a password, + // then we request it from the DB instead of the “masked” one + $daemonParams['deploy_config']['haproxy_password'] = $haproxyPasswordDB; + } + } + } + $daemonConfig = new DaemonConfig([ 'name' => $daemonParams['name'], 'display_name' => $daemonParams['display_name'], diff --git a/lib/Service/DaemonConfigService.php b/lib/Service/DaemonConfigService.php index d2ebd084..d7938142 100644 --- a/lib/Service/DaemonConfigService.php +++ b/lib/Service/DaemonConfigService.php @@ -81,10 +81,18 @@ public function getDaemonConfigsWithAppsCount(): array { $carry[$exApp->getDaemonConfigName()] += 1; return $carry; }, []); + return array_map(function (DaemonConfig $daemonConfig) use ($daemonsExAppsCount) { + $serializedConfig = $daemonConfig->jsonSerialize(); + + // Check if "haproxy_password" exists in "deployConfig" and mask it + if (!empty($serializedConfig['deploy_config']['haproxy_password'])) { + $serializedConfig['deploy_config']['haproxy_password'] = 'dummySecret123'; + } + return [ - ...$daemonConfig->jsonSerialize(), - 'exAppsCount' => isset($daemonsExAppsCount[$daemonConfig->getName()]) ? $daemonsExAppsCount[$daemonConfig->getName()] : 0, + ...$serializedConfig, + 'exAppsCount' => $daemonsExAppsCount[$daemonConfig->getName()] ?? 0, ]; }, $this->getRegisteredDaemonConfigs()); } From 13bf08d8dce9429a25dcbd2ea70fc54e0906b14f Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Wed, 20 Nov 2024 11:41:54 +0300 Subject: [PATCH 042/244] fixed important typo that lead to incorrect logic Signed-off-by: Oleksander Piskun --- lib/Controller/DaemonConfigController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Controller/DaemonConfigController.php b/lib/Controller/DaemonConfigController.php index 0541708a..e8624c9c 100644 --- a/lib/Controller/DaemonConfigController.php +++ b/lib/Controller/DaemonConfigController.php @@ -61,11 +61,11 @@ public function updateDaemonConfig(string $name, array $daemonConfigParams): Res $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($name); // Safely check if "haproxy_password" exists before accessing it - $haproxyPassword = $daemonConfigParams['deployConfig']['haproxy_password'] ?? null; + $haproxyPassword = $daemonConfigParams['deploy_config']['haproxy_password'] ?? null; // Restore the original password if "dummySecret123" is provided if ($haproxyPassword === 'dummySecret123') { - $daemonConfigParams['deployConfig']['haproxy_password'] = $daemonConfig->getDeployConfig()['haproxy_password'] ?? ""; + $daemonConfigParams['deploy_config']['haproxy_password'] = $daemonConfig->getDeployConfig()['haproxy_password'] ?? ""; } // Create and update DaemonConfig instance From cc15ac1f357a06244c643de760cb50b7e1621e1f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 21 Nov 2024 00:28:34 +0000 Subject: [PATCH 043/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pl.js | 14 ++++++++++++++ l10n/pl.json | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/l10n/pl.js b/l10n/pl.js index cddc1257..757e8017 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -1,24 +1,36 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Nie znaleziono konfiguracji demona", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "Cancel" : "Anuluj", "Delete" : "Usuń", "Default" : "Domyślny", + "Set as default" : "Ustaw jako domyślny", "Edit" : "Edycja", + "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", + "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Name" : "Nazwa", + "Protocol" : "Protokół", "Host" : "Host", + "Docker network" : "Sieć Dockera", "Nextcloud URL" : "Adres URL Nextcloud", "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", + "Additional options" : "Dodatkowe opcje", + "Verify connection" : "Sprawdź połączenie", "Enabled" : "Włączone", "Display name" : "Wyświetlana nazwa", "Network" : "Sieć", "Confirm" : "Potwierdź", "Save" : "Zapisz", "Register" : "Zarejestruj się", + "Check connection" : "Sprawdź połączenie", + "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", + "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", @@ -39,6 +51,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Polecane aplikacje są tworzone przez społeczność. Oferują główną funkcjonalność i są gotowe do użycia w produkcji.", "Featured" : "Polecane", "Update to {update}" : "Zaktualizuj do {update}", + "Default Deploy daemon is not accessible" : "Domyślny demon wdrażania jest niedostępny", "Icon" : "Ikona", "Version" : "Wersja", "Daemon" : "Demon", @@ -61,6 +74,7 @@ OC.L10N.register( "Supported apps" : "Obsługiwane aplikacje", "manual-install apps cannot be updated" : "aplikacji instalowanych ręcznie nie można aktualizować", "Healthchecking" : "Sprawdzanie stanu zdrowia", + "Deploy and Enable" : "Wdróż i włącz", "Enable" : "Włącz", "Disable" : "Wyłącz", "Allow untested app" : "Zezwól na nietestowane aplikacje", diff --git a/l10n/pl.json b/l10n/pl.json index 5295802a..5060639a 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -1,22 +1,34 @@ { "translations": { + "Daemon config not found" : "Nie znaleziono konfiguracji demona", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "Cancel" : "Anuluj", "Delete" : "Usuń", "Default" : "Domyślny", + "Set as default" : "Ustaw jako domyślny", "Edit" : "Edycja", + "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", + "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Name" : "Nazwa", + "Protocol" : "Protokół", "Host" : "Host", + "Docker network" : "Sieć Dockera", "Nextcloud URL" : "Adres URL Nextcloud", "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", + "Additional options" : "Dodatkowe opcje", + "Verify connection" : "Sprawdź połączenie", "Enabled" : "Włączone", "Display name" : "Wyświetlana nazwa", "Network" : "Sieć", "Confirm" : "Potwierdź", "Save" : "Zapisz", "Register" : "Zarejestruj się", + "Check connection" : "Sprawdź połączenie", + "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", + "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", @@ -37,6 +49,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Polecane aplikacje są tworzone przez społeczność. Oferują główną funkcjonalność i są gotowe do użycia w produkcji.", "Featured" : "Polecane", "Update to {update}" : "Zaktualizuj do {update}", + "Default Deploy daemon is not accessible" : "Domyślny demon wdrażania jest niedostępny", "Icon" : "Ikona", "Version" : "Wersja", "Daemon" : "Demon", @@ -59,6 +72,7 @@ "Supported apps" : "Obsługiwane aplikacje", "manual-install apps cannot be updated" : "aplikacji instalowanych ręcznie nie można aktualizować", "Healthchecking" : "Sprawdzanie stanu zdrowia", + "Deploy and Enable" : "Wdróż i włącz", "Enable" : "Włącz", "Disable" : "Wyłącz", "Allow untested app" : "Zezwól na nietestowane aplikacje", From 00556a42098a1303b9acb30756550d9659c227a1 Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Wed, 20 Nov 2024 17:36:09 +0300 Subject: [PATCH 044/244] keep "haproxy_password" encrypted in the database Signed-off-by: Oleksander Piskun --- lib/Controller/DaemonConfigController.php | 17 +++++- lib/DeployActions/DockerActions.php | 8 ++- .../Version5000Date20241120135411.php | 59 +++++++++++++++++++ lib/Service/DaemonConfigService.php | 5 ++ 4 files changed, 84 insertions(+), 5 deletions(-) create mode 100644 lib/Migration/Version5000Date20241120135411.php diff --git a/lib/Controller/DaemonConfigController.php b/lib/Controller/DaemonConfigController.php index e8624c9c..433a756e 100644 --- a/lib/Controller/DaemonConfigController.php +++ b/lib/Controller/DaemonConfigController.php @@ -19,6 +19,7 @@ use OCP\IConfig; use OCP\IL10N; use OCP\IRequest; +use OCP\Security\ICrypto; /** * DaemonConfig actions (for UI) @@ -33,6 +34,7 @@ public function __construct( private readonly AppAPIService $service, private readonly ExAppService $exAppService, private readonly IL10N $l10n, + private readonly ICrypto $crypto, ) { parent::__construct(Application::APP_ID, $request); } @@ -66,6 +68,9 @@ public function updateDaemonConfig(string $name, array $daemonConfigParams): Res // Restore the original password if "dummySecret123" is provided if ($haproxyPassword === 'dummySecret123') { $daemonConfigParams['deploy_config']['haproxy_password'] = $daemonConfig->getDeployConfig()['haproxy_password'] ?? ""; + } elseif (!empty($haproxyPassword)) { + // New password provided, encrypt it + $daemonConfigParams['deploy_config']['haproxy_password'] = $this->crypto->encrypt($haproxyPassword); } // Create and update DaemonConfig instance @@ -129,16 +134,22 @@ public function checkDaemonConnection(array $daemonParams): Response { $haproxyPassword = $daemonParams['deploy_config']['haproxy_password'] ?? null; if ($haproxyPassword === 'dummySecret123') { - // If the secret is "dummySecret123" we check if such record is present in DB + // For cases when the password itself is 'dummySecret123' + $daemonParams['deploy_config']['haproxy_password'] = $this->crypto->encrypt($haproxyPassword); + + // Check if such record is present in the DB $daemonConfig = $this->daemonConfigService->getDaemonConfigByName($daemonParams['name']); if ($daemonConfig !== null) { + // such Daemon config already present in the DB $haproxyPasswordDB = $daemonConfig->getDeployConfig()['haproxy_password'] ?? ""; if ($haproxyPasswordDB) { - // if there is a record in the DB and there is a password, - // then we request it from the DB instead of the “masked” one + // get password from the DB instead of the “masked” one $daemonParams['deploy_config']['haproxy_password'] = $haproxyPasswordDB; } } + } elseif (!empty($haproxyPassword)) { + // New password provided, encrypt it, as "initGuzzleClient" expects to receive encrypted password + $daemonParams['deploy_config']['haproxy_password'] = $this->crypto->encrypt($haproxyPassword); } $daemonConfig = new DaemonConfig([ diff --git a/lib/DeployActions/DockerActions.php b/lib/DeployActions/DockerActions.php index a1f33082..91c88e87 100644 --- a/lib/DeployActions/DockerActions.php +++ b/lib/DeployActions/DockerActions.php @@ -18,6 +18,7 @@ use OCP\ICertificateManager; use OCP\IConfig; use OCP\IURLGenerator; +use OCP\Security\ICrypto; use Psr\Log\LoggerInterface; class DockerActions implements IDeployActions { @@ -36,6 +37,7 @@ public function __construct( private readonly IURLGenerator $urlGenerator, private readonly AppAPICommonService $service, private readonly ExAppService $exAppService, + private readonly ICrypto $crypto, ) { } @@ -556,7 +558,8 @@ public function resolveExAppUrl( } if ($protocol == 'https' && isset($deployConfig['haproxy_password']) && $deployConfig['haproxy_password'] !== '') { // we only set haproxy auth for remote installations, when all requests come through HaProxy. - $auth = [self::APP_API_HAPROXY_USER, $deployConfig['haproxy_password']]; + $haproxyPass = $this->crypto->decrypt($deployConfig['haproxy_password']); + $auth = [self::APP_API_HAPROXY_USER, $haproxyPass]; } return sprintf('%s://%s:%s', $protocol, $exAppHost, $port); } @@ -620,7 +623,8 @@ public function initGuzzleClient(DaemonConfig $daemonConfig): void { $guzzleParams = $this->setupCerts($guzzleParams); } if (isset($daemonConfig->getDeployConfig()['haproxy_password']) && $daemonConfig->getDeployConfig()['haproxy_password'] !== '') { - $guzzleParams['auth'] = [self::APP_API_HAPROXY_USER, $daemonConfig->getDeployConfig()['haproxy_password']]; + $haproxyPass = $this->crypto->decrypt($daemonConfig->getDeployConfig()['haproxy_password']); + $guzzleParams['auth'] = [self::APP_API_HAPROXY_USER, $haproxyPass]; } $this->guzzleClient = new Client($guzzleParams); } diff --git a/lib/Migration/Version5000Date20241120135411.php b/lib/Migration/Version5000Date20241120135411.php new file mode 100644 index 00000000..820a4e65 --- /dev/null +++ b/lib/Migration/Version5000Date20241120135411.php @@ -0,0 +1,59 @@ +connection->getQueryBuilder(); + $qbSelect->select(['id', 'deploy_config']) + ->from('ex_apps_daemons') + ->where(1); + $req = $qbSelect->executeQuery(); + + while ($row = $req->fetch()) { + $deployConfig = $row['deploy_config']; + $deployConfig = json_decode($deployConfig, true); + if (!empty($deployConfig['haproxy_password'])) { + $deployConfig['haproxy_password'] = $this->crypto->encrypt($deployConfig['haproxy_password']); + $encodedDeployConfig = json_encode($deployConfig); + $qbUpdate = $this->connection->getQueryBuilder(); + $qbUpdate->update('ex_apps_daemons') + ->set('deploy_config', $qbUpdate->createNamedParameter($encodedDeployConfig)) + ->where( + $qbUpdate->expr()->eq('id', $qbUpdate->createNamedParameter($row['id'])) + ); + $qbUpdate->executeStatement(); + } + } + $req->closeCursor(); + return null; + } +} diff --git a/lib/Service/DaemonConfigService.php b/lib/Service/DaemonConfigService.php index d7938142..0938771a 100644 --- a/lib/Service/DaemonConfigService.php +++ b/lib/Service/DaemonConfigService.php @@ -10,6 +10,7 @@ use OCP\AppFramework\Db\DoesNotExistException; use OCP\AppFramework\Db\MultipleObjectsReturnedException; use OCP\DB\Exception; +use OCP\Security\ICrypto; use Psr\Log\LoggerInterface; /** @@ -20,6 +21,7 @@ public function __construct( private readonly LoggerInterface $logger, private readonly DaemonConfigMapper $mapper, private readonly ExAppService $exAppService, + private readonly ICrypto $crypto, ) { } @@ -38,6 +40,9 @@ public function registerDaemonConfig(array $params): ?DaemonConfig { } $params['deploy_config']['nextcloud_url'] = rtrim($params['deploy_config']['nextcloud_url'], '/'); try { + if (isset($params['deploy_config']['haproxy_password']) && $params['deploy_config']['haproxy_password'] !== '') { + $params['deploy_config']['haproxy_password'] = $this->crypto->encrypt($params['deploy_config']['haproxy_password']); + } return $this->mapper->insert(new DaemonConfig([ 'name' => $params['name'], 'display_name' => $params['display_name'], From 0a437ead72662bd60379246dd343d3ed123baf0a Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Thu, 21 Nov 2024 21:01:30 +0300 Subject: [PATCH 045/244] bumped version from `3.2.1` to `3.2.3` Signed-off-by: Oleksander Piskun --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 70ab3584..09b4607f 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -43,7 +43,7 @@ to join us in shaping a more versatile, stable, and secure app landscape. *Your insights, suggestions, and contributions are invaluable to us.* ]]> - 3.2.1 + 3.2.3 agpl Andrey Borysenko Alexander Piskun From eae7e0c6b3c38df342e1a62bbad1738ea97800ac Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 28 Nov 2024 00:31:13 +0000 Subject: [PATCH 046/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es_MX.js | 9 +++++++++ l10n/es_MX.json | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/l10n/es_MX.js b/l10n/es_MX.js index b396134c..1f5f0bb7 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -5,8 +5,11 @@ OC.L10N.register( "Delete" : "Eliminar", "Default" : "Por omisión", "Edit" : "Editar", + "Deploy Daemon" : "Desplegar demonio", "Name" : "Nombre", "Host" : "Servidor", + "GPUs support" : "Soporte de GPUs", + "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", "Network" : "Red", @@ -15,6 +18,7 @@ OC.L10N.register( "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Borrar", + "Delete data on remove" : "Eliminar datos al remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", @@ -30,6 +34,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", "Featured" : "Destacado", "Update to {update}" : "Actualizar a {update}", + "Default Deploy daemon is not accessible" : "No se puede acceder al demonio de despliegue predeterminado", "Icon" : "Ícono", "Version" : "Versión", "Daemon" : "Demonio", @@ -49,10 +54,14 @@ OC.L10N.register( "Updates" : "Actualizaciones", "Featured apps" : "Aplicaciones destacadas", "Supported apps" : "Aplicaciones soportadas", + "manual-install apps cannot be updated" : "Las aplicaciones instaladas manualmente no pueden ser actualizadas", + "Deploy and Enable" : "Desplegar y activar", "Enable" : "Activar", "Disable" : "Deshabilitar", "Allow untested app" : "Permitir aplicación no probada", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta app no está marcada como compatible con tu versión de Nextcloud. Si continúas podrás instalar la app, pero ten en cuenta que podría no funcionar según lo esperado.", "An error occurred during the request. Unable to proceed." : "Ocurrió un error durante la solicitud. No se puede continuar.", + "The app has been enabled but needs to be updated." : "Esta app ha sido habilitada pero requiere ser actualizada.", "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta aplicación no se puede habilitar porque genera inestabilidad en el servidor" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 04a7d910..121f7212 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -3,8 +3,11 @@ "Delete" : "Eliminar", "Default" : "Por omisión", "Edit" : "Editar", + "Deploy Daemon" : "Desplegar demonio", "Name" : "Nombre", "Host" : "Servidor", + "GPUs support" : "Soporte de GPUs", + "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", "Network" : "Red", @@ -13,6 +16,7 @@ "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", "Remove" : "Borrar", + "Delete data on remove" : "Eliminar datos al remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", @@ -28,6 +32,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", "Featured" : "Destacado", "Update to {update}" : "Actualizar a {update}", + "Default Deploy daemon is not accessible" : "No se puede acceder al demonio de despliegue predeterminado", "Icon" : "Ícono", "Version" : "Versión", "Daemon" : "Demonio", @@ -47,10 +52,14 @@ "Updates" : "Actualizaciones", "Featured apps" : "Aplicaciones destacadas", "Supported apps" : "Aplicaciones soportadas", + "manual-install apps cannot be updated" : "Las aplicaciones instaladas manualmente no pueden ser actualizadas", + "Deploy and Enable" : "Desplegar y activar", "Enable" : "Activar", "Disable" : "Deshabilitar", "Allow untested app" : "Permitir aplicación no probada", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta app no está marcada como compatible con tu versión de Nextcloud. Si continúas podrás instalar la app, pero ten en cuenta que podría no funcionar según lo esperado.", "An error occurred during the request. Unable to proceed." : "Ocurrió un error durante la solicitud. No se puede continuar.", + "The app has been enabled but needs to be updated." : "Esta app ha sido habilitada pero requiere ser actualizada.", "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta aplicación no se puede habilitar porque genera inestabilidad en el servidor" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file From c695e7714414737124cff7cb92c0251b938e5b1a Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Fri, 29 Nov 2024 09:10:25 +0100 Subject: [PATCH 047/244] Fix migration for postgres support. Signed-off-by: Marcel Klehr --- lib/Migration/Version5000Date20241120135411.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Migration/Version5000Date20241120135411.php b/lib/Migration/Version5000Date20241120135411.php index 820a4e65..514b5e05 100644 --- a/lib/Migration/Version5000Date20241120135411.php +++ b/lib/Migration/Version5000Date20241120135411.php @@ -34,8 +34,7 @@ public function postSchemaChange(IOutput $output, Closure $schemaClosure, array // encrypt "haproxy_password" in the "ex_apps_daemons" table $qbSelect = $this->connection->getQueryBuilder(); $qbSelect->select(['id', 'deploy_config']) - ->from('ex_apps_daemons') - ->where(1); + ->from('ex_apps_daemons'); $req = $qbSelect->executeQuery(); while ($row = $req->fetch()) { From 1160a4b5776ce28bc37ea163eed88ab23797de73 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 4 Dec 2024 00:28:28 +0000 Subject: [PATCH 048/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/eu.js | 10 ++++++++++ l10n/eu.json | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/l10n/eu.js b/l10n/eu.js index 2ac1c199..37f6f83a 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -22,10 +22,15 @@ OC.L10N.register( "Delete" : "Ezabatu", "Default" : "Lehenetsia", "Edit" : "Aldatu", + "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", + "Deploy Daemon" : "Zabaldu daimona", "Name" : "Izena", "Protocol" : "Protokoloa", "Host" : "Ostalaria", "Nextcloud URL" : "Nextcloud URLa", + "GPUs support" : "GPUen bateragarritasuna", + "Compute device" : "Konputazio gailua", + "Additional options" : "Aukera gehiago", "Enabled" : "Gaituta", "Display name" : "Erakusteko izena", "Network" : "Sarea", @@ -35,6 +40,7 @@ OC.L10N.register( "External Apps" : "Kanpoko aplikazioak", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", + "Delete data on remove" : "Ezabatu datuak kentzean", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:", @@ -50,6 +56,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Nabarmendutako aplikazioak, komunitateak eta komunitatean garatutakoak dira. Funtzionalitate orokorrak eskaintzen dituzte eta produkzioan erabiltzeko prest daude.", "Featured" : "Nabarmendua", "Update to {update}" : "Eguneratu {update} bertsiora", + "Default Deploy daemon is not accessible" : "Zabalpen lehenetsia ez dago eskuragarri", "Icon" : "Ikonoa", "Version" : "Bertsioa", "Daemon" : "Daemona", @@ -70,12 +77,15 @@ OC.L10N.register( "Updates" : "Eguneraketak", "Featured apps" : "Aplikazio nabarmenduak", "Supported apps" : "Onartutako aplikazioak", + "manual-install apps cannot be updated" : "eskuz instalatutako aplikazioak ezin dira eguneratu", "Healthchecking" : "Osasun-kontrola", + "Deploy and Enable" : "Zabaldu eta gaitu", "Enable" : "Aktibatu", "Disable" : "Desaktibatu", "Allow untested app" : "Baimendu probatu gabeko aplikazioa", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikazio hau ez dago zure Nextcloud bertsioarekin bateragarri bezala markatuta. Jarraitzen baduzu aplikazioa instalatu egingo duzu. Kontuan izan agian aplikazioak ez duela ondo funtzionatuko.", "An error occurred during the request. Unable to proceed." : "Errorea gertatu da eskaeran. Ezin da jarraitu.", + "The app has been enabled but needs to be updated." : "Aplikazioa gaitu da baina eguneratzea behar du.", "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eu.json b/l10n/eu.json index 43169b3d..b75a85c8 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -20,10 +20,15 @@ "Delete" : "Ezabatu", "Default" : "Lehenetsia", "Edit" : "Aldatu", + "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", + "Deploy Daemon" : "Zabaldu daimona", "Name" : "Izena", "Protocol" : "Protokoloa", "Host" : "Ostalaria", "Nextcloud URL" : "Nextcloud URLa", + "GPUs support" : "GPUen bateragarritasuna", + "Compute device" : "Konputazio gailua", + "Additional options" : "Aukera gehiago", "Enabled" : "Gaituta", "Display name" : "Erakusteko izena", "Network" : "Sarea", @@ -33,6 +38,7 @@ "External Apps" : "Kanpoko aplikazioak", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", + "Delete data on remove" : "Ezabatu datuak kentzean", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:", @@ -48,6 +54,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Nabarmendutako aplikazioak, komunitateak eta komunitatean garatutakoak dira. Funtzionalitate orokorrak eskaintzen dituzte eta produkzioan erabiltzeko prest daude.", "Featured" : "Nabarmendua", "Update to {update}" : "Eguneratu {update} bertsiora", + "Default Deploy daemon is not accessible" : "Zabalpen lehenetsia ez dago eskuragarri", "Icon" : "Ikonoa", "Version" : "Bertsioa", "Daemon" : "Daemona", @@ -68,12 +75,15 @@ "Updates" : "Eguneraketak", "Featured apps" : "Aplikazio nabarmenduak", "Supported apps" : "Onartutako aplikazioak", + "manual-install apps cannot be updated" : "eskuz instalatutako aplikazioak ezin dira eguneratu", "Healthchecking" : "Osasun-kontrola", + "Deploy and Enable" : "Zabaldu eta gaitu", "Enable" : "Aktibatu", "Disable" : "Desaktibatu", "Allow untested app" : "Baimendu probatu gabeko aplikazioa", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikazio hau ez dago zure Nextcloud bertsioarekin bateragarri bezala markatuta. Jarraitzen baduzu aplikazioa instalatu egingo duzu. Kontuan izan agian aplikazioak ez duela ondo funtzionatuko.", "An error occurred during the request. Unable to proceed." : "Errorea gertatu da eskaeran. Ezin da jarraitu.", + "The app has been enabled but needs to be updated." : "Aplikazioa gaitu da baina eguneratzea behar du.", "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From cb150e547b90a8ac4e85dddb1e0461fe436cbc1d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 5 Dec 2024 00:52:28 +0000 Subject: [PATCH 049/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/eu.js | 18 ++++++++++++++++++ l10n/eu.json | 18 ++++++++++++++++++ l10n/fr.js | 1 + l10n/fr.json | 1 + 4 files changed, 38 insertions(+) diff --git a/l10n/eu.js b/l10n/eu.js index 37f6f83a..435b65d3 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -18,25 +18,40 @@ OC.L10N.register( "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", + "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", "Default" : "Lehenetsia", "Edit" : "Aldatu", "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Deploy Daemon" : "Zabaldu daimona", + "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", "Protocol" : "Protokoloa", "Host" : "Ostalaria", + "Deploy config" : "Zabaldu konfigurazioa", + "Docker network" : "Docker sarea", "Nextcloud URL" : "Nextcloud URLa", + "HaProxy password" : "HaProxy pasahitza", "GPUs support" : "GPUen bateragarritasuna", "Compute device" : "Konputazio gailua", "Additional options" : "Aukera gehiago", + "Verify connection" : "Egiaztatu konexioa", + "Register Daemon" : "Erregistratu daimona", + "More info" : "Informazio gehiago", + "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", "Display name" : "Erakusteko izena", + "Deployment method" : "Zabalketa metodoa", + "Daemon host" : "Daimonaren ostalaria", + "Enable https" : "Gaitu https", "Network" : "Sarea", + "Additional option" : "Aukera gehiago", + "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", "Save" : "Gorde", "Register" : "Erregistratu", + "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", @@ -78,12 +93,15 @@ OC.L10N.register( "Featured apps" : "Aplikazio nabarmenduak", "Supported apps" : "Onartutako aplikazioak", "manual-install apps cannot be updated" : "eskuz instalatutako aplikazioak ezin dira eguneratu", + "{progress}% Deploying" : "{progress}% zabaltzen", + "{progress}% Initializing" : "{progress}% hasieratzen", "Healthchecking" : "Osasun-kontrola", "Deploy and Enable" : "Zabaldu eta gaitu", "Enable" : "Aktibatu", "Disable" : "Desaktibatu", "Allow untested app" : "Baimendu probatu gabeko aplikazioa", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikazio hau ez dago zure Nextcloud bertsioarekin bateragarri bezala markatuta. Jarraitzen baduzu aplikazioa instalatu egingo duzu. Kontuan izan agian aplikazioak ez duela ondo funtzionatuko.", + "Your ExApps" : "Zure ExApp-ak", "An error occurred during the request. Unable to proceed." : "Errorea gertatu da eskaeran. Ezin da jarraitu.", "The app has been enabled but needs to be updated." : "Aplikazioa gaitu da baina eguneratzea behar du.", "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako" diff --git a/l10n/eu.json b/l10n/eu.json index b75a85c8..40abc98f 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -16,25 +16,40 @@ "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", + "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", "Default" : "Lehenetsia", "Edit" : "Aldatu", "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Deploy Daemon" : "Zabaldu daimona", + "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", "Protocol" : "Protokoloa", "Host" : "Ostalaria", + "Deploy config" : "Zabaldu konfigurazioa", + "Docker network" : "Docker sarea", "Nextcloud URL" : "Nextcloud URLa", + "HaProxy password" : "HaProxy pasahitza", "GPUs support" : "GPUen bateragarritasuna", "Compute device" : "Konputazio gailua", "Additional options" : "Aukera gehiago", + "Verify connection" : "Egiaztatu konexioa", + "Register Daemon" : "Erregistratu daimona", + "More info" : "Informazio gehiago", + "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", "Display name" : "Erakusteko izena", + "Deployment method" : "Zabalketa metodoa", + "Daemon host" : "Daimonaren ostalaria", + "Enable https" : "Gaitu https", "Network" : "Sarea", + "Additional option" : "Aukera gehiago", + "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", "Save" : "Gorde", "Register" : "Erregistratu", + "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", @@ -76,12 +91,15 @@ "Featured apps" : "Aplikazio nabarmenduak", "Supported apps" : "Onartutako aplikazioak", "manual-install apps cannot be updated" : "eskuz instalatutako aplikazioak ezin dira eguneratu", + "{progress}% Deploying" : "{progress}% zabaltzen", + "{progress}% Initializing" : "{progress}% hasieratzen", "Healthchecking" : "Osasun-kontrola", "Deploy and Enable" : "Zabaldu eta gaitu", "Enable" : "Aktibatu", "Disable" : "Desaktibatu", "Allow untested app" : "Baimendu probatu gabeko aplikazioa", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikazio hau ez dago zure Nextcloud bertsioarekin bateragarri bezala markatuta. Jarraitzen baduzu aplikazioa instalatu egingo duzu. Kontuan izan agian aplikazioak ez duela ondo funtzionatuko.", + "Your ExApps" : "Zure ExApp-ak", "An error occurred during the request. Unable to proceed." : "Errorea gertatu da eskaeran. Ezin da jarraitu.", "The app has been enabled but needs to be updated." : "Aplikazioa gaitu da baina eguneratzea behar du.", "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako" diff --git a/l10n/fr.js b/l10n/fr.js index 7e7265ef..6188ea73 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -59,6 +59,7 @@ OC.L10N.register( "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", "GPUs support" : "Prise en charge des cartes graphiques", + "Compute device" : "Equipement de calcul", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", diff --git a/l10n/fr.json b/l10n/fr.json index 3a9b7b8c..43632167 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -57,6 +57,7 @@ "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", "GPUs support" : "Prise en charge des cartes graphiques", + "Compute device" : "Equipement de calcul", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Daemon connection successful" : "Connexion au Deamon réussie", From 03e6e0c1a6c61eded74c9ec3a38c161bad41ee67 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 8 Dec 2024 00:44:56 +0000 Subject: [PATCH 050/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/nl.js | 3 +++ l10n/nl.json | 3 +++ l10n/sk.js | 1 + l10n/sk.json | 1 + 4 files changed, 8 insertions(+) diff --git a/l10n/nl.js b/l10n/nl.js index 994cd2ff..c9a14e32 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -52,10 +52,13 @@ OC.L10N.register( "Disabled apps" : "Uitgeschakelde apps", "Updates" : "Updates", "Featured apps" : "Aanbevolen apps", + "Supported apps" : "Ondersteunde apps", "Enable" : "Inschakelen", "Disable" : "Uitschakelen", + "Allow untested app" : "Niet-geteste apps toestaan", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Deze is niet aangeduid als compatibel met jouw versie van Nextcloud. Als je verdergaat, zal je de app kunnen installeren. Let op dat de app misschien niet werkt zoals verwacht.", "An error occurred during the request. Unable to proceed." : "Er is een fout opgetreden tijdens het verzoek. Kan niet doorgaan.", + "The app has been enabled but needs to be updated." : "De app is ingeschakeld maar moet geüpdated worden.", "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nl.json b/l10n/nl.json index a031a0a0..528e9f32 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -50,10 +50,13 @@ "Disabled apps" : "Uitgeschakelde apps", "Updates" : "Updates", "Featured apps" : "Aanbevolen apps", + "Supported apps" : "Ondersteunde apps", "Enable" : "Inschakelen", "Disable" : "Uitschakelen", + "Allow untested app" : "Niet-geteste apps toestaan", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Deze is niet aangeduid als compatibel met jouw versie van Nextcloud. Als je verdergaat, zal je de app kunnen installeren. Let op dat de app misschien niet werkt zoals verwacht.", "An error occurred during the request. Unable to proceed." : "Er is een fout opgetreden tijdens het verzoek. Kan niet doorgaan.", + "The app has been enabled but needs to be updated." : "De app is ingeschakeld maar moet geüpdated worden.", "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sk.js b/l10n/sk.js index 3d801b7e..22210143 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -7,6 +7,7 @@ OC.L10N.register( "Nextcloud AppAPI" : "Nextcloud AppAPI", "Cancel" : "Zrušiť", "Delete" : "Vymazať", + "Default" : "Predvolené", "Edit" : "Upraviť", "Deploy Daemon" : "Nasadiť proces služby", "Name" : "Názov", diff --git a/l10n/sk.json b/l10n/sk.json index 55a8a517..83189099 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -5,6 +5,7 @@ "Nextcloud AppAPI" : "Nextcloud AppAPI", "Cancel" : "Zrušiť", "Delete" : "Vymazať", + "Default" : "Predvolené", "Edit" : "Upraviť", "Deploy Daemon" : "Nasadiť proces služby", "Name" : "Názov", From 5a824073ad70ddb0a1c26f6e389accdb200ce9b9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 9 Dec 2024 00:28:12 +0000 Subject: [PATCH 051/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 5 +++++ l10n/fr.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index 6188ea73..f673f36e 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -96,9 +96,13 @@ OC.L10N.register( "Register Deploy Daemon" : "Enregistrer le service de déploiement", "Daemon configuration template" : "Modèle de configuration de Daemon", "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", + "Daemon registration form" : "Formulaire d'inscription du service", + "Unique Deploy Daemon Name" : "Nom unique de déploiement du service", "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", + "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", "Daemon host" : "Hôte du Deamon", + "Set daemon as default" : "Définir comme service par défaut", "Set as default daemon" : "Définir ce deamon par défaut", "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", @@ -119,6 +123,7 @@ OC.L10N.register( "Check connection" : "Vérifier la connexion", "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un service du même nom existe déjà", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "With https enabled network is set to host" : "Avec https activé, le réseau est configuré pour être héberger", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", diff --git a/l10n/fr.json b/l10n/fr.json index 43632167..50d5c9ba 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -94,9 +94,13 @@ "Register Deploy Daemon" : "Enregistrer le service de déploiement", "Daemon configuration template" : "Modèle de configuration de Daemon", "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", + "Daemon registration form" : "Formulaire d'inscription du service", + "Unique Deploy Daemon Name" : "Nom unique de déploiement du service", "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", + "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", "Daemon host" : "Hôte du Deamon", + "Set daemon as default" : "Définir comme service par défaut", "Set as default daemon" : "Définir ce deamon par défaut", "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", @@ -117,6 +121,7 @@ "Check connection" : "Vérifier la connexion", "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un service du même nom existe déjà", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "With https enabled network is set to host" : "Avec https activé, le réseau est configuré pour être héberger", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", From 61da806476c3c337201e3c822a0d46ba46208ee2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 11 Dec 2024 00:28:40 +0000 Subject: [PATCH 052/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/nl.js | 4 ++++ l10n/nl.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/nl.js b/l10n/nl.js index c9a14e32..199c9bb7 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -8,9 +8,11 @@ OC.L10N.register( "Default" : "Standaard", "Set as default" : "Zet as standaard", "Edit" : "Bewerken", + "Deploy Daemon" : "Daemon implementeren", "Name" : "Naam", "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "GPUs support", "More info" : "Meer info", "Enabled" : "Ingeschakeld", "Network" : "Netwerk", @@ -41,6 +43,7 @@ OC.L10N.register( "Level" : "Niveau", "Actions" : "Acties", "Results from other categories" : "Resultaten van andere categorieën", + "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", "Your apps" : "Jouw apps", @@ -53,6 +56,7 @@ OC.L10N.register( "Updates" : "Updates", "Featured apps" : "Aanbevolen apps", "Supported apps" : "Ondersteunde apps", + "Deploy and Enable" : "Implementeren en inschakelen", "Enable" : "Inschakelen", "Disable" : "Uitschakelen", "Allow untested app" : "Niet-geteste apps toestaan", diff --git a/l10n/nl.json b/l10n/nl.json index 528e9f32..39221a0c 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -6,9 +6,11 @@ "Default" : "Standaard", "Set as default" : "Zet as standaard", "Edit" : "Bewerken", + "Deploy Daemon" : "Daemon implementeren", "Name" : "Naam", "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "GPUs support", "More info" : "Meer info", "Enabled" : "Ingeschakeld", "Network" : "Netwerk", @@ -39,6 +41,7 @@ "Level" : "Niveau", "Actions" : "Acties", "Results from other categories" : "Resultaten van andere categorieën", + "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", "Your apps" : "Jouw apps", @@ -51,6 +54,7 @@ "Updates" : "Updates", "Featured apps" : "Aanbevolen apps", "Supported apps" : "Ondersteunde apps", + "Deploy and Enable" : "Implementeren en inschakelen", "Enable" : "Inschakelen", "Disable" : "Uitschakelen", "Allow untested app" : "Niet-geteste apps toestaan", From 1e54ab5afae9525bfac069f58601a8ec726b5da4 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 14 Dec 2024 00:28:32 +0000 Subject: [PATCH 053/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sr.js | 2 +- l10n/sr.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/sr.js b/l10n/sr.js index ee4d8df9..41e327a7 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -33,7 +33,7 @@ OC.L10N.register( "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", "External Apps management" : "Управљање спољним апликацијама", - "Admin options saved" : "Сауване су админ опције", + "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", diff --git a/l10n/sr.json b/l10n/sr.json index 83976431..510bb9fa 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -31,7 +31,7 @@ "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", "External Apps management" : "Управљање спољним апликацијама", - "Admin options saved" : "Сауване су админ опције", + "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", From 1054c0ab09eaa2a42820ba1e1320f7c656688492 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 16 Dec 2024 00:28:21 +0000 Subject: [PATCH 054/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ug.js | 14 +++++++------- l10n/ug.json | 14 +++++++------- l10n/zh_CN.js | 6 ++++++ l10n/zh_CN.json | 6 ++++++ 4 files changed, 26 insertions(+), 14 deletions(-) diff --git a/l10n/ug.js b/l10n/ug.js index 665c2094..0626dd20 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -92,7 +92,7 @@ OC.L10N.register( "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "ExApp قوزغىتىلغان پائالىيەتنى مۇۋەپپەقىيەتلىك بىر تەرەپ قىلغان-قىلمىغانلىقىنى تەكشۈرۈڭ", "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", - "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{قەدەم}\" قەدەمدە مەغلۇپ بولدى", + "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", @@ -136,7 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", - "Update to {version}" : "{نەشرىگە يېڭىلاش}", + "Update to {version}" : "{version} يېڭىلاش", "Remove" : "ئۆچۈرۈڭ", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ تۆۋەن Nextcloud نەشرى يوق. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", @@ -149,12 +149,12 @@ OC.L10N.register( "Admin documentation" : "باشقۇرۇش ھۆججىتى", "Developer documentation" : "ئاچقۇچىلار ھۆججىتى", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore غا تىزىملاتمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", - "{license}-licensed" : "{ئىجازەتنامە", + "{license}-licensed" : "لىك {license}", "This app is supported via your current Nextcloud subscription." : "بۇ ئەپ نۆۋەتتىكى Nextcloud مۇشتەرىلىكىڭىز ئارقىلىق قوللىنىدۇ.", "Supported" : "قوللىدى", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ئالاھىدە ئەپلەر جەمئىيەت تەرىپىدىن ۋە تەرەققىي قىلدۇرۇلغان. ئۇلار مەركىزى ئىقتىدار بىلەن تەمىنلەيدۇ ھەمدە ئىشلەپچىقىرىشقا تەييار.", "Featured" : "Featured", - "Update to {update}" : "{يېڭىلاش} غا يېڭىلاش", + "Update to {update}" : "{update} غا يېڭىلاش", "All ExApps are up-to-date." : "بارلىق ExApps ئەڭ يېڭى.", "Default Deploy daemon is not accessible" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش daemon نى زىيارەت قىلغىلى بولمايدۇ", "Icon" : "سىنبەلگە", @@ -170,15 +170,15 @@ OC.L10N.register( "Documentation" : "قوللانما", "Details" : "تەپسىلاتى", "Changelog" : "Changelog", - "by {author}\n{license}" : "by {ئاپتور}\n{ئىجازەت}", + "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Active apps" : "ئاكتىپ ئەپلەر", "Disabled apps" : "چەكلەنگەن ئەپلەر", "Updates" : "يېڭىلانمىلار", "Featured apps" : "ئالاھىدە ئەپلەر", "Supported apps" : "قوللايدىغان ئەپلەر", "manual-install apps cannot be updated" : "قولدا قاچىلاش ئەپلىرىنى يېڭىلاشقا بولمايدۇ", - "{progress}% Deploying" : "{ئىلگىرىلەش}% ئورۇنلاشتۇرۇش", - "{progress}% Initializing" : "{ئىلگىرىلەش}% باشلاش", + "{progress}% Deploying" : "{progress}% ئورۇنلاشتۇرۇش", + "{progress}% Initializing" : "{progress}% باشلاش", "Healthchecking" : "سالامەتلىك تەكشۈرتۈش", "Deploy and Enable" : "ئورۇنلاشتۇرۇش ۋە قوزغىتىش", "Enable" : "قوزغىتىش", diff --git a/l10n/ug.json b/l10n/ug.json index 55767f43..8af61aa7 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -90,7 +90,7 @@ "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "ExApp قوزغىتىلغان پائالىيەتنى مۇۋەپپەقىيەتلىك بىر تەرەپ قىلغان-قىلمىغانلىقىنى تەكشۈرۈڭ", "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", - "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{قەدەم}\" قەدەمدە مەغلۇپ بولدى", + "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", @@ -134,7 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", - "Update to {version}" : "{نەشرىگە يېڭىلاش}", + "Update to {version}" : "{version} يېڭىلاش", "Remove" : "ئۆچۈرۈڭ", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ تۆۋەن Nextcloud نەشرى يوق. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", @@ -147,12 +147,12 @@ "Admin documentation" : "باشقۇرۇش ھۆججىتى", "Developer documentation" : "ئاچقۇچىلار ھۆججىتى", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore غا تىزىملاتمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", - "{license}-licensed" : "{ئىجازەتنامە", + "{license}-licensed" : "لىك {license}", "This app is supported via your current Nextcloud subscription." : "بۇ ئەپ نۆۋەتتىكى Nextcloud مۇشتەرىلىكىڭىز ئارقىلىق قوللىنىدۇ.", "Supported" : "قوللىدى", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ئالاھىدە ئەپلەر جەمئىيەت تەرىپىدىن ۋە تەرەققىي قىلدۇرۇلغان. ئۇلار مەركىزى ئىقتىدار بىلەن تەمىنلەيدۇ ھەمدە ئىشلەپچىقىرىشقا تەييار.", "Featured" : "Featured", - "Update to {update}" : "{يېڭىلاش} غا يېڭىلاش", + "Update to {update}" : "{update} غا يېڭىلاش", "All ExApps are up-to-date." : "بارلىق ExApps ئەڭ يېڭى.", "Default Deploy daemon is not accessible" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش daemon نى زىيارەت قىلغىلى بولمايدۇ", "Icon" : "سىنبەلگە", @@ -168,15 +168,15 @@ "Documentation" : "قوللانما", "Details" : "تەپسىلاتى", "Changelog" : "Changelog", - "by {author}\n{license}" : "by {ئاپتور}\n{ئىجازەت}", + "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Active apps" : "ئاكتىپ ئەپلەر", "Disabled apps" : "چەكلەنگەن ئەپلەر", "Updates" : "يېڭىلانمىلار", "Featured apps" : "ئالاھىدە ئەپلەر", "Supported apps" : "قوللايدىغان ئەپلەر", "manual-install apps cannot be updated" : "قولدا قاچىلاش ئەپلىرىنى يېڭىلاشقا بولمايدۇ", - "{progress}% Deploying" : "{ئىلگىرىلەش}% ئورۇنلاشتۇرۇش", - "{progress}% Initializing" : "{ئىلگىرىلەش}% باشلاش", + "{progress}% Deploying" : "{progress}% ئورۇنلاشتۇرۇش", + "{progress}% Initializing" : "{progress}% باشلاش", "Healthchecking" : "سالامەتلىك تەكشۈرتۈش", "Deploy and Enable" : "ئورۇنلاشتۇرۇش ۋە قوزغىتىش", "Enable" : "قوزغىتىش", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 92c66099..5932e08a 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -28,10 +28,12 @@ OC.L10N.register( "Cancel" : "取消", "Delete" : "删除", "Edit" : "编辑", + "Deploy Daemon" : "部署守护进程", "Name" : "名称", "Host" : "主机", "Nextcloud URL" : "Nextcloud URL ", "GPUs support" : "GPU 支持", + "Compute device" : "计算设备", "Registered Deploy daemons list" : "已注册的部署守护进程列表", "No Deploy daemons configured" : "没有部署守护进程配置", "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", @@ -63,6 +65,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "特色应用由社区并在社区内开发。 它们提供了中心功能,并准备投入生产使用。", "Featured" : "精选", "Update to {update}" : "更新至 {update}", + "Default Deploy daemon is not accessible" : "默认部署守护程序不可访问", "Icon" : "图标", "Version" : "版本", "Daemon" : "守护进程", @@ -82,11 +85,14 @@ OC.L10N.register( "Updates" : "更新", "Featured apps" : "精选应用", "Supported apps" : "支持的应用", + "manual-install apps cannot be updated" : "手动安装的应用程序无法更新", + "Deploy and Enable" : "部署并启用", "Enable" : "开启", "Disable" : "禁用", "Allow untested app" : "允许未经测试的应用", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "此应用被标记为与您的 Nextcloud 版本不兼容。如果您要继续,您仍可安装此应用。请注意此应用可能不会正常工作。", "An error occurred during the request. Unable to proceed." : "请求期间发生错误。无法继续。", + "The app has been enabled but needs to be updated." : "该应用程序已启用但需要更新。", "Error: This app cannot be enabled because it makes the server unstable" : "错误:这个应用程序不能被启用,因为它使服务器不稳定 " }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 8e5c24b2..e635d1ff 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -26,10 +26,12 @@ "Cancel" : "取消", "Delete" : "删除", "Edit" : "编辑", + "Deploy Daemon" : "部署守护进程", "Name" : "名称", "Host" : "主机", "Nextcloud URL" : "Nextcloud URL ", "GPUs support" : "GPU 支持", + "Compute device" : "计算设备", "Registered Deploy daemons list" : "已注册的部署守护进程列表", "No Deploy daemons configured" : "没有部署守护进程配置", "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", @@ -61,6 +63,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "特色应用由社区并在社区内开发。 它们提供了中心功能,并准备投入生产使用。", "Featured" : "精选", "Update to {update}" : "更新至 {update}", + "Default Deploy daemon is not accessible" : "默认部署守护程序不可访问", "Icon" : "图标", "Version" : "版本", "Daemon" : "守护进程", @@ -80,11 +83,14 @@ "Updates" : "更新", "Featured apps" : "精选应用", "Supported apps" : "支持的应用", + "manual-install apps cannot be updated" : "手动安装的应用程序无法更新", + "Deploy and Enable" : "部署并启用", "Enable" : "开启", "Disable" : "禁用", "Allow untested app" : "允许未经测试的应用", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "此应用被标记为与您的 Nextcloud 版本不兼容。如果您要继续,您仍可安装此应用。请注意此应用可能不会正常工作。", "An error occurred during the request. Unable to proceed." : "请求期间发生错误。无法继续。", + "The app has been enabled but needs to be updated." : "该应用程序已启用但需要更新。", "Error: This app cannot be enabled because it makes the server unstable" : "错误:这个应用程序不能被启用,因为它使服务器不稳定 " },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file From bd601060cd820f92868c50aceeb17fb4ac60346a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 18 Dec 2024 00:29:29 +0000 Subject: [PATCH 055/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 10 +++++----- l10n/fr.json | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/l10n/fr.js b/l10n/fr.js index f673f36e..befd73d7 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -83,14 +83,14 @@ OC.L10N.register( "Check if the image is successfully pulled" : "Vérifiez si l'image est extraite avec succès", "Container started" : "Conteneur démarré", "Check if the image successfully pulled and container is created and started" : "Vérifiez si l'image a été extraite avec succès et si le conteneur est créé et démarré", - "Heartbeat" : "Pulsation", - "Check for the heartbeat is finished and healthy" : "Vérifiez que le rythme cardiaque est fini et sain", + "Heartbeat" : "Test de vie", + "Check for the heartbeat is finished and healthy" : "Vérifiez que le test de vie est concluant", "Init step" : "Étape d'initialisation", "Wait for initialization step to finish" : "Attendez la fin de l'étape d'initialisation", "Enabled" : "Activé", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Vérifiez si ExApp a géré avec succès l'événement activé et a enregistré tous les éléments correctement", "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", - "Deploy test passed successfully!" : "Test de déploiement réussi!", + "Deploy test passed successfully!" : "Test de déploiement réussi !", "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", "Edit Deploy Daemon" : "Modifier le déploiement Daemon", "Register Deploy Daemon" : "Enregistrer le service de déploiement", @@ -125,7 +125,7 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un service du même nom existe déjà", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "With https enabled network is set to host" : "Avec https activé, le réseau est configuré pour être héberger", + "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", @@ -137,7 +137,7 @@ OC.L10N.register( "External Apps" : "Applications externes", "Update to {version}" : "Mettre à jour vers {version}", "Remove" : "Retirer", - "Delete data on remove" : "Suppression des données retirer", + "Delete data on remove" : "Supprimer les données lors de la désinstallation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", diff --git a/l10n/fr.json b/l10n/fr.json index 50d5c9ba..fd014d21 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -81,14 +81,14 @@ "Check if the image is successfully pulled" : "Vérifiez si l'image est extraite avec succès", "Container started" : "Conteneur démarré", "Check if the image successfully pulled and container is created and started" : "Vérifiez si l'image a été extraite avec succès et si le conteneur est créé et démarré", - "Heartbeat" : "Pulsation", - "Check for the heartbeat is finished and healthy" : "Vérifiez que le rythme cardiaque est fini et sain", + "Heartbeat" : "Test de vie", + "Check for the heartbeat is finished and healthy" : "Vérifiez que le test de vie est concluant", "Init step" : "Étape d'initialisation", "Wait for initialization step to finish" : "Attendez la fin de l'étape d'initialisation", "Enabled" : "Activé", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Vérifiez si ExApp a géré avec succès l'événement activé et a enregistré tous les éléments correctement", "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", - "Deploy test passed successfully!" : "Test de déploiement réussi!", + "Deploy test passed successfully!" : "Test de déploiement réussi !", "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", "Edit Deploy Daemon" : "Modifier le déploiement Daemon", "Register Deploy Daemon" : "Enregistrer le service de déploiement", @@ -123,7 +123,7 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un service du même nom existe déjà", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "With https enabled network is set to host" : "Avec https activé, le réseau est configuré pour être héberger", + "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", @@ -135,7 +135,7 @@ "External Apps" : "Applications externes", "Update to {version}" : "Mettre à jour vers {version}", "Remove" : "Retirer", - "Delete data on remove" : "Suppression des données retirer", + "Delete data on remove" : "Supprimer les données lors de la désinstallation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", From 78fc4909cf8bd184f16b4880778298a2abf988ba Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 23 Dec 2024 00:28:08 +0000 Subject: [PATCH 056/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ru.js | 6 ++++-- l10n/ru.json | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/l10n/ru.js b/l10n/ru.js index 90551109..87e7dc80 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Ошибка при запуске установки ExApp", "ExApp failed to register, check the NC logs" : "ExApp не удалось зарегистрироваться, проверьте журналы NC", "ExApp not found, failed to get status" : "ExApp не найден, не удалось получить статус", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение установлено не из App Store. Дополнительная информация отсутствует. Разрешены только действия по включению/отключению и удалению.", "Could not perform installation of ExApp" : "Не удалось выполнить установку ExApp", "Failed to enable ExApp" : "Не удалось включить ExApp", "Failed to disable ExApp" : "Не удалось отключить ExApp", @@ -131,9 +132,9 @@ OC.L10N.register( "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", - "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте логи", + "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", - "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте логи", + "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", "External Apps" : "Внешние приложения", "Update to {version}" : "Обновление до версии {version}", "Remove" : "Удалить", @@ -163,6 +164,7 @@ OC.L10N.register( "Actions" : "Действия", "Results from other categories" : "Результаты из других категорий", "No apps found" : "Приложения не найдены", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["Для %n приложения доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление"], "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], "Type" : "Тип", "Display Name" : "Отображаемое имя", diff --git a/l10n/ru.json b/l10n/ru.json index 1678683d..cf71f462 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "Ошибка при запуске установки ExApp", "ExApp failed to register, check the NC logs" : "ExApp не удалось зарегистрироваться, проверьте журналы NC", "ExApp not found, failed to get status" : "ExApp не найден, не удалось получить статус", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение установлено не из App Store. Дополнительная информация отсутствует. Разрешены только действия по включению/отключению и удалению.", "Could not perform installation of ExApp" : "Не удалось выполнить установку ExApp", "Failed to enable ExApp" : "Не удалось включить ExApp", "Failed to disable ExApp" : "Не удалось отключить ExApp", @@ -129,9 +130,9 @@ "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", - "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте логи", + "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", - "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте логи", + "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", "External Apps" : "Внешние приложения", "Update to {version}" : "Обновление до версии {version}", "Remove" : "Удалить", @@ -161,6 +162,7 @@ "Actions" : "Действия", "Results from other categories" : "Результаты из других категорий", "No apps found" : "Приложения не найдены", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["Для %n приложения доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление"], "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], "Type" : "Тип", "Display Name" : "Отображаемое имя", From c1cbcdc085c5499c55b32930a117dc27f7e1c821 Mon Sep 17 00:00:00 2001 From: Oleksander Piskun Date: Fri, 3 Jan 2025 14:32:21 +0300 Subject: [PATCH 057/244] v3.2.3 Signed-off-by: Oleksander Piskun --- CHANGELOG.md | 7 +++++++ appinfo/info.xml | 29 +++++++++++------------------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce88262d..5cf0f4c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## [3.2.3 - 2025-01-03] + +### Fixed + +- Encrypt sensitive values in the DB. #455 +- Other small bugfixes. + ## [3.2.1 - 2024-09-27] Last release to pin Nextcloud versions. Since NC 30.0.1 AppAPI will be bundled with server. diff --git a/appinfo/info.xml b/appinfo/info.xml index 09b4607f..99210b4c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,16 +14,9 @@ application development, deployment, and management. It introduces a new methodology that allows developers to create applications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development. +### Bundled App -### List of applications that require AppAPI: - -- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example) -- [upscaler_example](https://github.com/cloud-py-api/upscaler_example) -- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example) -- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot) -- [SummarAI](https://github.com/nextcloud/sumupbot) - -_If you wish to develop an application, we will gladly help and assist you._ +**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.** ### Support @@ -49,18 +42,18 @@ to join us in shaping a more versatile, stable, and secure app landscape. Alexander Piskun AppAPI - https://cloud-py-api.github.io/app_api/ + https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/index.html integration tools - https://github.com/cloud-py-api/app_api - https://github.com/cloud-py-api/app_api/discussions - https://github.com/cloud-py-api/app_api/issues - https://github.com/cloud-py-api/app_api.git - https://raw.githubusercontent.com/cloud-py-api/app_api/main/screenshots/app_api_1.png - https://raw.githubusercontent.com/cloud-py-api/app_api/main/screenshots/app_api_2.png - https://raw.githubusercontent.com/cloud-py-api/app_api/main/screenshots/app_api_3.png - https://raw.githubusercontent.com/cloud-py-api/app_api/main/screenshots/app_api_4.png + https://github.com/nextcloud/app_api + https://github.com/nextcloud/app_api/discussions + https://github.com/nextcloud/app_api/issues + https://github.com/nextcloud/app_api.git + https://raw.githubusercontent.com/nextcloud/app_api/main/screenshots/app_api_1.png + https://raw.githubusercontent.com/nextcloud/app_api/main/screenshots/app_api_2.png + https://raw.githubusercontent.com/nextcloud/app_api/main/screenshots/app_api_3.png + https://raw.githubusercontent.com/nextcloud/app_api/main/screenshots/app_api_4.png From 0fe97d91fea2e240b34397deac2fd763a2e9078b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 4 Jan 2025 00:28:56 +0000 Subject: [PATCH 058/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pl.js | 21 +++++++++++++++++++++ l10n/pl.json | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/l10n/pl.js b/l10n/pl.js index 757e8017..7ab0b2d7 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -2,6 +2,12 @@ OC.L10N.register( "app_api", { "Daemon config not found" : "Nie znaleziono konfiguracji demona", + "AppAPI authentication failed" : "Uwierzytelnienie AppAPI nie powiodło się", + "AppAPI ExApp notifier" : "Powiadomienie AppAPI ExApp", + "AppAPI" : "AppAPI", + "Nextcloud AppAPI" : "AppAPI Nextcloud", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", @@ -21,13 +27,26 @@ OC.L10N.register( "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", + "More info" : "Więcej informacji", "Enabled" : "Włączone", "Display name" : "Wyświetlana nazwa", + "Deployment method" : "Metoda wdrażania", + "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "Network" : "Sieć", + "Docker network name" : "Nazwa sieci Dockera", + "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", + "Additional option" : "Opcja dodatkowa", + "Add additional option" : "Dodaj dodatkową opcję", + "Option key is required" : "Wymagany jest klucz opcji", + "Option value" : "Wartość opcji", + "Option value is required" : "Wymagana jest wartość opcji", "Confirm" : "Potwierdź", "Save" : "Zapisz", "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", + "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", @@ -51,6 +70,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Polecane aplikacje są tworzone przez społeczność. Oferują główną funkcjonalność i są gotowe do użycia w produkcji.", "Featured" : "Polecane", "Update to {update}" : "Zaktualizuj do {update}", + "All ExApps are up-to-date." : "Wszystkie ExApps są aktualne.", "Default Deploy daemon is not accessible" : "Domyślny demon wdrażania jest niedostępny", "Icon" : "Ikona", "Version" : "Wersja", @@ -79,6 +99,7 @@ OC.L10N.register( "Disable" : "Wyłącz", "Allow untested app" : "Zezwól na nietestowane aplikacje", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ta aplikacja jest niezgodna z wersją Nextcloud. Przy dalszej kontynuacji, możesz pozwolić na zainstalowanie tej aplikacji. Pamiętaj, że aplikacja może nie działać zgodnie z oczekiwaniami.", + "Your ExApps" : "Twoje ExApps", "An error occurred during the request. Unable to proceed." : "Wystąpił błąd podczas żądania. Nie można kontynuować.", "The app has been enabled but needs to be updated." : "Aplikacja została włączona, ale wymaga aktualizacji.", "Error: This app cannot be enabled because it makes the server unstable" : "Błąd: Ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera" diff --git a/l10n/pl.json b/l10n/pl.json index 5060639a..805e0ad2 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -1,5 +1,11 @@ { "translations": { "Daemon config not found" : "Nie znaleziono konfiguracji demona", + "AppAPI authentication failed" : "Uwierzytelnienie AppAPI nie powiodło się", + "AppAPI ExApp notifier" : "Powiadomienie AppAPI ExApp", + "AppAPI" : "AppAPI", + "Nextcloud AppAPI" : "AppAPI Nextcloud", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", @@ -19,13 +25,26 @@ "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", + "More info" : "Więcej informacji", "Enabled" : "Włączone", "Display name" : "Wyświetlana nazwa", + "Deployment method" : "Metoda wdrażania", + "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "Network" : "Sieć", + "Docker network name" : "Nazwa sieci Dockera", + "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", + "Additional option" : "Opcja dodatkowa", + "Add additional option" : "Dodaj dodatkową opcję", + "Option key is required" : "Wymagany jest klucz opcji", + "Option value" : "Wartość opcji", + "Option value is required" : "Wymagana jest wartość opcji", "Confirm" : "Potwierdź", "Save" : "Zapisz", "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", + "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", @@ -49,6 +68,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Polecane aplikacje są tworzone przez społeczność. Oferują główną funkcjonalność i są gotowe do użycia w produkcji.", "Featured" : "Polecane", "Update to {update}" : "Zaktualizuj do {update}", + "All ExApps are up-to-date." : "Wszystkie ExApps są aktualne.", "Default Deploy daemon is not accessible" : "Domyślny demon wdrażania jest niedostępny", "Icon" : "Ikona", "Version" : "Wersja", @@ -77,6 +97,7 @@ "Disable" : "Wyłącz", "Allow untested app" : "Zezwól na nietestowane aplikacje", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ta aplikacja jest niezgodna z wersją Nextcloud. Przy dalszej kontynuacji, możesz pozwolić na zainstalowanie tej aplikacji. Pamiętaj, że aplikacja może nie działać zgodnie z oczekiwaniami.", + "Your ExApps" : "Twoje ExApps", "An error occurred during the request. Unable to proceed." : "Wystąpił błąd podczas żądania. Nie można kontynuować.", "The app has been enabled but needs to be updated." : "Aplikacja została włączona, ale wymaga aktualizacji.", "Error: This app cannot be enabled because it makes the server unstable" : "Błąd: Ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera" From acbc9ebbe4ea5af9a06ca508f1ffd347266a04d2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 5 Jan 2025 00:28:35 +0000 Subject: [PATCH 059/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 1 + l10n/ar.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/tr.js | 1 + l10n/tr.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + 10 files changed, 10 insertions(+) diff --git a/l10n/ar.js b/l10n/ar.js index b042c539..353639d4 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", "External Apps" : "تطبيقات خارجية", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "Update to {version}" : "التحديث إلى {version}", "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", diff --git a/l10n/ar.json b/l10n/ar.json index 83902efa..15775101 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", "External Apps" : "تطبيقات خارجية", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "Update to {version}" : "التحديث إلى {version}", "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 536715c0..85ddc55c 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "External Apps" : "Externe Apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 74afb3d1..f84ac106 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "External Apps" : "Externe Apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index e53012c0..093ac5bc 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", "External Apps" : "External Apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Delete data on remove" : "Delete data on remove", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 979aa304..17a61b60 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", "External Apps" : "External Apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Delete data on remove" : "Delete data on remove", diff --git a/l10n/tr.js b/l10n/tr.js index 096786d0..730bf0c9 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", "External Apps" : "Dış uygulamalar", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "Update to {version}" : "{version} sürümüne güncelleniyor", "Remove" : "Kaldır", "Delete data on remove" : "Kaldırıldığında veriler silinsin", diff --git a/l10n/tr.json b/l10n/tr.json index 16f392be..26248b2e 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", "External Apps" : "Dış uygulamalar", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "Update to {version}" : "{version} sürümüne güncelleniyor", "Remove" : "Kaldır", "Delete data on remove" : "Kaldırıldığında veriler silinsin", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 62af40e1..47a3cbe1 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index ec97b577..134ebf4a 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", From 0f7a9e4d045ff0586d1068d2b2b2c679cdf30050 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 6 Jan 2025 00:39:04 +0000 Subject: [PATCH 060/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ga.js | 1 + l10n/ga.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/ga.js b/l10n/ga.js index db0b2e4d..0df28cb8 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", "External Apps" : "Aipeanna Seachtrach", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "Update to {version}" : "Nuashonraigh go {version}", "Remove" : "Bain", "Delete data on remove" : "Scrios sonraí ar bhaint", diff --git a/l10n/ga.json b/l10n/ga.json index 62fb6a79..1660a3ce 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", "External Apps" : "Aipeanna Seachtrach", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "Update to {version}" : "Nuashonraigh go {version}", "Remove" : "Bain", "Delete data on remove" : "Scrios sonraí ar bhaint", From 951cf4d87e4b860626d5dd738a05b74b88b9a672 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 7 Jan 2025 00:27:48 +0000 Subject: [PATCH 061/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index c7880871..797acb83 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -136,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 0f0274e6..9a0f0f8a 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -134,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", From 6dc3989377273a75f13e4fbe4e19c9094c66b2cb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 8 Jan 2025 00:28:16 +0000 Subject: [PATCH 062/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- l10n/cs.js | 2 +- l10n/cs.json | 2 +- l10n/de.js | 2 +- l10n/de.json | 2 +- l10n/de_DE.js | 2 +- l10n/de_DE.json | 2 +- l10n/en_GB.js | 2 +- l10n/en_GB.json | 2 +- l10n/es.js | 2 +- l10n/es.json | 2 +- l10n/fr.js | 2 +- l10n/fr.json | 2 +- l10n/ga.js | 2 +- l10n/ga.json | 2 +- l10n/gl.js | 4 ++-- l10n/gl.json | 4 ++-- l10n/ko.js | 2 +- l10n/ko.json | 2 +- l10n/nb.js | 2 +- l10n/nb.json | 2 +- l10n/pl.js | 2 +- l10n/pl.json | 2 +- l10n/pt_BR.js | 2 +- l10n/pt_BR.json | 2 +- l10n/ru.js | 2 +- l10n/ru.json | 2 +- l10n/sr.js | 2 +- l10n/sr.json | 2 +- l10n/tr.js | 2 +- l10n/tr.json | 2 +- l10n/ug.js | 2 +- l10n/ug.json | 2 +- l10n/zh_HK.js | 2 +- l10n/zh_HK.json | 2 +- l10n/zh_TW.js | 2 +- l10n/zh_TW.json | 2 +- 38 files changed, 40 insertions(+), 40 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 353639d4..ccf1ffd2 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", - "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], "Type" : "النوع", "Display Name" : "إسم العرض", + "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", "Details" : "التفاصيل", diff --git a/l10n/ar.json b/l10n/ar.json index 15775101..3e887f58 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", - "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], "Type" : "النوع", "Display Name" : "إسم العرض", + "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", "Details" : "التفاصيل", diff --git a/l10n/cs.js b/l10n/cs.js index 678253e2..dd802e6a 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -125,7 +125,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", - "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", @@ -167,6 +166,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], "Type" : "Typ", "Display Name" : "Zobrazované jméno", + "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/cs.json b/l10n/cs.json index ff63d785..8e4db60f 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -123,7 +123,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", - "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", @@ -165,6 +164,7 @@ "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], "Type" : "Typ", "Display Name" : "Zobrazované jméno", + "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", diff --git a/l10n/de.js b/l10n/de.js index 348e666a..de50010c 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -168,6 +167,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/de.json b/l10n/de.json index 440a92ce..536a6e9d 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -166,6 +165,7 @@ "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 85ddc55c..c19b89aa 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index f84ac106..d39de711 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", "Details" : "Details", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 093ac5bc..6c4394ae 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon with this name already exists", "Password must be at least 12 characters long" : "Password must be at least 12 characters long", - "With https enabled network is set to host" : "With https enabled network is set to host", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", "URL should start with http:// or https://" : "URL should start with http:// or https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", "Display Name" : "Display Name", + "With https enabled network is set to host" : "With https enabled network is set to host", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 17a61b60..48d1d7dc 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon with this name already exists", "Password must be at least 12 characters long" : "Password must be at least 12 characters long", - "With https enabled network is set to host" : "With https enabled network is set to host", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", "URL should start with http:// or https://" : "URL should start with http:// or https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", "Display Name" : "Display Name", + "With https enabled network is set to host" : "With https enabled network is set to host", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", diff --git a/l10n/es.js b/l10n/es.js index 8a14066d..3f3e651b 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -123,7 +123,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", - "With https enabled network is set to host" : "Con https habilitado la red se establece a host", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", @@ -159,6 +158,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a mostrar", + "With https enabled network is set to host" : "Con https habilitado la red se establece a host", "Your apps" : "Tus apps", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/es.json b/l10n/es.json index 45c2d566..8a74ed02 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -121,7 +121,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", - "With https enabled network is set to host" : "Con https habilitado la red se establece a host", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", @@ -157,6 +156,7 @@ "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a mostrar", + "With https enabled network is set to host" : "Con https habilitado la red se establece a host", "Your apps" : "Tus apps", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/fr.js b/l10n/fr.js index befd73d7..f55e1a87 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -125,7 +125,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un service du même nom existe déjà", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", @@ -167,6 +166,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], "Type" : "Type", "Display Name" : "Nom affiché", + "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", diff --git a/l10n/fr.json b/l10n/fr.json index fd014d21..e637d64f 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -123,7 +123,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un service du même nom existe déjà", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", @@ -165,6 +164,7 @@ "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], "Type" : "Type", "Display Name" : "Nom affiché", + "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", diff --git a/l10n/ga.js b/l10n/ga.js index 0df28cb8..837b3f54 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", - "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], "Type" : "Cineál", "Display Name" : "Ainm taispeána", + "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", "Details" : "Sonraí", diff --git a/l10n/ga.json b/l10n/ga.json index 1660a3ce..0cd13e65 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", - "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], "Type" : "Cineál", "Display Name" : "Ainm taispeána", + "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", "Details" : "Sonraí", diff --git a/l10n/gl.js b/l10n/gl.js index a37db5b1..257ecc69 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -120,13 +120,12 @@ OC.L10N.register( "Option value is required" : "É necesario o valor da opción", "Confirm" : "Confirmar", "Save" : "Gardar", - "Register" : "Rexistrar", + "Register" : "Rexistrarse", "Check connection" : "Comprobar a conexión", "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", - "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", @@ -168,6 +167,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], "Type" : "Escribir", "Display Name" : "Nome para amosar", + "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/gl.json b/l10n/gl.json index 56a0119c..f7783084 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -118,13 +118,12 @@ "Option value is required" : "É necesario o valor da opción", "Confirm" : "Confirmar", "Save" : "Gardar", - "Register" : "Rexistrar", + "Register" : "Rexistrarse", "Check connection" : "Comprobar a conexión", "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", - "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", @@ -166,6 +165,7 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], "Type" : "Escribir", "Display Name" : "Nome para amosar", + "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", "Details" : "Detalles", diff --git a/l10n/ko.js b/l10n/ko.js index 56a09a09..ccb9e83d 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -123,7 +123,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", - "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", @@ -160,6 +159,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["모두 업데이트"], "Type" : "종류", "Display Name" : "표시 이름", + "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", "Your apps" : "내 앱", "Documentation" : "문서", "Details" : "세부사항", diff --git a/l10n/ko.json b/l10n/ko.json index b439602c..b21a4540 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -121,7 +121,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", - "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", @@ -158,6 +157,7 @@ "_Update_::_Update all_" : ["모두 업데이트"], "Type" : "종류", "Display Name" : "표시 이름", + "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", "Your apps" : "내 앱", "Documentation" : "문서", "Details" : "세부사항", diff --git a/l10n/nb.js b/l10n/nb.js index 397b6c13..ac2da564 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -125,7 +125,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", - "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", @@ -167,6 +166,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], "Type" : "Type", "Display Name" : "Visningsnavn", + "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", "Details" : "Detaljer", diff --git a/l10n/nb.json b/l10n/nb.json index d7a1037a..0fc01c95 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -123,7 +123,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", - "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", @@ -165,6 +164,7 @@ "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], "Type" : "Type", "Display Name" : "Visningsnavn", + "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", "Details" : "Detaljer", diff --git a/l10n/pl.js b/l10n/pl.js index 7ab0b2d7..630396a9 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -49,7 +49,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", - "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", @@ -82,6 +81,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", + "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", "Details" : "Szczegóły", diff --git a/l10n/pl.json b/l10n/pl.json index 805e0ad2..50966997 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -47,7 +47,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", - "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", "External Apps" : "Aplikacje zewnętrzne", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", @@ -80,6 +79,7 @@ "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", + "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", "Details" : "Szczegóły", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 5bb22bd8..9731611c 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", - "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", @@ -168,6 +167,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], "Type" : "Tipo", "Display Name" : "Nome", + "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 19fbc7e0..009b0e42 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", - "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", @@ -166,6 +165,7 @@ "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], "Type" : "Tipo", "Display Name" : "Nome", + "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/ru.js b/l10n/ru.js index 87e7dc80..2191f322 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", - "With https enabled network is set to host" : "При включенном https сеть настроена на хост", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", @@ -168,6 +167,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], "Type" : "Тип", "Display Name" : "Отображаемое имя", + "With https enabled network is set to host" : "При включенном https сеть настроена на хост", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", diff --git a/l10n/ru.json b/l10n/ru.json index cf71f462..9825d7dc 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", - "With https enabled network is set to host" : "При включенном https сеть настроена на хост", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", @@ -166,6 +165,7 @@ "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], "Type" : "Тип", "Display Name" : "Отображаемое имя", + "With https enabled network is set to host" : "При включенном https сеть настроена на хост", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", diff --git a/l10n/sr.js b/l10n/sr.js index 41e327a7..f976df9d 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Даемон са овим именом већ постоји", "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", - "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", @@ -168,6 +167,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], "Type" : "Тип", "Display Name" : "Име за приказ", + "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", "Your apps" : "Ваше апликације", "Documentation" : "Документација", "Details" : "Детаљи", diff --git a/l10n/sr.json b/l10n/sr.json index 510bb9fa..6b7eabb4 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Даемон са овим именом већ постоји", "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", - "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", @@ -166,6 +165,7 @@ "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], "Type" : "Тип", "Display Name" : "Име за приказ", + "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", "Your apps" : "Ваше апликације", "Documentation" : "Документација", "Details" : "Детаљи", diff --git a/l10n/tr.js b/l10n/tr.js index 730bf0c9..891e52f8 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], "Type" : "Tür", "Display Name" : "Görüntülenecek ad", + "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", "Details" : "Ayrıntılar", diff --git a/l10n/tr.json b/l10n/tr.json index 26248b2e..69d7ce8b 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], "Type" : "Tür", "Display Name" : "Görüntülenecek ad", + "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", "Details" : "Ayrıntılar", diff --git a/l10n/ug.js b/l10n/ug.js index 0626dd20..1ec651ca 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", - "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", @@ -166,6 +165,7 @@ OC.L10N.register( "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", + "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", "Details" : "تەپسىلاتى", diff --git a/l10n/ug.json b/l10n/ug.json index 8af61aa7..81fd88dc 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", - "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", @@ -164,6 +163,7 @@ "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", + "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", "Details" : "تەپسىلاتى", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 47a3cbe1..d5902bd9 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", "Your apps" : "您的應用程式", "Documentation" : "說明書", "Details" : "細節", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 134ebf4a..c29e7a02 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", "Your apps" : "您的應用程式", "Documentation" : "說明書", "Details" : "細節", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 797acb83..2f4491a2 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -126,7 +126,6 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -169,6 +168,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", "Your apps" : "您的應用程式", "Documentation" : "文件", "Details" : "詳細資訊", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 9a0f0f8a..601c8f13 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -124,7 +124,6 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -167,6 +166,7 @@ "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", "Your apps" : "您的應用程式", "Documentation" : "文件", "Details" : "詳細資訊", From 4bec3e827c71211be0fc8334281de593c284b6d5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 10 Jan 2025 00:29:00 +0000 Subject: [PATCH 063/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 4 ++-- l10n/ar.json | 4 ++-- l10n/de.js | 4 ++-- l10n/de.json | 4 ++-- l10n/de_DE.js | 4 ++-- l10n/de_DE.json | 4 ++-- l10n/en_GB.js | 4 ++-- l10n/en_GB.json | 4 ++-- l10n/es.js | 4 ++-- l10n/es.json | 4 ++-- l10n/eu.js | 4 ++-- l10n/eu.json | 4 ++-- l10n/fr.js | 4 ++-- l10n/fr.json | 4 ++-- l10n/ga.js | 4 ++-- l10n/ga.json | 4 ++-- l10n/gl.js | 4 ++-- l10n/gl.json | 4 ++-- l10n/ko.js | 4 ++-- l10n/ko.json | 4 ++-- l10n/nb.js | 4 ++-- l10n/nb.json | 4 ++-- l10n/pt_BR.js | 4 ++-- l10n/pt_BR.json | 4 ++-- l10n/ru.js | 4 ++-- l10n/ru.json | 4 ++-- l10n/sr.js | 4 ++-- l10n/sr.json | 4 ++-- l10n/tr.js | 4 ++-- l10n/tr.json | 4 ++-- l10n/ug.js | 4 ++-- l10n/ug.json | 4 ++-- l10n/zh_HK.js | 4 ++-- l10n/zh_HK.json | 4 ++-- l10n/zh_TW.js | 4 ++-- l10n/zh_TW.json | 4 ++-- 36 files changed, 72 insertions(+), 72 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index ccf1ffd2..0c980820 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزّز نكست كلاود خاصّتك باستعمال AppAPI وتطبيقاته المصممة خصيصًا.\n\nAppAPI هو مشروع ضمن نظام نكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات المبنية بأنواع متعددة من لغات البرمجة، لا تقتصر على PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### قائمة التطبيقات التي تتطلب AppAPI: \n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)- [SummarAI] (https://github.com/nextcloud/sumupbot)\nإذا كنت ترغب في تطوير تطبيق، فستسعدنا مساعدتك._ \n\n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع؛ مثلاً عبر: \n- ⭐ التقييم الإيجابي لمشروعنا على GitHub\n- ❗ إنشاء مشكلة أو طلب ميزة\n- 💁 حل مشكلة وإنشاء طلب سحب pull request\n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وقدرته على تحسين طريقة تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما نبدأ هذه الرحلة، ندعوكم بحرارة - أيها المطورون و الباحثون و المبدعون و أصحاب الرؤى - للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "تطبيقاتك الخارجية", "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. لا يمكن الاستمرار.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", - "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر" + "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزّز نكست كلاود خاصّتك باستعمال AppAPI وتطبيقاته المصممة خصيصًا.\n\nAppAPI هو مشروع ضمن نظام نكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات المبنية بأنواع متعددة من لغات البرمجة، لا تقتصر على PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### قائمة التطبيقات التي تتطلب AppAPI: \n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)- [SummarAI] (https://github.com/nextcloud/sumupbot)\nإذا كنت ترغب في تطوير تطبيق، فستسعدنا مساعدتك._ \n\n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع؛ مثلاً عبر: \n- ⭐ التقييم الإيجابي لمشروعنا على GitHub\n- ❗ إنشاء مشكلة أو طلب ميزة\n- 💁 حل مشكلة وإنشاء طلب سحب pull request\n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وقدرته على تحسين طريقة تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما نبدأ هذه الرحلة، ندعوكم بحرارة - أيها المطورون و الباحثون و المبدعون و أصحاب الرؤى - للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*" }, "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/l10n/ar.json b/l10n/ar.json index 3e887f58..c22f6bd1 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -18,7 +18,6 @@ "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزّز نكست كلاود خاصّتك باستعمال AppAPI وتطبيقاته المصممة خصيصًا.\n\nAppAPI هو مشروع ضمن نظام نكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات المبنية بأنواع متعددة من لغات البرمجة، لا تقتصر على PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### قائمة التطبيقات التي تتطلب AppAPI: \n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)- [SummarAI] (https://github.com/nextcloud/sumupbot)\nإذا كنت ترغب في تطوير تطبيق، فستسعدنا مساعدتك._ \n\n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع؛ مثلاً عبر: \n- ⭐ التقييم الإيجابي لمشروعنا على GitHub\n- ❗ إنشاء مشكلة أو طلب ميزة\n- 💁 حل مشكلة وإنشاء طلب سحب pull request\n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وقدرته على تحسين طريقة تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما نبدأ هذه الرحلة، ندعوكم بحرارة - أيها المطورون و الباحثون و المبدعون و أصحاب الرؤى - للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", @@ -191,6 +190,7 @@ "Your ExApps" : "تطبيقاتك الخارجية", "An error occurred during the request. Unable to proceed." : "حدث خطأ أثناء الطلب. لا يمكن الاستمرار.", "The app has been enabled but needs to be updated." : "هذا البرنامج سبق تمكينه لكنه بحاجة إلى تحديث.", - "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر" + "Error: This app cannot be enabled because it makes the server unstable" : "خطأ: لا يمكن تمكين هذا التطبيق لأنه يجعل الخادم غير مستقر", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزّز نكست كلاود خاصّتك باستعمال AppAPI وتطبيقاته المصممة خصيصًا.\n\nAppAPI هو مشروع ضمن نظام نكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات المبنية بأنواع متعددة من لغات البرمجة، لا تقتصر على PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### قائمة التطبيقات التي تتطلب AppAPI: \n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)- [SummarAI] (https://github.com/nextcloud/sumupbot)\nإذا كنت ترغب في تطوير تطبيق، فستسعدنا مساعدتك._ \n\n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع؛ مثلاً عبر: \n- ⭐ التقييم الإيجابي لمشروعنا على GitHub\n- ❗ إنشاء مشكلة أو طلب ميزة\n- 💁 حل مشكلة وإنشاء طلب سحب pull request\n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وقدرته على تحسين طريقة تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما نبدأ هذه الرحلة، ندعوكم بحرارة - أيها المطورون و الباحثون و المبدعون و أصحاب الرؤى - للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" } \ No newline at end of file diff --git a/l10n/de.js b/l10n/de.js index de50010c..c9892c0a 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweiter deine Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Issue oder einen Erweiterungsvorschlag\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickle deine eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -192,6 +191,7 @@ OC.L10N.register( "Your ExApps" : "Deine ExApps", "An error occurred during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", "The app has been enabled but needs to be updated." : "Die App wurde aktiviert, muss jedoch aktualisiert werden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. " + "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweiter deine Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Issue oder einen Erweiterungsvorschlag\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickle deine eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de.json b/l10n/de.json index 536a6e9d..785640f8 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -18,7 +18,6 @@ "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweiter deine Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Issue oder einen Erweiterungsvorschlag\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickle deine eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -190,6 +189,7 @@ "Your ExApps" : "Deine ExApps", "An error occurred during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", "The app has been enabled but needs to be updated." : "Die App wurde aktiviert, muss jedoch aktualisiert werden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. " + "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweiter deine Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Issue oder einen Erweiterungsvorschlag\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickle deine eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*" },"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 c19b89aa..bb4a7d13 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweitern Sie Ihre Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Issue oder einen Erweiterungsvorschlag\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "Ihre ExApps", "An error occurred during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", "The app has been enabled but needs to be updated." : "Die App wurde aktiviert, muss jedoch aktualisiert werden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht." + "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweitern Sie Ihre Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Issue oder einen Erweiterungsvorschlag\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de_DE.json b/l10n/de_DE.json index d39de711..ef0d78d5 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -18,7 +18,6 @@ "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweitern Sie Ihre Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Issue oder einen Erweiterungsvorschlag\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -191,6 +190,7 @@ "Your ExApps" : "Ihre ExApps", "An error occurred during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", "The app has been enabled but needs to be updated." : "Die App wurde aktiviert, muss jedoch aktualisiert werden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht." + "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweitern Sie Ihre Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Issue oder einen Erweiterungsvorschlag\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*" },"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 6c4394ae..74b15666 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "AI Integration Team", "ExApps Settings" : "ExApps Settings", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "Your ExApps", "An error occurred during the request. Unable to proceed." : "An error occurred during the request. Unable to proceed.", "The app has been enabled but needs to be updated." : "The app has been enabled but needs to be updated.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: This app cannot be enabled because it makes the server unstable" + "Error: This app cannot be enabled because it makes the server unstable" : "Error: This app cannot be enabled because it makes the server unstable", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 48d1d7dc..bb483ee6 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -18,7 +18,6 @@ "AI Integration Team" : "AI Integration Team", "ExApps Settings" : "ExApps Settings", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", @@ -191,6 +190,7 @@ "Your ExApps" : "Your ExApps", "An error occurred during the request. Unable to proceed." : "An error occurred during the request. Unable to proceed.", "The app has been enabled but needs to be updated." : "The app has been enabled but needs to be updated.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: This app cannot be enabled because it makes the server unstable" + "Error: This app cannot be enabled because it makes the server unstable" : "Error: This app cannot be enabled because it makes the server unstable", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/es.js b/l10n/es.js index 3f3e651b..a1974624 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -19,7 +19,6 @@ OC.L10N.register( "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Ajustes de las ExApps", "Nextcloud AppAPI" : "AppAPI de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud diseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n\n### Lista de aplicaciones que requieren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o una solicitud para una característica nueva\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", @@ -183,6 +182,7 @@ OC.L10N.register( "Your ExApps" : "Sus ExApps", "An error occurred during the request. Unable to proceed." : "Ha ocurrido un error durante la solicitud. No se puede continuar.", "The app has been enabled but needs to be updated." : "Esta app ha sido habilitada pero requiere ser actualizada.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque hace inestable al servidor" + "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque hace inestable al servidor", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud diseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n\n### Lista de aplicaciones que requieren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o una solicitud para una característica nueva\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es.json b/l10n/es.json index 8a74ed02..bd4e2649 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -17,7 +17,6 @@ "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Ajustes de las ExApps", "Nextcloud AppAPI" : "AppAPI de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud diseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n\n### Lista de aplicaciones que requieren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o una solicitud para una característica nueva\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", @@ -181,6 +180,7 @@ "Your ExApps" : "Sus ExApps", "An error occurred during the request. Unable to proceed." : "Ha ocurrido un error durante la solicitud. No se puede continuar.", "The app has been enabled but needs to be updated." : "Esta app ha sido habilitada pero requiere ser actualizada.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque hace inestable al servidor" + "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque hace inestable al servidor", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud diseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n\n### Lista de aplicaciones que requieren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o una solicitud para una característica nueva\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/eu.js b/l10n/eu.js index 435b65d3..a64aac7f 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -16,7 +16,6 @@ OC.L10N.register( "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", @@ -104,6 +103,7 @@ OC.L10N.register( "Your ExApps" : "Zure ExApp-ak", "An error occurred during the request. Unable to proceed." : "Errorea gertatu da eskaeran. Ezin da jarraitu.", "The app has been enabled but needs to be updated." : "Aplikazioa gaitu da baina eguneratzea behar du.", - "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako" + "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eu.json b/l10n/eu.json index 40abc98f..22ba51f6 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -14,7 +14,6 @@ "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", @@ -102,6 +101,7 @@ "Your ExApps" : "Zure ExApp-ak", "An error occurred during the request. Unable to proceed." : "Errorea gertatu da eskaeran. Ezin da jarraitu.", "The app has been enabled but needs to be updated." : "Aplikazioa gaitu da baina eguneratzea behar du.", - "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako" + "Error: This app cannot be enabled because it makes the server unstable" : "Errorea: aplikazio hau ezin da gaitu zerbitzaria ezegonkorra izatea eragiten duelako", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Bultzatu zure Nextcloud AppAPI eta bereziki diseinatutako aplikazioak.\n\n\nAppAPI Nextcloud ekosistemaren barruan dagoen proiektu bat da, diseinatua\naplikazioen garapena, hedapena eta kudeaketa prozesua arintzeko eta hobetzeko .\n\nGaratzaileei sortzeko aukera ematen dien metodologia berri bat aurkezten du\nProgramazio-lengoaia ezberdinak erabiltzen dituzten aplikazioak, PHPra mugatu gabe, tradizionalki Nextcloud garapenean erabiltzen zena.\n\n\n### AppAPI behar duten aplikazioen zerrenda:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Aplikazio bat garatu nahi baduzu, atsegin handiz lagunduko dizugu eta lagunduko dizugu._\n\n### Laguntza\n\nProiektu honen laguntza eskertzen dugu:\n\n- ⭐Ezarri izarra gure lanari GitHub-en\n- ❗Eman arazo baten berri edo eskatu eginbide bat\n- 💁 Ebatzi arazo bat eta sortu Pull Request bat\n- 🧑‍💻 Garatu zure aplikazioa AppAPI erabiliz\n\nBenetan hunkituta gaude AppAPI proiektuaren etorkizunaz eta\n eraldatzeko ahalmenarekin Nextcloud-en aplikazioak garatzeko\n eta esperimentatzeko modua.\n\nBidaia honi ekiten diogun heinean, gonbidatzen zaituztegu\n -garatzaileak, pentsalariak, sortzaileak eta ikusleak- gurekin\n batera aplikazioen panorama polifazetikoa, egonkorra eta\n seguruagoa osatzen.\n\n*Zure iritziak, iradokizunak eta ekarpenak oso baliotsuak dira guretzat.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/fr.js b/l10n/fr.js index f55e1a87..2382894c 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -19,7 +19,6 @@ OC.L10N.register( "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -191,6 +190,7 @@ OC.L10N.register( "Your ExApps" : "Vos ExApps", "An error occurred during the request. Unable to proceed." : "Une erreur s’est produite pendant la demande. Impossible de poursuivre.", "The app has been enabled but needs to be updated." : "L'application a été activée mais doit être mise à jour.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erreur : cette application ne peut être activée car elle rend le serveur instable" + "Error: This app cannot be enabled because it makes the server unstable" : "Erreur : cette application ne peut être activée car elle rend le serveur instable", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*" }, "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 e637d64f..6e2e8e7d 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -17,7 +17,6 @@ "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -189,6 +188,7 @@ "Your ExApps" : "Vos ExApps", "An error occurred during the request. Unable to proceed." : "Une erreur s’est produite pendant la demande. Impossible de poursuivre.", "The app has been enabled but needs to be updated." : "L'application a été activée mais doit être mise à jour.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erreur : cette application ne peut être activée car elle rend le serveur instable" + "Error: This app cannot be enabled because it makes the server unstable" : "Erreur : cette application ne peut être activée car elle rend le serveur instable", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*" },"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 index 837b3f54..09190a2b 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "Foireann Comhtháthaithe AI", "ExApps Settings" : "Socruithe ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n\n### Liosta feidhmchlár a dteastaíonn AppAPI uathu:\n\n- [talk_bot_ai_example]( https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example]( https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example]( https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot]( https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI]( https://github.com/nextcloud/sumupbot)\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "Do ExApps", "An error occurred during the request. Unable to proceed." : "Tharla earráid le linn an iarratais. Ní féidir dul ar aghaidh.", "The app has been enabled but needs to be updated." : "Tá an aip cumasaithe ach ní mór é a nuashonrú.", - "Error: This app cannot be enabled because it makes the server unstable" : "Earráid: Ní féidir an aip seo a chumasú toisc go ndéanann sé an freastalaí éagobhsaí" + "Error: This app cannot be enabled because it makes the server unstable" : "Earráid: Ní féidir an aip seo a chumasú toisc go ndéanann sé an freastalaí éagobhsaí", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n\n### Liosta feidhmchlár a dteastaíonn AppAPI uathu:\n\n- [talk_bot_ai_example]( https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example]( https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example]( https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot]( https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI]( https://github.com/nextcloud/sumupbot)\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*" }, "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 index 0cd13e65..90ab299c 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -18,7 +18,6 @@ "AI Integration Team" : "Foireann Comhtháthaithe AI", "ExApps Settings" : "Socruithe ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n\n### Liosta feidhmchlár a dteastaíonn AppAPI uathu:\n\n- [talk_bot_ai_example]( https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example]( https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example]( https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot]( https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI]( https://github.com/nextcloud/sumupbot)\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", @@ -191,6 +190,7 @@ "Your ExApps" : "Do ExApps", "An error occurred during the request. Unable to proceed." : "Tharla earráid le linn an iarratais. Ní féidir dul ar aghaidh.", "The app has been enabled but needs to be updated." : "Tá an aip cumasaithe ach ní mór é a nuashonrú.", - "Error: This app cannot be enabled because it makes the server unstable" : "Earráid: Ní féidir an aip seo a chumasú toisc go ndéanann sé an freastalaí éagobhsaí" + "Error: This app cannot be enabled because it makes the server unstable" : "Earráid: Ní féidir an aip seo a chumasú toisc go ndéanann sé an freastalaí éagobhsaí", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n\n### Liosta feidhmchlár a dteastaíonn AppAPI uathu:\n\n- [talk_bot_ai_example]( https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example]( https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example]( https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot]( https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI]( https://github.com/nextcloud/sumupbot)\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*" },"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 257ecc69..f733038f 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -192,6 +191,7 @@ OC.L10N.register( "Your ExApps" : "As súas aplicacións externas (ExApps)", "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel" + "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index f7783084..55158bfe 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -18,7 +18,6 @@ "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -190,6 +189,7 @@ "Your ExApps" : "As súas aplicacións externas (ExApps)", "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel" + "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ko.js b/l10n/ko.js index ccb9e83d..473df611 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -19,7 +19,6 @@ OC.L10N.register( "AI Integration Team" : "AI 통합 추진팀", "ExApps Settings" : "외부 응용 프로그램 설정", "Nextcloud AppAPI" : "Nextcloud 응용 프로그램 API", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI와 특별히 설계된 애플리케이션으로 여러분의 Nextcloud를 향상시키세요.\n\n\nAppAPI는 애플리케이션 개발, 배포 및 관리 프로세스를 간소화하고 \n개선하기 위해 설계된 \nNextcloud 에코시스템 내의 프로젝트입니다.\n\n이 프로젝트는 개발자가 기존에 Nextcloud 개발에서 사용하던 PHP에 국한되지 않고 \n다양한 프로그래밍 언어를 사용하여 애플리케이션을 만들 수 있는 \n새로운 방법을 소개합니다.\n\n\n### AppAPI가 필요한 앱 목록\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot\n\n_만약 여러분이 애플리케이션 개발을 원하시면 기꺼이 여러분을 도와드리겠습니다._\n\n### Support\n\n이 프로젝트를 위한 모든 도움에 감사드립니다.\n\n- ⭐ GitHub의 저희 작업에 별 누르기.\n- ❗ 이슈와 기능 요청 만들기\n- 💁 이슈를 해결하고 Pull 요청을 만들기\n- 🧑‍💻 AppAPI를 이용하여 자신만의 애플리케이션 만들기\n\n저희는 AppAPI 프로젝트의 미래와 \nNextcloud 내에서 애플리케이션을 개발하고 경험하는 방식을 변화시킬 \n이 프로젝트의 잠재력에 대해 진심으로 기대가 큽니다.\n\n더욱 다양하고 안정적이며 안전한 앱 환경을 만드는 \n이 여정의 시작에 개발자, 사상가, 창작자, 선구자 여러분을 초대합니다.\n\n*여러분의 통찰력, 제안, 기여는 저희에게 매우 소중합니다.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "Deploy Daemons" : "배포 데몬", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", @@ -184,6 +183,7 @@ OC.L10N.register( "Your ExApps" : "내 외부 응용 프로그램", "An error occurred during the request. Unable to proceed." : "요청을 보내는 도중 오류가 발생하였습니다. 더 이상 진행할 수 없습니다.", "The app has been enabled but needs to be updated." : "앱이 활성화 되었으나 업데이트가 필요합니다.", - "Error: This app cannot be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다." + "Error: This app cannot be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI와 특별히 설계된 애플리케이션으로 여러분의 Nextcloud를 향상시키세요.\n\n\nAppAPI는 애플리케이션 개발, 배포 및 관리 프로세스를 간소화하고 \n개선하기 위해 설계된 \nNextcloud 에코시스템 내의 프로젝트입니다.\n\n이 프로젝트는 개발자가 기존에 Nextcloud 개발에서 사용하던 PHP에 국한되지 않고 \n다양한 프로그래밍 언어를 사용하여 애플리케이션을 만들 수 있는 \n새로운 방법을 소개합니다.\n\n\n### AppAPI가 필요한 앱 목록\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot\n\n_만약 여러분이 애플리케이션 개발을 원하시면 기꺼이 여러분을 도와드리겠습니다._\n\n### Support\n\n이 프로젝트를 위한 모든 도움에 감사드립니다.\n\n- ⭐ GitHub의 저희 작업에 별 누르기.\n- ❗ 이슈와 기능 요청 만들기\n- 💁 이슈를 해결하고 Pull 요청을 만들기\n- 🧑‍💻 AppAPI를 이용하여 자신만의 애플리케이션 만들기\n\n저희는 AppAPI 프로젝트의 미래와 \nNextcloud 내에서 애플리케이션을 개발하고 경험하는 방식을 변화시킬 \n이 프로젝트의 잠재력에 대해 진심으로 기대가 큽니다.\n\n더욱 다양하고 안정적이며 안전한 앱 환경을 만드는 \n이 여정의 시작에 개발자, 사상가, 창작자, 선구자 여러분을 초대합니다.\n\n*여러분의 통찰력, 제안, 기여는 저희에게 매우 소중합니다.*" }, "nplurals=1; plural=0;"); diff --git a/l10n/ko.json b/l10n/ko.json index b21a4540..9eef69af 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -17,7 +17,6 @@ "AI Integration Team" : "AI 통합 추진팀", "ExApps Settings" : "외부 응용 프로그램 설정", "Nextcloud AppAPI" : "Nextcloud 응용 프로그램 API", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI와 특별히 설계된 애플리케이션으로 여러분의 Nextcloud를 향상시키세요.\n\n\nAppAPI는 애플리케이션 개발, 배포 및 관리 프로세스를 간소화하고 \n개선하기 위해 설계된 \nNextcloud 에코시스템 내의 프로젝트입니다.\n\n이 프로젝트는 개발자가 기존에 Nextcloud 개발에서 사용하던 PHP에 국한되지 않고 \n다양한 프로그래밍 언어를 사용하여 애플리케이션을 만들 수 있는 \n새로운 방법을 소개합니다.\n\n\n### AppAPI가 필요한 앱 목록\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot\n\n_만약 여러분이 애플리케이션 개발을 원하시면 기꺼이 여러분을 도와드리겠습니다._\n\n### Support\n\n이 프로젝트를 위한 모든 도움에 감사드립니다.\n\n- ⭐ GitHub의 저희 작업에 별 누르기.\n- ❗ 이슈와 기능 요청 만들기\n- 💁 이슈를 해결하고 Pull 요청을 만들기\n- 🧑‍💻 AppAPI를 이용하여 자신만의 애플리케이션 만들기\n\n저희는 AppAPI 프로젝트의 미래와 \nNextcloud 내에서 애플리케이션을 개발하고 경험하는 방식을 변화시킬 \n이 프로젝트의 잠재력에 대해 진심으로 기대가 큽니다.\n\n더욱 다양하고 안정적이며 안전한 앱 환경을 만드는 \n이 여정의 시작에 개발자, 사상가, 창작자, 선구자 여러분을 초대합니다.\n\n*여러분의 통찰력, 제안, 기여는 저희에게 매우 소중합니다.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "Deploy Daemons" : "배포 데몬", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", @@ -182,6 +181,7 @@ "Your ExApps" : "내 외부 응용 프로그램", "An error occurred during the request. Unable to proceed." : "요청을 보내는 도중 오류가 발생하였습니다. 더 이상 진행할 수 없습니다.", "The app has been enabled but needs to be updated." : "앱이 활성화 되었으나 업데이트가 필요합니다.", - "Error: This app cannot be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다." + "Error: This app cannot be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI와 특별히 설계된 애플리케이션으로 여러분의 Nextcloud를 향상시키세요.\n\n\nAppAPI는 애플리케이션 개발, 배포 및 관리 프로세스를 간소화하고 \n개선하기 위해 설계된 \nNextcloud 에코시스템 내의 프로젝트입니다.\n\n이 프로젝트는 개발자가 기존에 Nextcloud 개발에서 사용하던 PHP에 국한되지 않고 \n다양한 프로그래밍 언어를 사용하여 애플리케이션을 만들 수 있는 \n새로운 방법을 소개합니다.\n\n\n### AppAPI가 필요한 앱 목록\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot\n\n_만약 여러분이 애플리케이션 개발을 원하시면 기꺼이 여러분을 도와드리겠습니다._\n\n### Support\n\n이 프로젝트를 위한 모든 도움에 감사드립니다.\n\n- ⭐ GitHub의 저희 작업에 별 누르기.\n- ❗ 이슈와 기능 요청 만들기\n- 💁 이슈를 해결하고 Pull 요청을 만들기\n- 🧑‍💻 AppAPI를 이용하여 자신만의 애플리케이션 만들기\n\n저희는 AppAPI 프로젝트의 미래와 \nNextcloud 내에서 애플리케이션을 개발하고 경험하는 방식을 변화시킬 \n이 프로젝트의 잠재력에 대해 진심으로 기대가 큽니다.\n\n더욱 다양하고 안정적이며 안전한 앱 환경을 만드는 \n이 여정의 시작에 개발자, 사상가, 창작자, 선구자 여러분을 초대합니다.\n\n*여러분의 통찰력, 제안, 기여는 저희에게 매우 소중합니다.*" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/nb.js b/l10n/nb.js index ac2da564..05bcb4fe 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -19,7 +19,6 @@ OC.L10N.register( "AI Integration Team" : "AI-integrasjonsteam", "ExApps Settings" : "Innstillinger for ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Forsterk din Nextcloud med AppAPI og dens spesialdesignede applikasjoner.\n\n\nAppAPI er et prosjekt innenfor Nextcloud-økosystemet designet for å strømlinjeforme og forbedre prosessen med\napplikasjonsutvikling, distribusjon og administrasjon.\n\nDen introduserer en ny metodikk som lar utviklere lage\napplikasjoner som bruker en rekke programmeringsspråk, ikke begrenset til PHP, som tradisjonelt ble brukt i Nextcloud-utvikling.\n\n\n### Liste over programmer som krever AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker å utvikle en applikasjon, hjelper og assisterer vi deg gjerne._\n\n### Støtte\n\nVi setter pris på all støtte til dette prosjektet:\n\n- ⭐ Stjernemerk vårt arbeid på GitHub\n- ❗ Opprett en problemstilling eller en funksjonsforespørsel\n- 💁 Løs et problem og opprett en pull-forespørsel\n- 🧑‍💻 Utvikle ditt eget program ved hjelp av AppAPI\n\nVi er virkelig begeistret for fremtiden til AppAPI-prosjektet og dets potensial til å transformere\nmåten applikasjoner utvikles og oppleves på i Nextcloud.\n\nNår vi legger ut på denne reisen, inviterer vi deg hjertelig - utviklere, tenkere, skapere og visjonære -\ntil å bli med oss i å forme et mer allsidig, stabilt og sikkert applandskap.\n\n*Dine innsikter, forslag og bidrag er uvurderlige for oss.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "Deploy Daemons" : "Distribuer daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", @@ -191,6 +190,7 @@ OC.L10N.register( "Your ExApps" : "Dine ExApps", "An error occurred during the request. Unable to proceed." : "En feil oppsto under forespørselen. Kan ikke fortsette.", "The app has been enabled but needs to be updated." : "Appen er aktivert, men må oppdateres.", - "Error: This app cannot be enabled because it makes the server unstable" : "Feil: denne appen kan ikke aktiveres fordi det gjør serveren ustabil" + "Error: This app cannot be enabled because it makes the server unstable" : "Feil: denne appen kan ikke aktiveres fordi det gjør serveren ustabil", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Forsterk din Nextcloud med AppAPI og dens spesialdesignede applikasjoner.\n\n\nAppAPI er et prosjekt innenfor Nextcloud-økosystemet designet for å strømlinjeforme og forbedre prosessen med\napplikasjonsutvikling, distribusjon og administrasjon.\n\nDen introduserer en ny metodikk som lar utviklere lage\napplikasjoner som bruker en rekke programmeringsspråk, ikke begrenset til PHP, som tradisjonelt ble brukt i Nextcloud-utvikling.\n\n\n### Liste over programmer som krever AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker å utvikle en applikasjon, hjelper og assisterer vi deg gjerne._\n\n### Støtte\n\nVi setter pris på all støtte til dette prosjektet:\n\n- ⭐ Stjernemerk vårt arbeid på GitHub\n- ❗ Opprett en problemstilling eller en funksjonsforespørsel\n- 💁 Løs et problem og opprett en pull-forespørsel\n- 🧑‍💻 Utvikle ditt eget program ved hjelp av AppAPI\n\nVi er virkelig begeistret for fremtiden til AppAPI-prosjektet og dets potensial til å transformere\nmåten applikasjoner utvikles og oppleves på i Nextcloud.\n\nNår vi legger ut på denne reisen, inviterer vi deg hjertelig - utviklere, tenkere, skapere og visjonære -\ntil å bli med oss i å forme et mer allsidig, stabilt og sikkert applandskap.\n\n*Dine innsikter, forslag og bidrag er uvurderlige for oss.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nb.json b/l10n/nb.json index 0fc01c95..6915cf70 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -17,7 +17,6 @@ "AI Integration Team" : "AI-integrasjonsteam", "ExApps Settings" : "Innstillinger for ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Forsterk din Nextcloud med AppAPI og dens spesialdesignede applikasjoner.\n\n\nAppAPI er et prosjekt innenfor Nextcloud-økosystemet designet for å strømlinjeforme og forbedre prosessen med\napplikasjonsutvikling, distribusjon og administrasjon.\n\nDen introduserer en ny metodikk som lar utviklere lage\napplikasjoner som bruker en rekke programmeringsspråk, ikke begrenset til PHP, som tradisjonelt ble brukt i Nextcloud-utvikling.\n\n\n### Liste over programmer som krever AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker å utvikle en applikasjon, hjelper og assisterer vi deg gjerne._\n\n### Støtte\n\nVi setter pris på all støtte til dette prosjektet:\n\n- ⭐ Stjernemerk vårt arbeid på GitHub\n- ❗ Opprett en problemstilling eller en funksjonsforespørsel\n- 💁 Løs et problem og opprett en pull-forespørsel\n- 🧑‍💻 Utvikle ditt eget program ved hjelp av AppAPI\n\nVi er virkelig begeistret for fremtiden til AppAPI-prosjektet og dets potensial til å transformere\nmåten applikasjoner utvikles og oppleves på i Nextcloud.\n\nNår vi legger ut på denne reisen, inviterer vi deg hjertelig - utviklere, tenkere, skapere og visjonære -\ntil å bli med oss i å forme et mer allsidig, stabilt og sikkert applandskap.\n\n*Dine innsikter, forslag og bidrag er uvurderlige for oss.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "Deploy Daemons" : "Distribuer daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", @@ -189,6 +188,7 @@ "Your ExApps" : "Dine ExApps", "An error occurred during the request. Unable to proceed." : "En feil oppsto under forespørselen. Kan ikke fortsette.", "The app has been enabled but needs to be updated." : "Appen er aktivert, men må oppdateres.", - "Error: This app cannot be enabled because it makes the server unstable" : "Feil: denne appen kan ikke aktiveres fordi det gjør serveren ustabil" + "Error: This app cannot be enabled because it makes the server unstable" : "Feil: denne appen kan ikke aktiveres fordi det gjør serveren ustabil", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Forsterk din Nextcloud med AppAPI og dens spesialdesignede applikasjoner.\n\n\nAppAPI er et prosjekt innenfor Nextcloud-økosystemet designet for å strømlinjeforme og forbedre prosessen med\napplikasjonsutvikling, distribusjon og administrasjon.\n\nDen introduserer en ny metodikk som lar utviklere lage\napplikasjoner som bruker en rekke programmeringsspråk, ikke begrenset til PHP, som tradisjonelt ble brukt i Nextcloud-utvikling.\n\n\n### Liste over programmer som krever AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker å utvikle en applikasjon, hjelper og assisterer vi deg gjerne._\n\n### Støtte\n\nVi setter pris på all støtte til dette prosjektet:\n\n- ⭐ Stjernemerk vårt arbeid på GitHub\n- ❗ Opprett en problemstilling eller en funksjonsforespørsel\n- 💁 Løs et problem og opprett en pull-forespørsel\n- 🧑‍💻 Utvikle ditt eget program ved hjelp av AppAPI\n\nVi er virkelig begeistret for fremtiden til AppAPI-prosjektet og dets potensial til å transformere\nmåten applikasjoner utvikles og oppleves på i Nextcloud.\n\nNår vi legger ut på denne reisen, inviterer vi deg hjertelig - utviklere, tenkere, skapere og visjonære -\ntil å bli med oss i å forme et mer allsidig, stabilt og sikkert applandskap.\n\n*Dine innsikter, forslag og bidrag er uvurderlige for oss.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 9731611c..f8da85b8 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para agilizar e aprimorar o processo de\ndesenvolvimento, implantação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite aos desenvolvedores criar\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Seus insights, sugestões e contribuições são inestimáveis ​​para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "Deploy Daemons" : "Deploy de Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon orquestrador de ExApps", @@ -192,6 +191,7 @@ OC.L10N.register( "Your ExApps" : "Seus ExApps", "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", "The app has been enabled but needs to be updated." : "O aplicativo foi habilitado, mas precisa ser atualizado.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável." + "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para agilizar e aprimorar o processo de\ndesenvolvimento, implantação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite aos desenvolvedores criar\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Seus insights, sugestões e contribuições são inestimáveis ​​para nós.*" }, "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 009b0e42..1162df4c 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -18,7 +18,6 @@ "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para agilizar e aprimorar o processo de\ndesenvolvimento, implantação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite aos desenvolvedores criar\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Seus insights, sugestões e contribuições são inestimáveis ​​para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "Deploy Daemons" : "Deploy de Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon orquestrador de ExApps", @@ -190,6 +189,7 @@ "Your ExApps" : "Seus ExApps", "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", "The app has been enabled but needs to be updated." : "O aplicativo foi habilitado, mas precisa ser atualizado.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável." + "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para agilizar e aprimorar o processo de\ndesenvolvimento, implantação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite aos desenvolvedores criar\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Seus insights, sugestões e contribuições são inestimáveis ​​para nós.*" },"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/ru.js b/l10n/ru.js index 2191f322..fb9c062b 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Список приложений, которым требуется AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", @@ -192,6 +191,7 @@ OC.L10N.register( "Your ExApps" : "Ваши ExApps", "An error occurred during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно.", "The app has been enabled but needs to be updated." : "Приложение было включено, но требует обновления.", - "Error: This app cannot be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным" + "Error: This app cannot be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Список приложений, которым требуется AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*" }, "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 9825d7dc..33980723 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -18,7 +18,6 @@ "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Список приложений, которым требуется AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", @@ -190,6 +189,7 @@ "Your ExApps" : "Ваши ExApps", "An error occurred during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно.", "The app has been enabled but needs to be updated." : "Приложение было включено, но требует обновления.", - "Error: This app cannot be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным" + "Error: This app cannot be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Список приложений, которым требуется AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*" },"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/sr.js b/l10n/sr.js index f976df9d..d84441d5 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "Тим за интеграцију AI", "ExApps Settings" : "Подешавања за ExApp", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n\n### Листа апликација које захтевају AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -192,6 +191,7 @@ OC.L10N.register( "Your ExApps" : "Ваше ExApps", "An error occurred during the request. Unable to proceed." : "Током захтева је дошло до грешке. Не може да се настави.", "The app has been enabled but needs to be updated." : "Апликација је уљкучена, али је потребно да се ажурира.", - "Error: This app cannot be enabled because it makes the server unstable" : "Грешка: Ова апликација не може да се обрише јер ће сервер постати нестабилан" + "Error: This app cannot be enabled because it makes the server unstable" : "Грешка: Ова апликација не може да се обрише јер ће сервер постати нестабилан", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n\n### Листа апликација које захтевају AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*" }, "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 6b7eabb4..f847cfa0 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -18,7 +18,6 @@ "AI Integration Team" : "Тим за интеграцију AI", "ExApps Settings" : "Подешавања за ExApp", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n\n### Листа апликација које захтевају AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -190,6 +189,7 @@ "Your ExApps" : "Ваше ExApps", "An error occurred during the request. Unable to proceed." : "Током захтева је дошло до грешке. Не може да се настави.", "The app has been enabled but needs to be updated." : "Апликација је уљкучена, али је потребно да се ажурира.", - "Error: This app cannot be enabled because it makes the server unstable" : "Грешка: Ова апликација не може да се обрише јер ће сервер постати нестабилан" + "Error: This app cannot be enabled because it makes the server unstable" : "Грешка: Ова апликација не може да се обрише јер ће сервер постати нестабилан", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n\n### Листа апликација које захтевају AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*" },"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/tr.js b/l10n/tr.js index 891e52f8..1d1fbd5c 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", "ExApps Settings" : "ExApps ayarları", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "ExApp uygulamalarınız", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz" + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 69d7ce8b..2773b72e 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -18,7 +18,6 @@ "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", "ExApps Settings" : "ExApps ayarları", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", @@ -191,6 +190,7 @@ "Your ExApps" : "ExApp uygulamalarınız", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz" + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/ug.js b/l10n/ug.js index 1ec651ca..7efa0b11 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", "ExApps Settings" : "ExApps تەڭشەكلىرى", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى بىلەن Nextcloud نى قوزغىتىڭ.\n\n\nAppAPI كېيىنكى باسقۇچلۇق ئېكولوگىيىلىك سىستېما ئىچىدىكى بىر جەريان بولۇپ ، جەرياننى راۋانلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن\nقوللىنىشچان پروگرامما ئېچىش ، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش.\n\nئۇ ئاچقۇچىلار قۇرالايدىغان يېڭى ئۇسۇلنى ئوتتۇرىغا قويدى\nھەر خىل پروگرامما تىللىرىنى ئىشلىتىدىغان قوللىنىشچان پروگراممىلار PHP بىلەنلا چەكلەنمەيدۇ ، بۇ ئەنئەنىۋى ئۇسۇلدا Nextcloud ئېچىشتا ئىشلىتىلىدۇ.\n\n\n### AppAPI تەلەپ قىلىدىغان پروگراممىلار تىزىملىكى:\n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI] (https://github.com/nextcloud/sumupbot)\n\n_ئەگەر سىز بىر پروگراممىنى تەرەققىي قىلدۇرماقچى بولسىڭىز ، خۇشاللىق بىلەن سىزگە ياردەم قىلىمىز ۋە ياردەم قىلىمىز ._\n\n### قوللاش\n\nبىز بۇ تۈرنى قوللىغانلىقىمىزدىن مىننەتدارمىز:\n\n- G GitHub دىكى خىزمىتىمىزنى باشلاڭ\n- Iss مەسىلە ياكى ئىقتىدار تەلىپى قۇرۇش\n- an بىر مەسىلىنى ھەل قىلىپ ، تارتىش تەلىپىنى ھاسىل قىلىڭ\n- App AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىسىنى تەرەققىي قىلدۇرۇڭ\n\nبىز AppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ ئۆزگىرىش يوشۇرۇن كۈچىدىن ھەقىقىي ھاياجانلاندۇق\nNextcloud ئىچىدە قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلى.\n\nبىز بۇ سەپەرگە ئاتلانغىنىمىزدا ، سىزنى - پروگراممېرلار ، مۇتەپەككۇرلار ، ئىجادكارلار ۋە يىراقنى كۆرگۈچىلەرنى قىزغىن تەكلىپ قىلىمىز.\nتېخىمۇ كۆپ ئىقتىدارلىق ، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇڭ.\n\n* سىزنىڭ چۈشەنچىڭىز ، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن تولىمۇ قىممەتلىك. *", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", @@ -190,6 +189,7 @@ OC.L10N.register( "Your ExApps" : "ExApps", "An error occurred during the request. Unable to proceed." : "تەلەپ جەريانىدا خاتالىق كۆرۈلدى. داۋاملاشتۇرالمىدى.", "The app has been enabled but needs to be updated." : "بۇ دېتال قوزغىتىلغان ، ئەمما يېڭىلاشقا توغرا كېلىدۇ.", - "Error: This app cannot be enabled because it makes the server unstable" : "خاتالىق: بۇ ئەپنى قوزغىتىشقا بولمايدۇ ، چۈنكى ئۇ مۇلازىمېتىرنى تۇراقسىز قىلىدۇ" + "Error: This app cannot be enabled because it makes the server unstable" : "خاتالىق: بۇ ئەپنى قوزغىتىشقا بولمايدۇ ، چۈنكى ئۇ مۇلازىمېتىرنى تۇراقسىز قىلىدۇ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى بىلەن Nextcloud نى قوزغىتىڭ.\n\n\nAppAPI كېيىنكى باسقۇچلۇق ئېكولوگىيىلىك سىستېما ئىچىدىكى بىر جەريان بولۇپ ، جەرياننى راۋانلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن\nقوللىنىشچان پروگرامما ئېچىش ، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش.\n\nئۇ ئاچقۇچىلار قۇرالايدىغان يېڭى ئۇسۇلنى ئوتتۇرىغا قويدى\nھەر خىل پروگرامما تىللىرىنى ئىشلىتىدىغان قوللىنىشچان پروگراممىلار PHP بىلەنلا چەكلەنمەيدۇ ، بۇ ئەنئەنىۋى ئۇسۇلدا Nextcloud ئېچىشتا ئىشلىتىلىدۇ.\n\n\n### AppAPI تەلەپ قىلىدىغان پروگراممىلار تىزىملىكى:\n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI] (https://github.com/nextcloud/sumupbot)\n\n_ئەگەر سىز بىر پروگراممىنى تەرەققىي قىلدۇرماقچى بولسىڭىز ، خۇشاللىق بىلەن سىزگە ياردەم قىلىمىز ۋە ياردەم قىلىمىز ._\n\n### قوللاش\n\nبىز بۇ تۈرنى قوللىغانلىقىمىزدىن مىننەتدارمىز:\n\n- G GitHub دىكى خىزمىتىمىزنى باشلاڭ\n- Iss مەسىلە ياكى ئىقتىدار تەلىپى قۇرۇش\n- an بىر مەسىلىنى ھەل قىلىپ ، تارتىش تەلىپىنى ھاسىل قىلىڭ\n- App AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىسىنى تەرەققىي قىلدۇرۇڭ\n\nبىز AppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ ئۆزگىرىش يوشۇرۇن كۈچىدىن ھەقىقىي ھاياجانلاندۇق\nNextcloud ئىچىدە قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلى.\n\nبىز بۇ سەپەرگە ئاتلانغىنىمىزدا ، سىزنى - پروگراممېرلار ، مۇتەپەككۇرلار ، ئىجادكارلار ۋە يىراقنى كۆرگۈچىلەرنى قىزغىن تەكلىپ قىلىمىز.\nتېخىمۇ كۆپ ئىقتىدارلىق ، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇڭ.\n\n* سىزنىڭ چۈشەنچىڭىز ، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن تولىمۇ قىممەتلىك. *" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ug.json b/l10n/ug.json index 81fd88dc..58baecd1 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -18,7 +18,6 @@ "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", "ExApps Settings" : "ExApps تەڭشەكلىرى", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى بىلەن Nextcloud نى قوزغىتىڭ.\n\n\nAppAPI كېيىنكى باسقۇچلۇق ئېكولوگىيىلىك سىستېما ئىچىدىكى بىر جەريان بولۇپ ، جەرياننى راۋانلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن\nقوللىنىشچان پروگرامما ئېچىش ، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش.\n\nئۇ ئاچقۇچىلار قۇرالايدىغان يېڭى ئۇسۇلنى ئوتتۇرىغا قويدى\nھەر خىل پروگرامما تىللىرىنى ئىشلىتىدىغان قوللىنىشچان پروگراممىلار PHP بىلەنلا چەكلەنمەيدۇ ، بۇ ئەنئەنىۋى ئۇسۇلدا Nextcloud ئېچىشتا ئىشلىتىلىدۇ.\n\n\n### AppAPI تەلەپ قىلىدىغان پروگراممىلار تىزىملىكى:\n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI] (https://github.com/nextcloud/sumupbot)\n\n_ئەگەر سىز بىر پروگراممىنى تەرەققىي قىلدۇرماقچى بولسىڭىز ، خۇشاللىق بىلەن سىزگە ياردەم قىلىمىز ۋە ياردەم قىلىمىز ._\n\n### قوللاش\n\nبىز بۇ تۈرنى قوللىغانلىقىمىزدىن مىننەتدارمىز:\n\n- G GitHub دىكى خىزمىتىمىزنى باشلاڭ\n- Iss مەسىلە ياكى ئىقتىدار تەلىپى قۇرۇش\n- an بىر مەسىلىنى ھەل قىلىپ ، تارتىش تەلىپىنى ھاسىل قىلىڭ\n- App AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىسىنى تەرەققىي قىلدۇرۇڭ\n\nبىز AppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ ئۆزگىرىش يوشۇرۇن كۈچىدىن ھەقىقىي ھاياجانلاندۇق\nNextcloud ئىچىدە قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلى.\n\nبىز بۇ سەپەرگە ئاتلانغىنىمىزدا ، سىزنى - پروگراممېرلار ، مۇتەپەككۇرلار ، ئىجادكارلار ۋە يىراقنى كۆرگۈچىلەرنى قىزغىن تەكلىپ قىلىمىز.\nتېخىمۇ كۆپ ئىقتىدارلىق ، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇڭ.\n\n* سىزنىڭ چۈشەنچىڭىز ، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن تولىمۇ قىممەتلىك. *", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", @@ -188,6 +187,7 @@ "Your ExApps" : "ExApps", "An error occurred during the request. Unable to proceed." : "تەلەپ جەريانىدا خاتالىق كۆرۈلدى. داۋاملاشتۇرالمىدى.", "The app has been enabled but needs to be updated." : "بۇ دېتال قوزغىتىلغان ، ئەمما يېڭىلاشقا توغرا كېلىدۇ.", - "Error: This app cannot be enabled because it makes the server unstable" : "خاتالىق: بۇ ئەپنى قوزغىتىشقا بولمايدۇ ، چۈنكى ئۇ مۇلازىمېتىرنى تۇراقسىز قىلىدۇ" + "Error: This app cannot be enabled because it makes the server unstable" : "خاتالىق: بۇ ئەپنى قوزغىتىشقا بولمايدۇ ، چۈنكى ئۇ مۇلازىمېتىرنى تۇراقسىز قىلىدۇ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى بىلەن Nextcloud نى قوزغىتىڭ.\n\n\nAppAPI كېيىنكى باسقۇچلۇق ئېكولوگىيىلىك سىستېما ئىچىدىكى بىر جەريان بولۇپ ، جەرياننى راۋانلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن\nقوللىنىشچان پروگرامما ئېچىش ، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش.\n\nئۇ ئاچقۇچىلار قۇرالايدىغان يېڭى ئۇسۇلنى ئوتتۇرىغا قويدى\nھەر خىل پروگرامما تىللىرىنى ئىشلىتىدىغان قوللىنىشچان پروگراممىلار PHP بىلەنلا چەكلەنمەيدۇ ، بۇ ئەنئەنىۋى ئۇسۇلدا Nextcloud ئېچىشتا ئىشلىتىلىدۇ.\n\n\n### AppAPI تەلەپ قىلىدىغان پروگراممىلار تىزىملىكى:\n\n- [talk_bot_ai_example] (https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example] (https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example] (https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot] (https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI] (https://github.com/nextcloud/sumupbot)\n\n_ئەگەر سىز بىر پروگراممىنى تەرەققىي قىلدۇرماقچى بولسىڭىز ، خۇشاللىق بىلەن سىزگە ياردەم قىلىمىز ۋە ياردەم قىلىمىز ._\n\n### قوللاش\n\nبىز بۇ تۈرنى قوللىغانلىقىمىزدىن مىننەتدارمىز:\n\n- G GitHub دىكى خىزمىتىمىزنى باشلاڭ\n- Iss مەسىلە ياكى ئىقتىدار تەلىپى قۇرۇش\n- an بىر مەسىلىنى ھەل قىلىپ ، تارتىش تەلىپىنى ھاسىل قىلىڭ\n- App AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىسىنى تەرەققىي قىلدۇرۇڭ\n\nبىز AppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ ئۆزگىرىش يوشۇرۇن كۈچىدىن ھەقىقىي ھاياجانلاندۇق\nNextcloud ئىچىدە قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلى.\n\nبىز بۇ سەپەرگە ئاتلانغىنىمىزدا ، سىزنى - پروگراممېرلار ، مۇتەپەككۇرلار ، ئىجادكارلار ۋە يىراقنى كۆرگۈچىلەرنى قىزغىن تەكلىپ قىلىمىز.\nتېخىمۇ كۆپ ئىقتىدارلىق ، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇڭ.\n\n* سىزنىڭ چۈشەنچىڭىز ، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن تولىمۇ قىممەتلىك. *" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index d5902bd9..3e42148f 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "AI 整合團隊", "ExApps Settings" : "應用程式設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "您的 ExApps", "An error occurred during the request. Unable to proceed." : "請求時發生錯誤。無法繼續。", "The app has been enabled but needs to be updated." : "應用程式已啟用,但需要更新。", - "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定" + "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index c29e7a02..b947e659 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -18,7 +18,6 @@ "AI Integration Team" : "AI 整合團隊", "ExApps Settings" : "應用程式設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", @@ -191,6 +190,7 @@ "Your ExApps" : "您的 ExApps", "An error occurred during the request. Unable to proceed." : "請求時發生錯誤。無法繼續。", "The app has been enabled but needs to be updated." : "應用程式已啟用,但需要更新。", - "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定" + "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 2f4491a2..2c6314c0 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -20,7 +20,6 @@ OC.L10N.register( "AI Integration Team" : "整合團隊", "ExApps Settings" : "ExApp 設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", @@ -193,6 +192,7 @@ OC.L10N.register( "Your ExApps" : "您的 ExApp", "An error occurred during the request. Unable to proceed." : "請求時發生錯誤。無法繼續。", "The app has been enabled but needs to be updated." : "應用程式已啟用,但需要更新。", - "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定" + "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 601c8f13..c23fb446 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -18,7 +18,6 @@ "AI Integration Team" : "整合團隊", "ExApps Settings" : "ExApp 設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", @@ -191,6 +190,7 @@ "Your ExApps" : "您的 ExApp", "An error occurred during the request. Unable to proceed." : "請求時發生錯誤。無法繼續。", "The app has been enabled but needs to be updated." : "應用程式已啟用,但需要更新。", - "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定" + "Error: This app cannot be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 需要 AppAPI 的應用程式清單:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_若您希望開發應用程式,我們將很樂意為您提供協助。_\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file From 2470c98f5dbfcc85ab4c245b1bce8c91645262da Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 11 Jan 2025 00:28:17 +0000 Subject: [PATCH 064/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 6 files changed, 6 insertions(+) diff --git a/l10n/de_DE.js b/l10n/de_DE.js index bb4a7d13..111ba322 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index ef0d78d5..31057428 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -18,6 +18,7 @@ "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/ga.js b/l10n/ga.js index 09190a2b..942962f7 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "Foireann Comhtháthaithe AI", "ExApps Settings" : "Socruithe ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", diff --git a/l10n/ga.json b/l10n/ga.json index 90ab299c..1dfe15ff 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -18,6 +18,7 @@ "AI Integration Team" : "Foireann Comhtháthaithe AI", "ExApps Settings" : "Socruithe ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 2c6314c0..fc07ad36 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "整合團隊", "ExApps Settings" : "ExApp 設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index c23fb446..371ec8c4 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -18,6 +18,7 @@ "AI Integration Team" : "整合團隊", "ExApps Settings" : "ExApp 設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", From 32e6d0ad7396cf159d9e6266797a2c0769d7d9af Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 12 Jan 2025 00:28:30 +0000 Subject: [PATCH 065/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 1 + l10n/ar.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + 6 files changed, 6 insertions(+) diff --git a/l10n/ar.js b/l10n/ar.js index 0c980820..6a62abf6 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", diff --git a/l10n/ar.json b/l10n/ar.json index c22f6bd1..0d2ba18b 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -18,6 +18,7 @@ "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 74b15666..f7145dc1 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "AI Integration Team", "ExApps Settings" : "ExApps Settings", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index bb483ee6..37039ed4 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -18,6 +18,7 @@ "AI Integration Team" : "AI Integration Team", "ExApps Settings" : "ExApps Settings", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 3e42148f..9494b162 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "AI 整合團隊", "ExApps Settings" : "應用程式設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index b947e659..1f2cd292 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -18,6 +18,7 @@ "AI Integration Team" : "AI 整合團隊", "ExApps Settings" : "應用程式設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", From b64fab8d5d5028e97ac344e0756033a4410feeb3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 13 Jan 2025 00:28:19 +0000 Subject: [PATCH 066/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lt_LT.js | 3 +++ l10n/lt_LT.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index d9d7b0b6..6489e444 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Nerasta tarnybos konfigūracija", "Cancel" : "Atsisakyti", "Delete" : "Ištrinti", "Default" : "Numatytasis", @@ -8,11 +9,13 @@ OC.L10N.register( "Name" : "Vardas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", + "More info" : "Daugiau informacijos", "Enabled" : "Įjungta", "Network" : "Tinklas", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", + "Check connection" : "Tikrinti ryšį", "Update to {version}" : "Atnaujinti į versiją {version}", "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index d613dfd3..436ec88c 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -1,4 +1,5 @@ { "translations": { + "Daemon config not found" : "Nerasta tarnybos konfigūracija", "Cancel" : "Atsisakyti", "Delete" : "Ištrinti", "Default" : "Numatytasis", @@ -6,11 +7,13 @@ "Name" : "Vardas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", + "More info" : "Daugiau informacijos", "Enabled" : "Įjungta", "Network" : "Tinklas", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", + "Check connection" : "Tikrinti ryšį", "Update to {version}" : "Atnaujinti į versiją {version}", "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", From 5d39a8cb478260199cdbe96a86d4257343328414 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 21 Jan 2025 00:28:53 +0000 Subject: [PATCH 067/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 4 +++- l10n/gl.json | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index f733038f..11dd767b 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -20,6 +20,7 @@ OC.L10N.register( "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -134,6 +135,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", "External Apps" : "Aplicacións externas", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "Update to {version}" : "Actualizar a {version}", "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -161,7 +163,7 @@ OC.L10N.register( "Level" : "Nivel", "Actions" : "Accións", "Results from other categories" : "Resultados doutras categorías", - "No apps found" : "Non se atoparon aplicacións", + "No apps found" : "Non se atopou ningunha aplicación", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], "Type" : "Escribir", diff --git a/l10n/gl.json b/l10n/gl.json index 55158bfe..f39fe2e0 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -18,6 +18,7 @@ "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -132,6 +133,7 @@ "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", "External Apps" : "Aplicacións externas", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "Update to {version}" : "Actualizar a {version}", "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -159,7 +161,7 @@ "Level" : "Nivel", "Actions" : "Accións", "Results from other categories" : "Resultados doutras categorías", - "No apps found" : "Non se atoparon aplicacións", + "No apps found" : "Non se atopou ningunha aplicación", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], "Type" : "Escribir", From 3db40dde1cf6eafc0cf1131b72aa57364841fa27 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 22 Jan 2025 00:29:31 +0000 Subject: [PATCH 068/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/sr.js | 2 +- l10n/sr.json | 2 +- l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 8 files changed, 8 insertions(+), 2 deletions(-) diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 111ba322..6d9668e0 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", "ExApp not found, failed to get logs" : "ExApp nicht gefunden, Protokolle konnten nicht abgerufen werden", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Containerprotokolle konnten nicht abgerufen werden. Hinweis: Das Herunterladen des Docker-Containers funktioniert nur für Container mit der JSON-Datei oder dem Journald-Protokollierungstreiber. Fehler: %s", + "ExApp not found, failed to get deploy options" : "ExApp nicht gefunden, Bereitstellungsoptionen konnten nicht abgerufen werden", "AppAPI authentication failed" : "AppAPI-Authentifizierung fehlgeschlagen", "AppAPI ExApp notifier" : "AppAPI ExApp Benachrichtigung", "AppAPI" : "AppAPI", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 31057428..8d526bba 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", "ExApp not found, failed to get logs" : "ExApp nicht gefunden, Protokolle konnten nicht abgerufen werden", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Containerprotokolle konnten nicht abgerufen werden. Hinweis: Das Herunterladen des Docker-Containers funktioniert nur für Container mit der JSON-Datei oder dem Journald-Protokollierungstreiber. Fehler: %s", + "ExApp not found, failed to get deploy options" : "ExApp nicht gefunden, Bereitstellungsoptionen konnten nicht abgerufen werden", "AppAPI authentication failed" : "AppAPI-Authentifizierung fehlgeschlagen", "AppAPI ExApp notifier" : "AppAPI ExApp Benachrichtigung", "AppAPI" : "AppAPI", diff --git a/l10n/gl.js b/l10n/gl.js index 11dd767b..ba59a36e 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da aplicación externa (ExApp)", "ExApp not found, failed to get logs" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter os rexistros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Produciuse un erro ao obter os rexistros do contedor. Nota: a descarga do contedor Docker só funciona para contedores co controlador de rexistro json-file ou journald. Erro: %s", + "ExApp not found, failed to get deploy options" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter as opcións de despregue", "AppAPI authentication failed" : "Fallou a autenticación da AppAPI", "AppAPI ExApp notifier" : "Notificador de AppAPI para aplicación externa (ExApp)", "AppAPI" : "AppAPI (API de ExApps)", diff --git a/l10n/gl.json b/l10n/gl.json index f39fe2e0..ea58c85c 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da aplicación externa (ExApp)", "ExApp not found, failed to get logs" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter os rexistros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Produciuse un erro ao obter os rexistros do contedor. Nota: a descarga do contedor Docker só funciona para contedores co controlador de rexistro json-file ou journald. Erro: %s", + "ExApp not found, failed to get deploy options" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter as opcións de despregue", "AppAPI authentication failed" : "Fallou a autenticación da AppAPI", "AppAPI ExApp notifier" : "Notificador de AppAPI para aplicación externa (ExApp)", "AppAPI" : "AppAPI (API de ExApps)", diff --git a/l10n/sr.js b/l10n/sr.js index d84441d5..eb0e4216 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -89,7 +89,7 @@ OC.L10N.register( "Wait for initialization step to finish" : "Чека се да се заврши корак иницијализације", "Enabled" : "укључено", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Проверава да ли је ExApp успешно обрадила уљкучени догађај и регистровала све ствари како треба", - "Only if ExApp container is preset" : "Само ако је присутан ExApp контејтнер", + "Only if ExApp container is preset" : "Само ако је присутан ExApp контејнер", "Deploy test passed successfully!" : "Тест постављања је успешно прошао!", "Deploy test failed at step \"{step}\"" : "Тест постављања је пао на кораку „{step}”", "Edit Deploy Daemon" : "Уреди Даемона за постављање", diff --git a/l10n/sr.json b/l10n/sr.json index f847cfa0..a269d2ff 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -87,7 +87,7 @@ "Wait for initialization step to finish" : "Чека се да се заврши корак иницијализације", "Enabled" : "укључено", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Проверава да ли је ExApp успешно обрадила уљкучени догађај и регистровала све ствари како треба", - "Only if ExApp container is preset" : "Само ако је присутан ExApp контејтнер", + "Only if ExApp container is preset" : "Само ако је присутан ExApp контејнер", "Deploy test passed successfully!" : "Тест постављања је успешно прошао!", "Deploy test failed at step \"{step}\"" : "Тест постављања је пао на кораку „{step}”", "Edit Deploy Daemon" : "Уреди Даемона за постављање", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index fc07ad36..5cd15a26 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "無法執行 ExApp 的更新", "ExApp not found, failed to get logs" : "找不到 ExApp,無法取得紀錄檔", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "無法取得容器紀錄檔。注意:下載 Docker 容器僅適用於有 json 檔案或 journald 紀錄檔驅動程式的容器。錯誤:%s", + "ExApp not found, failed to get deploy options" : "找不到 ExApp,無法取得部署選項", "AppAPI authentication failed" : "AppAPI 驗證失敗", "AppAPI ExApp notifier" : "AppAPI ExApp 通知", "AppAPI" : "AppAPI", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 371ec8c4..1f14b854 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "無法執行 ExApp 的更新", "ExApp not found, failed to get logs" : "找不到 ExApp,無法取得紀錄檔", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "無法取得容器紀錄檔。注意:下載 Docker 容器僅適用於有 json 檔案或 journald 紀錄檔驅動程式的容器。錯誤:%s", + "ExApp not found, failed to get deploy options" : "找不到 ExApp,無法取得部署選項", "AppAPI authentication failed" : "AppAPI 驗證失敗", "AppAPI ExApp notifier" : "AppAPI ExApp 通知", "AppAPI" : "AppAPI", From 90b2799e6f5fae15e5bb38d5aadf378a08a7a82f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 23 Jan 2025 00:29:11 +0000 Subject: [PATCH 069/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/gl.js | 2 +- l10n/gl.json | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/ga.js b/l10n/ga.js index 942962f7..e2c4b9a1 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Níorbh fhéidir nuashonrú ExApp a dhéanamh", "ExApp not found, failed to get logs" : "ExApp gan aimsiú, theip ar logaí a fháil", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Theip ar logaí coimeádán a fháil. Nóta: Ní oibríonn íoslódálacha coimeádán Docker ach do shoithí a bhfuil an tiománaí logála json-file nó journald acu. Earráid: %s", + "ExApp not found, failed to get deploy options" : "ExApp gan aimsiú, theip ar na roghanna imlonnaithe a fháil", "AppAPI authentication failed" : "Theip ar fhíordheimhniú AppAPI", "AppAPI ExApp notifier" : "AppAPI fógra exApp", "AppAPI" : "AppAPI", diff --git a/l10n/ga.json b/l10n/ga.json index 1dfe15ff..f86f77ad 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "Níorbh fhéidir nuashonrú ExApp a dhéanamh", "ExApp not found, failed to get logs" : "ExApp gan aimsiú, theip ar logaí a fháil", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Theip ar logaí coimeádán a fháil. Nóta: Ní oibríonn íoslódálacha coimeádán Docker ach do shoithí a bhfuil an tiománaí logála json-file nó journald acu. Earráid: %s", + "ExApp not found, failed to get deploy options" : "ExApp gan aimsiú, theip ar na roghanna imlonnaithe a fháil", "AppAPI authentication failed" : "Theip ar fhíordheimhniú AppAPI", "AppAPI ExApp notifier" : "AppAPI fógra exApp", "AppAPI" : "AppAPI", diff --git a/l10n/gl.js b/l10n/gl.js index ba59a36e..53500918 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -68,7 +68,7 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Comprobe os rexistros", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Comprobe os rexistros", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", - "No Deploy daemons configured" : "Non se configurou ningún servizo de despregadura", + "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", diff --git a/l10n/gl.json b/l10n/gl.json index ea58c85c..a04b9b1b 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -66,7 +66,7 @@ "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Comprobe os rexistros", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Comprobe os rexistros", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", - "No Deploy daemons configured" : "Non se configurou ningún servizo de despregadura", + "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", From 2b4060913b1df14382a7757fb41f2834a299beda Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 24 Jan 2025 00:28:59 +0000 Subject: [PATCH 070/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es.js | 1 + l10n/es.json | 1 + l10n/sk.js | 1 + l10n/sk.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index a1974624..ecb7201f 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -128,6 +128,7 @@ OC.L10N.register( "External Apps" : "Apps Externas", "Update to {version}" : "Actualizar a {version}", "Remove" : "Quitar", + "Delete data on remove" : "Eliminar datos al borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", diff --git a/l10n/es.json b/l10n/es.json index bd4e2649..0330b148 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -126,6 +126,7 @@ "External Apps" : "Apps Externas", "Update to {version}" : "Actualizar a {version}", "Remove" : "Quitar", + "Delete data on remove" : "Eliminar datos al borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", diff --git a/l10n/sk.js b/l10n/sk.js index 22210143..242e5592 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -9,6 +9,7 @@ OC.L10N.register( "Delete" : "Vymazať", "Default" : "Predvolené", "Edit" : "Upraviť", + "Password confirmation failed" : "Overenie hesla zlyhalo", "Deploy Daemon" : "Nasadiť proces služby", "Name" : "Názov", "Host" : "Adresa servera", diff --git a/l10n/sk.json b/l10n/sk.json index 83189099..27f4c3aa 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -7,6 +7,7 @@ "Delete" : "Vymazať", "Default" : "Predvolené", "Edit" : "Upraviť", + "Password confirmation failed" : "Overenie hesla zlyhalo", "Deploy Daemon" : "Nasadiť proces služby", "Name" : "Názov", "Host" : "Adresa servera", From 019b19c7ef2681885e29adc21041c12c05ce86dc Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 25 Jan 2025 00:49:54 +0000 Subject: [PATCH 071/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 3 +++ l10n/de.json | 3 +++ l10n/sr.js | 3 +++ l10n/sr.json | 3 +++ l10n/tr.js | 1 + l10n/tr.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + 8 files changed, 16 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index c9892c0a..d04e47b6 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -14,12 +14,14 @@ OC.L10N.register( "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", "ExApp not found, failed to get logs" : "ExApp nicht gefunden, Protokolle konnten nicht abgerufen werden", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Containerprotokolle konnten nicht abgerufen werden. Hinweis: Das Herunterladen des Docker-Containers funktioniert nur für Container mit der JSON-Datei oder dem Journald-Protokollierungstreiber. Fehler: %s", + "ExApp not found, failed to get deploy options" : "ExApp nicht gefunden, Bereitstellungsoptionen konnten nicht abgerufen werden", "AppAPI authentication failed" : "AppAPI-Authentifizierung fehlgeschlagen", "AppAPI ExApp notifier" : "AppAPI ExApp Benachrichtigung", "AppAPI" : "AppAPI", "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -134,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "External Apps" : "Externe Apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/de.json b/l10n/de.json index 785640f8..7fe17795 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -12,12 +12,14 @@ "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", "ExApp not found, failed to get logs" : "ExApp nicht gefunden, Protokolle konnten nicht abgerufen werden", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Containerprotokolle konnten nicht abgerufen werden. Hinweis: Das Herunterladen des Docker-Containers funktioniert nur für Container mit der JSON-Datei oder dem Journald-Protokollierungstreiber. Fehler: %s", + "ExApp not found, failed to get deploy options" : "ExApp nicht gefunden, Bereitstellungsoptionen konnten nicht abgerufen werden", "AppAPI authentication failed" : "AppAPI-Authentifizierung fehlgeschlagen", "AppAPI ExApp notifier" : "AppAPI ExApp Benachrichtigung", "AppAPI" : "AppAPI", "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -132,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "External Apps" : "Externe Apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/sr.js b/l10n/sr.js index eb0e4216..5226b00b 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -14,12 +14,14 @@ OC.L10N.register( "Could not perform update of ExApp" : "Није могло да се изврши ажурирање ExApp", "ExApp not found, failed to get logs" : "ExApp није пронађена, није успело добављање дневника", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Није успело преузимање дневника контејнера. Напомена: преузимање Docker контејнера функционише само за контејнере који имају драјвер дневника типа json-фајл или journald. Грешка: %s", + "ExApp not found, failed to get deploy options" : "ExApp није пронађена, није успело добављање опција постављања", "AppAPI authentication failed" : "Није успела AppAPI провера идентитета", "AppAPI ExApp notifier" : "AppAPI ExApp обавештавач", "AppAPI" : "AppAPI", "AI Integration Team" : "Тим за интеграцију AI", "ExApps Settings" : "Подешавања за ExApp", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -134,6 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", "External Apps" : "Спољне апликације", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "Update to {version}" : "Ажурирај на верзију {version}", "Remove" : "Уклони", "Delete data on remove" : "Обриши податке приликом уклањања", diff --git a/l10n/sr.json b/l10n/sr.json index a269d2ff..64aa984f 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -12,12 +12,14 @@ "Could not perform update of ExApp" : "Није могло да се изврши ажурирање ExApp", "ExApp not found, failed to get logs" : "ExApp није пронађена, није успело добављање дневника", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Није успело преузимање дневника контејнера. Напомена: преузимање Docker контејнера функционише само за контејнере који имају драјвер дневника типа json-фајл или journald. Грешка: %s", + "ExApp not found, failed to get deploy options" : "ExApp није пронађена, није успело добављање опција постављања", "AppAPI authentication failed" : "Није успела AppAPI провера идентитета", "AppAPI ExApp notifier" : "AppAPI ExApp обавештавач", "AppAPI" : "AppAPI", "AI Integration Team" : "Тим за интеграцију AI", "ExApps Settings" : "Подешавања за ExApp", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -132,6 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", "External Apps" : "Спољне апликације", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "Update to {version}" : "Ажурирај на верзију {version}", "Remove" : "Уклони", "Delete data on remove" : "Обриши податке приликом уклањања", diff --git a/l10n/tr.js b/l10n/tr.js index 1d1fbd5c..dc13ed2d 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", "ExApp not found, failed to get logs" : "ExApp bulunamadı. Günlük kayıtları alınamadı", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kapsayıcı günlükleri alınamadı. Not: Docker kapsayıcısının indirilmesi yalnızca json-file veya journald günlük sürücüsünü kullanan kapsayıcılarla çalışır. Hata: %s", + "ExApp not found, failed to get deploy options" : "ExApp bulunamadı. dağıtım seçenekleri alınamadı", "AppAPI authentication failed" : "AppAPI kimliği doğrulanamadı ", "AppAPI ExApp notifier" : "AppAPI ExApp bildirimi", "AppAPI" : "AppAPI", diff --git a/l10n/tr.json b/l10n/tr.json index 2773b72e..19286f06 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", "ExApp not found, failed to get logs" : "ExApp bulunamadı. Günlük kayıtları alınamadı", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kapsayıcı günlükleri alınamadı. Not: Docker kapsayıcısının indirilmesi yalnızca json-file veya journald günlük sürücüsünü kullanan kapsayıcılarla çalışır. Hata: %s", + "ExApp not found, failed to get deploy options" : "ExApp bulunamadı. dağıtım seçenekleri alınamadı", "AppAPI authentication failed" : "AppAPI kimliği doğrulanamadı ", "AppAPI ExApp notifier" : "AppAPI ExApp bildirimi", "AppAPI" : "AppAPI", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 9494b162..ee02f739 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "無法執行 ExApp 的更新。", "ExApp not found, failed to get logs" : "找不到 ExApp,無法取得紀錄檔", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "無法取得容器紀錄檔。注意:下載 Docker 容器僅適用於有 json-file或 journald 紀錄檔驅動程式的容器。錯誤:%s", + "ExApp not found, failed to get deploy options" : "找不到 ExApp,無法取得部署選項", "AppAPI authentication failed" : "AppAPI 驗證失敗", "AppAPI ExApp notifier" : "AppAPI ExApp 通知器", "AppAPI" : "AppAPI", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 1f2cd292..65bb655f 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "無法執行 ExApp 的更新。", "ExApp not found, failed to get logs" : "找不到 ExApp,無法取得紀錄檔", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "無法取得容器紀錄檔。注意:下載 Docker 容器僅適用於有 json-file或 journald 紀錄檔驅動程式的容器。錯誤:%s", + "ExApp not found, failed to get deploy options" : "找不到 ExApp,無法取得部署選項", "AppAPI authentication failed" : "AppAPI 驗證失敗", "AppAPI ExApp notifier" : "AppAPI ExApp 通知器", "AppAPI" : "AppAPI", From 06896a2c7d2c2bfdb28895baa2d52602ef547c15 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 26 Jan 2025 00:30:03 +0000 Subject: [PATCH 072/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 1 + l10n/ar.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/tr.js | 1 + l10n/tr.json | 1 + 6 files changed, 6 insertions(+) diff --git a/l10n/ar.js b/l10n/ar.js index 6a62abf6..e6585649 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "تعذّر تنفيذ عملية تحديث ExApp", "ExApp not found, failed to get logs" : "تعذّر العثور على التطبيق الخارحي ExApp. و فشل في الحصول على سجلات الحركة logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "تعذّر الحصول على سجلات الحاوية container logs. ملاحظة: تنزيل حاوية Docker يعمل فقط مع الحاويات التي تحتوي على ملف json أو برنامج تشغيل تسجيل Journald. الخطأ: %s", + "ExApp not found, failed to get deploy options" : "التطبيق الخارجي ExApp غير موجود. تعذّر الحصول على خيارات النشر", "AppAPI authentication failed" : "فشل تصديق الهُويَّة في AppAPI", "AppAPI ExApp notifier" : "مُنبِّه واجهة AppAPI التطبيق الخارجي ExApp", "AppAPI" : "واجهة AppAPO", diff --git a/l10n/ar.json b/l10n/ar.json index 0d2ba18b..7e1f8550 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "تعذّر تنفيذ عملية تحديث ExApp", "ExApp not found, failed to get logs" : "تعذّر العثور على التطبيق الخارحي ExApp. و فشل في الحصول على سجلات الحركة logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "تعذّر الحصول على سجلات الحاوية container logs. ملاحظة: تنزيل حاوية Docker يعمل فقط مع الحاويات التي تحتوي على ملف json أو برنامج تشغيل تسجيل Journald. الخطأ: %s", + "ExApp not found, failed to get deploy options" : "التطبيق الخارجي ExApp غير موجود. تعذّر الحصول على خيارات النشر", "AppAPI authentication failed" : "فشل تصديق الهُويَّة في AppAPI", "AppAPI ExApp notifier" : "مُنبِّه واجهة AppAPI التطبيق الخارجي ExApp", "AppAPI" : "واجهة AppAPO", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index f7145dc1..d1fbc5ed 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Could not perform update of ExApp", "ExApp not found, failed to get logs" : "ExApp not found, failed to get logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s", + "ExApp not found, failed to get deploy options" : "ExApp not found, failed to get deploy options", "AppAPI authentication failed" : "AppAPI authentication failed", "AppAPI ExApp notifier" : "AppAPI ExApp notifier", "AppAPI" : "AppAPI", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 37039ed4..e2920053 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "Could not perform update of ExApp", "ExApp not found, failed to get logs" : "ExApp not found, failed to get logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s", + "ExApp not found, failed to get deploy options" : "ExApp not found, failed to get deploy options", "AppAPI authentication failed" : "AppAPI authentication failed", "AppAPI ExApp notifier" : "AppAPI ExApp notifier", "AppAPI" : "AppAPI", diff --git a/l10n/tr.js b/l10n/tr.js index dc13ed2d..34b8e2d4 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -21,6 +21,7 @@ OC.L10N.register( "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", "ExApps Settings" : "ExApps ayarları", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", diff --git a/l10n/tr.json b/l10n/tr.json index 19286f06..62ed7e39 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -19,6 +19,7 @@ "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", "ExApps Settings" : "ExApps ayarları", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", From 826c60cc13c6bcc6f13dce08a53438f59159288f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 27 Jan 2025 00:28:56 +0000 Subject: [PATCH 073/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 1 + l10n/cs.json | 1 + l10n/lt_LT.js | 4 +++- l10n/lt_LT.json | 4 +++- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index dd802e6a..64c26e91 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Nebylo možné provést aktualizaci ExApp", "ExApp not found, failed to get logs" : "ExApp nenalezena, nepodařilo se získat záznamy událostí", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nepodařilo se získat záznamy událostí v kontejneru. Pozn.: Stahování docker kontejneru funguje pouze pro kontejnery s ovladačem zaznamenávání json-file nebo journald. Chyba: %s", + "ExApp not found, failed to get deploy options" : "ExApp nenalezena, nepodařilo se získat předvolby nasazení", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", "AppAPI" : "AppAPI", diff --git a/l10n/cs.json b/l10n/cs.json index 8e4db60f..c48315f3 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "Nebylo možné provést aktualizaci ExApp", "ExApp not found, failed to get logs" : "ExApp nenalezena, nepodařilo se získat záznamy událostí", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nepodařilo se získat záznamy událostí v kontejneru. Pozn.: Stahování docker kontejneru funguje pouze pro kontejnery s ovladačem zaznamenávání json-file nebo journald. Chyba: %s", + "ExApp not found, failed to get deploy options" : "ExApp nenalezena, nepodařilo se získat předvolby nasazení", "AppAPI authentication failed" : "ověřování vůči AppAPI se nezdařilo", "AppAPI ExApp notifier" : "Upozorňování AppAPI ExApp", "AppAPI" : "AppAPI", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 6489e444..e4ab006b 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -6,7 +6,8 @@ OC.L10N.register( "Delete" : "Ištrinti", "Default" : "Numatytasis", "Edit" : "Taisyti", - "Name" : "Vardas", + "Name" : "Pavadinimas", + "Protocol" : "Protokolas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", "More info" : "Daugiau informacijos", @@ -56,6 +57,7 @@ OC.L10N.register( "Disable" : "Išjungti", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ši programėlė nėra pažymėta kaip suderinama su jūsų Nextcloud versija. Jei tęsite, vis tiek galėsite įdiegti programėlę. Turėkite omenyje, kad programėlė gali neveikti taip, kaip tikimasi.", "An error occurred during the request. Unable to proceed." : "Užklausos metu įvyko klaida. Nepavyksta tęsti.", + "The app has been enabled but needs to be updated." : "Programėlė įjungta, bet turi būti atnaujinta.", "Error: This app cannot be enabled because it makes the server unstable" : "Klaida: Ši programėlė negali būti įjungta, nes ji neigiamai veikia serverio stabilumą" }, "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 436ec88c..09daece0 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -4,7 +4,8 @@ "Delete" : "Ištrinti", "Default" : "Numatytasis", "Edit" : "Taisyti", - "Name" : "Vardas", + "Name" : "Pavadinimas", + "Protocol" : "Protokolas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", "More info" : "Daugiau informacijos", @@ -54,6 +55,7 @@ "Disable" : "Išjungti", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ši programėlė nėra pažymėta kaip suderinama su jūsų Nextcloud versija. Jei tęsite, vis tiek galėsite įdiegti programėlę. Turėkite omenyje, kad programėlė gali neveikti taip, kaip tikimasi.", "An error occurred during the request. Unable to proceed." : "Užklausos metu įvyko klaida. Nepavyksta tęsti.", + "The app has been enabled but needs to be updated." : "Programėlė įjungta, bet turi būti atnaujinta.", "Error: This app cannot be enabled because it makes the server unstable" : "Klaida: Ši programėlė negali būti įjungta, nes ji neigiamai veikia serverio stabilumą" },"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 From 014b93ba999942e4642c9a64af8ff2e48deca949 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 29 Jan 2025 00:29:23 +0000 Subject: [PATCH 074/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/is.js | 1 + l10n/is.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/is.js b/l10n/is.js index 4cb32c1d..d1817da3 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Hætta við", "Delete" : "Eyða", + "Default" : "Sjálfgefið", "Edit" : "Breyta", "Name" : "Heiti", "Host" : "Þjónn", diff --git a/l10n/is.json b/l10n/is.json index 59158fc8..21562c7d 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Hætta við", "Delete" : "Eyða", + "Default" : "Sjálfgefið", "Edit" : "Breyta", "Name" : "Heiti", "Host" : "Þjónn", From c46c8a4bea12b63769ba0e72910e1a9dc6812fe5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 1 Feb 2025 00:29:10 +0000 Subject: [PATCH 075/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 2 +- l10n/de.json | 2 +- l10n/de_DE.js | 2 +- l10n/de_DE.json | 2 +- l10n/is.js | 4 ++++ l10n/is.json | 4 ++++ 6 files changed, 12 insertions(+), 4 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index d04e47b6..ba6559d6 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -78,7 +78,7 @@ OC.L10N.register( "Remove test ExApp" : "Test-ExApp entfernen", "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von „Bereitstellungstest beenden“ entfernt.", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", diff --git a/l10n/de.json b/l10n/de.json index 7fe17795..466a60e7 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -76,7 +76,7 @@ "Remove test ExApp" : "Test-ExApp entfernen", "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von „Bereitstellungstest beenden“ entfernt.", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 6d9668e0..d527507b 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -78,7 +78,7 @@ OC.L10N.register( "Remove test ExApp" : "Test-ExApp entfernen", "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von „Bereitstellungstest beenden“ entfernt.", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 8d526bba..61064313 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -76,7 +76,7 @@ "Remove test ExApp" : "Test-ExApp entfernen", "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von „Bereitstellungstest beenden“ entfernt.", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", diff --git a/l10n/is.js b/l10n/is.js index d1817da3..9f5cd848 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -5,8 +5,11 @@ OC.L10N.register( "Delete" : "Eyða", "Default" : "Sjálfgefið", "Edit" : "Breyta", + "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Name" : "Heiti", "Host" : "Þjónn", + "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", + "Compute device" : "Reiknitæki", "Enabled" : "Virkt", "Display name" : "Birtingarnafn", "Network" : "Netkerfi", @@ -14,6 +17,7 @@ OC.L10N.register( "Save" : "Vista", "Register" : "Nýskráning", "Update to {version}" : "Uppfæra í {version}", + "Delete data on remove" : "Eyða gögnum við fjarlægingu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", diff --git a/l10n/is.json b/l10n/is.json index 21562c7d..4ac8443b 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -3,8 +3,11 @@ "Delete" : "Eyða", "Default" : "Sjálfgefið", "Edit" : "Breyta", + "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Name" : "Heiti", "Host" : "Þjónn", + "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", + "Compute device" : "Reiknitæki", "Enabled" : "Virkt", "Display name" : "Birtingarnafn", "Network" : "Netkerfi", @@ -12,6 +15,7 @@ "Save" : "Vista", "Register" : "Nýskráning", "Update to {version}" : "Uppfæra í {version}", + "Delete data on remove" : "Eyða gögnum við fjarlægingu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", From c685898dd103fa320286dc1649c67ecd2551f82f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 6 Feb 2025 00:29:03 +0000 Subject: [PATCH 076/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 6 +++--- l10n/gl.json | 6 +++--- l10n/hu.js | 1 + l10n/hu.json | 1 + 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 53500918..54a1ffcd 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -21,7 +21,7 @@ OC.L10N.register( "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -136,7 +136,7 @@ OC.L10N.register( "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", "External Apps" : "Aplicacións externas", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "Update to {version}" : "Actualizar a {version}", "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -195,6 +195,6 @@ OC.L10N.register( "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index a04b9b1b..93d710a2 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -19,7 +19,7 @@ "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -134,7 +134,7 @@ "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", "External Apps" : "Aplicacións externas", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "Update to {version}" : "Actualizar a {version}", "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -193,6 +193,6 @@ "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Destaque o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/hu.js b/l10n/hu.js index f97c2685..29f95c77 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Mégse", "Delete" : "Törlés", + "Default" : "Alapértelmezett", "Edit" : "Szerkesztés", "Name" : "Név", "Host" : "Kiszolgáló", diff --git a/l10n/hu.json b/l10n/hu.json index 132ebfa9..d5c1fccb 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Mégse", "Delete" : "Törlés", + "Default" : "Alapértelmezett", "Edit" : "Szerkesztés", "Name" : "Név", "Host" : "Kiszolgáló", From 0d50436b3eb41fc7dbf89a85b64e57ac3cf57985 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 9 Feb 2025 00:28:52 +0000 Subject: [PATCH 077/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 1 + l10n/da.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/da.js b/l10n/da.js index 67619d15..be582418 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Annullér", "Delete" : "Slet", + "Default" : "Standard", "Edit" : "Redigér", "Name" : "Navn", "Host" : "Vært", diff --git a/l10n/da.json b/l10n/da.json index c22c562a..b12a6443 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Annullér", "Delete" : "Slet", + "Default" : "Standard", "Edit" : "Redigér", "Name" : "Navn", "Host" : "Vært", From 5ff1304a4552eeaf472e9261388d878edf9a5098 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 11 Feb 2025 00:29:03 +0000 Subject: [PATCH 078/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_PT.js | 5 +++-- l10n/pt_PT.json | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 23e25f3c..4b4fe42e 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -13,7 +13,7 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", - "Update to {version}" : "Actualizar para {version}", + "Update to {version}" : "Atualizar para {version}", "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", @@ -26,6 +26,7 @@ OC.L10N.register( "Developer documentation" : "Documentação de programador", "Supported" : "Suportado", "Featured" : "Destacado", + "Update to {update}" : "Atualizar para {update}", "Version" : "Versão", "Level" : "Nível", "Actions" : "Acções", @@ -37,7 +38,7 @@ OC.L10N.register( "Details" : "Detalhes", "Changelog" : "Registo de alterações", "Disabled apps" : "Apps desativadas", - "Updates" : "Actualizações", + "Updates" : "Atualizações", "Enable" : "Activar", "Disable" : "Desativar" }, diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index a35c7c15..6167e5e8 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -11,7 +11,7 @@ "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", - "Update to {version}" : "Actualizar para {version}", + "Update to {version}" : "Atualizar para {version}", "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", @@ -24,6 +24,7 @@ "Developer documentation" : "Documentação de programador", "Supported" : "Suportado", "Featured" : "Destacado", + "Update to {update}" : "Atualizar para {update}", "Version" : "Versão", "Level" : "Nível", "Actions" : "Acções", @@ -35,7 +36,7 @@ "Details" : "Detalhes", "Changelog" : "Registo de alterações", "Disabled apps" : "Apps desativadas", - "Updates" : "Actualizações", + "Updates" : "Atualizações", "Enable" : "Activar", "Disable" : "Desativar" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" From 4f7dfd435e27f0fa429ebf4e9378b7071ba19775 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 12 Feb 2025 00:29:45 +0000 Subject: [PATCH 079/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 12 ++++++++++++ l10n/da.json | 12 ++++++++++++ l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/gl.js | 12 ++++++------ l10n/gl.json | 12 ++++++------ l10n/pt_PT.js | 6 +++--- l10n/pt_PT.json | 6 +++--- 8 files changed, 44 insertions(+), 18 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index be582418..1feee940 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -5,16 +5,23 @@ OC.L10N.register( "Delete" : "Slet", "Default" : "Standard", "Edit" : "Redigér", + "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", + "Deploy Daemon" : "Implementer Daemon", "Name" : "Navn", "Host" : "Vært", + "GPUs support" : "GPUs support", + "Compute device" : "Beregningsenhed", "Enabled" : "Aktiveret", "Display name" : "Vist navn", "Network" : "Netværk", "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Registér", + "Check connection" : "Tjek forbindelsen", + "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", + "Delete data on remove" : "Slet data ved fjernelse", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en mindste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en højeste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette program kan ikke installeres, da følgende afhængigheder ikke imødekommes:", @@ -30,8 +37,10 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", + "Default Deploy daemon is not accessible" : "Standard Deploy daemon er ikke tilgængelig", "Icon" : "Ikon", "Version" : "Version", + "Daemon" : "Daemon", "Level" : "Niveau", "Actions" : "Handlinger", "Results from other categories" : "Resultater fra andre kategorier", @@ -48,10 +57,13 @@ OC.L10N.register( "Updates" : "Opdateringer", "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", + "Deploy and Enable" : "Implementer og aktivér", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", + "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", + "The app has been enabled but needs to be updated." : "Appen er blevet aktiveret, men skal opdateres.", "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index b12a6443..40ff76de 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -3,16 +3,23 @@ "Delete" : "Slet", "Default" : "Standard", "Edit" : "Redigér", + "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", + "Deploy Daemon" : "Implementer Daemon", "Name" : "Navn", "Host" : "Vært", + "GPUs support" : "GPUs support", + "Compute device" : "Beregningsenhed", "Enabled" : "Aktiveret", "Display name" : "Vist navn", "Network" : "Netværk", "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Registér", + "Check connection" : "Tjek forbindelsen", + "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", + "Delete data on remove" : "Slet data ved fjernelse", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en mindste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en højeste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette program kan ikke installeres, da følgende afhængigheder ikke imødekommes:", @@ -28,8 +35,10 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", + "Default Deploy daemon is not accessible" : "Standard Deploy daemon er ikke tilgængelig", "Icon" : "Ikon", "Version" : "Version", + "Daemon" : "Daemon", "Level" : "Niveau", "Actions" : "Handlinger", "Results from other categories" : "Resultater fra andre kategorier", @@ -46,10 +55,13 @@ "Updates" : "Opdateringer", "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", + "Deploy and Enable" : "Implementer og aktivér", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", + "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", + "The app has been enabled but needs to be updated." : "Appen er blevet aktiveret, men skal opdateres.", "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/et_EE.js b/l10n/et_EE.js index d2a5d04d..f9aa4d93 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -16,6 +16,7 @@ OC.L10N.register( "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", + "View in store" : "Vaata poes", "Visit website" : "Külasta veebisaiti", "Report a bug" : "Teata veast", "User documentation" : "Kasutaja dokumentatsioon", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 8c6b498c..8d4192bc 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -14,6 +14,7 @@ "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", + "View in store" : "Vaata poes", "Visit website" : "Külasta veebisaiti", "Report a bug" : "Teata veast", "User documentation" : "Kasutaja dokumentatsioon", diff --git a/l10n/gl.js b/l10n/gl.js index 54a1ffcd..9e21ff58 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -3,7 +3,7 @@ OC.L10N.register( { "Daemon config not found" : "Non se atopou a configuración do servizo", "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", - "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", + "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), consulte os ficheiros de rexistro de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", @@ -46,7 +46,7 @@ OC.L10N.register( "Test deploy" : "Proba da despregadura", "Edit" : "Editar", "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", - "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Comprobe os rexistros", + "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", @@ -65,8 +65,8 @@ OC.L10N.register( "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Comprobe os rexistros", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Comprobe os rexistros", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", @@ -132,9 +132,9 @@ OC.L10N.register( "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", - "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Comprobe os rexistros", + "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", - "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", + "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "Update to {version}" : "Actualizar a {version}", diff --git a/l10n/gl.json b/l10n/gl.json index 93d710a2..42c52fc5 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -1,7 +1,7 @@ { "translations": { "Daemon config not found" : "Non se atopou a configuración do servizo", "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", - "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), comprobe os rexistros de Nextcloud", + "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), consulte os ficheiros de rexistro de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", @@ -44,7 +44,7 @@ "Test deploy" : "Proba da despregadura", "Edit" : "Editar", "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", - "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Comprobe os rexistros", + "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", @@ -63,8 +63,8 @@ "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Comprobe os rexistros", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Comprobe os rexistros", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", @@ -130,9 +130,9 @@ "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", - "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Comprobe os rexistros", + "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", - "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Comprobe os rexistros", + "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "Update to {version}" : "Actualizar a {version}", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 4b4fe42e..af15ca45 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -7,7 +7,7 @@ OC.L10N.register( "Edit" : "Editar", "Name" : "Nome", "Host" : "Anfitrião", - "Enabled" : "Activo", + "Enabled" : "Ativado", "Display name" : "Nome a exibir", "Network" : "Rede", "Confirm" : "Confirmar", @@ -29,7 +29,7 @@ OC.L10N.register( "Update to {update}" : "Atualizar para {update}", "Version" : "Versão", "Level" : "Nível", - "Actions" : "Acções", + "Actions" : "Ações", "Results from other categories" : "Resultados de outras categorias", "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", @@ -39,7 +39,7 @@ OC.L10N.register( "Changelog" : "Registo de alterações", "Disabled apps" : "Apps desativadas", "Updates" : "Atualizações", - "Enable" : "Activar", + "Enable" : "Ativar", "Disable" : "Desativar" }, "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 6167e5e8..0f6fa287 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -5,7 +5,7 @@ "Edit" : "Editar", "Name" : "Nome", "Host" : "Anfitrião", - "Enabled" : "Activo", + "Enabled" : "Ativado", "Display name" : "Nome a exibir", "Network" : "Rede", "Confirm" : "Confirmar", @@ -27,7 +27,7 @@ "Update to {update}" : "Atualizar para {update}", "Version" : "Versão", "Level" : "Nível", - "Actions" : "Acções", + "Actions" : "Ações", "Results from other categories" : "Resultados de outras categorias", "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", @@ -37,7 +37,7 @@ "Changelog" : "Registo de alterações", "Disabled apps" : "Apps desativadas", "Updates" : "Atualizações", - "Enable" : "Activar", + "Enable" : "Ativar", "Disable" : "Desativar" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file From 8d48e06ecdaee04e43ace45357b5934dea77b915 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 13 Feb 2025 00:28:54 +0000 Subject: [PATCH 080/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/is.js | 1 + l10n/is.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/is.js b/l10n/is.js index 9f5cd848..d5407621 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -17,6 +17,7 @@ OC.L10N.register( "Save" : "Vista", "Register" : "Nýskráning", "Update to {version}" : "Uppfæra í {version}", + "Remove" : "Fjarlægja", "Delete data on remove" : "Eyða gögnum við fjarlægingu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", diff --git a/l10n/is.json b/l10n/is.json index 4ac8443b..6dd3e45e 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -15,6 +15,7 @@ "Save" : "Vista", "Register" : "Nýskráning", "Update to {version}" : "Uppfæra í {version}", + "Remove" : "Fjarlægja", "Delete data on remove" : "Eyða gögnum við fjarlægingu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", From ac4c0890ba58191e8d14670c9e17b84ab1a02452 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 16 Feb 2025 00:52:40 +0000 Subject: [PATCH 081/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ko.js | 2 ++ l10n/ko.json | 2 ++ l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 4 files changed, 6 insertions(+) diff --git a/l10n/ko.js b/l10n/ko.js index 473df611..a3938ff5 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -44,6 +44,7 @@ OC.L10N.register( "Edit" : "편집", "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", + "Password confirmation failed" : "암호 확인에 실패했습니다.", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", @@ -122,6 +123,7 @@ OC.L10N.register( "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", + "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", diff --git a/l10n/ko.json b/l10n/ko.json index 9eef69af..d37e3ea1 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -42,6 +42,7 @@ "Edit" : "편집", "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", + "Password confirmation failed" : "암호 확인에 실패했습니다.", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", @@ -120,6 +121,7 @@ "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", + "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 5932e08a..1c68eab6 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -27,6 +27,7 @@ OC.L10N.register( "Failed to save admin options" : "保存管理员选项失败", "Cancel" : "取消", "Delete" : "删除", + "Default" : "默认", "Edit" : "编辑", "Deploy Daemon" : "部署守护进程", "Name" : "名称", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index e635d1ff..aa0d40d3 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -25,6 +25,7 @@ "Failed to save admin options" : "保存管理员选项失败", "Cancel" : "取消", "Delete" : "删除", + "Default" : "默认", "Edit" : "编辑", "Deploy Daemon" : "部署守护进程", "Name" : "名称", From 71a1e722931c5add8602bbbef5f9824ef18c6f6f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 18 Feb 2025 00:29:06 +0000 Subject: [PATCH 082/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ca.js | 7 +++++++ l10n/ca.json | 7 +++++++ l10n/de.js | 2 +- l10n/de.json | 2 +- l10n/de_DE.js | 2 +- l10n/de_DE.json | 2 +- 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/l10n/ca.js b/l10n/ca.js index 54be55ef..6d0b389f 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -15,9 +15,12 @@ OC.L10N.register( "Cancel" : "Cancelar", "Delete" : "Suprimir", "Edit" : "Edició", + "Deploy Daemon" : "Desplega Dimoni", "Name" : "Nom", "Host" : "Servidor", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "Suport de GPU", + "Compute device" : "Dispositiu de computació", "Enabled" : "Habilitat", "Display name" : "Nom de visualització", "Network" : "Xarxa", @@ -27,6 +30,7 @@ OC.L10N.register( "External Apps" : "Apps externes", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", + "Delete data on remove" : "Suprimir dades en eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicació no es pot instal·lar perquè les següents dependències no es compleixen:", @@ -42,6 +46,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions destacades es desenvolupen per i dins de la comunitat. Ofereixen funcionalitats centrals i estan preparades per ser emprades en producció.", "Featured" : "Destacada", "Update to {update}" : "Actualitza a {update}", + "Default Deploy daemon is not accessible" : "El dimoni de desplegament predeterminat no és accessible", "Icon" : "Icona", "Version" : "Versió", "Daemon" : "Dimoni", @@ -61,11 +66,13 @@ OC.L10N.register( "Updates" : "Actualitzacions", "Featured apps" : "Aplicacions destacades", "Supported apps" : "Aplicacions compatibles", + "Deploy and Enable" : "Desplega i activa", "Enable" : "Activa", "Disable" : "Inhabilita", "Allow untested app" : "Permet l'aplicació no provada", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aquesta aplicació no està marcada com a compatible amb la vostra versió de Nextcloud. Si continueu, encara podreu instal·lar l’aplicació. Tingueu en compte que pot ser que l’aplicació no funcioni correctament.", "An error occurred during the request. Unable to proceed." : "S'ha produït un error durant la sol·licitud. No es pot continuar.", + "The app has been enabled but needs to be updated." : "L'aplicació s'ha habilitat, però s'ha d'actualitzar.", "Error: This app cannot be enabled because it makes the server unstable" : "Error: aquesta aplicació no es pot habilitar perquè fa que el servidor sigui inestable" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ca.json b/l10n/ca.json index 308e7589..bd02d09a 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -13,9 +13,12 @@ "Cancel" : "Cancelar", "Delete" : "Suprimir", "Edit" : "Edició", + "Deploy Daemon" : "Desplega Dimoni", "Name" : "Nom", "Host" : "Servidor", "Nextcloud URL" : "Nextcloud URL", + "GPUs support" : "Suport de GPU", + "Compute device" : "Dispositiu de computació", "Enabled" : "Habilitat", "Display name" : "Nom de visualització", "Network" : "Xarxa", @@ -25,6 +28,7 @@ "External Apps" : "Apps externes", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", + "Delete data on remove" : "Suprimir dades en eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicació no es pot instal·lar perquè les següents dependències no es compleixen:", @@ -40,6 +44,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions destacades es desenvolupen per i dins de la comunitat. Ofereixen funcionalitats centrals i estan preparades per ser emprades en producció.", "Featured" : "Destacada", "Update to {update}" : "Actualitza a {update}", + "Default Deploy daemon is not accessible" : "El dimoni de desplegament predeterminat no és accessible", "Icon" : "Icona", "Version" : "Versió", "Daemon" : "Dimoni", @@ -59,11 +64,13 @@ "Updates" : "Actualitzacions", "Featured apps" : "Aplicacions destacades", "Supported apps" : "Aplicacions compatibles", + "Deploy and Enable" : "Desplega i activa", "Enable" : "Activa", "Disable" : "Inhabilita", "Allow untested app" : "Permet l'aplicació no provada", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aquesta aplicació no està marcada com a compatible amb la vostra versió de Nextcloud. Si continueu, encara podreu instal·lar l’aplicació. Tingueu en compte que pot ser que l’aplicació no funcioni correctament.", "An error occurred during the request. Unable to proceed." : "S'ha produït un error durant la sol·licitud. No es pot continuar.", + "The app has been enabled but needs to be updated." : "L'aplicació s'ha habilitat, però s'ha d'actualitzar.", "Error: This app cannot be enabled because it makes the server unstable" : "Error: aquesta aplicació no es pot habilitar perquè fa que el servidor sigui inestable" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/de.js b/l10n/de.js index ba6559d6..c98d07df 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -22,7 +22,7 @@ OC.L10N.register( "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de.json b/l10n/de.json index 466a60e7..9457f5c3 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -20,7 +20,7 @@ "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index d527507b..bc8cbb66 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -22,7 +22,7 @@ OC.L10N.register( "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 61064313..44205a43 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -20,7 +20,7 @@ "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine aufregende Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", From d33fd217820a94f6c0cf9f11ac893f968c176124 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 21 Feb 2025 00:28:55 +0000 Subject: [PATCH 083/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sk.js | 10 ++++++++++ l10n/sk.json | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/l10n/sk.js b/l10n/sk.js index 242e5592..db8f19d0 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -1,6 +1,16 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Konfigurácia démona nebola nájdená", + "Error starting install of ExApp" : "Chyba pri spúšťaní inštalácie ExApp", + "ExApp failed to register, check the NC logs" : "Nepodarilo sa registrovať ExApp, skontrolujte logy NC.", + "ExApp not found, failed to get status" : "ExApp nebola nájdená, nepodarilo sa získať stav", + "Failed to enable ExApp" : "Nepodarilo sa povoliť ExApp", + "Failed to disable ExApp" : "Nepodarilo sa vypnúť ExApp", + "Could not update ExApp" : "Nepodarilo sa aktualizovať ExApp", + "Error starting update of ExApp" : "Chyba pri spúšťaní aktualizácie ExApp", + "Could not perform update of ExApp" : "Nepodarilo sa spraviť aktualizáciu ExApp", + "ExApp not found, failed to get logs" : "ExApp nebola nájdená, nepodarilo sa získať logy", "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", diff --git a/l10n/sk.json b/l10n/sk.json index 27f4c3aa..1d62386b 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -1,4 +1,14 @@ { "translations": { + "Daemon config not found" : "Konfigurácia démona nebola nájdená", + "Error starting install of ExApp" : "Chyba pri spúšťaní inštalácie ExApp", + "ExApp failed to register, check the NC logs" : "Nepodarilo sa registrovať ExApp, skontrolujte logy NC.", + "ExApp not found, failed to get status" : "ExApp nebola nájdená, nepodarilo sa získať stav", + "Failed to enable ExApp" : "Nepodarilo sa povoliť ExApp", + "Failed to disable ExApp" : "Nepodarilo sa vypnúť ExApp", + "Could not update ExApp" : "Nepodarilo sa aktualizovať ExApp", + "Error starting update of ExApp" : "Chyba pri spúšťaní aktualizácie ExApp", + "Could not perform update of ExApp" : "Nepodarilo sa spraviť aktualizáciu ExApp", + "ExApp not found, failed to get logs" : "ExApp nebola nájdená, nepodarilo sa získať logy", "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", From 52c346a3403c80fec130cef0154adddbb1fb7a52 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 22 Feb 2025 00:29:08 +0000 Subject: [PATCH 084/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 6 +++--- l10n/gl.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 9e21ff58..b224d018 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -5,7 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), consulte os ficheiros de rexistro de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", @@ -75,7 +75,7 @@ OC.L10N.register( "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", "More info" : "Máis información", "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", - "Remove test ExApp" : "Eliminar a proba da aplicación externa (ExApp)", + "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", "Start Deploy test" : "Iniciar a proba de despregadura", "Stop Deploy test" : "Deter a proba de despregadura", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", @@ -149,7 +149,7 @@ OC.L10N.register( "User documentation" : "Documentación do usuario", "Admin documentation" : "Documentación da administración da instancia", "Developer documentation" : "Documentación para desenvolvedores", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", "{license}-licensed" : "Licenciado baixo a {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", "Supported" : "Compatíbel", diff --git a/l10n/gl.json b/l10n/gl.json index 42c52fc5..2d3a84da 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -3,7 +3,7 @@ "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), consulte os ficheiros de rexistro de Nextcloud", "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", @@ -73,7 +73,7 @@ "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", "More info" : "Máis información", "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", - "Remove test ExApp" : "Eliminar a proba da aplicación externa (ExApp)", + "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", "Start Deploy test" : "Iniciar a proba de despregadura", "Stop Deploy test" : "Deter a proba de despregadura", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", @@ -147,7 +147,7 @@ "User documentation" : "Documentación do usuario", "Admin documentation" : "Documentación da administración da instancia", "Developer documentation" : "Documentación para desenvolvedores", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e eliminar.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", "{license}-licensed" : "Licenciado baixo a {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", "Supported" : "Compatíbel", From 4d76f6555ed2d8b61f996a7fc9244d2b303b29fa Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 23 Feb 2025 00:29:06 +0000 Subject: [PATCH 085/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 6 +++--- l10n/da.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index 1feee940..4a36d591 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -17,7 +17,7 @@ OC.L10N.register( "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Registér", - "Check connection" : "Tjek forbindelsen", + "Check connection" : "Kontroller forbindelsen", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", @@ -57,13 +57,13 @@ OC.L10N.register( "Updates" : "Opdateringer", "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", - "Deploy and Enable" : "Implementer og aktivér", + "Deploy and Enable" : "Implementer og aktiver", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", - "The app has been enabled but needs to be updated." : "Appen er blevet aktiveret, men skal opdateres.", + "The app has been enabled but needs to be updated." : "App'en er blevet aktiveret, men skal opdateres.", "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index 40ff76de..52142dc4 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -15,7 +15,7 @@ "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Registér", - "Check connection" : "Tjek forbindelsen", + "Check connection" : "Kontroller forbindelsen", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", @@ -55,13 +55,13 @@ "Updates" : "Opdateringer", "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", - "Deploy and Enable" : "Implementer og aktivér", + "Deploy and Enable" : "Implementer og aktiver", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", - "The app has been enabled but needs to be updated." : "Appen er blevet aktiveret, men skal opdateres.", + "The app has been enabled but needs to be updated." : "App'en er blevet aktiveret, men skal opdateres.", "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From 26a1d889a1bd557920811cdc3ef773ea5b16284c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 24 Feb 2025 00:29:17 +0000 Subject: [PATCH 086/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sk.js | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/sk.json | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 234 insertions(+), 2 deletions(-) diff --git a/l10n/sk.js b/l10n/sk.js index db8f19d0..2446264d 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -5,34 +5,138 @@ OC.L10N.register( "Error starting install of ExApp" : "Chyba pri spúšťaní inštalácie ExApp", "ExApp failed to register, check the NC logs" : "Nepodarilo sa registrovať ExApp, skontrolujte logy NC.", "ExApp not found, failed to get status" : "ExApp nebola nájdená, nepodarilo sa získať stav", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Táto aplikácia nie je nainštalovaná z AppStore. Nie sú k dispozícii žiadne ďalšie informácie. Povolené sú iba akcie zapnúť/vypnúť a odstrániť.", + "Could not perform installation of ExApp" : "Nepodarilo sa nainštalovať ExApp", "Failed to enable ExApp" : "Nepodarilo sa povoliť ExApp", "Failed to disable ExApp" : "Nepodarilo sa vypnúť ExApp", "Could not update ExApp" : "Nepodarilo sa aktualizovať ExApp", "Error starting update of ExApp" : "Chyba pri spúšťaní aktualizácie ExApp", "Could not perform update of ExApp" : "Nepodarilo sa spraviť aktualizáciu ExApp", "ExApp not found, failed to get logs" : "ExApp nebola nájdená, nepodarilo sa získať logy", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nepodarilo sa získať logy kontajnera. Poznámka: Sťahovanie kontajnera Docker funguje iba pre kontajnery s ovládačom logovania do súboru json alebo journald. Chyba: %s", + "ExApp not found, failed to get deploy options" : "ExApp nebola nájdená, nepodarilo sa získať predvolby nasadenia", + "AppAPI authentication failed" : "AppAPI overenie zlyhalo", + "AppAPI ExApp notifier" : "Oznamovanie AppAPI ExApp", "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", + "Deploy Daemons" : "Nasadenie démonov", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Predvolený Deploy Daemon nie je prístupný. Skontrolujte jeho konfiguráciu", + "ExApp init timeout (minutes)" : "Časový limit inicializácie ExApp (minúty)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit inicializačného procesu ExApp, po ktorom ho AppAPI označí ako neúspešný", + "ExApp init timeout" : "Časový limit inicializácie ExApp", + "ExApp container restart policy" : "Zásady reštartovania kontajnera ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", + "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", + "External Apps management" : "Správa externých aplikácií", + "Admin options saved" : "Nastavenia administrátora boli uložené", + "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", + "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", + "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", + "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", "Cancel" : "Zrušiť", "Delete" : "Vymazať", "Default" : "Predvolené", + "Set as default" : "Nastaviť ako predvolené", + "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", + "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", "Password confirmation failed" : "Overenie hesla zlyhalo", + "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", + "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Démon manuálnej inštalácie sa zvyčajne používa pre vývoj. Nemožno ho nastaviť ako predvoleného démona.", + "ExApps installed" : "ExApps boli nainštalované", "Name" : "Názov", + "Protocol" : "Protokol", "Host" : "Adresa servera", + "Deploy config" : "Nastavenie nasadenia", + "Docker network" : "Sieť dockeru", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "Heslo HaProxy", "GPUs support" : "Podpora GPU", "Compute device" : "Výpočetné zariadenie", + "Additional options" : "Ďalšie nastavenia", + "Verify connection" : "Overiť spojenie", + "Daemon connection successful" : "Pripojenie démona bolo úspešné", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", + "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", + "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", + "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", + "Register Daemon" : "Zaregistrovať Démona", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", + "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", + "More info" : "Viac informácií", + "Download ExApp logs" : "Stiahnuť logy ExApp", + "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", + "Start Deploy test" : "Spustiť test nasadenia", + "Stop Deploy test" : "Zastaviť test nasadenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Register ExApp in Nextcloud" : "Zaregistrovať ExApp v Nextcloude", + "Check if the ExApp is registered in Nextcloud before deployment" : "Pred nasadením skontrolujte, či je ExApp zaregistrovaná v Nextcloud", + "Image pull" : "Stiahnutie obrazu", + "Check if the image is successfully pulled" : "Skontrolujte či bol obraz disky aplikácie úspešne stiahnutý", + "Container started" : "Kontajner bol spustený", + "Check if the image successfully pulled and container is created and started" : "Skontrolujte či bol obraz disku úspešne stiahnutý a kontajner je vytvorený a spustený", + "Heartbeat" : "Kontrola stavu", + "Check for the heartbeat is finished and healthy" : "Skontrolovať či kontrola stavu skončila a aplikácia je funkčná", + "Init step" : "Prvý krok", + "Wait for initialization step to finish" : "Počkajte na dokončenie inicializačného kroku", "Enabled" : "Zapnuté", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Skontrolujte, či ExApp úspešne spracoval povolenú udalosť a správne zaregistroval všetky veci", + "Only if ExApp container is preset" : "Iba ak je prednastavený kontajner ExApp", + "Deploy test passed successfully!" : "Test nasadenia skončil úspešne!", + "Deploy test failed at step \"{step}\"" : "Test nasadenia zlyhal na kroku \"{step}\"", + "Edit Deploy Daemon" : "Upraviť Démona nasadenia", + "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", + "Daemon configuration template" : "Šablóna konfigurácie démona", + "Select daemon configuration template" : "Vybrať šablónu konfigurácie démona", + "Daemon registration form" : "Registračný formulár Démona", + "Unique Deploy Daemon Name" : "Unikátny názov Démona nasadenia", "Display name" : "Zobrazované meno", + "Deployment method" : "Metóda nasadenia", + "Select daemon deploy method" : "Vybrať metódu nasadenia démona", + "Daemon host" : "Hostiteľ démona", + "Set daemon as default" : "Nastaviť démona ako predvoleného", + "Set as default daemon" : "Nastaviť ako predvoleného démona", + "Enable https" : "Povoliť https", + "Show deploy config" : "Zobraziť konfiguráciu nasadenia", + "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Network" : "Sieť", + "Docker network name" : "Meno siete dockeru", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", + "Additional option" : "Ďalšia voľba", + "Add additional option" : "Pridať ďalšiu voľbu", + "Option key (unique)" : "Kľúč voľby (jedinečný)", + "Option key (unique, e.g. my_key)" : "Kľúč voľby (jedinečný, napr. moj_kluc)", + "Option key is required" : "Kľúč voľby je povinný", + "Option value" : "Hodnota voľby", + "Option value is required" : "Hodnota voľby je povinná", "Confirm" : "Potvrdiť", "Save" : "Uložiť", "Register" : "Registrovať", + "Check connection" : "Skontrolovať pripojenie", + "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", + "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", + "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", + "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", "External Apps" : "Externé aplikácie", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", "Delete data on remove" : "Pri odobraní zmazať dáta", @@ -45,12 +149,14 @@ OC.L10N.register( "User documentation" : "Príručka používateľa", "Admin documentation" : "Príručka administrátora", "Developer documentation" : "Dokumentácia vývojára", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Táto aplikácia nie je zaregistrovaná v AppStore. Nie sú k dispozícii žiadne ďalšie informácie. Povolené sú iba akcie zapnúť/vypnúť a odstrániť.", "{license}-licensed" : "{license}-licencovaný", "This app is supported via your current Nextcloud subscription." : "Táto aplikácia je podporovaná prostredníctvom vášho aktuálneho predplatného Nextcloud.", "Supported" : "Podporované", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Odporúčané aplikácie sú vyvíjané komunitou Sú prepojené so zbytkom Nextcloud a pripravené na produkčné nasadenie.", "Featured" : "Doporučená", "Update to {update}" : "Aktualizovať na {update}", + "All ExApps are up-to-date." : "Všetky ExApps sú aktuálne.", "Default Deploy daemon is not accessible" : "Východzí proces služby nasadzovania nie je dostupný", "Icon" : "Ikona", "Version" : "Verzia", @@ -58,9 +164,12 @@ OC.L10N.register( "Level" : "Úroveň", "Actions" : "Akcie", "Results from other categories" : "Výsledku z ostatných kategórií", + "No apps found" : "Nenašli sa žiadne aplikácie", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplikácia má dostupnú aktualizáciu","%n aplikácie majú dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu"], "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], "Type" : "Typ", "Display Name" : "Zobrazované meno", + "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", "Details" : "Podrobnosti", @@ -72,13 +181,20 @@ OC.L10N.register( "Featured apps" : "Odporúčané aplikácie", "Supported apps" : "Podporované aplikácie", "manual-install apps cannot be updated" : "manuálne nainštalované aplikácie nemôžu byť aktualizované", + "{progress}% Deploying" : "{progress}% Nasadzovanie", + "{progress}% Initializing" : "{progress}% Inicializácia", + "Healthchecking" : "Kontrola stavu", "Deploy and Enable" : "Nasadiť a zapnúť", "Enable" : "Povoliť", "Disable" : "Zakázať", "Allow untested app" : "Povoliť netestovanú aplikáciu", + "Default Deploy daemon is not accessible. Please verify configuration" : "Predvolený Démon nasadenia nie je prístupný. Skontrolujte jeho konfiguráciu", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Aplikácia bude stiahnutá z App Store a nasadená v predvolenom Démonovi nasadenia", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Táto aplikácia nie je označená ako kompatibilná s vašou verziou Nextcloud. Ak budete pokračovať, aplikáciu budete môcť stále nainštalovať. Aplikácia nemusí fungovať podľa očakávania.", + "Your ExApps" : "Vaše ExApps", "An error occurred during the request. Unable to proceed." : "Počas vybavovania požiadavky nastala chyba. Nie je možné pokračovať.", "The app has been enabled but needs to be updated." : "Aplikácia bola zapnutá ale je potrebné ju aktualizovať.", - "Error: This app cannot be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera" + "Error: This app cannot be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálnych aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú cestu, ktorá umožňuje vytvárať metodiku\naplikácie využívajúcu rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n\n### Zoznam aplikácií, ktoré vyžadujú AppAPI:\n\n- [príklad_talk_bot_ai](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [príklad_upscaler](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ak chcete použiť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa nám na túto cestu, srdečne vás pozývame, vydávame výskumov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a zodpovedajúceho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*" }, "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 1d62386b..2a9850f3 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -3,34 +3,138 @@ "Error starting install of ExApp" : "Chyba pri spúšťaní inštalácie ExApp", "ExApp failed to register, check the NC logs" : "Nepodarilo sa registrovať ExApp, skontrolujte logy NC.", "ExApp not found, failed to get status" : "ExApp nebola nájdená, nepodarilo sa získať stav", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Táto aplikácia nie je nainštalovaná z AppStore. Nie sú k dispozícii žiadne ďalšie informácie. Povolené sú iba akcie zapnúť/vypnúť a odstrániť.", + "Could not perform installation of ExApp" : "Nepodarilo sa nainštalovať ExApp", "Failed to enable ExApp" : "Nepodarilo sa povoliť ExApp", "Failed to disable ExApp" : "Nepodarilo sa vypnúť ExApp", "Could not update ExApp" : "Nepodarilo sa aktualizovať ExApp", "Error starting update of ExApp" : "Chyba pri spúšťaní aktualizácie ExApp", "Could not perform update of ExApp" : "Nepodarilo sa spraviť aktualizáciu ExApp", "ExApp not found, failed to get logs" : "ExApp nebola nájdená, nepodarilo sa získať logy", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nepodarilo sa získať logy kontajnera. Poznámka: Sťahovanie kontajnera Docker funguje iba pre kontajnery s ovládačom logovania do súboru json alebo journald. Chyba: %s", + "ExApp not found, failed to get deploy options" : "ExApp nebola nájdená, nepodarilo sa získať predvolby nasadenia", + "AppAPI authentication failed" : "AppAPI overenie zlyhalo", + "AppAPI ExApp notifier" : "Oznamovanie AppAPI ExApp", "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", + "Deploy Daemons" : "Nasadenie démonov", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Predvolený Deploy Daemon nie je prístupný. Skontrolujte jeho konfiguráciu", + "ExApp init timeout (minutes)" : "Časový limit inicializácie ExApp (minúty)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit inicializačného procesu ExApp, po ktorom ho AppAPI označí ako neúspešný", + "ExApp init timeout" : "Časový limit inicializácie ExApp", + "ExApp container restart policy" : "Zásady reštartovania kontajnera ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", + "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", + "External Apps management" : "Správa externých aplikácií", + "Admin options saved" : "Nastavenia administrátora boli uložené", + "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", + "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", + "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", + "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", "Cancel" : "Zrušiť", "Delete" : "Vymazať", "Default" : "Predvolené", + "Set as default" : "Nastaviť ako predvolené", + "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", + "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", "Password confirmation failed" : "Overenie hesla zlyhalo", + "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", + "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Démon manuálnej inštalácie sa zvyčajne používa pre vývoj. Nemožno ho nastaviť ako predvoleného démona.", + "ExApps installed" : "ExApps boli nainštalované", "Name" : "Názov", + "Protocol" : "Protokol", "Host" : "Adresa servera", + "Deploy config" : "Nastavenie nasadenia", + "Docker network" : "Sieť dockeru", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "Heslo HaProxy", "GPUs support" : "Podpora GPU", "Compute device" : "Výpočetné zariadenie", + "Additional options" : "Ďalšie nastavenia", + "Verify connection" : "Overiť spojenie", + "Daemon connection successful" : "Pripojenie démona bolo úspešné", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", + "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", + "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", + "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", + "Register Daemon" : "Zaregistrovať Démona", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", + "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", + "More info" : "Viac informácií", + "Download ExApp logs" : "Stiahnuť logy ExApp", + "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", + "Start Deploy test" : "Spustiť test nasadenia", + "Stop Deploy test" : "Zastaviť test nasadenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Register ExApp in Nextcloud" : "Zaregistrovať ExApp v Nextcloude", + "Check if the ExApp is registered in Nextcloud before deployment" : "Pred nasadením skontrolujte, či je ExApp zaregistrovaná v Nextcloud", + "Image pull" : "Stiahnutie obrazu", + "Check if the image is successfully pulled" : "Skontrolujte či bol obraz disky aplikácie úspešne stiahnutý", + "Container started" : "Kontajner bol spustený", + "Check if the image successfully pulled and container is created and started" : "Skontrolujte či bol obraz disku úspešne stiahnutý a kontajner je vytvorený a spustený", + "Heartbeat" : "Kontrola stavu", + "Check for the heartbeat is finished and healthy" : "Skontrolovať či kontrola stavu skončila a aplikácia je funkčná", + "Init step" : "Prvý krok", + "Wait for initialization step to finish" : "Počkajte na dokončenie inicializačného kroku", "Enabled" : "Zapnuté", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Skontrolujte, či ExApp úspešne spracoval povolenú udalosť a správne zaregistroval všetky veci", + "Only if ExApp container is preset" : "Iba ak je prednastavený kontajner ExApp", + "Deploy test passed successfully!" : "Test nasadenia skončil úspešne!", + "Deploy test failed at step \"{step}\"" : "Test nasadenia zlyhal na kroku \"{step}\"", + "Edit Deploy Daemon" : "Upraviť Démona nasadenia", + "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", + "Daemon configuration template" : "Šablóna konfigurácie démona", + "Select daemon configuration template" : "Vybrať šablónu konfigurácie démona", + "Daemon registration form" : "Registračný formulár Démona", + "Unique Deploy Daemon Name" : "Unikátny názov Démona nasadenia", "Display name" : "Zobrazované meno", + "Deployment method" : "Metóda nasadenia", + "Select daemon deploy method" : "Vybrať metódu nasadenia démona", + "Daemon host" : "Hostiteľ démona", + "Set daemon as default" : "Nastaviť démona ako predvoleného", + "Set as default daemon" : "Nastaviť ako predvoleného démona", + "Enable https" : "Povoliť https", + "Show deploy config" : "Zobraziť konfiguráciu nasadenia", + "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Network" : "Sieť", + "Docker network name" : "Meno siete dockeru", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", + "Additional option" : "Ďalšia voľba", + "Add additional option" : "Pridať ďalšiu voľbu", + "Option key (unique)" : "Kľúč voľby (jedinečný)", + "Option key (unique, e.g. my_key)" : "Kľúč voľby (jedinečný, napr. moj_kluc)", + "Option key is required" : "Kľúč voľby je povinný", + "Option value" : "Hodnota voľby", + "Option value is required" : "Hodnota voľby je povinná", "Confirm" : "Potvrdiť", "Save" : "Uložiť", "Register" : "Registrovať", + "Check connection" : "Skontrolovať pripojenie", + "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", + "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", + "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", + "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", "External Apps" : "Externé aplikácie", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", "Delete data on remove" : "Pri odobraní zmazať dáta", @@ -43,12 +147,14 @@ "User documentation" : "Príručka používateľa", "Admin documentation" : "Príručka administrátora", "Developer documentation" : "Dokumentácia vývojára", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Táto aplikácia nie je zaregistrovaná v AppStore. Nie sú k dispozícii žiadne ďalšie informácie. Povolené sú iba akcie zapnúť/vypnúť a odstrániť.", "{license}-licensed" : "{license}-licencovaný", "This app is supported via your current Nextcloud subscription." : "Táto aplikácia je podporovaná prostredníctvom vášho aktuálneho predplatného Nextcloud.", "Supported" : "Podporované", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Odporúčané aplikácie sú vyvíjané komunitou Sú prepojené so zbytkom Nextcloud a pripravené na produkčné nasadenie.", "Featured" : "Doporučená", "Update to {update}" : "Aktualizovať na {update}", + "All ExApps are up-to-date." : "Všetky ExApps sú aktuálne.", "Default Deploy daemon is not accessible" : "Východzí proces služby nasadzovania nie je dostupný", "Icon" : "Ikona", "Version" : "Verzia", @@ -56,9 +162,12 @@ "Level" : "Úroveň", "Actions" : "Akcie", "Results from other categories" : "Výsledku z ostatných kategórií", + "No apps found" : "Nenašli sa žiadne aplikácie", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplikácia má dostupnú aktualizáciu","%n aplikácie majú dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu"], "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], "Type" : "Typ", "Display Name" : "Zobrazované meno", + "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", "Details" : "Podrobnosti", @@ -70,13 +179,20 @@ "Featured apps" : "Odporúčané aplikácie", "Supported apps" : "Podporované aplikácie", "manual-install apps cannot be updated" : "manuálne nainštalované aplikácie nemôžu byť aktualizované", + "{progress}% Deploying" : "{progress}% Nasadzovanie", + "{progress}% Initializing" : "{progress}% Inicializácia", + "Healthchecking" : "Kontrola stavu", "Deploy and Enable" : "Nasadiť a zapnúť", "Enable" : "Povoliť", "Disable" : "Zakázať", "Allow untested app" : "Povoliť netestovanú aplikáciu", + "Default Deploy daemon is not accessible. Please verify configuration" : "Predvolený Démon nasadenia nie je prístupný. Skontrolujte jeho konfiguráciu", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Aplikácia bude stiahnutá z App Store a nasadená v predvolenom Démonovi nasadenia", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Táto aplikácia nie je označená ako kompatibilná s vašou verziou Nextcloud. Ak budete pokračovať, aplikáciu budete môcť stále nainštalovať. Aplikácia nemusí fungovať podľa očakávania.", + "Your ExApps" : "Vaše ExApps", "An error occurred during the request. Unable to proceed." : "Počas vybavovania požiadavky nastala chyba. Nie je možné pokračovať.", "The app has been enabled but needs to be updated." : "Aplikácia bola zapnutá ale je potrebné ju aktualizovať.", - "Error: This app cannot be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera" + "Error: This app cannot be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálnych aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú cestu, ktorá umožňuje vytvárať metodiku\naplikácie využívajúcu rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n\n### Zoznam aplikácií, ktoré vyžadujú AppAPI:\n\n- [príklad_talk_bot_ai](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [príklad_upscaler](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ak chcete použiť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa nám na túto cestu, srdečne vás pozývame, vydávame výskumov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a zodpovedajúceho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*" },"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 From 023fb9f190469a23891e7dd0285be1d1ebbd5c2e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 25 Feb 2025 00:28:39 +0000 Subject: [PATCH 087/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 8 ++++---- l10n/da.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index 4a36d591..032c9fc7 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -1,10 +1,10 @@ OC.L10N.register( "app_api", { - "Cancel" : "Annullér", + "Cancel" : "Annuller", "Delete" : "Slet", "Default" : "Standard", - "Edit" : "Redigér", + "Edit" : "Rediger", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Deploy Daemon" : "Implementer Daemon", "Name" : "Navn", @@ -16,7 +16,7 @@ OC.L10N.register( "Network" : "Netværk", "Confirm" : "Bekræft", "Save" : "Gem", - "Register" : "Registér", + "Register" : "Register", "Check connection" : "Kontroller forbindelsen", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Update to {version}" : "Opdateret til {version}", @@ -44,7 +44,7 @@ OC.L10N.register( "Level" : "Niveau", "Actions" : "Handlinger", "Results from other categories" : "Resultater fra andre kategorier", - "_Update_::_Update all_" : ["Opdatér","Opdater alle"], + "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", "Your apps" : "Dine apps", diff --git a/l10n/da.json b/l10n/da.json index 52142dc4..dce0f79a 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,8 +1,8 @@ { "translations": { - "Cancel" : "Annullér", + "Cancel" : "Annuller", "Delete" : "Slet", "Default" : "Standard", - "Edit" : "Redigér", + "Edit" : "Rediger", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Deploy Daemon" : "Implementer Daemon", "Name" : "Navn", @@ -14,7 +14,7 @@ "Network" : "Netværk", "Confirm" : "Bekræft", "Save" : "Gem", - "Register" : "Registér", + "Register" : "Register", "Check connection" : "Kontroller forbindelsen", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Update to {version}" : "Opdateret til {version}", @@ -42,7 +42,7 @@ "Level" : "Niveau", "Actions" : "Handlinger", "Results from other categories" : "Resultater fra andre kategorier", - "_Update_::_Update all_" : ["Opdatér","Opdater alle"], + "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", "Your apps" : "Dine apps", From 7fb9ef0cb37c640d19e23d22aa47e0c73da9bdaf Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 26 Feb 2025 00:29:30 +0000 Subject: [PATCH 088/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 2 +- l10n/de.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index c98d07df..9c3c7ffe 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -147,7 +147,7 @@ OC.L10N.register( "Visit website" : "Webseite besuchen", "Report a bug" : "Einen technischen Fehler melden", "User documentation" : "Benutzer-Dokumentation", - "Admin documentation" : "Administratoren-Dokumentation", + "Admin documentation" : "Dokumentation für die Administration", "Developer documentation" : "Entwickler-Dokumentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", "{license}-licensed" : "{license}-Lizenziert", diff --git a/l10n/de.json b/l10n/de.json index 9457f5c3..2090390b 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -145,7 +145,7 @@ "Visit website" : "Webseite besuchen", "Report a bug" : "Einen technischen Fehler melden", "User documentation" : "Benutzer-Dokumentation", - "Admin documentation" : "Administratoren-Dokumentation", + "Admin documentation" : "Dokumentation für die Administration", "Developer documentation" : "Entwickler-Dokumentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", "{license}-licensed" : "{license}-Lizenziert", From 42dc5db175d47ddd8098922cf6e3ed3a13d27572 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 27 Feb 2025 00:30:01 +0000 Subject: [PATCH 089/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 64 ++++++++++++++++++++++++------------------------- l10n/ar.json | 64 ++++++++++++++++++++++++------------------------- l10n/ast.js | 12 +++++----- l10n/ast.json | 12 +++++----- l10n/bg.js | 4 ++-- l10n/bg.json | 4 ++-- l10n/br.js | 4 ++-- l10n/br.json | 4 ++-- l10n/ca.js | 6 ++--- l10n/ca.json | 6 ++--- l10n/cs.js | 64 ++++++++++++++++++++++++------------------------- l10n/cs.json | 64 ++++++++++++++++++++++++------------------------- l10n/da.js | 8 +++---- l10n/da.json | 8 +++---- l10n/de.js | 64 ++++++++++++++++++++++++------------------------- l10n/de.json | 64 ++++++++++++++++++++++++------------------------- l10n/de_DE.js | 64 ++++++++++++++++++++++++------------------------- l10n/de_DE.json | 64 ++++++++++++++++++++++++------------------------- l10n/el.js | 4 ++-- l10n/el.json | 4 ++-- l10n/en_GB.js | 64 ++++++++++++++++++++++++------------------------- l10n/en_GB.json | 64 ++++++++++++++++++++++++------------------------- l10n/eo.js | 2 +- l10n/eo.json | 2 +- l10n/es.js | 52 ++++++++++++++++++++-------------------- l10n/es.json | 52 ++++++++++++++++++++-------------------- l10n/es_EC.js | 4 ++-- l10n/es_EC.json | 4 ++-- l10n/es_MX.js | 4 ++-- l10n/es_MX.json | 4 ++-- l10n/et_EE.js | 2 +- l10n/et_EE.json | 2 +- l10n/eu.js | 8 +++---- l10n/eu.json | 8 +++---- l10n/fa.js | 4 ++-- l10n/fa.json | 4 ++-- l10n/fi.js | 4 ++-- l10n/fi.json | 4 ++-- l10n/fr.js | 64 ++++++++++++++++++++++++------------------------- l10n/fr.json | 64 ++++++++++++++++++++++++------------------------- l10n/ga.js | 64 ++++++++++++++++++++++++------------------------- l10n/ga.json | 64 ++++++++++++++++++++++++------------------------- l10n/gl.js | 64 ++++++++++++++++++++++++------------------------- l10n/gl.json | 64 ++++++++++++++++++++++++------------------------- l10n/he.js | 4 ++-- l10n/he.json | 4 ++-- l10n/hr.js | 4 ++-- l10n/hr.json | 4 ++-- l10n/hu.js | 4 ++-- l10n/hu.json | 4 ++-- l10n/id.js | 2 +- l10n/id.json | 2 +- l10n/is.js | 4 ++-- l10n/is.json | 4 ++-- l10n/it.js | 4 ++-- l10n/it.json | 4 ++-- l10n/ja.js | 4 ++-- l10n/ja.json | 4 ++-- l10n/ka.js | 4 ++-- l10n/ka.json | 4 ++-- l10n/ko.js | 56 +++++++++++++++++++++---------------------- l10n/ko.json | 56 +++++++++++++++++++++---------------------- l10n/lt_LT.js | 6 ++--- l10n/lt_LT.json | 6 ++--- l10n/lv.js | 2 +- l10n/lv.json | 2 +- l10n/mk.js | 4 ++-- l10n/mk.json | 4 ++-- l10n/nb.js | 64 ++++++++++++++++++++++++------------------------- l10n/nb.json | 64 ++++++++++++++++++++++++------------------------- l10n/nl.js | 6 ++--- l10n/nl.json | 6 ++--- l10n/oc.js | 2 +- l10n/oc.json | 2 +- l10n/pl.js | 24 +++++++++---------- l10n/pl.json | 24 +++++++++---------- l10n/pt_BR.js | 64 ++++++++++++++++++++++++------------------------- l10n/pt_BR.json | 64 ++++++++++++++++++++++++------------------------- l10n/ru.js | 64 ++++++++++++++++++++++++------------------------- l10n/ru.json | 64 ++++++++++++++++++++++++------------------------- l10n/sc.js | 4 ++-- l10n/sc.json | 4 ++-- l10n/sk.js | 64 ++++++++++++++++++++++++------------------------- l10n/sk.json | 64 ++++++++++++++++++++++++------------------------- l10n/sl.js | 4 ++-- l10n/sl.json | 4 ++-- l10n/sr.js | 64 ++++++++++++++++++++++++------------------------- l10n/sr.json | 64 ++++++++++++++++++++++++------------------------- l10n/sv.js | 4 ++-- l10n/sv.json | 4 ++-- l10n/th.js | 4 ++-- l10n/th.json | 4 ++-- l10n/tr.js | 64 ++++++++++++++++++++++++------------------------- l10n/tr.json | 64 ++++++++++++++++++++++++------------------------- l10n/ug.js | 64 ++++++++++++++++++++++++------------------------- l10n/ug.json | 64 ++++++++++++++++++++++++------------------------- l10n/uk.js | 4 ++-- l10n/uk.json | 4 ++-- l10n/vi.js | 4 ++-- l10n/vi.json | 4 ++-- l10n/zh_CN.js | 10 ++++---- l10n/zh_CN.json | 10 ++++---- l10n/zh_HK.js | 64 ++++++++++++++++++++++++------------------------- l10n/zh_HK.json | 64 ++++++++++++++++++++++++------------------------- l10n/zh_TW.js | 64 ++++++++++++++++++++++++------------------------- l10n/zh_TW.json | 64 ++++++++++++++++++++++++------------------------- 106 files changed, 1370 insertions(+), 1370 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index e6585649..0cc97a07 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", + "External Apps management" : "إدارة التطبيقات الخارجية", + "Admin options saved" : "تمّ حفظ خيارات المدير", + "Failed to save admin options" : "تعذّر حفظ خيارات المدير", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", - "External Apps management" : "إدارة التطبيقات الخارجية", - "Admin options saved" : "تمّ حفظ خيارات المدير", - "Failed to save admin options" : "تعذّر حفظ خيارات المدير", "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", "Cancel" : "إلغاء", "Delete" : "حذف", + "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", + "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", + "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Default" : "التلقائي", "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", - "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", - "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", - "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", "Verify connection" : "تحقّق من الاتصال", - "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", - "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", - "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Registered Deploy daemons list" : "قائمة برامج النشر الخفية المسجلة", "No Deploy daemons configured" : "لم تتم تهيئة أي برامج نشر خفية", "Register a custom one or setup from available templates" : "قُم بتسجيل واحدة مخصصة أو قم بتجهيز واحدة باستعمال القوالب المتاحة", "Register Daemon" : "قم بتسجيل برنامج خفي Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", - "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", - "More info" : "معلومات أكثر", - "Download ExApp logs" : "تنزيل سجلات حركة ExApp", - "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", - "Start Deploy test" : "البدء في النشر التجريبي", - "Stop Deploy test" : "إيقاف النشر التجريبي", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Register ExApp in Nextcloud" : "تسجيل ExApp في نكست كلاود", "Check if the ExApp is registered in Nextcloud before deployment" : "التحقُّق من أن ExApp مُسجَّل في نكست كلاود قبل النشر", "Image pull" : "سحب الصورة", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", + "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", + "More info" : "معلومات أكثر", + "Download ExApp logs" : "تنزيل سجلات حركة ExApp", + "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", + "Start Deploy test" : "البدء في النشر التجريبي", + "Stop Deploy test" : "إيقاف النشر التجريبي", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", + "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", + "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", + "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", + "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", + "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", + "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", + "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", + "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", + "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", + "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", + "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", "Daemon configuration template" : "قالب تهيئة برنامج خفي", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", "Network" : "الشبكة", "Docker network name" : "إسم شبكة \"دوكر\" Docker", - "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "حفظ", "Register" : "تسجيل", "Check connection" : "تحقَّق من الاتصال", - "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", - "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", - "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", - "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", - "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", - "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", - "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", "External Apps" : "تطبيقات خارجية", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", + "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "دليل المدير", "Developer documentation" : "دليل المُطوّر", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", - "{license}-licensed" : "{license} مُرخّصٌ", "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", "Supported" : "مدعومٌ", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "النوع", "Display Name" : "إسم العرض", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", + "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", "Details" : "التفاصيل", "Changelog" : "سجل التغييرات", - "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Active apps" : "التطبيقات النشطة", "Disabled apps" : "التطبيقات المعطلة", "Updates" : "التحديثات", diff --git a/l10n/ar.json b/l10n/ar.json index 7e1f8550..84096919 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -20,6 +20,9 @@ "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", + "External Apps management" : "إدارة التطبيقات الخارجية", + "Admin options saved" : "تمّ حفظ خيارات المدير", + "Failed to save admin options" : "تعذّر حفظ خيارات المدير", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", - "External Apps management" : "إدارة التطبيقات الخارجية", - "Admin options saved" : "تمّ حفظ خيارات المدير", - "Failed to save admin options" : "تعذّر حفظ خيارات المدير", "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", "Cancel" : "إلغاء", "Delete" : "حذف", + "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", + "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", + "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Default" : "التلقائي", "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", - "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", - "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", - "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", @@ -62,21 +62,10 @@ "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", "Verify connection" : "تحقّق من الاتصال", - "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", - "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", - "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Registered Deploy daemons list" : "قائمة برامج النشر الخفية المسجلة", "No Deploy daemons configured" : "لم تتم تهيئة أي برامج نشر خفية", "Register a custom one or setup from available templates" : "قُم بتسجيل واحدة مخصصة أو قم بتجهيز واحدة باستعمال القوالب المتاحة", "Register Daemon" : "قم بتسجيل برنامج خفي Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", - "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", - "More info" : "معلومات أكثر", - "Download ExApp logs" : "تنزيل سجلات حركة ExApp", - "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", - "Start Deploy test" : "البدء في النشر التجريبي", - "Stop Deploy test" : "إيقاف النشر التجريبي", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Register ExApp in Nextcloud" : "تسجيل ExApp في نكست كلاود", "Check if the ExApp is registered in Nextcloud before deployment" : "التحقُّق من أن ExApp مُسجَّل في نكست كلاود قبل النشر", "Image pull" : "سحب الصورة", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", + "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", + "More info" : "معلومات أكثر", + "Download ExApp logs" : "تنزيل سجلات حركة ExApp", + "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", + "Start Deploy test" : "البدء في النشر التجريبي", + "Stop Deploy test" : "إيقاف النشر التجريبي", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", + "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", + "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", + "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", + "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", + "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", + "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", + "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", + "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", + "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", + "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", + "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", "Daemon configuration template" : "قالب تهيئة برنامج خفي", @@ -109,7 +122,6 @@ "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", "Network" : "الشبكة", "Docker network name" : "إسم شبكة \"دوكر\" Docker", - "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", @@ -121,20 +133,9 @@ "Save" : "حفظ", "Register" : "تسجيل", "Check connection" : "تحقَّق من الاتصال", - "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", - "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", - "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", - "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", - "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", - "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", - "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", "External Apps" : "تطبيقات خارجية", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", + "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", @@ -148,7 +149,6 @@ "Admin documentation" : "دليل المدير", "Developer documentation" : "دليل المُطوّر", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "هذا التطبيق غير مسجل في \"متجر التطبيقات\" AppStore. لا توجد معلومات إضافية متاحة. يُسمح فقط بإجراءات التمكين/التعطيل والإزالة.", - "{license}-licensed" : "{license} مُرخّصٌ", "This app is supported via your current Nextcloud subscription." : "هذا التطبيق مدعوم من خلال اشتراكك الحالي في نكست كلود.", "Supported" : "مدعومٌ", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "تم تطوير التطبيقات المميزة من قبل المجتمع وداخله. و هي توفر وظائف مركزية وجاهزة للعمل في بيئة العمل الفعلية.", @@ -168,11 +168,11 @@ "Type" : "النوع", "Display Name" : "إسم العرض", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", + "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", "Details" : "التفاصيل", "Changelog" : "سجل التغييرات", - "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Active apps" : "التطبيقات النشطة", "Disabled apps" : "التطبيقات المعطلة", "Updates" : "التحديثات", diff --git a/l10n/ast.js b/l10n/ast.js index 916c6ec9..ef70c2c0 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -7,8 +7,8 @@ OC.L10N.register( "Error starting update of ExApp" : "Nun se pudo aniciar de la aplicación esterna", "Could not perform update of ExApp" : "Nun se pudo facer l'anovamientu de l'aplicación esterna", "Nextcloud AppAPI" : "AppAPI de Nextcloud", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "External Apps management" : "Xestión d'aplicaciones esternes", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", @@ -23,10 +23,11 @@ OC.L10N.register( "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", "Verify connection" : "Verificar la conexón", - "Daemon connection successful" : "La conexón del degorriu foi correuta", "Register Daemon" : "Rexistrar el degorriu", - "More info" : "Más información", "Enabled" : "Activóse", + "More info" : "Más información", + "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", + "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", "Set daemon as default" : "Predeterminar el degorriu", @@ -37,8 +38,8 @@ OC.L10N.register( "Save" : "Guardar", "Register" : "Rexistrase", "Check connection" : "Comprobar la conexón", - "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "External Apps" : "Aplicaciones esternes", + "{license}-licensed" : "Con llicencia {license}", "Update to {version}" : "Anovar a la versión {version}", "Remove" : "Quitar", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", @@ -49,7 +50,6 @@ OC.L10N.register( "Admin documentation" : "Documentación p'alministradores", "Developer documentation" : "Documentación pa desendolcadores", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación nun ta rexistrada na tienda d'aplicaciones. Nun hai más información disponible. Namás se permiten les aiciones d'activar/desactivar y quitar.", - "{license}-licensed" : "Con llicencia {license}", "Supported" : "Compatible", "Featured" : "Destacada", "All ExApps are up-to-date." : "Toles aplicaciones esternes tán anovaes.", @@ -64,11 +64,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Anovar","Anovar too"], "Type" : "Tipu", "Display Name" : "Nome visible", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Les tos aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Rexistru de cambeos", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicaciones actives", "Disabled apps" : "Aplicaciones desactivaes", "Updates" : "Anovamientos", diff --git a/l10n/ast.json b/l10n/ast.json index 067895fe..cc04c6d0 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -5,8 +5,8 @@ "Error starting update of ExApp" : "Nun se pudo aniciar de la aplicación esterna", "Could not perform update of ExApp" : "Nun se pudo facer l'anovamientu de l'aplicación esterna", "Nextcloud AppAPI" : "AppAPI de Nextcloud", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "External Apps management" : "Xestión d'aplicaciones esternes", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", @@ -21,10 +21,11 @@ "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", "Verify connection" : "Verificar la conexón", - "Daemon connection successful" : "La conexón del degorriu foi correuta", "Register Daemon" : "Rexistrar el degorriu", - "More info" : "Más información", "Enabled" : "Activóse", + "More info" : "Más información", + "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", + "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", "Set daemon as default" : "Predeterminar el degorriu", @@ -35,8 +36,8 @@ "Save" : "Guardar", "Register" : "Rexistrase", "Check connection" : "Comprobar la conexón", - "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "External Apps" : "Aplicaciones esternes", + "{license}-licensed" : "Con llicencia {license}", "Update to {version}" : "Anovar a la versión {version}", "Remove" : "Quitar", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", @@ -47,7 +48,6 @@ "Admin documentation" : "Documentación p'alministradores", "Developer documentation" : "Documentación pa desendolcadores", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación nun ta rexistrada na tienda d'aplicaciones. Nun hai más información disponible. Namás se permiten les aiciones d'activar/desactivar y quitar.", - "{license}-licensed" : "Con llicencia {license}", "Supported" : "Compatible", "Featured" : "Destacada", "All ExApps are up-to-date." : "Toles aplicaciones esternes tán anovaes.", @@ -62,11 +62,11 @@ "_Update_::_Update all_" : ["Anovar","Anovar too"], "Type" : "Tipu", "Display Name" : "Nome visible", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Les tos aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Rexistru de cambeos", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicaciones actives", "Disabled apps" : "Aplicaciones desactivaes", "Updates" : "Anovamientos", diff --git a/l10n/bg.js b/l10n/bg.js index 2170175c..78c63134 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", + "{license}-licensed" : "{license}-лицензиран", "Update to {version}" : "Актуализирай до {version}", "Remove" : "Премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "Документация за потребители", "Admin documentation" : "Документация за администратори", "Developer documentation" : "Документация за разработчици", - "{license}-licensed" : "{license}-лицензиран", "This app is supported via your current Nextcloud subscription." : "Това приложение се поддържа чрез текущия ви абонамент за Nextcloud.", "Supported" : "Поддържан", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Представените приложения са разработени от и в рамките на общността. Те предлагат централна функционалност и са готови за производствена употреба.", @@ -39,11 +39,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], "Type" : "Тип", "Display Name" : "Име за визуализация", + "by {author}\n{license}" : "от {author}\n{license}", "Your apps" : "Вашите приложения", "Documentation" : "Документация", "Details" : "Подробности", "Changelog" : "Списък на промените", - "by {author}\n{license}" : "от {author}\n{license}", "Active apps" : "Включени приложения", "Disabled apps" : "Изключени приложения", "Updates" : "Актуализации", diff --git a/l10n/bg.json b/l10n/bg.json index 035d5f3d..be983888 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -12,6 +12,7 @@ "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", + "{license}-licensed" : "{license}-лицензиран", "Update to {version}" : "Актуализирай до {version}", "Remove" : "Премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", @@ -23,7 +24,6 @@ "User documentation" : "Документация за потребители", "Admin documentation" : "Документация за администратори", "Developer documentation" : "Документация за разработчици", - "{license}-licensed" : "{license}-лицензиран", "This app is supported via your current Nextcloud subscription." : "Това приложение се поддържа чрез текущия ви абонамент за Nextcloud.", "Supported" : "Поддържан", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Представените приложения са разработени от и в рамките на общността. Те предлагат централна функционалност и са готови за производствена употреба.", @@ -37,11 +37,11 @@ "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], "Type" : "Тип", "Display Name" : "Име за визуализация", + "by {author}\n{license}" : "от {author}\n{license}", "Your apps" : "Вашите приложения", "Documentation" : "Документация", "Details" : "Подробности", "Changelog" : "Списък на промените", - "by {author}\n{license}" : "от {author}\n{license}", "Active apps" : "Включени приложения", "Disabled apps" : "Изключени приложения", "Updates" : "Актуализации", diff --git a/l10n/br.js b/l10n/br.js index c70e8f98..ad8cdae4 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -10,6 +10,7 @@ OC.L10N.register( "Network" : "Rouedad", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", + "{license}-licensed" : "{license}-aotre", "Update to {version}" : "Oc'h adneveziñ da {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "N'en deus ket ar meziant ur stumm izelañ evit Nextcloud. Ur fazi a vo en dazont.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ar meziant n'en deus ket ur stumm huela eus Nextcloud merked. Ur fazi vo en dazont.", @@ -20,7 +21,6 @@ OC.L10N.register( "User documentation" : "Dielvadur an implijer", "Admin documentation" : "Dielvadur ar merour", "Developer documentation" : "Diellvadur an digeler", - "{license}-licensed" : "{license}-aotre", "This app is supported via your current Nextcloud subscription." : "Ar meziant-mañ a vez douget dre ho kommanant Nextcloud.", "Supported" : "Douget", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Meziantoù perzhiet a vez digeliet gant ha e-vbarzh ar gummuniezh. Perzhioù penna a vez roet gante ha prest int da krouiñ reoù all.", @@ -31,10 +31,10 @@ OC.L10N.register( "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", "Type" : "Stumm", + "by {author}\n{license}" : "great gant {author}\n{license}", "Your apps" : "Ho meziantoù", "Documentation" : "Diellvadur", "Details" : "Munudoù", - "by {author}\n{license}" : "great gant {author}\n{license}", "Active apps" : "Meziantoù lakaet en dro", "Disabled apps" : "Meziantoù disaotreet", "Updates" : "Adnevesadennoù", diff --git a/l10n/br.json b/l10n/br.json index 8789ff3e..b6754660 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -8,6 +8,7 @@ "Network" : "Rouedad", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", + "{license}-licensed" : "{license}-aotre", "Update to {version}" : "Oc'h adneveziñ da {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "N'en deus ket ar meziant ur stumm izelañ evit Nextcloud. Ur fazi a vo en dazont.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ar meziant n'en deus ket ur stumm huela eus Nextcloud merked. Ur fazi vo en dazont.", @@ -18,7 +19,6 @@ "User documentation" : "Dielvadur an implijer", "Admin documentation" : "Dielvadur ar merour", "Developer documentation" : "Diellvadur an digeler", - "{license}-licensed" : "{license}-aotre", "This app is supported via your current Nextcloud subscription." : "Ar meziant-mañ a vez douget dre ho kommanant Nextcloud.", "Supported" : "Douget", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Meziantoù perzhiet a vez digeliet gant ha e-vbarzh ar gummuniezh. Perzhioù penna a vez roet gante ha prest int da krouiñ reoù all.", @@ -29,10 +29,10 @@ "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", "Type" : "Stumm", + "by {author}\n{license}" : "great gant {author}\n{license}", "Your apps" : "Ho meziantoù", "Documentation" : "Diellvadur", "Details" : "Munudoù", - "by {author}\n{license}" : "great gant {author}\n{license}", "Active apps" : "Meziantoù lakaet en dro", "Disabled apps" : "Meziantoù disaotreet", "Updates" : "Adnevesadennoù", diff --git a/l10n/ca.js b/l10n/ca.js index 6d0b389f..43105e10 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -8,10 +8,10 @@ OC.L10N.register( "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "Cancel" : "Cancelar", "Delete" : "Suprimir", "Edit" : "Edició", @@ -28,6 +28,7 @@ OC.L10N.register( "Save" : "Desar", "Register" : "Registra", "External Apps" : "Apps externes", + "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", "Delete data on remove" : "Suprimir dades en eliminar", @@ -40,7 +41,6 @@ OC.L10N.register( "User documentation" : "Documentació per a usuaris", "Admin documentation" : "Documentació per a administradors", "Developer documentation" : "Documentació per a desenvolupadors", - "{license}-licensed" : "sota la llicència - {license}", "This app is supported via your current Nextcloud subscription." : "Aquesta aplicació és compatible amb la vostra subscripció actual a Nextcloud.", "Supported" : "Compatible", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions destacades es desenvolupen per i dins de la comunitat. Ofereixen funcionalitats centrals i estan preparades per ser emprades en producció.", @@ -56,11 +56,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", "Details" : "Detalls", "Changelog" : "Registre de canvis", - "by {author}\n{license}" : "{author}\n{license}", "Active apps" : "Aplicacions actives", "Disabled apps" : "Aplicacions inhabilitades", "Updates" : "Actualitzacions", diff --git a/l10n/ca.json b/l10n/ca.json index bd02d09a..2eddc514 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -6,10 +6,10 @@ "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "Cancel" : "Cancelar", "Delete" : "Suprimir", "Edit" : "Edició", @@ -26,6 +26,7 @@ "Save" : "Desar", "Register" : "Registra", "External Apps" : "Apps externes", + "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", "Delete data on remove" : "Suprimir dades en eliminar", @@ -38,7 +39,6 @@ "User documentation" : "Documentació per a usuaris", "Admin documentation" : "Documentació per a administradors", "Developer documentation" : "Documentació per a desenvolupadors", - "{license}-licensed" : "sota la llicència - {license}", "This app is supported via your current Nextcloud subscription." : "Aquesta aplicació és compatible amb la vostra subscripció actual a Nextcloud.", "Supported" : "Compatible", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions destacades es desenvolupen per i dins de la comunitat. Ofereixen funcionalitats centrals i estan preparades per ser emprades en producció.", @@ -54,11 +54,11 @@ "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", "Details" : "Detalls", "Changelog" : "Registre de canvis", - "by {author}\n{license}" : "{author}\n{license}", "Active apps" : "Aplicacions actives", "Disabled apps" : "Aplicacions inhabilitades", "Updates" : "Actualitzacions", diff --git a/l10n/cs.js b/l10n/cs.js index 64c26e91..2285196c 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -21,6 +21,9 @@ OC.L10N.register( "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Správa externích aplikací", + "Admin options saved" : "Předvolby pro správu uloženy", + "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "Deploy Daemons" : "Nasadit procesy služeb", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", @@ -32,21 +35,18 @@ OC.L10N.register( "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", - "External Apps management" : "Správa externích aplikací", - "Admin options saved" : "Předvolby pro správu uloženy", - "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", "Cancel" : "Storno", "Delete" : "Smazat", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", + "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", - "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", - "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -63,21 +63,10 @@ OC.L10N.register( "Compute device" : "Výpočetní zařízení", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", - "Daemon connection successful" : "Připojení ke službě úspěšné", - "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", - "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register Daemon" : "Zaregistrovat proces služby", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", - "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", - "More info" : "Další informace", - "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", - "Remove test ExApp" : "Odebrat testovací ExApp", - "Start Deploy test" : "Spustit zkoušku nasazení", - "Stop Deploy test" : "Zastavit zkoušku nasazení", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", @@ -93,6 +82,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", + "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", + "More info" : "Další informace", + "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", + "Remove test ExApp" : "Odebrat testovací ExApp", + "Start Deploy test" : "Spustit zkoušku nasazení", + "Stop Deploy test" : "Zastavit zkoušku nasazení", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", + "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", + "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", + "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", + "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", + "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", + "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", @@ -110,7 +123,6 @@ OC.L10N.register( "Hide deploy config" : "Skrýt nastavení nasazení", "Network" : "Síť", "Docker network name" : "Název Docker sítě", - "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", @@ -122,19 +134,8 @@ OC.L10N.register( "Save" : "Uložit", "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", - "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", - "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", - "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", - "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", - "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", - "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", - "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", "External Apps" : "Externí aplikace", + "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", "Remove" : "Odebrat", "Delete data on remove" : "Při odebrání smazat data", @@ -148,7 +149,6 @@ OC.L10N.register( "Admin documentation" : "Dokumentace pro správce", "Developer documentation" : "Dokumentace pro vývojáře", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", - "{license}-licensed" : "licencováno pod {license}", "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", "Supported" : "Podporováno", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", @@ -168,11 +168,11 @@ OC.L10N.register( "Type" : "Typ", "Display Name" : "Zobrazované jméno", "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", "Changelog" : "Souhrn změn", - "by {author}\n{license}" : "od {author}\n{license}", "Active apps" : "Aktivní aplikace", "Disabled apps" : "Vypnuté aplikace", "Updates" : "Aktualizace", diff --git a/l10n/cs.json b/l10n/cs.json index c48315f3..27bb24f7 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -19,6 +19,9 @@ "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Správa externích aplikací", + "Admin options saved" : "Předvolby pro správu uloženy", + "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "Deploy Daemons" : "Nasadit procesy služeb", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", @@ -30,21 +33,18 @@ "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", - "External Apps management" : "Správa externích aplikací", - "Admin options saved" : "Předvolby pro správu uloženy", - "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", "Cancel" : "Storno", "Delete" : "Smazat", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", + "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", "Test deploy" : "Vyzkoušet nasazení", "Edit" : "Upravit", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", - "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", - "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -61,21 +61,10 @@ "Compute device" : "Výpočetní zařízení", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", - "Daemon connection successful" : "Připojení ke službě úspěšné", - "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", - "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register Daemon" : "Zaregistrovat proces služby", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", - "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", - "More info" : "Další informace", - "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", - "Remove test ExApp" : "Odebrat testovací ExApp", - "Start Deploy test" : "Spustit zkoušku nasazení", - "Stop Deploy test" : "Zastavit zkoušku nasazení", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", @@ -91,6 +80,30 @@ "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", + "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", + "More info" : "Další informace", + "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", + "Remove test ExApp" : "Odebrat testovací ExApp", + "Start Deploy test" : "Spustit zkoušku nasazení", + "Stop Deploy test" : "Zastavit zkoušku nasazení", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", + "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", + "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", + "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", + "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", + "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", + "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", @@ -108,7 +121,6 @@ "Hide deploy config" : "Skrýt nastavení nasazení", "Network" : "Síť", "Docker network name" : "Název Docker sítě", - "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", @@ -120,19 +132,8 @@ "Save" : "Uložit", "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", - "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", - "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", - "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", - "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", - "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", - "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", - "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", "External Apps" : "Externí aplikace", + "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", "Remove" : "Odebrat", "Delete data on remove" : "Při odebrání smazat data", @@ -146,7 +147,6 @@ "Admin documentation" : "Dokumentace pro správce", "Developer documentation" : "Dokumentace pro vývojáře", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace není zaregistrována v katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", - "{license}-licensed" : "licencováno pod {license}", "This app is supported via your current Nextcloud subscription." : "Tato aplikace je podporována prostřednictvím vašeho stávajícího předplatného podpory Nextcloud.", "Supported" : "Podporováno", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Doporučované aplikace jsou vyvíjeny komunitou. Jsou propojeny se zbytkem Nextcloud a připraveny na produkční nasazení.", @@ -166,11 +166,11 @@ "Type" : "Typ", "Display Name" : "Zobrazované jméno", "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", "Details" : "Podrobnosti", "Changelog" : "Souhrn změn", - "by {author}\n{license}" : "od {author}\n{license}", "Active apps" : "Aktivní aplikace", "Disabled apps" : "Vypnuté aplikace", "Updates" : "Aktualizace", diff --git a/l10n/da.js b/l10n/da.js index 032c9fc7..2ce50e07 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -3,22 +3,23 @@ OC.L10N.register( { "Cancel" : "Annuller", "Delete" : "Slet", + "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", "Edit" : "Rediger", - "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Deploy Daemon" : "Implementer Daemon", "Name" : "Navn", "Host" : "Vært", "GPUs support" : "GPUs support", "Compute device" : "Beregningsenhed", "Enabled" : "Aktiveret", + "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Display name" : "Vist navn", "Network" : "Netværk", "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Register", "Check connection" : "Kontroller forbindelsen", - "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", + "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", "Delete data on remove" : "Slet data ved fjernelse", @@ -31,7 +32,6 @@ OC.L10N.register( "User documentation" : "Bruger-dokumentation", "Admin documentation" : "Admin-dokumentation", "Developer documentation" : "Udvikler-dokumentation", - "{license}-licensed" : "{license}-licenseret", "This app is supported via your current Nextcloud subscription." : "Denne app understøttes via dit nuværende Nextcloud-abonnement.", "Supported" : "Understøttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", @@ -47,11 +47,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", + "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", "Details" : "Detaljer", "Changelog" : "Ændringslog", - "by {author}\n{license}" : "af {author}\n{licens}", "Active apps" : "Aktive apps", "Disabled apps" : "Deaktiverede apps", "Updates" : "Opdateringer", diff --git a/l10n/da.json b/l10n/da.json index dce0f79a..c4670727 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,22 +1,23 @@ { "translations": { "Cancel" : "Annuller", "Delete" : "Slet", + "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", "Edit" : "Rediger", - "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Deploy Daemon" : "Implementer Daemon", "Name" : "Navn", "Host" : "Vært", "GPUs support" : "GPUs support", "Compute device" : "Beregningsenhed", "Enabled" : "Aktiveret", + "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "Display name" : "Vist navn", "Network" : "Netværk", "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Register", "Check connection" : "Kontroller forbindelsen", - "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", + "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", "Delete data on remove" : "Slet data ved fjernelse", @@ -29,7 +30,6 @@ "User documentation" : "Bruger-dokumentation", "Admin documentation" : "Admin-dokumentation", "Developer documentation" : "Udvikler-dokumentation", - "{license}-licensed" : "{license}-licenseret", "This app is supported via your current Nextcloud subscription." : "Denne app understøttes via dit nuværende Nextcloud-abonnement.", "Supported" : "Understøttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", @@ -45,11 +45,11 @@ "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", + "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", "Details" : "Detaljer", "Changelog" : "Ændringslog", - "by {author}\n{license}" : "af {author}\n{licens}", "Active apps" : "Aktive apps", "Disabled apps" : "Deaktiverede apps", "Updates" : "Opdateringer", diff --git a/l10n/de.js b/l10n/de.js index 9c3c7ffe..0e885c5b 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "External Apps management" : "Externe Apps-Verwaltung", + "Admin options saved" : "Administrationseinstellungen gespeichert", + "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Gib die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "External Apps management" : "Externe Apps-Verwaltung", - "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", + "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", "Edit" : "Bearbeiten", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", - "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfe die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfe die Protokolle.", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", "Register a custom one or setup from available templates" : "Registriere eine benutzerdefinierte Vorlage oder richte sie aus verfügbaren Vorlagen ein", "Register Daemon" : "Daemon registrieren", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", - "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", + "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfe die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfe die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Speichern", "Register" : "Registrieren", "Check connection" : "Verbindung prüfen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", - "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Dokumentation für die Administration", "Developer documentation" : "Entwickler-Dokumentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", "This app is supported via your current Nextcloud subscription." : "Diese App wird von deinem aktuellen Nextcloud-Abonnement unterstützt.", "Supported" : "Unterstützt", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Community entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Typ", "Display Name" : "Anzeigename", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", "Details" : "Details", "Changelog" : "Liste der Veränderungen", - "by {author}\n{license}" : "von {author}\n{license}", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", diff --git a/l10n/de.json b/l10n/de.json index 2090390b..00729e15 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -20,6 +20,9 @@ "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "External Apps management" : "Externe Apps-Verwaltung", + "Admin options saved" : "Administrationseinstellungen gespeichert", + "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Gib die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "External Apps management" : "Externe Apps-Verwaltung", - "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", + "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", "Edit" : "Bearbeiten", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", - "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -62,21 +62,10 @@ "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfe die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfe die Protokolle.", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", "Register a custom one or setup from available templates" : "Registriere eine benutzerdefinierte Vorlage oder richte sie aus verfügbaren Vorlagen ein", "Register Daemon" : "Daemon registrieren", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", - "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", + "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfe die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfe die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", @@ -109,7 +122,6 @@ "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -121,20 +133,9 @@ "Save" : "Speichern", "Register" : "Registrieren", "Check connection" : "Verbindung prüfen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", - "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -148,7 +149,6 @@ "Admin documentation" : "Dokumentation für die Administration", "Developer documentation" : "Entwickler-Dokumentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", "This app is supported via your current Nextcloud subscription." : "Diese App wird von deinem aktuellen Nextcloud-Abonnement unterstützt.", "Supported" : "Unterstützt", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Community entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", @@ -168,11 +168,11 @@ "Type" : "Typ", "Display Name" : "Anzeigename", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", "Details" : "Details", "Changelog" : "Liste der Veränderungen", - "by {author}\n{license}" : "von {author}\n{license}", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index bc8cbb66..767bd9ae 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "External Apps management" : "Externe Apps-Verwaltung", + "Admin options saved" : "Administrationseinstellungen gespeichert", + "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geben Sie die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "External Apps management" : "Externe Apps-Verwaltung", - "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", + "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", "Edit" : "Bearbeiten", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", - "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfen Sie die Protokolle.", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", "Register a custom one or setup from available templates" : "Registrieren Sie eine benutzerdefinierte Vorlage oder richten Sie sie aus verfügbaren Vorlagen ein", "Register Daemon" : "Daemon registrieren", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", - "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", + "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Speichern", "Register" : "Registrieren", "Check connection" : "Verbindung prüfen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", - "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Dokumentation für die Administration", "Developer documentation" : "Entwickler-Dokumentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", "This app is supported via your current Nextcloud subscription." : "Diese App wird von Ihrem aktuellen Nextcloud-Abonnement unterstützt.", "Supported" : "Unterstützt", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Gemeinschaft entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Typ", "Display Name" : "Anzeigename", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", "Details" : "Details", "Changelog" : "Liste der Änderungen", - "by {author}\n{license}" : "von {author}\n{license}", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 44205a43..bc74d1cc 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -20,6 +20,9 @@ "ExApps Settings" : "ExApp-Einstellungen", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "External Apps management" : "Externe Apps-Verwaltung", + "Admin options saved" : "Administrationseinstellungen gespeichert", + "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geben Sie die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "External Apps management" : "Externe Apps-Verwaltung", - "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", + "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", "Edit" : "Bearbeiten", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", - "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -62,21 +62,10 @@ "Compute device" : "Compute-Gerät", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfen Sie die Protokolle.", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", "Register a custom one or setup from available templates" : "Registrieren Sie eine benutzerdefinierte Vorlage oder richten Sie sie aus verfügbaren Vorlagen ein", "Register Daemon" : "Daemon registrieren", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", - "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", + "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", @@ -109,7 +122,6 @@ "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -121,20 +133,9 @@ "Save" : "Speichern", "Register" : "Registrieren", "Check connection" : "Verbindung prüfen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", - "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -148,7 +149,6 @@ "Admin documentation" : "Dokumentation für die Administration", "Developer documentation" : "Entwickler-Dokumentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht im App-Store gelistet. Es sind keine weiteren Informationen verfügbar. Nur erlauben/deaktivieren und Aktionen entfernen ist zulässig.", - "{license}-licensed" : "{license}-Lizenziert", "This app is supported via your current Nextcloud subscription." : "Diese App wird von Ihrem aktuellen Nextcloud-Abonnement unterstützt.", "Supported" : "Unterstützt", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Vorgestellte Apps werden von und innerhalb der Nextcloud-Gemeinschaft entwickelt. Sie stellen zentrale Funktionen bereit und sind für den produktiven Einsatz geeignet.", @@ -168,11 +168,11 @@ "Type" : "Typ", "Display Name" : "Anzeigename", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", "Details" : "Details", "Changelog" : "Liste der Änderungen", - "by {author}\n{license}" : "von {author}\n{license}", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", diff --git a/l10n/el.js b/l10n/el.js index a50501c3..4516d4e4 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -13,6 +13,7 @@ OC.L10N.register( "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", + "{license}-licensed" : "{license}-αδειοδοτημένο", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Remove" : "Αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", @@ -24,7 +25,6 @@ OC.L10N.register( "User documentation" : "Τεκμηρίωση χρήστη", "Admin documentation" : "Τεκμηρίωση διαχειριστή", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", - "{license}-licensed" : "{license}-αδειοδοτημένο", "This app is supported via your current Nextcloud subscription." : "Αυτή η εφαρμογή υποστηρίζεται μέσω της τρέχουσας συνδρομής σας στο Nextcloud.", "Supported" : "Υποστηρίζεται", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι προτεινόμενες εφαρμογές αναπτύσσονται από και εντός της κοινότητας. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για χρήση.", @@ -39,11 +39,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", "Details" : "Λεπτομέρειες", "Changelog" : "Αρχείο καταγραφής αλλαγών", - "by {author}\n{license}" : "από {author}\n{license}", "Active apps" : "Ενεργές εφαρμογές", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", diff --git a/l10n/el.json b/l10n/el.json index 698d909d..8d1e6580 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -11,6 +11,7 @@ "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", + "{license}-licensed" : "{license}-αδειοδοτημένο", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Remove" : "Αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", @@ -22,7 +23,6 @@ "User documentation" : "Τεκμηρίωση χρήστη", "Admin documentation" : "Τεκμηρίωση διαχειριστή", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", - "{license}-licensed" : "{license}-αδειοδοτημένο", "This app is supported via your current Nextcloud subscription." : "Αυτή η εφαρμογή υποστηρίζεται μέσω της τρέχουσας συνδρομής σας στο Nextcloud.", "Supported" : "Υποστηρίζεται", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι προτεινόμενες εφαρμογές αναπτύσσονται από και εντός της κοινότητας. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για χρήση.", @@ -37,11 +37,11 @@ "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", "Details" : "Λεπτομέρειες", "Changelog" : "Αρχείο καταγραφής αλλαγών", - "by {author}\n{license}" : "από {author}\n{license}", "Active apps" : "Ενεργές εφαρμογές", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index d1fbc5ed..ab66a9c8 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "ExApps Settings", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", + "External Apps management" : "External Apps management", + "Admin options saved" : "Admin options saved", + "Failed to save admin options" : "Failed to save admin options", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "ExApp container restart policy", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot", "This settings changes are reflected only for newly created containers" : "This settings changes are reflected only for newly created containers", - "External Apps management" : "External Apps management", - "Admin options saved" : "Admin options saved", - "Failed to save admin options" : "Failed to save admin options", "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", "Cancel" : "Cancel", "Delete" : "Delete", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", + "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", + "Password confirmation failed" : "Password confirmation failed", "Default" : "Default", "Set as default" : "Set as default", "Test deploy" : "Test deploy", "Edit" : "Edit", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", - "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", - "Password confirmation failed" : "Password confirmation failed", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Compute device", "Additional options" : "Additional options", "Verify connection" : "Verify connection", - "Daemon connection successful" : "Daemon connection successful", - "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", - "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Registered Deploy daemons list" : "Registered Deploy daemons list", "No Deploy daemons configured" : "No Deploy daemons configured", "Register a custom one or setup from available templates" : "Register a custom one or setup from available templates", "Register Daemon" : "Register Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", - "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", - "More info" : "More info", - "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Remove test ExApp", - "Start Deploy test" : "Start Deploy test", - "Stop Deploy test" : "Stop Deploy test", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Check if the ExApp is registered in Nextcloud before deployment", "Image pull" : "Image pull", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Only if ExApp container is preset", "Deploy test passed successfully!" : "Deploy test passed successfully!", "Deploy test failed at step \"{step}\"" : "Deploy test failed at step \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", + "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", + "More info" : "More info", + "Download ExApp logs" : "Download ExApp logs", + "Remove test ExApp" : "Remove test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Hostname to access ExApps" : "Hostname to access ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon with this name already exists", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", + "Password must be at least 12 characters long" : "Password must be at least 12 characters long", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", + "URL should start with http:// or https://" : "URL should start with http:// or https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", + "DaemonConfig successfully registered" : "DaemonConfig successfully registered", + "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", + "DaemonConfig successfully updated" : "DaemonConfig successfully updated", + "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", + "Daemon connection successful" : "Daemon connection successful", + "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", + "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Edit Deploy Daemon" : "Edit Deploy Daemon", "Register Deploy Daemon" : "Register Deploy Daemon", "Daemon configuration template" : "Daemon configuration template", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Hide deploy config", "Network" : "Network", "Docker network name" : "Docker network name", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Save", "Register" : "Register", "Check connection" : "Check connection", - "Hostname to access ExApps" : "Hostname to access ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon with this name already exists", - "Password must be at least 12 characters long" : "Password must be at least 12 characters long", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", - "URL should start with http:// or https://" : "URL should start with http:// or https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", - "DaemonConfig successfully registered" : "DaemonConfig successfully registered", - "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", - "DaemonConfig successfully updated" : "DaemonConfig successfully updated", - "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", "External Apps" : "External Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", + "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Delete data on remove" : "Delete data on remove", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Admin documentation", "Developer documentation" : "Developer documentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed.", - "{license}-licensed" : "{license}-licensed", "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", "Supported" : "Supported", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Type", "Display Name" : "Display Name", "With https enabled network is set to host" : "With https enabled network is set to host", + "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", "Changelog" : "Changelog", - "by {author}\n{license}" : "by {author}\n{license}", "Active apps" : "Active apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index e2920053..735163b5 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -20,6 +20,9 @@ "ExApps Settings" : "ExApps Settings", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", + "External Apps management" : "External Apps management", + "Admin options saved" : "Admin options saved", + "Failed to save admin options" : "Failed to save admin options", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "ExApp container restart policy", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot", "This settings changes are reflected only for newly created containers" : "This settings changes are reflected only for newly created containers", - "External Apps management" : "External Apps management", - "Admin options saved" : "Admin options saved", - "Failed to save admin options" : "Failed to save admin options", "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", "Cancel" : "Cancel", "Delete" : "Delete", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", + "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", + "Password confirmation failed" : "Password confirmation failed", "Default" : "Default", "Set as default" : "Set as default", "Test deploy" : "Test deploy", "Edit" : "Edit", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", - "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", - "Password confirmation failed" : "Password confirmation failed", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -62,21 +62,10 @@ "Compute device" : "Compute device", "Additional options" : "Additional options", "Verify connection" : "Verify connection", - "Daemon connection successful" : "Daemon connection successful", - "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", - "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Registered Deploy daemons list" : "Registered Deploy daemons list", "No Deploy daemons configured" : "No Deploy daemons configured", "Register a custom one or setup from available templates" : "Register a custom one or setup from available templates", "Register Daemon" : "Register Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", - "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", - "More info" : "More info", - "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Remove test ExApp", - "Start Deploy test" : "Start Deploy test", - "Stop Deploy test" : "Stop Deploy test", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Check if the ExApp is registered in Nextcloud before deployment", "Image pull" : "Image pull", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Only if ExApp container is preset", "Deploy test passed successfully!" : "Deploy test passed successfully!", "Deploy test failed at step \"{step}\"" : "Deploy test failed at step \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", + "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", + "More info" : "More info", + "Download ExApp logs" : "Download ExApp logs", + "Remove test ExApp" : "Remove test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Hostname to access ExApps" : "Hostname to access ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon with this name already exists", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", + "Password must be at least 12 characters long" : "Password must be at least 12 characters long", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", + "URL should start with http:// or https://" : "URL should start with http:// or https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", + "DaemonConfig successfully registered" : "DaemonConfig successfully registered", + "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", + "DaemonConfig successfully updated" : "DaemonConfig successfully updated", + "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", + "Daemon connection successful" : "Daemon connection successful", + "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", + "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Edit Deploy Daemon" : "Edit Deploy Daemon", "Register Deploy Daemon" : "Register Deploy Daemon", "Daemon configuration template" : "Daemon configuration template", @@ -109,7 +122,6 @@ "Hide deploy config" : "Hide deploy config", "Network" : "Network", "Docker network name" : "Docker network name", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", @@ -121,20 +133,9 @@ "Save" : "Save", "Register" : "Register", "Check connection" : "Check connection", - "Hostname to access ExApps" : "Hostname to access ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon with this name already exists", - "Password must be at least 12 characters long" : "Password must be at least 12 characters long", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", - "URL should start with http:// or https://" : "URL should start with http:// or https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", - "DaemonConfig successfully registered" : "DaemonConfig successfully registered", - "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", - "DaemonConfig successfully updated" : "DaemonConfig successfully updated", - "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", "External Apps" : "External Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", + "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Delete data on remove" : "Delete data on remove", @@ -148,7 +149,6 @@ "Admin documentation" : "Admin documentation", "Developer documentation" : "Developer documentation", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed.", - "{license}-licensed" : "{license}-licensed", "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", "Supported" : "Supported", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", @@ -168,11 +168,11 @@ "Type" : "Type", "Display Name" : "Display Name", "With https enabled network is set to host" : "With https enabled network is set to host", + "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", "Changelog" : "Changelog", - "by {author}\n{license}" : "by {author}\n{license}", "Active apps" : "Active apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", diff --git a/l10n/eo.js b/l10n/eo.js index c472172d..114fa2cf 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -10,6 +10,7 @@ OC.L10N.register( "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", + "{license}-licensed" : "Permesilo: {license}", "Update to {version}" : "Ĝisdatigi al {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas minimuman Nextcloud-version. Tio estos eraro en la estonteco.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas maksimuman Nextcloud-version. Tio estos eraro en la estonteco.", @@ -20,7 +21,6 @@ OC.L10N.register( "User documentation" : "Dokumentaro por uzanto", "Admin documentation" : "Dokumentaro por administranto", "Developer documentation" : "Dokumentaro por programisto", - "{license}-licensed" : "Permesilo: {license}", "This app is supported via your current Nextcloud subscription." : "Tiu aplikaĵo estas subtenita per via nuna Nextcloud-abono.", "Supported" : "Subtenite", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Elstaraj aplikaĵoj estas programataj de kaj ene de la komunumo. Ili alportas kernajn trajtojn kaj ili povas tuj uziĝi.", diff --git a/l10n/eo.json b/l10n/eo.json index 8db8f10d..80747d06 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -8,6 +8,7 @@ "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", + "{license}-licensed" : "Permesilo: {license}", "Update to {version}" : "Ĝisdatigi al {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas minimuman Nextcloud-version. Tio estos eraro en la estonteco.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tiu aplikaĵo ne postulas maksimuman Nextcloud-version. Tio estos eraro en la estonteco.", @@ -18,7 +19,6 @@ "User documentation" : "Dokumentaro por uzanto", "Admin documentation" : "Dokumentaro por administranto", "Developer documentation" : "Dokumentaro por programisto", - "{license}-licensed" : "Permesilo: {license}", "This app is supported via your current Nextcloud subscription." : "Tiu aplikaĵo estas subtenita per via nuna Nextcloud-abono.", "Supported" : "Subtenite", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Elstaraj aplikaĵoj estas programataj de kaj ene de la komunumo. Ili alportas kernajn trajtojn kaj ili povas tuj uziĝi.", diff --git a/l10n/es.js b/l10n/es.js index ecb7201f..ec37438f 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -19,6 +19,9 @@ OC.L10N.register( "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Ajustes de las ExApps", "Nextcloud AppAPI" : "AppAPI de Nextcloud", + "External Apps management" : "Gestión de Apps externas", + "Admin options saved" : "Opciones de administrador guardadas", + "Failed to save admin options" : "Fallo al guardar opciones de administración", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", @@ -30,20 +33,17 @@ OC.L10N.register( "ExApp container restart policy" : "Política de reinicio del contenedor ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique la política de reinicio del contenedor. p. ej. 'siempre' para asegurarse de que la ExApp se está ejecutando luego de un reinicio del Daemon del servidor", "This settings changes are reflected only for newly created containers" : "Estos cambios de ajustes solo se reflejarán para contenedores nuevos", - "External Apps management" : "Gestión de Apps externas", - "Admin options saved" : "Opciones de administrador guardadas", - "Failed to save admin options" : "Fallo al guardar opciones de administración", "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", "Cancel" : "Cancelar", "Delete" : "Eliminar", + "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", + "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", "Default" : "Por defecto", "Set as default" : "Establecer como predeterminado", "Test deploy" : "Probar despliegue", "Edit" : "Editar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", - "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", @@ -60,21 +60,10 @@ OC.L10N.register( "Compute device" : "Dispositivo de cómputo", "Additional options" : "Opciones adicionales", "Verify connection" : "Verificar conexión", - "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Chequee los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Chequee los registros", "Registered Deploy daemons list" : "Lista de daemons de despliegue registrados", "No Deploy daemons configured" : "No hay daemons de despliegue configurados", "Register a custom one or setup from available templates" : "Registre uno personalizado, o, configure desde las plantillas disponibles", "Register Daemon" : "Registrar Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", - "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", - "More info" : "Más información", - "Download ExApp logs" : "Descargar los registros de la ExApp", - "Remove test ExApp" : "Eliminar la ExApp de prueba", - "Start Deploy test" : "Iniciar pruebas de despliegue", - "Stop Deploy test" : "Detener pruebas de despliegue", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", "Register ExApp in Nextcloud" : "Registrar ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar si la ExApp está registrada en Nextcloud antes del despliegue", "Image pull" : "Pull de imagen", @@ -90,6 +79,25 @@ OC.L10N.register( "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", "Deploy test failed at step \"{step}\"" : "La verificación de despliegue falló en el paso \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", + "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", + "More info" : "Más información", + "Download ExApp logs" : "Descargar los registros de la ExApp", + "Remove test ExApp" : "Eliminar la ExApp de prueba", + "Start Deploy test" : "Iniciar pruebas de despliegue", + "Stop Deploy test" : "Detener pruebas de despliegue", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un daemon con este nombre ya existe", + "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", + "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", + "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", + "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", + "Daemon connection successful" : "Conexión a daemon exitosa", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Chequee los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Chequee los registros", "Register Deploy Daemon" : "Registrar Daemon de despliegue", "Daemon configuration template" : "Plantilla de configuración de daemon", "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", @@ -106,7 +114,6 @@ OC.L10N.register( "Hide deploy config" : "Ocultar configuración de despliegue", "Network" : "Red", "Docker network name" : "Nombre de la red Docker", - "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", @@ -118,14 +125,8 @@ OC.L10N.register( "Save" : "Guardar", "Register" : "Registrarse", "Check connection" : "Verificar conexión", - "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Un daemon con este nombre ya existe", - "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", - "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", - "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", "External Apps" : "Apps Externas", + "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Remove" : "Quitar", "Delete data on remove" : "Eliminar datos al borrar", @@ -139,7 +140,6 @@ OC.L10N.register( "Admin documentation" : "Documentación de administrador", "Developer documentation" : "Documentación de desarrollador", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no está registrada en el AppStore. No hay información extra disponible. Sólo están permitidas las acciones de habilitar/deshabilitar.", - "{license}-licensed" : "licenciado bajo {license}", "This app is supported via your current Nextcloud subscription." : "Esta App está soportada a través de su suscripción actual de Nexcloud.", "Supported" : "Soportada", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", @@ -159,11 +159,11 @@ OC.L10N.register( "Type" : "Tipo", "Display Name" : "Nombre a mostrar", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus apps", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Registro de cambios", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Apps activas", "Disabled apps" : "Apps deshabilitadas", "Updates" : "Actualizaciones", diff --git a/l10n/es.json b/l10n/es.json index 0330b148..407c9057 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -17,6 +17,9 @@ "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Ajustes de las ExApps", "Nextcloud AppAPI" : "AppAPI de Nextcloud", + "External Apps management" : "Gestión de Apps externas", + "Admin options saved" : "Opciones de administrador guardadas", + "Failed to save admin options" : "Fallo al guardar opciones de administración", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", @@ -28,20 +31,17 @@ "ExApp container restart policy" : "Política de reinicio del contenedor ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique la política de reinicio del contenedor. p. ej. 'siempre' para asegurarse de que la ExApp se está ejecutando luego de un reinicio del Daemon del servidor", "This settings changes are reflected only for newly created containers" : "Estos cambios de ajustes solo se reflejarán para contenedores nuevos", - "External Apps management" : "Gestión de Apps externas", - "Admin options saved" : "Opciones de administrador guardadas", - "Failed to save admin options" : "Fallo al guardar opciones de administración", "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", "Cancel" : "Cancelar", "Delete" : "Eliminar", + "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", + "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", "Default" : "Por defecto", "Set as default" : "Establecer como predeterminado", "Test deploy" : "Probar despliegue", "Edit" : "Editar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", - "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", @@ -58,21 +58,10 @@ "Compute device" : "Dispositivo de cómputo", "Additional options" : "Opciones adicionales", "Verify connection" : "Verificar conexión", - "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Chequee los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Chequee los registros", "Registered Deploy daemons list" : "Lista de daemons de despliegue registrados", "No Deploy daemons configured" : "No hay daemons de despliegue configurados", "Register a custom one or setup from available templates" : "Registre uno personalizado, o, configure desde las plantillas disponibles", "Register Daemon" : "Registrar Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", - "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", - "More info" : "Más información", - "Download ExApp logs" : "Descargar los registros de la ExApp", - "Remove test ExApp" : "Eliminar la ExApp de prueba", - "Start Deploy test" : "Iniciar pruebas de despliegue", - "Stop Deploy test" : "Detener pruebas de despliegue", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", "Register ExApp in Nextcloud" : "Registrar ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar si la ExApp está registrada en Nextcloud antes del despliegue", "Image pull" : "Pull de imagen", @@ -88,6 +77,25 @@ "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", "Deploy test failed at step \"{step}\"" : "La verificación de despliegue falló en el paso \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", + "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", + "More info" : "Más información", + "Download ExApp logs" : "Descargar los registros de la ExApp", + "Remove test ExApp" : "Eliminar la ExApp de prueba", + "Start Deploy test" : "Iniciar pruebas de despliegue", + "Stop Deploy test" : "Detener pruebas de despliegue", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un daemon con este nombre ya existe", + "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", + "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", + "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", + "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", + "Daemon connection successful" : "Conexión a daemon exitosa", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Chequee los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Chequee los registros", "Register Deploy Daemon" : "Registrar Daemon de despliegue", "Daemon configuration template" : "Plantilla de configuración de daemon", "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", @@ -104,7 +112,6 @@ "Hide deploy config" : "Ocultar configuración de despliegue", "Network" : "Red", "Docker network name" : "Nombre de la red Docker", - "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", @@ -116,14 +123,8 @@ "Save" : "Guardar", "Register" : "Registrarse", "Check connection" : "Verificar conexión", - "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Un daemon con este nombre ya existe", - "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", - "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", - "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", "External Apps" : "Apps Externas", + "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Remove" : "Quitar", "Delete data on remove" : "Eliminar datos al borrar", @@ -137,7 +138,6 @@ "Admin documentation" : "Documentación de administrador", "Developer documentation" : "Documentación de desarrollador", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no está registrada en el AppStore. No hay información extra disponible. Sólo están permitidas las acciones de habilitar/deshabilitar.", - "{license}-licensed" : "licenciado bajo {license}", "This app is supported via your current Nextcloud subscription." : "Esta App está soportada a través de su suscripción actual de Nexcloud.", "Supported" : "Soportada", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", @@ -157,11 +157,11 @@ "Type" : "Tipo", "Display Name" : "Nombre a mostrar", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus apps", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Registro de cambios", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Apps activas", "Disabled apps" : "Apps deshabilitadas", "Updates" : "Actualizaciones", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index ecb86d9d..c35e14ac 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -13,6 +13,7 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", + "{license}-licensed" : "Licenciado con {license}", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -23,7 +24,6 @@ OC.L10N.register( "User documentation" : "Documentación del usuario", "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", - "{license}-licensed" : "Licenciado con {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación es compatible con tu suscripción actual de Nextcloud.", "Supported" : "Compatible", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones destacadas son desarrolladas por y dentro de la comunidad. Ofrecen funcionalidad central y están listas para su uso en producción.", @@ -38,11 +38,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "by {author}\n{license}" : "por {author}\n {license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Bitácora de cambios", - "by {author}\n{license}" : "por {author}\n {license}", "Active apps" : "Aplicaciones activas", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index cb9d51a0..38eb60e9 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -11,6 +11,7 @@ "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", + "{license}-licensed" : "Licenciado con {license}", "Update to {version}" : "Actualizar a {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", @@ -21,7 +22,6 @@ "User documentation" : "Documentación del usuario", "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", - "{license}-licensed" : "Licenciado con {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación es compatible con tu suscripción actual de Nextcloud.", "Supported" : "Compatible", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones destacadas son desarrolladas por y dentro de la comunidad. Ofrecen funcionalidad central y están listas para su uso en producción.", @@ -36,11 +36,11 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "by {author}\n{license}" : "por {author}\n {license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Bitácora de cambios", - "by {author}\n{license}" : "por {author}\n {license}", "Active apps" : "Aplicaciones activas", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 1f5f0bb7..69604291 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -16,6 +16,7 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", + "{license}-licensed" : "Licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Remove" : "Borrar", "Delete data on remove" : "Eliminar datos al remover", @@ -28,7 +29,6 @@ OC.L10N.register( "User documentation" : "Documentación del usuario", "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", - "{license}-licensed" : "Licenciado bajo {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación está soportada con tu suscripción actual de Nextcloud.", "Supported" : "Soportado", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", @@ -44,11 +44,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Bitácora de cambios", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicaciones activas", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 121f7212..8e16417e 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -14,6 +14,7 @@ "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", + "{license}-licensed" : "Licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Remove" : "Borrar", "Delete data on remove" : "Eliminar datos al remover", @@ -26,7 +27,6 @@ "User documentation" : "Documentación del usuario", "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", - "{license}-licensed" : "Licenciado bajo {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación está soportada con tu suscripción actual de Nextcloud.", "Supported" : "Soportado", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones destacadas están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están listas para usarlas en producción.", @@ -42,11 +42,11 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Bitácora de cambios", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicaciones activas", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index f9aa4d93..9d3b268e 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -12,6 +12,7 @@ OC.L10N.register( "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", + "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", @@ -22,7 +23,6 @@ OC.L10N.register( "User documentation" : "Kasutaja dokumentatsioon", "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", - "{license}-licensed" : "{license} litsents", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", "Version" : "Versioon", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 8d4192bc..687e366b 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -10,6 +10,7 @@ "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", + "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", @@ -20,7 +21,6 @@ "User documentation" : "Kasutaja dokumentatsioon", "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", - "{license}-licensed" : "{license} litsents", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", "Version" : "Versioon", diff --git a/l10n/eu.js b/l10n/eu.js index a64aac7f..482de0cc 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -20,9 +20,9 @@ OC.L10N.register( "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", + "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Default" : "Lehenetsia", "Edit" : "Aldatu", - "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Deploy Daemon" : "Zabaldu daimona", "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", @@ -37,9 +37,9 @@ OC.L10N.register( "Additional options" : "Aukera gehiago", "Verify connection" : "Egiaztatu konexioa", "Register Daemon" : "Erregistratu daimona", - "More info" : "Informazio gehiago", "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", + "More info" : "Informazio gehiago", "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", @@ -52,6 +52,7 @@ OC.L10N.register( "Register" : "Erregistratu", "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", + "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", "Delete data on remove" : "Ezabatu datuak kentzean", @@ -64,7 +65,6 @@ OC.L10N.register( "User documentation" : "Erabiltzaile dokumentazioa", "Admin documentation" : "Admin dokumentazioa", "Developer documentation" : "Garatzaile dokumentazioa", - "{license}-licensed" : "{license}-lizentziaduna", "This app is supported via your current Nextcloud subscription." : "Aplikazio hau zure Nextcloud harpidetzaren bitartez ahalbidetua dago.", "Supported" : "Onartuta", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Nabarmendutako aplikazioak, komunitateak eta komunitatean garatutakoak dira. Funtzionalitate orokorrak eskaintzen dituzte eta produkzioan erabiltzeko prest daude.", @@ -81,11 +81,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], "Type" : "Mota", "Display Name" : "Izena erakutsi", + "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", "Details" : "Xehetasunak", "Changelog" : "Aldaketak", - "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Active apps" : "Aplikazio aktiboak", "Disabled apps" : "Gaitu gabeko aplikazioak", "Updates" : "Eguneraketak", diff --git a/l10n/eu.json b/l10n/eu.json index 22ba51f6..80d54c1c 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -18,9 +18,9 @@ "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", + "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Default" : "Lehenetsia", "Edit" : "Aldatu", - "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Deploy Daemon" : "Zabaldu daimona", "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", @@ -35,9 +35,9 @@ "Additional options" : "Aukera gehiago", "Verify connection" : "Egiaztatu konexioa", "Register Daemon" : "Erregistratu daimona", - "More info" : "Informazio gehiago", "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", + "More info" : "Informazio gehiago", "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", @@ -50,6 +50,7 @@ "Register" : "Erregistratu", "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", + "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", "Remove" : "Kendu", "Delete data on remove" : "Ezabatu datuak kentzean", @@ -62,7 +63,6 @@ "User documentation" : "Erabiltzaile dokumentazioa", "Admin documentation" : "Admin dokumentazioa", "Developer documentation" : "Garatzaile dokumentazioa", - "{license}-licensed" : "{license}-lizentziaduna", "This app is supported via your current Nextcloud subscription." : "Aplikazio hau zure Nextcloud harpidetzaren bitartez ahalbidetua dago.", "Supported" : "Onartuta", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Nabarmendutako aplikazioak, komunitateak eta komunitatean garatutakoak dira. Funtzionalitate orokorrak eskaintzen dituzte eta produkzioan erabiltzeko prest daude.", @@ -79,11 +79,11 @@ "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], "Type" : "Mota", "Display Name" : "Izena erakutsi", + "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", "Details" : "Xehetasunak", "Changelog" : "Aldaketak", - "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Active apps" : "Aplikazio aktiboak", "Disabled apps" : "Gaitu gabeko aplikazioak", "Updates" : "Eguneraketak", diff --git a/l10n/fa.js b/l10n/fa.js index 56b49243..b06233fe 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", + "{license}-licensed" : "دارای مجوز- {license}", "Update to {version}" : "به‌روز رسانی به {version}", "Remove" : "حذف", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداقل دارای نسخه بعدی نکست کلود است. این یک خطا در آینده خواهد بود.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "مستندات کاربری", "Admin documentation" : "مستندات مدیریتی", "Developer documentation" : "مستندات توسعه", - "{license}-licensed" : "دارای مجوز- {license}", "This app is supported via your current Nextcloud subscription." : "این کاره از طریق اشتراک فعلی نکست کلودتان پشتیبانی می شود.", "Supported" : "پشتیبانی شده", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "برنامه‌های برگزیده توسط و در داخل جامعه توسعه داده می‌شوند. این برنامه‌ها، عملکردهای مرکزی را ارائه می‌دهند و برای استفاده نهایی آماده هستند.", @@ -39,11 +39,11 @@ OC.L10N.register( "Results from other categories" : "نتایج از دیگر دسته‌ها", "_Update_::_Update all_" : ["به‌روز رسانی","به‌روز رسانی همه"], "Type" : "نوع", + "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "برنامه‌های شما", "Documentation" : "مستندات", "Details" : "جزییات", "Changelog" : "تغییر", - "by {author}\n{license}" : "by {author}\n{license}", "Active apps" : "برنامه‌های فعال", "Disabled apps" : "برنامه‌های غیرفعال", "Updates" : "به روز رسانی ها", diff --git a/l10n/fa.json b/l10n/fa.json index 631cbae0..380c96df 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -12,6 +12,7 @@ "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", + "{license}-licensed" : "دارای مجوز- {license}", "Update to {version}" : "به‌روز رسانی به {version}", "Remove" : "حذف", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداقل دارای نسخه بعدی نکست کلود است. این یک خطا در آینده خواهد بود.", @@ -23,7 +24,6 @@ "User documentation" : "مستندات کاربری", "Admin documentation" : "مستندات مدیریتی", "Developer documentation" : "مستندات توسعه", - "{license}-licensed" : "دارای مجوز- {license}", "This app is supported via your current Nextcloud subscription." : "این کاره از طریق اشتراک فعلی نکست کلودتان پشتیبانی می شود.", "Supported" : "پشتیبانی شده", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "برنامه‌های برگزیده توسط و در داخل جامعه توسعه داده می‌شوند. این برنامه‌ها، عملکردهای مرکزی را ارائه می‌دهند و برای استفاده نهایی آماده هستند.", @@ -37,11 +37,11 @@ "Results from other categories" : "نتایج از دیگر دسته‌ها", "_Update_::_Update all_" : ["به‌روز رسانی","به‌روز رسانی همه"], "Type" : "نوع", + "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "برنامه‌های شما", "Documentation" : "مستندات", "Details" : "جزییات", "Changelog" : "تغییر", - "by {author}\n{license}" : "by {author}\n{license}", "Active apps" : "برنامه‌های فعال", "Disabled apps" : "برنامه‌های غیرفعال", "Updates" : "به روز رسانی ها", diff --git a/l10n/fi.js b/l10n/fi.js index ef511790..3d60fb63 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -13,6 +13,7 @@ OC.L10N.register( "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", + "{license}-licensed" : "{license}-lisensoitu", "Update to {version}" : "Päivitä versioon {version}", "Remove" : "Poista", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", @@ -24,7 +25,6 @@ OC.L10N.register( "User documentation" : "Käyttäjädokumentaatio", "Admin documentation" : "Ylläpitäjän dokumentaatio", "Developer documentation" : "Kehittäjädokumentaatio", - "{license}-licensed" : "{license}-lisensoitu", "This app is supported via your current Nextcloud subscription." : "Tämä sovellus on tuettu nykyisen Nextcloud-tilauksesi kautta.", "Supported" : "Tuettu", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esitellyt sovellukset on yhteisön itsensä kehitettämiä. Ne tarjoavat keskeisiä toimintoja ja ovat valmiita tuotantokäyttöön.", @@ -39,11 +39,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Päivitä","Päivitä kaikki"], "Type" : "Tyyppi", "Display Name" : "Näyttönimi", + "by {author}\n{license}" : "tekijä {author}\n{license}", "Your apps" : "Sovelluksesi", "Documentation" : "Dokumentaatio", "Details" : "Tiedot", "Changelog" : "Muutosloki", - "by {author}\n{license}" : "tekijä {author}\n{license}", "Active apps" : "Aktiiviset sovellukset", "Disabled apps" : "Käytöstä poistetut sovellukset", "Updates" : "Päivitykset", diff --git a/l10n/fi.json b/l10n/fi.json index eed3bff7..6559a23f 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -11,6 +11,7 @@ "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", + "{license}-licensed" : "{license}-lisensoitu", "Update to {version}" : "Päivitä versioon {version}", "Remove" : "Poista", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", @@ -22,7 +23,6 @@ "User documentation" : "Käyttäjädokumentaatio", "Admin documentation" : "Ylläpitäjän dokumentaatio", "Developer documentation" : "Kehittäjädokumentaatio", - "{license}-licensed" : "{license}-lisensoitu", "This app is supported via your current Nextcloud subscription." : "Tämä sovellus on tuettu nykyisen Nextcloud-tilauksesi kautta.", "Supported" : "Tuettu", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esitellyt sovellukset on yhteisön itsensä kehitettämiä. Ne tarjoavat keskeisiä toimintoja ja ovat valmiita tuotantokäyttöön.", @@ -37,11 +37,11 @@ "_Update_::_Update all_" : ["Päivitä","Päivitä kaikki"], "Type" : "Tyyppi", "Display Name" : "Näyttönimi", + "by {author}\n{license}" : "tekijä {author}\n{license}", "Your apps" : "Sovelluksesi", "Documentation" : "Dokumentaatio", "Details" : "Tiedot", "Changelog" : "Muutosloki", - "by {author}\n{license}" : "tekijä {author}\n{license}", "Active apps" : "Aktiiviset sovellukset", "Disabled apps" : "Käytöstä poistetut sovellukset", "Updates" : "Päivitykset", diff --git a/l10n/fr.js b/l10n/fr.js index 2382894c..460eada4 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -19,6 +19,9 @@ OC.L10N.register( "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "External Apps management" : "Gestion des applications externes", + "Admin options saved" : "Options d'administration sauvegardées", + "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -30,21 +33,18 @@ OC.L10N.register( "ExApp container restart policy" : "Politique de redémarrage du conteneur ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", - "External Apps management" : "Gestion des applications externes", - "Admin options saved" : "Options d'administration sauvegardées", - "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", "Cancel" : "Annuler", "Delete" : "Supprimer", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", + "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", + "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", "Test deploy" : "Tester le déploiement", "Edit" : "Modifier", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", - "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", - "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", @@ -61,21 +61,10 @@ OC.L10N.register( "Compute device" : "Equipement de calcul", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", - "Daemon connection successful" : "Connexion au Deamon réussie", - "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", - "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", "No Deploy daemons configured" : "Aucun service de déploiement configuré", "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", "Register Daemon" : "Inscrire Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", - "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", - "More info" : "Plus d'informations", - "Download ExApp logs" : "Télécharger les logs d'ExApp", - "Remove test ExApp" : "Supprimer le test ExApp", - "Start Deploy test" : "Démarrer le test de déploiement", - "Stop Deploy test" : "Arrêt du test de déploiement", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", "Register ExApp in Nextcloud" : "Enregistrez ExApp dans Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Vérifiez si l'ExApp est enregistré dans Nextcloud avant le déploiement", "Image pull" : "Extraction d'image", @@ -91,6 +80,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", "Deploy test passed successfully!" : "Test de déploiement réussi !", "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", + "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", + "More info" : "Plus d'informations", + "Download ExApp logs" : "Télécharger les logs d'ExApp", + "Remove test ExApp" : "Supprimer le test ExApp", + "Start Deploy test" : "Démarrer le test de déploiement", + "Stop Deploy test" : "Arrêt du test de déploiement", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un service du même nom existe déjà", + "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", + "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", + "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", + "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", + "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", + "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", + "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", + "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Edit Deploy Daemon" : "Modifier le déploiement Daemon", "Register Deploy Daemon" : "Enregistrer le service de déploiement", "Daemon configuration template" : "Modèle de configuration de Daemon", @@ -108,7 +121,6 @@ OC.L10N.register( "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", - "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", @@ -120,19 +132,8 @@ OC.L10N.register( "Save" : "Enregistrer", "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", - "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Un service du même nom existe déjà", - "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", - "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", - "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", - "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", - "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", - "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", "External Apps" : "Applications externes", + "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", "Remove" : "Retirer", "Delete data on remove" : "Supprimer les données lors de la désinstallation", @@ -146,7 +147,6 @@ OC.L10N.register( "Admin documentation" : "Documentation administrateur", "Developer documentation" : "Documentation développeurs", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", - "{license}-licensed" : "Sous licence {license}", "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", "Supported" : "Prise en charge", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", @@ -166,11 +166,11 @@ OC.L10N.register( "Type" : "Type", "Display Name" : "Nom affiché", "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", + "by {author}\n{license}" : "par {author}\n{license}", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", "Changelog" : "Journal des modifications", - "by {author}\n{license}" : "par {author}\n{license}", "Active apps" : "Applications actives", "Disabled apps" : "Applications désactivées", "Updates" : "Mises à jour", diff --git a/l10n/fr.json b/l10n/fr.json index 6e2e8e7d..6d91bf87 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -17,6 +17,9 @@ "AI Integration Team" : "Équipe d'intégration de l'IA", "ExApps Settings" : "Paramètres ExApps", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "External Apps management" : "Gestion des applications externes", + "Admin options saved" : "Options d'administration sauvegardées", + "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -28,21 +31,18 @@ "ExApp container restart policy" : "Politique de redémarrage du conteneur ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", - "External Apps management" : "Gestion des applications externes", - "Admin options saved" : "Options d'administration sauvegardées", - "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", "Cancel" : "Annuler", "Delete" : "Supprimer", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", + "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", + "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", "Test deploy" : "Tester le déploiement", "Edit" : "Modifier", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", - "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", - "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", @@ -59,21 +59,10 @@ "Compute device" : "Equipement de calcul", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", - "Daemon connection successful" : "Connexion au Deamon réussie", - "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", - "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", "No Deploy daemons configured" : "Aucun service de déploiement configuré", "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", "Register Daemon" : "Inscrire Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", - "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", - "More info" : "Plus d'informations", - "Download ExApp logs" : "Télécharger les logs d'ExApp", - "Remove test ExApp" : "Supprimer le test ExApp", - "Start Deploy test" : "Démarrer le test de déploiement", - "Stop Deploy test" : "Arrêt du test de déploiement", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", "Register ExApp in Nextcloud" : "Enregistrez ExApp dans Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Vérifiez si l'ExApp est enregistré dans Nextcloud avant le déploiement", "Image pull" : "Extraction d'image", @@ -89,6 +78,30 @@ "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", "Deploy test passed successfully!" : "Test de déploiement réussi !", "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", + "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", + "More info" : "Plus d'informations", + "Download ExApp logs" : "Télécharger les logs d'ExApp", + "Remove test ExApp" : "Supprimer le test ExApp", + "Start Deploy test" : "Démarrer le test de déploiement", + "Stop Deploy test" : "Arrêt du test de déploiement", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un service du même nom existe déjà", + "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", + "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", + "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", + "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", + "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", + "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", + "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", + "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Edit Deploy Daemon" : "Modifier le déploiement Daemon", "Register Deploy Daemon" : "Enregistrer le service de déploiement", "Daemon configuration template" : "Modèle de configuration de Daemon", @@ -106,7 +119,6 @@ "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", - "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", @@ -118,19 +130,8 @@ "Save" : "Enregistrer", "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", - "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Un service du même nom existe déjà", - "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", - "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", - "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", - "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", - "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", - "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", "External Apps" : "Applications externes", + "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", "Remove" : "Retirer", "Delete data on remove" : "Supprimer les données lors de la désinstallation", @@ -144,7 +145,6 @@ "Admin documentation" : "Documentation administrateur", "Developer documentation" : "Documentation développeurs", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Cette application n'est pas enregistrée dans l'AppStore. Aucune information supplémentaire disponible. Seules les actions d'activation/désactivation et de suppression sont autorisées.", - "{license}-licensed" : "Sous licence {license}", "This app is supported via your current Nextcloud subscription." : "Cette application bénéficie d'un support grâce à votre abonnement Nextcloud.", "Supported" : "Prise en charge", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications en vedette sont développées par la communauté. Elles proposent des fonctionnalités centrales et sont prêtes pour la production.", @@ -164,11 +164,11 @@ "Type" : "Type", "Display Name" : "Nom affiché", "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", + "by {author}\n{license}" : "par {author}\n{license}", "Your apps" : "Vos applications", "Documentation" : "Documentation", "Details" : "Détails", "Changelog" : "Journal des modifications", - "by {author}\n{license}" : "par {author}\n{license}", "Active apps" : "Applications actives", "Disabled apps" : "Applications désactivées", "Updates" : "Mises à jour", diff --git a/l10n/ga.js b/l10n/ga.js index e2c4b9a1..0bfe4578 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "Socruithe ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", + "External Apps management" : "Bainistíocht Aipeanna Seachtracha", + "Admin options saved" : "Sábháladh roghanna riaracháin", + "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "Beartas atosú coimeádán ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Sonraigh polasaí atosú coimeádán, e.g. 'i gcónaí' chun a chinntiú go ritheann ExApp tar éis atosaigh an fhreastalaí deamhan", "This settings changes are reflected only for newly created containers" : "Ní léirítear na hathruithe socruithe seo ach le haghaidh coimeádáin nuachruthaithe", - "External Apps management" : "Bainistíocht Aipeanna Seachtracha", - "Admin options saved" : "Sábháladh roghanna riaracháin", - "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", "Cancel" : "Cealaigh", "Delete" : "Scrios", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", + "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", + "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", "Test deploy" : "Imscaradh tástála", "Edit" : "Cuir in eagar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", - "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", - "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Gléas ríomh", "Additional options" : "Roghanna breise", "Verify connection" : "Fíoraigh ceangal", - "Daemon connection successful" : "D'éirigh le nasc deamhan", - "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", - "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", "No Deploy daemons configured" : "Níl aon deamhan Imscaradh cumraithe", "Register a custom one or setup from available templates" : "Cláraigh ceann nó socrú saincheaptha ó na teimpléid atá ar fáil", "Register Daemon" : "Clár Deamhan", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", - "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", - "More info" : "Tuilleadh eolais", - "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", - "Remove test ExApp" : "Bain tástáil ExApp", - "Start Deploy test" : "Tosaigh Imscaradh tástála", - "Stop Deploy test" : "Stop an tástáil Imscaradh", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Register ExApp in Nextcloud" : "Cláraigh ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Seiceáil an bhfuil an ExApp cláraithe in Nextcloud roimh imscaradh", "Image pull" : "Tarraingt íomhá", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Ach amháin má tá coimeádán ExApp réamhshocraithe", "Deploy test passed successfully!" : "D'éirigh leis an triail a imscaradh!", "Deploy test failed at step \"{step}\"" : "Theip ar an tástáil a chur i bhfeidhm ag céim \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", + "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", + "More info" : "Tuilleadh eolais", + "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", + "Remove test ExApp" : "Bain tástáil ExApp", + "Start Deploy test" : "Tosaigh Imscaradh tástála", + "Stop Deploy test" : "Stop an tástáil Imscaradh", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", + "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", + "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", + "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", + "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", + "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", + "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", + "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", + "Daemon connection successful" : "D'éirigh le nasc deamhan", + "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", + "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", "Register Deploy Daemon" : "Clár Imscaradh Deamhan", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", "Network" : "Líonra", "Docker network name" : "Ainm líonra docker", - "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Sábháil", "Register" : "Clár", "Check connection" : "Seiceáil an nasc", - "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", - "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", - "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", - "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", - "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", - "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", - "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", "External Apps" : "Aipeanna Seachtrach", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", + "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", "Remove" : "Bain", "Delete data on remove" : "Scrios sonraí ar bhaint", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Doiciméadúchán riaracháin", "Developer documentation" : "Doiciméadú forbróra", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo cláraithe in AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", - "{license}-licensed" : "{license}-cheadúnaithe", "This app is supported via your current Nextcloud subscription." : "Tacaítear leis an aip seo trí do shíntiús reatha Nextcloud.", "Supported" : "Tacaithe", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forbraíonn an pobal agus laistigh den phobal aipeanna sainghnéitheacha. Cuireann siad feidhmiúlacht lárnach ar fáil agus tá siad réidh le húsáid táirgeachta.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Cineál", "Display Name" : "Ainm taispeána", "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", + "by {author}\n{license}" : "le {author}\n{license}", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", "Details" : "Sonraí", "Changelog" : "Loga athrú", - "by {author}\n{license}" : "le {author}\n{license}", "Active apps" : "Aipeanna gníomhacha", "Disabled apps" : "Aipeanna díchumasaithe", "Updates" : "Nuashonruithe", diff --git a/l10n/ga.json b/l10n/ga.json index f86f77ad..3872d98c 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -20,6 +20,9 @@ "ExApps Settings" : "Socruithe ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", + "External Apps management" : "Bainistíocht Aipeanna Seachtracha", + "Admin options saved" : "Sábháladh roghanna riaracháin", + "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "Beartas atosú coimeádán ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Sonraigh polasaí atosú coimeádán, e.g. 'i gcónaí' chun a chinntiú go ritheann ExApp tar éis atosaigh an fhreastalaí deamhan", "This settings changes are reflected only for newly created containers" : "Ní léirítear na hathruithe socruithe seo ach le haghaidh coimeádáin nuachruthaithe", - "External Apps management" : "Bainistíocht Aipeanna Seachtracha", - "Admin options saved" : "Sábháladh roghanna riaracháin", - "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", "Cancel" : "Cealaigh", "Delete" : "Scrios", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", + "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", + "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", "Test deploy" : "Imscaradh tástála", "Edit" : "Cuir in eagar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", - "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", - "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", @@ -62,21 +62,10 @@ "Compute device" : "Gléas ríomh", "Additional options" : "Roghanna breise", "Verify connection" : "Fíoraigh ceangal", - "Daemon connection successful" : "D'éirigh le nasc deamhan", - "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", - "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", "No Deploy daemons configured" : "Níl aon deamhan Imscaradh cumraithe", "Register a custom one or setup from available templates" : "Cláraigh ceann nó socrú saincheaptha ó na teimpléid atá ar fáil", "Register Daemon" : "Clár Deamhan", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", - "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", - "More info" : "Tuilleadh eolais", - "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", - "Remove test ExApp" : "Bain tástáil ExApp", - "Start Deploy test" : "Tosaigh Imscaradh tástála", - "Stop Deploy test" : "Stop an tástáil Imscaradh", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Register ExApp in Nextcloud" : "Cláraigh ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Seiceáil an bhfuil an ExApp cláraithe in Nextcloud roimh imscaradh", "Image pull" : "Tarraingt íomhá", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Ach amháin má tá coimeádán ExApp réamhshocraithe", "Deploy test passed successfully!" : "D'éirigh leis an triail a imscaradh!", "Deploy test failed at step \"{step}\"" : "Theip ar an tástáil a chur i bhfeidhm ag céim \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", + "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", + "More info" : "Tuilleadh eolais", + "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", + "Remove test ExApp" : "Bain tástáil ExApp", + "Start Deploy test" : "Tosaigh Imscaradh tástála", + "Stop Deploy test" : "Stop an tástáil Imscaradh", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", + "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", + "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", + "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", + "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", + "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", + "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", + "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", + "Daemon connection successful" : "D'éirigh le nasc deamhan", + "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", + "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", "Register Deploy Daemon" : "Clár Imscaradh Deamhan", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", @@ -109,7 +122,6 @@ "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", "Network" : "Líonra", "Docker network name" : "Ainm líonra docker", - "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", @@ -121,20 +133,9 @@ "Save" : "Sábháil", "Register" : "Clár", "Check connection" : "Seiceáil an nasc", - "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", - "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", - "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", - "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", - "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", - "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", - "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", "External Apps" : "Aipeanna Seachtrach", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", + "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", "Remove" : "Bain", "Delete data on remove" : "Scrios sonraí ar bhaint", @@ -148,7 +149,6 @@ "Admin documentation" : "Doiciméadúchán riaracháin", "Developer documentation" : "Doiciméadú forbróra", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo cláraithe in AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", - "{license}-licensed" : "{license}-cheadúnaithe", "This app is supported via your current Nextcloud subscription." : "Tacaítear leis an aip seo trí do shíntiús reatha Nextcloud.", "Supported" : "Tacaithe", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forbraíonn an pobal agus laistigh den phobal aipeanna sainghnéitheacha. Cuireann siad feidhmiúlacht lárnach ar fáil agus tá siad réidh le húsáid táirgeachta.", @@ -168,11 +168,11 @@ "Type" : "Cineál", "Display Name" : "Ainm taispeána", "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", + "by {author}\n{license}" : "le {author}\n{license}", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", "Details" : "Sonraí", "Changelog" : "Loga athrú", - "by {author}\n{license}" : "le {author}\n{license}", "Active apps" : "Aipeanna gníomhacha", "Disabled apps" : "Aipeanna díchumasaithe", "Updates" : "Nuashonruithe", diff --git a/l10n/gl.js b/l10n/gl.js index b224d018..fb73831e 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "External Apps management" : "Xestión de aplicacións externas", + "Admin options saved" : "Gardáronse as opcións de administración", + "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "Directiva de reinicio do contedor da aplicación externa (ExApp)", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a aplicación externa (ExApp) se execute após o reinicio do servidor do servizo", "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", - "External Apps management" : "Xestión de aplicacións externas", - "Admin options saved" : "Gardáronse as opcións de administración", - "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", "All ExApps on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) deste servizo", "All ExApps installed on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", + "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", + "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", "Test deploy" : "Proba da despregadura", "Edit" : "Editar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", - "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", - "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Dispositivo de computación", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", - "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", - "More info" : "Máis información", - "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", - "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", - "Start Deploy test" : "Iniciar a proba de despregadura", - "Stop Deploy test" : "Deter a proba de despregadura", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Register ExApp in Nextcloud" : "Rexistrar a aplicación externa (ExApp) en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a aplicación externa (ExApp) está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Só se o contedor da aplicación externa (ExApp) está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", + "More info" : "Máis información", + "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", + "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", + "Start Deploy test" : "Iniciar a proba de despregadura", + "Stop Deploy test" : "Deter a proba de despregadura", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Xa existe un servizo con ese nome", + "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", + "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", + "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", + "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", + "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", + "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", + "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", + "Daemon connection successful" : "Conexión satisfactoria do servizo", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Edit Deploy Daemon" : "Editar os servizos de despregadura", "Register Deploy Daemon" : "Servizos de despregadura rexistrados", "Daemon configuration template" : "Modelo de configuración do servizo", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Agochar a configuración da despregadura", "Network" : "Rede", "Docker network name" : "Nome da rede Docker", - "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Gardar", "Register" : "Rexistrarse", "Check connection" : "Comprobar a conexión", - "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Xa existe un servizo con ese nome", - "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", - "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", - "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", - "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", - "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", - "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Documentación da administración da instancia", "Developer documentation" : "Documentación para desenvolvedores", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", - "{license}-licensed" : "Licenciado baixo a {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", "Supported" : "Compatíbel", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Escribir", "Display Name" : "Nome para amosar", "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Notas da versión", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicacións activas", "Disabled apps" : "Aplicacións desactivadas", "Updates" : "Actualizacións", diff --git a/l10n/gl.json b/l10n/gl.json index 2d3a84da..b87d94a1 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -20,6 +20,9 @@ "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "External Apps management" : "Xestión de aplicacións externas", + "Admin options saved" : "Gardáronse as opcións de administración", + "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "Directiva de reinicio do contedor da aplicación externa (ExApp)", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a aplicación externa (ExApp) se execute após o reinicio do servidor do servizo", "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", - "External Apps management" : "Xestión de aplicacións externas", - "Admin options saved" : "Gardáronse as opcións de administración", - "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", "All ExApps on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) deste servizo", "All ExApps installed on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", + "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", + "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", "Test deploy" : "Proba da despregadura", "Edit" : "Editar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", - "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", - "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", @@ -62,21 +62,10 @@ "Compute device" : "Dispositivo de computación", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", - "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", - "More info" : "Máis información", - "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", - "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", - "Start Deploy test" : "Iniciar a proba de despregadura", - "Stop Deploy test" : "Deter a proba de despregadura", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Register ExApp in Nextcloud" : "Rexistrar a aplicación externa (ExApp) en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a aplicación externa (ExApp) está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Só se o contedor da aplicación externa (ExApp) está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", + "More info" : "Máis información", + "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", + "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", + "Start Deploy test" : "Iniciar a proba de despregadura", + "Stop Deploy test" : "Deter a proba de despregadura", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Xa existe un servizo con ese nome", + "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", + "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", + "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", + "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", + "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", + "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", + "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", + "Daemon connection successful" : "Conexión satisfactoria do servizo", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Edit Deploy Daemon" : "Editar os servizos de despregadura", "Register Deploy Daemon" : "Servizos de despregadura rexistrados", "Daemon configuration template" : "Modelo de configuración do servizo", @@ -109,7 +122,6 @@ "Hide deploy config" : "Agochar a configuración da despregadura", "Network" : "Rede", "Docker network name" : "Nome da rede Docker", - "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -121,20 +133,9 @@ "Save" : "Gardar", "Register" : "Rexistrarse", "Check connection" : "Comprobar a conexión", - "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Xa existe un servizo con ese nome", - "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", - "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", - "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", - "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", - "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", - "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -148,7 +149,6 @@ "Admin documentation" : "Documentación da administración da instancia", "Developer documentation" : "Documentación para desenvolvedores", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non está rexistrada na tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", - "{license}-licensed" : "Licenciado baixo a {license}", "This app is supported via your current Nextcloud subscription." : "Esta aplicación é compatíbel cos súa subscrición actual a Nextcloud.", "Supported" : "Compatíbel", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", @@ -168,11 +168,11 @@ "Type" : "Escribir", "Display Name" : "Nome para amosar", "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Notas da versión", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicacións activas", "Disabled apps" : "Aplicacións desactivadas", "Updates" : "Actualizacións", diff --git a/l10n/he.js b/l10n/he.js index a9e5bfbb..b4d68cc2 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -13,6 +13,7 @@ OC.L10N.register( "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", + "{license}-licensed" : "ברישיון {license}", "Update to {version}" : "עדכון ל־{version}", "Remove" : "הסרה", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", @@ -24,7 +25,6 @@ OC.L10N.register( "User documentation" : "תיעוד למשתמשים", "Admin documentation" : "תיעוד למנהלים", "Developer documentation" : "תיעוד למפתחים", - "{license}-licensed" : "ברישיון {license}", "This app is supported via your current Nextcloud subscription." : "יישומון זה נתמך על ידי מינוי ה־Nextcloud הנוכחי שלך.", "Supported" : "נתמך", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "היישומונים המומלצים מפותחים על ידי ובתוך הקהילה. הם מציעים תכונות ליבה מסוימות והן מוכנות לשימוש יומיומי.", @@ -38,11 +38,11 @@ OC.L10N.register( "Results from other categories" : "תוצאות מקטגוריות אחרות", "Type" : "סוג", "Display Name" : "שם תצוגה", + "by {author}\n{license}" : "מאת {author}\n{license}", "Your apps" : "היישומונים שלך", "Documentation" : "תיעוד", "Details" : "פרטים", "Changelog" : "יומן שינויים", - "by {author}\n{license}" : "מאת {author}\n{license}", "Active apps" : "יישומונים פעילים", "Disabled apps" : "יישומונים מושבתים", "Updates" : "עדכונים", diff --git a/l10n/he.json b/l10n/he.json index 6c524d4c..4a31afb7 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -11,6 +11,7 @@ "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", + "{license}-licensed" : "ברישיון {license}", "Update to {version}" : "עדכון ל־{version}", "Remove" : "הסרה", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", @@ -22,7 +23,6 @@ "User documentation" : "תיעוד למשתמשים", "Admin documentation" : "תיעוד למנהלים", "Developer documentation" : "תיעוד למפתחים", - "{license}-licensed" : "ברישיון {license}", "This app is supported via your current Nextcloud subscription." : "יישומון זה נתמך על ידי מינוי ה־Nextcloud הנוכחי שלך.", "Supported" : "נתמך", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "היישומונים המומלצים מפותחים על ידי ובתוך הקהילה. הם מציעים תכונות ליבה מסוימות והן מוכנות לשימוש יומיומי.", @@ -36,11 +36,11 @@ "Results from other categories" : "תוצאות מקטגוריות אחרות", "Type" : "סוג", "Display Name" : "שם תצוגה", + "by {author}\n{license}" : "מאת {author}\n{license}", "Your apps" : "היישומונים שלך", "Documentation" : "תיעוד", "Details" : "פרטים", "Changelog" : "יומן שינויים", - "by {author}\n{license}" : "מאת {author}\n{license}", "Active apps" : "יישומונים פעילים", "Disabled apps" : "יישומונים מושבתים", "Updates" : "עדכונים", diff --git a/l10n/hr.js b/l10n/hr.js index fa29953f..4db72e88 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -13,6 +13,7 @@ OC.L10N.register( "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", + "{license}-licensed" : "Licencirano prema {license}", "Update to {version}" : "Ažuriraj na {version}", "Remove" : "Ukloni", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najmanja inačica Nextclouda. To će biti pogreška u budućnosti.", @@ -24,7 +25,6 @@ OC.L10N.register( "User documentation" : "Dokumentacija za korisnike", "Admin documentation" : "Dokumentacija za administratore", "Developer documentation" : "Dokumentacija za razvojne programere", - "{license}-licensed" : "Licencirano prema {license}", "This app is supported via your current Nextcloud subscription." : "Aplikacija je podržana unutar vaše trenutne pretplate na Nextcloud.", "Supported" : "Podržano", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Istaknute aplikacije razvijaju članovi zajednice. One nude osnovnu funkcionalnost i spremne su za produkciju.", @@ -38,11 +38,11 @@ OC.L10N.register( "Results from other categories" : "Rezultati iz drugih kategorija", "Type" : "Vrsta", "Display Name" : "Ime", + "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Vaše aplikacije", "Documentation" : "Dokumentacija", "Details" : "Pojedinosti", "Changelog" : "Zapis promjena", - "by {author}\n{license}" : "{author}\n{license}", "Active apps" : "Aktivne aplikacije", "Disabled apps" : "Onemogućene aplikacije", "Updates" : "Ažuriranja", diff --git a/l10n/hr.json b/l10n/hr.json index 8a91e12c..af18c898 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -11,6 +11,7 @@ "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", + "{license}-licensed" : "Licencirano prema {license}", "Update to {version}" : "Ažuriraj na {version}", "Remove" : "Ukloni", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najmanja inačica Nextclouda. To će biti pogreška u budućnosti.", @@ -22,7 +23,6 @@ "User documentation" : "Dokumentacija za korisnike", "Admin documentation" : "Dokumentacija za administratore", "Developer documentation" : "Dokumentacija za razvojne programere", - "{license}-licensed" : "Licencirano prema {license}", "This app is supported via your current Nextcloud subscription." : "Aplikacija je podržana unutar vaše trenutne pretplate na Nextcloud.", "Supported" : "Podržano", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Istaknute aplikacije razvijaju članovi zajednice. One nude osnovnu funkcionalnost i spremne su za produkciju.", @@ -36,11 +36,11 @@ "Results from other categories" : "Rezultati iz drugih kategorija", "Type" : "Vrsta", "Display Name" : "Ime", + "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Vaše aplikacije", "Documentation" : "Dokumentacija", "Details" : "Pojedinosti", "Changelog" : "Zapis promjena", - "by {author}\n{license}" : "{author}\n{license}", "Active apps" : "Aktivne aplikacije", "Disabled apps" : "Onemogućene aplikacije", "Updates" : "Ažuriranja", diff --git a/l10n/hu.js b/l10n/hu.js index 29f95c77..efb5bd73 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", + "{license}-licensed" : "{license}-licencelt", "Update to {version}" : "Frissítés erre: {version}", "Remove" : "Eltávolítás", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "Felhasználói dokumentáció", "Admin documentation" : "Rendszergazdai dokumentáció", "Developer documentation" : "Fejlesztői dokumentáció", - "{license}-licensed" : "{license}-licencelt", "This app is supported via your current Nextcloud subscription." : "Az alkalmazás támogatását a jelenlegi Nextcloud előfizetése biztosítja.", "Supported" : "Támogatott", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "A kiemelt alkalmazásokat a közösség tagjai készítik. Ezek biztosítják a fő funkciókat, és készek az éles használatra.", @@ -40,11 +40,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Frissítés","Összes frissítése"], "Type" : "Típus", "Display Name" : "Megjelenített név", + "by {author}\n{license}" : "szerző: {author}\n{license}", "Your apps" : "Az Ön alkalmazásai", "Documentation" : "Dokumentáció", "Details" : "Részletek", "Changelog" : "Változásnapló", - "by {author}\n{license}" : "szerző: {author}\n{license}", "Active apps" : "Aktív alkalmazások", "Disabled apps" : "Letiltott alkalmazások", "Updates" : "Frissítések", diff --git a/l10n/hu.json b/l10n/hu.json index d5c1fccb..5b82dfcd 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -12,6 +12,7 @@ "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", + "{license}-licensed" : "{license}-licencelt", "Update to {version}" : "Frissítés erre: {version}", "Remove" : "Eltávolítás", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", @@ -23,7 +24,6 @@ "User documentation" : "Felhasználói dokumentáció", "Admin documentation" : "Rendszergazdai dokumentáció", "Developer documentation" : "Fejlesztői dokumentáció", - "{license}-licensed" : "{license}-licencelt", "This app is supported via your current Nextcloud subscription." : "Az alkalmazás támogatását a jelenlegi Nextcloud előfizetése biztosítja.", "Supported" : "Támogatott", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "A kiemelt alkalmazásokat a közösség tagjai készítik. Ezek biztosítják a fő funkciókat, és készek az éles használatra.", @@ -38,11 +38,11 @@ "_Update_::_Update all_" : ["Frissítés","Összes frissítése"], "Type" : "Típus", "Display Name" : "Megjelenített név", + "by {author}\n{license}" : "szerző: {author}\n{license}", "Your apps" : "Az Ön alkalmazásai", "Documentation" : "Dokumentáció", "Details" : "Részletek", "Changelog" : "Változásnapló", - "by {author}\n{license}" : "szerző: {author}\n{license}", "Active apps" : "Aktív alkalmazások", "Disabled apps" : "Letiltott alkalmazások", "Updates" : "Frissítések", diff --git a/l10n/id.js b/l10n/id.js index 28b311dc..1f70893a 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -11,6 +11,7 @@ OC.L10N.register( "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", + "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", "Remove" : "Hapus", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", @@ -22,7 +23,6 @@ OC.L10N.register( "User documentation" : "Dokumentasi pengguna", "Admin documentation" : "Dokumentasi admin", "Developer documentation" : "Dokumentasi pengembang", - "{license}-licensed" : "{license}-dilisensikan", "This app is supported via your current Nextcloud subscription." : "Aplikasi ini didukung dengan langganan Nextcloud Anda saat ini.", "Supported" : "Didukung", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", diff --git a/l10n/id.json b/l10n/id.json index ba1b1d5c..4b0b1123 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -9,6 +9,7 @@ "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", + "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", "Remove" : "Hapus", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", @@ -20,7 +21,6 @@ "User documentation" : "Dokumentasi pengguna", "Admin documentation" : "Dokumentasi admin", "Developer documentation" : "Dokumentasi pengembang", - "{license}-licensed" : "{license}-dilisensikan", "This app is supported via your current Nextcloud subscription." : "Aplikasi ini didukung dengan langganan Nextcloud Anda saat ini.", "Supported" : "Didukung", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", diff --git a/l10n/is.js b/l10n/is.js index d5407621..c23532d2 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -16,6 +16,7 @@ OC.L10N.register( "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", + "{license}-licensed" : "{license}-notkunarleyfi", "Update to {version}" : "Uppfæra í {version}", "Remove" : "Fjarlægja", "Delete data on remove" : "Eyða gögnum við fjarlægingu", @@ -28,7 +29,6 @@ OC.L10N.register( "User documentation" : "Hjálparskjöl notenda", "Admin documentation" : "Hjálparskjöl kerfisstjóra", "Developer documentation" : "Skjölun fyrir þróunaraðila", - "{license}-licensed" : "{license}-notkunarleyfi", "This app is supported via your current Nextcloud subscription." : "Þetta forrit er stutt í gegnum fyrirliggjandi Nextcloud-áskrift þína.", "Supported" : "Stutt", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forrit í deiglunni eru þróuð af og innan samfélagsins. Þau bjóða upp á ýmsa kjarnaeiginleika og eru tilbúin til notkunar í raunvinnslu.", @@ -43,11 +43,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], "Type" : "Tegund", "Display Name" : "Birtingarnafn", + "by {author}\n{license}" : "frá {author}\n{license}", "Your apps" : "Forritin þín", "Documentation" : "Hjálparskjöl", "Details" : "Nánar", "Changelog" : "Breytingaskrá", - "by {author}\n{license}" : "frá {author}\n{license}", "Active apps" : "Virk forrit", "Disabled apps" : "Óvirk forrit", "Updates" : "Uppfærslur", diff --git a/l10n/is.json b/l10n/is.json index 6dd3e45e..bb817b87 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -14,6 +14,7 @@ "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", + "{license}-licensed" : "{license}-notkunarleyfi", "Update to {version}" : "Uppfæra í {version}", "Remove" : "Fjarlægja", "Delete data on remove" : "Eyða gögnum við fjarlægingu", @@ -26,7 +27,6 @@ "User documentation" : "Hjálparskjöl notenda", "Admin documentation" : "Hjálparskjöl kerfisstjóra", "Developer documentation" : "Skjölun fyrir þróunaraðila", - "{license}-licensed" : "{license}-notkunarleyfi", "This app is supported via your current Nextcloud subscription." : "Þetta forrit er stutt í gegnum fyrirliggjandi Nextcloud-áskrift þína.", "Supported" : "Stutt", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Forrit í deiglunni eru þróuð af og innan samfélagsins. Þau bjóða upp á ýmsa kjarnaeiginleika og eru tilbúin til notkunar í raunvinnslu.", @@ -41,11 +41,11 @@ "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], "Type" : "Tegund", "Display Name" : "Birtingarnafn", + "by {author}\n{license}" : "frá {author}\n{license}", "Your apps" : "Forritin þín", "Documentation" : "Hjálparskjöl", "Details" : "Nánar", "Changelog" : "Breytingaskrá", - "by {author}\n{license}" : "frá {author}\n{license}", "Active apps" : "Virk forrit", "Disabled apps" : "Óvirk forrit", "Updates" : "Uppfærslur", diff --git a/l10n/it.js b/l10n/it.js index 94c2e161..85214dbf 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", + "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", "Remove" : "Rimuovi", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "Documentazione utente", "Admin documentation" : "Documentazione di amministrazione", "Developer documentation" : "Documentazione dello sviluppatore", - "{license}-licensed" : "sotto licenza {license}", "This app is supported via your current Nextcloud subscription." : "Questa applicazione è supportata tramite la tua sottoscrizione attuale di Nextcloud.", "Supported" : "Supportata", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni in evidenza sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", @@ -40,11 +40,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], "Type" : "Tipo", "Display Name" : "Nome visualizzato", + "by {author}\n{license}" : "di {author}\n{license}", "Your apps" : "Le tue applicazioni", "Documentation" : "Documentazione", "Details" : "Dettagli", "Changelog" : "Cronologia", - "by {author}\n{license}" : "di {author}\n{license}", "Active apps" : "Applicazioni attive", "Disabled apps" : "Applicazioni disabilitate", "Updates" : "Aggiornamenti", diff --git a/l10n/it.json b/l10n/it.json index 3fc7216d..d647aaed 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -12,6 +12,7 @@ "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", + "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", "Remove" : "Rimuovi", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", @@ -23,7 +24,6 @@ "User documentation" : "Documentazione utente", "Admin documentation" : "Documentazione di amministrazione", "Developer documentation" : "Documentazione dello sviluppatore", - "{license}-licensed" : "sotto licenza {license}", "This app is supported via your current Nextcloud subscription." : "Questa applicazione è supportata tramite la tua sottoscrizione attuale di Nextcloud.", "Supported" : "Supportata", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni in evidenza sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", @@ -38,11 +38,11 @@ "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], "Type" : "Tipo", "Display Name" : "Nome visualizzato", + "by {author}\n{license}" : "di {author}\n{license}", "Your apps" : "Le tue applicazioni", "Documentation" : "Documentazione", "Details" : "Dettagli", "Changelog" : "Cronologia", - "by {author}\n{license}" : "di {author}\n{license}", "Active apps" : "Applicazioni attive", "Disabled apps" : "Applicazioni disabilitate", "Updates" : "Aggiornamenti", diff --git a/l10n/ja.js b/l10n/ja.js index 9ca0cac4..84b0b310 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -16,6 +16,7 @@ OC.L10N.register( "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", + "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", "Remove" : "削除", "Delete data on remove" : "削除時にデータを消去する", @@ -28,7 +29,6 @@ OC.L10N.register( "User documentation" : "ユーザードキュメント", "Admin documentation" : "管理者ドキュメント", "Developer documentation" : "開発者ドキュメント", - "{license}-licensed" : "{license}-に許諾されています", "This app is supported via your current Nextcloud subscription." : "このアプリは、現行のNextcloudサブスクリプションでサポートされています。", "Supported" : "対応しています", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "注目のアプリはコミュニティ内で開発されています。これらのアプリは主要な機能を提供しており、すぐに本番で使用することができます。", @@ -44,11 +44,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", + "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", "Details" : "詳細", "Changelog" : "変更履歴", - "by {author}\n{license}" : "作者 {author}\n{license}", "Active apps" : "アクティブなアプリ", "Disabled apps" : "無効なアプリ", "Updates" : "アップデート", diff --git a/l10n/ja.json b/l10n/ja.json index 9aa9ef56..aeaf53a4 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -14,6 +14,7 @@ "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", + "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", "Remove" : "削除", "Delete data on remove" : "削除時にデータを消去する", @@ -26,7 +27,6 @@ "User documentation" : "ユーザードキュメント", "Admin documentation" : "管理者ドキュメント", "Developer documentation" : "開発者ドキュメント", - "{license}-licensed" : "{license}-に許諾されています", "This app is supported via your current Nextcloud subscription." : "このアプリは、現行のNextcloudサブスクリプションでサポートされています。", "Supported" : "対応しています", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "注目のアプリはコミュニティ内で開発されています。これらのアプリは主要な機能を提供しており、すぐに本番で使用することができます。", @@ -42,11 +42,11 @@ "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", + "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", "Details" : "詳細", "Changelog" : "変更履歴", - "by {author}\n{license}" : "作者 {author}\n{license}", "Active apps" : "アクティブなアプリ", "Disabled apps" : "無効なアプリ", "Updates" : "アップデート", diff --git a/l10n/ka.js b/l10n/ka.js index 568aea71..42eee45e 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", + "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "User documentation", "Admin documentation" : "Admin documentation", "Developer documentation" : "Developer documentation", - "{license}-licensed" : "{license}-licensed", "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", "Supported" : "Supported", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", @@ -38,11 +38,11 @@ OC.L10N.register( "Results from other categories" : "Results from other categories", "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", + "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", "Changelog" : "Changelog", - "by {author}\n{license}" : "by {author}\n{license}", "Active apps" : "Active apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", diff --git a/l10n/ka.json b/l10n/ka.json index 978cde6b..cc24cc82 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -12,6 +12,7 @@ "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", + "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", @@ -23,7 +24,6 @@ "User documentation" : "User documentation", "Admin documentation" : "Admin documentation", "Developer documentation" : "Developer documentation", - "{license}-licensed" : "{license}-licensed", "This app is supported via your current Nextcloud subscription." : "This app is supported via your current Nextcloud subscription.", "Supported" : "Supported", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Featured apps are developed by and within the community. They offer central functionality and are ready for production use.", @@ -36,11 +36,11 @@ "Results from other categories" : "Results from other categories", "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", + "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", "Details" : "Details", "Changelog" : "Changelog", - "by {author}\n{license}" : "by {author}\n{license}", "Active apps" : "Active apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", diff --git a/l10n/ko.js b/l10n/ko.js index a3938ff5..163797df 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -19,6 +19,9 @@ OC.L10N.register( "AI Integration Team" : "AI 통합 추진팀", "ExApps Settings" : "외부 응용 프로그램 설정", "Nextcloud AppAPI" : "Nextcloud 응용 프로그램 API", + "External Apps management" : "외부 응용 프로그램 관리", + "Admin options saved" : "관리자 옵션이 저장됨", + "Failed to save admin options" : "관리자 옵션 저장 실패", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "Deploy Daemons" : "배포 데몬", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", @@ -30,21 +33,18 @@ OC.L10N.register( "ExApp container restart policy" : "외부 응용 프로그램 컨테이너 재시작 정책", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "컨테이너 재시작 정책을 지정합니다, 예: 데몬 서버 재부팅 후 '항상' 외부 응용 프로그램이 동작하도록 보장", "This settings changes are reflected only for newly created containers" : "해당 설정 변경 사항은 새로 생성된 컨테이너에만 적용됩니다.", - "External Apps management" : "외부 응용 프로그램 관리", - "Admin options saved" : "관리자 옵션이 저장됨", - "Failed to save admin options" : "관리자 옵션 저장 실패", "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", "Cancel" : "취소", "Delete" : "삭제", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", + "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", + "Password confirmation failed" : "암호 확인에 실패했습니다.", "Default" : "디폴트", "Set as default" : "디폴트로 설정", "Test deploy" : "테스트 배포", "Edit" : "편집", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", - "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", - "Password confirmation failed" : "암호 확인에 실패했습니다.", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", @@ -61,21 +61,10 @@ OC.L10N.register( "Compute device" : "컴퓨팅 장치", "Additional options" : "추가 옵션", "Verify connection" : "연결 확인", - "Daemon connection successful" : "데몬 연결 성공", - "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", - "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Registered Deploy daemons list" : "등록된 배포 데몬 목록", "No Deploy daemons configured" : "배포 데몬이 구성되지 않았습니다.", "Register a custom one or setup from available templates" : "사용자 정의 항목을 등록하거나 사용 가능한 템플릿에서 설정", "Register Daemon" : "데몬 등록", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", - "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", - "More info" : "더 많은 정보", - "Download ExApp logs" : "외부 응용 프로그램 로그 다운로드", - "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", - "Start Deploy test" : "배포 테스트 시작", - "Stop Deploy test" : "배포 테스트 중단", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", "Register ExApp in Nextcloud" : "외부 응용 프로그램을 Nextcloud에 등록하기", "Check if the ExApp is registered in Nextcloud before deployment" : "배포를 시작하기 전에 외부 응용 프로그램이 Nextcloud에 등록되어 있는지 확인하세요.", "Image pull" : "이미지 가져오기", @@ -91,6 +80,26 @@ OC.L10N.register( "Only if ExApp container is preset" : "외부 응용 프로그램 컨테이너가 사전 설정된 경우에만 해당", "Deploy test passed successfully!" : "배포 테스트를 성공적으로 통과했습니다!", "Deploy test failed at step \"{step}\"" : "배포 테스트 중 \"{step}\" 단계에 문제가 있습니다", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", + "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", + "More info" : "더 많은 정보", + "Download ExApp logs" : "외부 응용 프로그램 로그 다운로드", + "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", + "Start Deploy test" : "배포 테스트 시작", + "Stop Deploy test" : "배포 테스트 중단", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", + "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", + "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", + "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", + "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", + "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", + "Daemon connection successful" : "데몬 연결 성공", + "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", + "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Register Deploy Daemon" : "배포 데몬 등록", "Daemon configuration template" : "데몬 구성 템플릿", "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", @@ -107,7 +116,6 @@ OC.L10N.register( "Hide deploy config" : "배포 구성 숨기기", "Network" : "네트워크", "Docker network name" : "Docker 네트워크 이름", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", "Additional option" : "부가 옵션", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", @@ -119,15 +127,8 @@ OC.L10N.register( "Save" : "저장", "Register" : "등록", "Check connection" : "연결 확인", - "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", - "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", - "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", - "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", - "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", "External Apps" : "외부 응용 프로그램", + "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", "Remove" : "삭제", "Delete data on remove" : "제거 시 데이터 삭제", @@ -141,7 +142,6 @@ OC.L10N.register( "Admin documentation" : "관리 문서", "Developer documentation" : "개발자 문서", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "이 앱은 AppStore에 등록되어 있지 않습니다. 추가 정보가 없습니다. 활성화/비활성화 및 삭제 작업만 허용됩니다.", - "{license}-licensed" : "{license} 라이선스", "This app is supported via your current Nextcloud subscription." : "이 앱은 당신의 현재 Nextcloud 구독을 통해 지원됩니다.", "Supported" : "지원됨", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "추천 앱은 커뮤니티에서 개발했습니다. 이들은 생산성 업무에 있어 중심적인 기능을 담당하며 즉각 사용될 수 있습니다.", @@ -161,11 +161,11 @@ OC.L10N.register( "Type" : "종류", "Display Name" : "표시 이름", "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", + "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Your apps" : "내 앱", "Documentation" : "문서", "Details" : "세부사항", "Changelog" : "변경 기록", - "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Active apps" : "활성화된 앱", "Disabled apps" : "비활성화된 앱", "Updates" : "업데이트", diff --git a/l10n/ko.json b/l10n/ko.json index d37e3ea1..0d5ed877 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -17,6 +17,9 @@ "AI Integration Team" : "AI 통합 추진팀", "ExApps Settings" : "외부 응용 프로그램 설정", "Nextcloud AppAPI" : "Nextcloud 응용 프로그램 API", + "External Apps management" : "외부 응용 프로그램 관리", + "Admin options saved" : "관리자 옵션이 저장됨", + "Failed to save admin options" : "관리자 옵션 저장 실패", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "Deploy Daemons" : "배포 데몬", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", @@ -28,21 +31,18 @@ "ExApp container restart policy" : "외부 응용 프로그램 컨테이너 재시작 정책", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "컨테이너 재시작 정책을 지정합니다, 예: 데몬 서버 재부팅 후 '항상' 외부 응용 프로그램이 동작하도록 보장", "This settings changes are reflected only for newly created containers" : "해당 설정 변경 사항은 새로 생성된 컨테이너에만 적용됩니다.", - "External Apps management" : "외부 응용 프로그램 관리", - "Admin options saved" : "관리자 옵션이 저장됨", - "Failed to save admin options" : "관리자 옵션 저장 실패", "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", "Cancel" : "취소", "Delete" : "삭제", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", + "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", + "Password confirmation failed" : "암호 확인에 실패했습니다.", "Default" : "디폴트", "Set as default" : "디폴트로 설정", "Test deploy" : "테스트 배포", "Edit" : "편집", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", - "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", - "Password confirmation failed" : "암호 확인에 실패했습니다.", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", @@ -59,21 +59,10 @@ "Compute device" : "컴퓨팅 장치", "Additional options" : "추가 옵션", "Verify connection" : "연결 확인", - "Daemon connection successful" : "데몬 연결 성공", - "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", - "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Registered Deploy daemons list" : "등록된 배포 데몬 목록", "No Deploy daemons configured" : "배포 데몬이 구성되지 않았습니다.", "Register a custom one or setup from available templates" : "사용자 정의 항목을 등록하거나 사용 가능한 템플릿에서 설정", "Register Daemon" : "데몬 등록", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", - "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", - "More info" : "더 많은 정보", - "Download ExApp logs" : "외부 응용 프로그램 로그 다운로드", - "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", - "Start Deploy test" : "배포 테스트 시작", - "Stop Deploy test" : "배포 테스트 중단", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", "Register ExApp in Nextcloud" : "외부 응용 프로그램을 Nextcloud에 등록하기", "Check if the ExApp is registered in Nextcloud before deployment" : "배포를 시작하기 전에 외부 응용 프로그램이 Nextcloud에 등록되어 있는지 확인하세요.", "Image pull" : "이미지 가져오기", @@ -89,6 +78,26 @@ "Only if ExApp container is preset" : "외부 응용 프로그램 컨테이너가 사전 설정된 경우에만 해당", "Deploy test passed successfully!" : "배포 테스트를 성공적으로 통과했습니다!", "Deploy test failed at step \"{step}\"" : "배포 테스트 중 \"{step}\" 단계에 문제가 있습니다", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", + "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", + "More info" : "더 많은 정보", + "Download ExApp logs" : "외부 응용 프로그램 로그 다운로드", + "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", + "Start Deploy test" : "배포 테스트 시작", + "Stop Deploy test" : "배포 테스트 중단", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", + "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", + "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", + "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", + "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", + "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", + "Daemon connection successful" : "데몬 연결 성공", + "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", + "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Register Deploy Daemon" : "배포 데몬 등록", "Daemon configuration template" : "데몬 구성 템플릿", "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", @@ -105,7 +114,6 @@ "Hide deploy config" : "배포 구성 숨기기", "Network" : "네트워크", "Docker network name" : "Docker 네트워크 이름", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", "Additional option" : "부가 옵션", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", @@ -117,15 +125,8 @@ "Save" : "저장", "Register" : "등록", "Check connection" : "연결 확인", - "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", - "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", - "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", - "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", - "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", "External Apps" : "외부 응용 프로그램", + "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", "Remove" : "삭제", "Delete data on remove" : "제거 시 데이터 삭제", @@ -139,7 +140,6 @@ "Admin documentation" : "관리 문서", "Developer documentation" : "개발자 문서", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "이 앱은 AppStore에 등록되어 있지 않습니다. 추가 정보가 없습니다. 활성화/비활성화 및 삭제 작업만 허용됩니다.", - "{license}-licensed" : "{license} 라이선스", "This app is supported via your current Nextcloud subscription." : "이 앱은 당신의 현재 Nextcloud 구독을 통해 지원됩니다.", "Supported" : "지원됨", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "추천 앱은 커뮤니티에서 개발했습니다. 이들은 생산성 업무에 있어 중심적인 기능을 담당하며 즉각 사용될 수 있습니다.", @@ -159,11 +159,11 @@ "Type" : "종류", "Display Name" : "표시 이름", "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", + "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Your apps" : "내 앱", "Documentation" : "문서", "Details" : "세부사항", "Changelog" : "변경 기록", - "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Active apps" : "활성화된 앱", "Disabled apps" : "비활성화된 앱", "Updates" : "업데이트", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index e4ab006b..440338cf 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -10,13 +10,14 @@ OC.L10N.register( "Protocol" : "Protokolas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", - "More info" : "Daugiau informacijos", "Enabled" : "Įjungta", + "More info" : "Daugiau informacijos", "Network" : "Tinklas", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", "Check connection" : "Tikrinti ryšį", + "{license}-licensed" : "Licencijuota pagal {license}", "Update to {version}" : "Atnaujinti į versiją {version}", "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", @@ -28,7 +29,6 @@ OC.L10N.register( "User documentation" : "Naudotojo dokumentacija", "Admin documentation" : "Administratoriaus dokumentacija", "Developer documentation" : "Plėtotojo dokumentacija", - "{license}-licensed" : "Licencijuota pagal {license}", "This app is supported via your current Nextcloud subscription." : "Ši programėlė yra palaikoma per jūsų esamą Nextcloud prenumeratą.", "Supported" : "Palaikoma", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Siūlomos programėlės yra kuriamos bendruomenės viduje ir jas kuria bendruomenė. Šios programėlės siūlo svarbiausią funkcionalumą ir yra paruoštos kasdieniam naudojimui.", @@ -43,11 +43,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", + "by {author}\n{license}" : "pagal {author}\n{license}", "Your apps" : "Jūsų programėlės", "Documentation" : "Dokumentacija", "Details" : "Išsamiau", "Changelog" : "Keitinių žurnalas", - "by {author}\n{license}" : "pagal {author}\n{license}", "Active apps" : "Aktyvios programėlės", "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 09daece0..057421fc 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -8,13 +8,14 @@ "Protocol" : "Protokolas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", - "More info" : "Daugiau informacijos", "Enabled" : "Įjungta", + "More info" : "Daugiau informacijos", "Network" : "Tinklas", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", "Check connection" : "Tikrinti ryšį", + "{license}-licensed" : "Licencijuota pagal {license}", "Update to {version}" : "Atnaujinti į versiją {version}", "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", @@ -26,7 +27,6 @@ "User documentation" : "Naudotojo dokumentacija", "Admin documentation" : "Administratoriaus dokumentacija", "Developer documentation" : "Plėtotojo dokumentacija", - "{license}-licensed" : "Licencijuota pagal {license}", "This app is supported via your current Nextcloud subscription." : "Ši programėlė yra palaikoma per jūsų esamą Nextcloud prenumeratą.", "Supported" : "Palaikoma", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Siūlomos programėlės yra kuriamos bendruomenės viduje ir jas kuria bendruomenė. Šios programėlės siūlo svarbiausią funkcionalumą ir yra paruoštos kasdieniam naudojimui.", @@ -41,11 +41,11 @@ "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", + "by {author}\n{license}" : "pagal {author}\n{license}", "Your apps" : "Jūsų programėlės", "Documentation" : "Dokumentacija", "Details" : "Išsamiau", "Changelog" : "Keitinių žurnalas", - "by {author}\n{license}" : "pagal {author}\n{license}", "Active apps" : "Aktyvios programėlės", "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", diff --git a/l10n/lv.js b/l10n/lv.js index 83482f0b..163170e3 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -6,8 +6,8 @@ OC.L10N.register( "Edit" : "Labot", "Name" : "Nosaukums", "Host" : "Resursdators", - "More info" : "Vairāk informācijas", "Enabled" : "Iespējots", + "More info" : "Vairāk informācijas", "Display name" : "Attēlojamais vārds", "Network" : "Tīkls", "Confirm" : "Apstiprināt", diff --git a/l10n/lv.json b/l10n/lv.json index 5638108e..f73cd222 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -4,8 +4,8 @@ "Edit" : "Labot", "Name" : "Nosaukums", "Host" : "Resursdators", - "More info" : "Vairāk informācijas", "Enabled" : "Iespējots", + "More info" : "Vairāk informācijas", "Display name" : "Attēlojamais vārds", "Network" : "Tīkls", "Confirm" : "Apstiprināt", diff --git a/l10n/mk.js b/l10n/mk.js index 9339a221..fd1bd6c8 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", + "{license}-licensed" : "{license}-лиценца", "Update to {version}" : "Надгради на {version}", "Remove" : "Отстрани ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена минимална верзија. Може да настане грешка во иднина.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "Документација за корисник", "Admin documentation" : "Документација за администратор", "Developer documentation" : "Документација за програмери", - "{license}-licensed" : "{license}-лиценца", "This app is supported via your current Nextcloud subscription." : "Оваа апликација е е дозволена за вашиот налог.", "Supported" : "Поддржано", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Истакнати апликации се развиени од и во рамките на заедницата. Тие нудат централизирана функционалност и се спремни за користење.", @@ -38,11 +38,11 @@ OC.L10N.register( "Results from other categories" : "Резултати од други категории", "_Update_::_Update all_" : ["Ажурирај","Ажурирај ги сите"], "Type" : "Вид", + "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваши апликации", "Documentation" : "Документација", "Details" : "Детали", "Changelog" : "Листа на промени", - "by {author}\n{license}" : "од {author}\n{license}", "Active apps" : "Активни апликации", "Disabled apps" : "Оневозможени апликации", "Updates" : "Ажурирања", diff --git a/l10n/mk.json b/l10n/mk.json index 243b87df..bcacaab3 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -12,6 +12,7 @@ "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", + "{license}-licensed" : "{license}-лиценца", "Update to {version}" : "Надгради на {version}", "Remove" : "Отстрани ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена минимална верзија. Може да настане грешка во иднина.", @@ -23,7 +24,6 @@ "User documentation" : "Документација за корисник", "Admin documentation" : "Документација за администратор", "Developer documentation" : "Документација за програмери", - "{license}-licensed" : "{license}-лиценца", "This app is supported via your current Nextcloud subscription." : "Оваа апликација е е дозволена за вашиот налог.", "Supported" : "Поддржано", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Истакнати апликации се развиени од и во рамките на заедницата. Тие нудат централизирана функционалност и се спремни за користење.", @@ -36,11 +36,11 @@ "Results from other categories" : "Резултати од други категории", "_Update_::_Update all_" : ["Ажурирај","Ажурирај ги сите"], "Type" : "Вид", + "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваши апликации", "Documentation" : "Документација", "Details" : "Детали", "Changelog" : "Листа на промени", - "by {author}\n{license}" : "од {author}\n{license}", "Active apps" : "Активни апликации", "Disabled apps" : "Оневозможени апликации", "Updates" : "Ажурирања", diff --git a/l10n/nb.js b/l10n/nb.js index 05bcb4fe..f0a67f26 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -19,6 +19,9 @@ OC.L10N.register( "AI Integration Team" : "AI-integrasjonsteam", "ExApps Settings" : "Innstillinger for ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Administrasjon av eksterne apper", + "Admin options saved" : "Administrasjonsalternativer lagret", + "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "Deploy Daemons" : "Distribuer daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", @@ -30,21 +33,18 @@ OC.L10N.register( "ExApp container restart policy" : "Retningslinjer for omstart av ExApp-beholder", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spesifiser retningslinjer for omstart av beholder, f.eks. 'alltid' for å sikre at ExApp kjører etter omstart av daemonserveren.", "This settings changes are reflected only for newly created containers" : "Disse endringene i innstillingene gjenspeiles bare for nyopprettede beholdere.", - "External Apps management" : "Administrasjon av eksterne apper", - "Admin options saved" : "Administrasjonsalternativer lagret", - "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", "Cancel" : "Avbryt", "Delete" : "Slett", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", + "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", + "Password confirmation failed" : "Passordbekreftelse feilet", "Default" : "Forvalg", "Set as default" : "Angi som standard", "Test deploy" : "Test distribuering", "Edit" : "Rediger", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", - "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", - "Password confirmation failed" : "Passordbekreftelse feilet", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", @@ -61,21 +61,10 @@ OC.L10N.register( "Compute device" : "Beregningsenhet", "Additional options" : "Ytterligere alternativer", "Verify connection" : "Verifiser forbindelse", - "Daemon connection successful" : "Vellykket daemon-forbindelse", - "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", - "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Registered Deploy daemons list" : "Registrert liste over distribuerings-daemoner", "No Deploy daemons configured" : "Ingen distribuerings-daemoner konfigurert", "Register a custom one or setup from available templates" : "Registrer en tilpasset en eller sett opp fra tilgjengelige maler", "Register Daemon" : "Registrer daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", - "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", - "More info" : "Mer info", - "Download ExApp logs" : "Last ned ExApp logger", - "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start distribusjonstest", - "Stop Deploy test" : "Stopp distribusjonstest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", "Register ExApp in Nextcloud" : "Registrer ExApp i Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Sjekk om ExApp er registrert i Nextcloud før distribusjon", "Image pull" : "Bildetrekk", @@ -91,6 +80,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Bare hvis ExApp-konteineren er forhåndsinnstilt", "Deploy test passed successfully!" : "Distribusjonstesten bestått vellykket!", "Deploy test failed at step \"{step}\"" : "Distribusjonstesten feilet på trinn \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", + "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", + "More info" : "Mer info", + "Download ExApp logs" : "Last ned ExApp logger", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start distribusjonstest", + "Stop Deploy test" : "Stopp distribusjonstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", + "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", + "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", + "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", + "DaemonConfig successfully registered" : "DaemonKonfigurasjon registrert", + "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", + "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", + "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", + "Daemon connection successful" : "Vellykket daemon-forbindelse", + "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", + "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Edit Deploy Daemon" : "Rediger distribuerings-daemon", "Register Deploy Daemon" : "Registrer distribuerings-daemon", "Daemon configuration template" : "Mal for konfigurasjon av daemon", @@ -108,7 +121,6 @@ OC.L10N.register( "Hide deploy config" : "Skjul konfigurasjon for distribuering", "Network" : "Nettverk", "Docker network name" : "Docker-nettverksnavn", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", "Additional option" : "Ytterligere alternativ", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", @@ -120,19 +132,8 @@ OC.L10N.register( "Save" : "Lagre", "Register" : "Registrer", "Check connection" : "Sjekk forbindelsen", - "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", - "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", - "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", - "DaemonConfig successfully registered" : "DaemonKonfigurasjon registrert", - "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", - "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", - "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", "External Apps" : "Eksterne apper", + "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", "Remove" : "Fjern", "Delete data on remove" : "Slett data ved fjerning", @@ -146,7 +147,6 @@ OC.L10N.register( "Admin documentation" : "Administratordokumentasjon", "Developer documentation" : "Utviklerdokumentasjon", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne appen er ikke registrert i AppStore. Ingen ekstra informasjon tilgjengelig. Bare aktivere-/deaktivere- og fjerne handlinger er tillatt.", - "{license}-licensed" : "{license}-lisensiert", "This app is supported via your current Nextcloud subscription." : "Denne appen er støttet av ditt nåværende Nextcloud abonnement.", "Supported" : "Støttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Anbefalte apper er utviklet av og innenfor fellesskapet. De tilbyr sentral funksjonalitet og er klare for bruk i produksjon.", @@ -166,11 +166,11 @@ OC.L10N.register( "Type" : "Type", "Display Name" : "Visningsnavn", "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", + "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", "Details" : "Detaljer", "Changelog" : "Endringslogg", - "by {author}\n{license}" : "av {author}\n{license}", "Active apps" : "Aktive apper", "Disabled apps" : "Deaktiverte apper", "Updates" : "Oppdateringer", diff --git a/l10n/nb.json b/l10n/nb.json index 6915cf70..383fa2b7 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -17,6 +17,9 @@ "AI Integration Team" : "AI-integrasjonsteam", "ExApps Settings" : "Innstillinger for ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Administrasjon av eksterne apper", + "Admin options saved" : "Administrasjonsalternativer lagret", + "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "Deploy Daemons" : "Distribuer daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", @@ -28,21 +31,18 @@ "ExApp container restart policy" : "Retningslinjer for omstart av ExApp-beholder", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spesifiser retningslinjer for omstart av beholder, f.eks. 'alltid' for å sikre at ExApp kjører etter omstart av daemonserveren.", "This settings changes are reflected only for newly created containers" : "Disse endringene i innstillingene gjenspeiles bare for nyopprettede beholdere.", - "External Apps management" : "Administrasjon av eksterne apper", - "Admin options saved" : "Administrasjonsalternativer lagret", - "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", "Cancel" : "Avbryt", "Delete" : "Slett", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", + "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", + "Password confirmation failed" : "Passordbekreftelse feilet", "Default" : "Forvalg", "Set as default" : "Angi som standard", "Test deploy" : "Test distribuering", "Edit" : "Rediger", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", - "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", - "Password confirmation failed" : "Passordbekreftelse feilet", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", @@ -59,21 +59,10 @@ "Compute device" : "Beregningsenhet", "Additional options" : "Ytterligere alternativer", "Verify connection" : "Verifiser forbindelse", - "Daemon connection successful" : "Vellykket daemon-forbindelse", - "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", - "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Registered Deploy daemons list" : "Registrert liste over distribuerings-daemoner", "No Deploy daemons configured" : "Ingen distribuerings-daemoner konfigurert", "Register a custom one or setup from available templates" : "Registrer en tilpasset en eller sett opp fra tilgjengelige maler", "Register Daemon" : "Registrer daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", - "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", - "More info" : "Mer info", - "Download ExApp logs" : "Last ned ExApp logger", - "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start distribusjonstest", - "Stop Deploy test" : "Stopp distribusjonstest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", "Register ExApp in Nextcloud" : "Registrer ExApp i Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Sjekk om ExApp er registrert i Nextcloud før distribusjon", "Image pull" : "Bildetrekk", @@ -89,6 +78,30 @@ "Only if ExApp container is preset" : "Bare hvis ExApp-konteineren er forhåndsinnstilt", "Deploy test passed successfully!" : "Distribusjonstesten bestått vellykket!", "Deploy test failed at step \"{step}\"" : "Distribusjonstesten feilet på trinn \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", + "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", + "More info" : "Mer info", + "Download ExApp logs" : "Last ned ExApp logger", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start distribusjonstest", + "Stop Deploy test" : "Stopp distribusjonstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", + "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", + "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", + "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", + "DaemonConfig successfully registered" : "DaemonKonfigurasjon registrert", + "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", + "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", + "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", + "Daemon connection successful" : "Vellykket daemon-forbindelse", + "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", + "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Edit Deploy Daemon" : "Rediger distribuerings-daemon", "Register Deploy Daemon" : "Registrer distribuerings-daemon", "Daemon configuration template" : "Mal for konfigurasjon av daemon", @@ -106,7 +119,6 @@ "Hide deploy config" : "Skjul konfigurasjon for distribuering", "Network" : "Nettverk", "Docker network name" : "Docker-nettverksnavn", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", "Additional option" : "Ytterligere alternativ", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", @@ -118,19 +130,8 @@ "Save" : "Lagre", "Register" : "Registrer", "Check connection" : "Sjekk forbindelsen", - "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", - "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", - "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", - "DaemonConfig successfully registered" : "DaemonKonfigurasjon registrert", - "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", - "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", - "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", "External Apps" : "Eksterne apper", + "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", "Remove" : "Fjern", "Delete data on remove" : "Slett data ved fjerning", @@ -144,7 +145,6 @@ "Admin documentation" : "Administratordokumentasjon", "Developer documentation" : "Utviklerdokumentasjon", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne appen er ikke registrert i AppStore. Ingen ekstra informasjon tilgjengelig. Bare aktivere-/deaktivere- og fjerne handlinger er tillatt.", - "{license}-licensed" : "{license}-lisensiert", "This app is supported via your current Nextcloud subscription." : "Denne appen er støttet av ditt nåværende Nextcloud abonnement.", "Supported" : "Støttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Anbefalte apper er utviklet av og innenfor fellesskapet. De tilbyr sentral funksjonalitet og er klare for bruk i produksjon.", @@ -164,11 +164,11 @@ "Type" : "Type", "Display Name" : "Visningsnavn", "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", + "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", "Details" : "Detaljer", "Changelog" : "Endringslogg", - "by {author}\n{license}" : "av {author}\n{license}", "Active apps" : "Aktive apper", "Disabled apps" : "Deaktiverte apper", "Updates" : "Oppdateringer", diff --git a/l10n/nl.js b/l10n/nl.js index 199c9bb7..a2728d37 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -13,13 +13,14 @@ OC.L10N.register( "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", "GPUs support" : "GPUs support", - "More info" : "Meer info", "Enabled" : "Ingeschakeld", + "More info" : "Meer info", "Network" : "Netwerk", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", "External Apps" : "Externe apps", + "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Remove" : "Verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", @@ -31,7 +32,6 @@ OC.L10N.register( "User documentation" : "Gebruikersdocumentatie", "Admin documentation" : "Beheerdersdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", - "{license}-licensed" : "{license}-gelicenseerd", "This app is supported via your current Nextcloud subscription." : "Deze app wordt ondersteund via je huidige Nextcloud abonnement.", "Supported" : "Ondersteund", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aanbevolen apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", @@ -46,11 +46,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", + "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", "Details" : "Details", "Changelog" : "Wijzigingslog", - "by {author}\n{license}" : "door {author}\n{license}", "Active apps" : "Ingeschakelde apps", "Disabled apps" : "Uitgeschakelde apps", "Updates" : "Updates", diff --git a/l10n/nl.json b/l10n/nl.json index 39221a0c..7478c879 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -11,13 +11,14 @@ "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", "GPUs support" : "GPUs support", - "More info" : "Meer info", "Enabled" : "Ingeschakeld", + "More info" : "Meer info", "Network" : "Netwerk", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", "External Apps" : "Externe apps", + "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Remove" : "Verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", @@ -29,7 +30,6 @@ "User documentation" : "Gebruikersdocumentatie", "Admin documentation" : "Beheerdersdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", - "{license}-licensed" : "{license}-gelicenseerd", "This app is supported via your current Nextcloud subscription." : "Deze app wordt ondersteund via je huidige Nextcloud abonnement.", "Supported" : "Ondersteund", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aanbevolen apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", @@ -44,11 +44,11 @@ "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", + "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", "Details" : "Details", "Changelog" : "Wijzigingslog", - "by {author}\n{license}" : "door {author}\n{license}", "Active apps" : "Ingeschakelde apps", "Disabled apps" : "Uitgeschakelde apps", "Updates" : "Updates", diff --git a/l10n/oc.js b/l10n/oc.js index ac45f9d9..52992ebe 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -23,11 +23,11 @@ OC.L10N.register( "Version" : "Version", "Actions" : "Accions", "Type" : "Tipe", + "by {author}\n{license}" : "per {author}\n{license}", "Your apps" : "Vòstras aplicacions", "Documentation" : "Documentacion", "Details" : "Per lo Menut", "Changelog" : "Nòta de version", - "by {author}\n{license}" : "per {author}\n{license}", "Active apps" : "Aplicacions activas", "Disabled apps" : "Aplicacions desactivadas", "Updates" : "Mesas a jorn", diff --git a/l10n/oc.json b/l10n/oc.json index 4bbf23c4..2790ecb4 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -21,11 +21,11 @@ "Version" : "Version", "Actions" : "Accions", "Type" : "Tipe", + "by {author}\n{license}" : "per {author}\n{license}", "Your apps" : "Vòstras aplicacions", "Documentation" : "Documentacion", "Details" : "Per lo Menut", "Changelog" : "Nòta de version", - "by {author}\n{license}" : "per {author}\n{license}", "Active apps" : "Aplicacions activas", "Disabled apps" : "Aplicacions desactivadas", "Updates" : "Mesas a jorn", diff --git a/l10n/pl.js b/l10n/pl.js index 630396a9..f80614fd 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -6,18 +6,18 @@ OC.L10N.register( "AppAPI ExApp notifier" : "Powiadomienie AppAPI ExApp", "AppAPI" : "AppAPI", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "Admin options saved" : "Opcje administracyjne zostały zapisane", + "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", - "Admin options saved" : "Opcje administracyjne zostały zapisane", - "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "Cancel" : "Anuluj", "Delete" : "Usuń", + "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", + "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", "Edit" : "Edycja", - "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", - "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", @@ -27,15 +27,19 @@ OC.L10N.register( "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", + "Enabled" : "Włączone", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", - "Enabled" : "Włączone", + "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "Network" : "Sieć", "Docker network name" : "Nazwa sieci Dockera", - "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key is required" : "Wymagany jest klucz opcji", @@ -45,11 +49,8 @@ OC.L10N.register( "Save" : "Zapisz", "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", - "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", - "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "External Apps" : "Aplikacje zewnętrzne", + "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", "Delete data on remove" : "Usuń dane przy usuwaniu", @@ -63,7 +64,6 @@ OC.L10N.register( "Admin documentation" : "Dokumentacja administratora", "Developer documentation" : "Dokumentacja dewelopera", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ta aplikacja nie jest zarejestrowana w AppStore. Brak dodatkowych informacji. Dozwolone są tylko akcje włączania/wyłączania i usuwania.", - "{license}-licensed" : "na licencji {license}", "This app is supported via your current Nextcloud subscription." : "Ta aplikacja jest obsługiwana za pośrednictwem bieżącej subskrypcji Nextcloud.", "Supported" : "Wspierany", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Polecane aplikacje są tworzone przez społeczność. Oferują główną funkcjonalność i są gotowe do użycia w produkcji.", @@ -82,11 +82,11 @@ OC.L10N.register( "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", + "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", "Details" : "Szczegóły", "Changelog" : "Dziennik zmian", - "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Active apps" : "Aktywne aplikacje", "Disabled apps" : "Wyłączone aplikacje", "Updates" : "Aktualizacje", diff --git a/l10n/pl.json b/l10n/pl.json index 50966997..22b02396 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -4,18 +4,18 @@ "AppAPI ExApp notifier" : "Powiadomienie AppAPI ExApp", "AppAPI" : "AppAPI", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "Admin options saved" : "Opcje administracyjne zostały zapisane", + "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", - "Admin options saved" : "Opcje administracyjne zostały zapisane", - "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "Cancel" : "Anuluj", "Delete" : "Usuń", + "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", + "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", "Edit" : "Edycja", - "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", - "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", @@ -25,15 +25,19 @@ "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", + "Enabled" : "Włączone", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", - "Enabled" : "Włączone", + "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "Network" : "Sieć", "Docker network name" : "Nazwa sieci Dockera", - "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key is required" : "Wymagany jest klucz opcji", @@ -43,11 +47,8 @@ "Save" : "Zapisz", "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", - "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", - "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "External Apps" : "Aplikacje zewnętrzne", + "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", "Remove" : "Usuń", "Delete data on remove" : "Usuń dane przy usuwaniu", @@ -61,7 +62,6 @@ "Admin documentation" : "Dokumentacja administratora", "Developer documentation" : "Dokumentacja dewelopera", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ta aplikacja nie jest zarejestrowana w AppStore. Brak dodatkowych informacji. Dozwolone są tylko akcje włączania/wyłączania i usuwania.", - "{license}-licensed" : "na licencji {license}", "This app is supported via your current Nextcloud subscription." : "Ta aplikacja jest obsługiwana za pośrednictwem bieżącej subskrypcji Nextcloud.", "Supported" : "Wspierany", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Polecane aplikacje są tworzone przez społeczność. Oferują główną funkcjonalność i są gotowe do użycia w produkcji.", @@ -80,11 +80,11 @@ "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", + "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", "Details" : "Szczegóły", "Changelog" : "Dziennik zmian", - "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Active apps" : "Aktywne aplikacje", "Disabled apps" : "Wyłączone aplikacje", "Updates" : "Aktualizacje", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index f8da85b8..77e15b9e 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -20,6 +20,9 @@ OC.L10N.register( "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Gestão de Aplicativos Externos", + "Admin options saved" : "Opções de administrador salvas", + "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "Deploy Daemons" : "Deploy de Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon orquestrador de ExApps", @@ -31,21 +34,18 @@ OC.L10N.register( "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, por exemplo. 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", "This settings changes are reflected only for newly created containers" : "Essas alterações nas configurações são refletidas apenas para contêineres recém-criados", - "External Apps management" : "Gestão de Aplicativos Externos", - "Admin options saved" : "Opções de administrador salvas", - "Failed to save admin options" : "Falha ao salvar as opções do administrador", "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", "Cancel" : "Cancelar", "Delete" : "Excluir", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O Daemon de Implantação \"manual-install\" não pode ser definido como padrão", + "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", + "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", "Set as default" : "Definir como padrão", "Test deploy" : "Implantação de teste", "Edit" : "Editar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O Daemon de Implantação \"manual-install\" não pode ser definido como padrão", - "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", - "Password confirmation failed" : "Falha na confirmação da senha", "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -62,21 +62,10 @@ OC.L10N.register( "Compute device" : "Dispositivo de computação", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", - "Daemon connection successful" : "Conexão do daemon bem-sucedida", - "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", - "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Registered Deploy daemons list" : "Lista de daemons de implantação registrados", "No Deploy daemons configured" : "Nenhum daemon de implantação configurado", "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", "Register Daemon" : "Registrar Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", - "More info" : "Mais informações", - "Download ExApp logs" : "Baixar registros do ExApp", - "Remove test ExApp" : "Remover ExApp de teste", - "Start Deploy test" : "Iniciar teste de implantação", - "Stop Deploy test" : "Parar o teste de implantação", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Register ExApp in Nextcloud" : "Registre ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verifique se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Extração de imagem", @@ -92,6 +81,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "Teste de implantação aprovado com sucesso!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", + "More info" : "Mais informações", + "Download ExApp logs" : "Baixar registros do ExApp", + "Remove test ExApp" : "Remover ExApp de teste", + "Start Deploy test" : "Iniciar teste de implantação", + "Stop Deploy test" : "Parar o teste de implantação", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "Hostname to access ExApps" : "Nome do host para acessar ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon com este nome já existe", + "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", + "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", + "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", + "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", + "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", + "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", + "Daemon connection successful" : "Conexão do daemon bem-sucedida", + "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", + "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Edit Deploy Daemon" : "Editar Deploy Daemon", "Register Deploy Daemon" : "Registrar Daemon de Deploy", "Daemon configuration template" : "Modelo de configuração do daemon", @@ -109,7 +122,6 @@ OC.L10N.register( "Hide deploy config" : "Ocultar configuração de deploy", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", - "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave de opção (exclusiva)", @@ -121,19 +133,8 @@ OC.L10N.register( "Save" : "Salvar", "Register" : "Registro ", "Check connection" : "Verifique a conexão", - "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon com este nome já existe", - "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", - "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", - "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", - "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", - "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", - "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", "External Apps" : "Apps Externos", + "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", "Remove" : "Remover", "Delete data on remove" : "Excluir dados ao remover", @@ -147,7 +148,6 @@ OC.L10N.register( "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", - "{license}-licensed" : "{license}-licenciado", "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", "Supported" : "Suportado", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", @@ -167,11 +167,11 @@ OC.L10N.register( "Type" : "Tipo", "Display Name" : "Nome", "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", "Changelog" : "Log de alterações", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicativos ativados", "Disabled apps" : "Aplicativos desativados", "Updates" : "Atualizações", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 1162df4c..41fb66dd 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -18,6 +18,9 @@ "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Gestão de Aplicativos Externos", + "Admin options saved" : "Opções de administrador salvas", + "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "Deploy Daemons" : "Deploy de Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon orquestrador de ExApps", @@ -29,21 +32,18 @@ "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, por exemplo. 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", "This settings changes are reflected only for newly created containers" : "Essas alterações nas configurações são refletidas apenas para contêineres recém-criados", - "External Apps management" : "Gestão de Aplicativos Externos", - "Admin options saved" : "Opções de administrador salvas", - "Failed to save admin options" : "Falha ao salvar as opções do administrador", "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", "Cancel" : "Cancelar", "Delete" : "Excluir", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O Daemon de Implantação \"manual-install\" não pode ser definido como padrão", + "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", + "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", "Set as default" : "Definir como padrão", "Test deploy" : "Implantação de teste", "Edit" : "Editar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O Daemon de Implantação \"manual-install\" não pode ser definido como padrão", - "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", - "Password confirmation failed" : "Falha na confirmação da senha", "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -60,21 +60,10 @@ "Compute device" : "Dispositivo de computação", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", - "Daemon connection successful" : "Conexão do daemon bem-sucedida", - "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", - "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Registered Deploy daemons list" : "Lista de daemons de implantação registrados", "No Deploy daemons configured" : "Nenhum daemon de implantação configurado", "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", "Register Daemon" : "Registrar Daemon", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", - "More info" : "Mais informações", - "Download ExApp logs" : "Baixar registros do ExApp", - "Remove test ExApp" : "Remover ExApp de teste", - "Start Deploy test" : "Iniciar teste de implantação", - "Stop Deploy test" : "Parar o teste de implantação", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Register ExApp in Nextcloud" : "Registre ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verifique se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Extração de imagem", @@ -90,6 +79,30 @@ "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "Teste de implantação aprovado com sucesso!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", + "More info" : "Mais informações", + "Download ExApp logs" : "Baixar registros do ExApp", + "Remove test ExApp" : "Remover ExApp de teste", + "Start Deploy test" : "Iniciar teste de implantação", + "Stop Deploy test" : "Parar o teste de implantação", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "Hostname to access ExApps" : "Nome do host para acessar ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon com este nome já existe", + "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", + "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", + "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", + "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", + "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", + "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", + "Daemon connection successful" : "Conexão do daemon bem-sucedida", + "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", + "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Edit Deploy Daemon" : "Editar Deploy Daemon", "Register Deploy Daemon" : "Registrar Daemon de Deploy", "Daemon configuration template" : "Modelo de configuração do daemon", @@ -107,7 +120,6 @@ "Hide deploy config" : "Ocultar configuração de deploy", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", - "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave de opção (exclusiva)", @@ -119,19 +131,8 @@ "Save" : "Salvar", "Register" : "Registro ", "Check connection" : "Verifique a conexão", - "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon com este nome já existe", - "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", - "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", - "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", - "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", - "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", - "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", "External Apps" : "Apps Externos", + "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", "Remove" : "Remover", "Delete data on remove" : "Excluir dados ao remover", @@ -145,7 +146,6 @@ "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", - "{license}-licensed" : "{license}-licenciado", "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", "Supported" : "Suportado", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", @@ -165,11 +165,11 @@ "Type" : "Tipo", "Display Name" : "Nome", "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", + "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", "Changelog" : "Log de alterações", - "by {author}\n{license}" : "por {author}\n{license}", "Active apps" : "Aplicativos ativados", "Disabled apps" : "Aplicativos desativados", "Updates" : "Atualizações", diff --git a/l10n/ru.js b/l10n/ru.js index fb9c062b..a71a08cc 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -20,6 +20,9 @@ OC.L10N.register( "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Управление внешними приложениями", + "Admin options saved" : "Параметры администратора сохранены", + "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", @@ -31,21 +34,18 @@ OC.L10N.register( "ExApp container restart policy" : "Политика перезапуска контейнера ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", - "External Apps management" : "Управление внешними приложениями", - "Admin options saved" : "Параметры администратора сохранены", - "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", + "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", + "Password confirmation failed" : "Подтверждение пароля не удалось", "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", "Edit" : "Редактирование", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", - "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", - "Password confirmation failed" : "Подтверждение пароля не удалось", "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", @@ -62,21 +62,10 @@ OC.L10N.register( "Compute device" : "Вычислительное устройство", "Additional options" : "Дополнительные возможности", "Verify connection" : "Проверить соединение", - "Daemon connection successful" : "Служба успешно установлена", - "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", - "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", "No Deploy daemons configured" : "Службы развертывания не настроены", "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", "Register Daemon" : "Регистрация службы", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", - "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", - "More info" : "Дополнительная информация", - "Download ExApp logs" : "Загрузить журналы ExApp", - "Remove test ExApp" : "Удалить тест ExApp", - "Start Deploy test" : "Начать тест развертывания", - "Stop Deploy test" : "Остановить тест развертывания", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", "Register ExApp in Nextcloud" : "Зарегистрировать ExApp в Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверьте, зарегистрирован ли ExApp в Nextcloud перед развертыванием.", "Image pull" : "Извлечение изображения", @@ -92,6 +81,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Только если контейнер ExApp предварительно настроен", "Deploy test passed successfully!" : "Тест на развертывание пройден успешно!", "Deploy test failed at step \"{step}\"" : "Тест развертывания не пройден на шаге \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", + "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", + "More info" : "Дополнительная информация", + "Download ExApp logs" : "Загрузить журналы ExApp", + "Remove test ExApp" : "Удалить тест ExApp", + "Start Deploy test" : "Начать тест развертывания", + "Stop Deploy test" : "Остановить тест развертывания", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Служба с таким названием уже существует", + "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", + "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", + "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", + "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", + "Daemon connection successful" : "Служба успешно установлена", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Edit Deploy Daemon" : "Изменить службу развертывания", "Register Deploy Daemon" : "Регистрация службы развертывания", "Daemon configuration template" : "Шаблон конфигурации службы", @@ -109,7 +122,6 @@ OC.L10N.register( "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Network" : "Сеть", "Docker network name" : "Имя в сети Docker", - "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", @@ -121,19 +133,8 @@ OC.L10N.register( "Save" : "Сохранить", "Register" : "Регистрация", "Check connection" : "Проверить подключение", - "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Служба с таким названием уже существует", - "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", - "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", - "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", - "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", - "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", - "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", "External Apps" : "Внешние приложения", + "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", "Remove" : "Удалить", "Delete data on remove" : "Удалить данные при удалении", @@ -147,7 +148,6 @@ OC.L10N.register( "Admin documentation" : "Документация администратора", "Developer documentation" : "Документация разработчика", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение не зарегистрировано в AppStore. Дополнительная информация отсутствует. Разрешены только действия включения/выключения и удаления.", - "{license}-licensed" : "Лицензия: {license}", "This app is supported via your current Nextcloud subscription." : "Это приложение поддерживается через вашу текущую подписку Nextcloud.", "Supported" : "Поддерживается", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", @@ -167,11 +167,11 @@ OC.L10N.register( "Type" : "Тип", "Display Name" : "Отображаемое имя", "With https enabled network is set to host" : "При включенном https сеть настроена на хост", + "by {author}\n{license}" : "автор: {author}\n{license}", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", "Changelog" : "Журнал изменений", - "by {author}\n{license}" : "автор: {author}\n{license}", "Active apps" : "Активные приложения", "Disabled apps" : "Отключённые приложения", "Updates" : "Обновления", diff --git a/l10n/ru.json b/l10n/ru.json index 33980723..dc1ca11a 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -18,6 +18,9 @@ "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "Управление внешними приложениями", + "Admin options saved" : "Параметры администратора сохранены", + "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", @@ -29,21 +32,18 @@ "ExApp container restart policy" : "Политика перезапуска контейнера ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", - "External Apps management" : "Управление внешними приложениями", - "Admin options saved" : "Параметры администратора сохранены", - "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", + "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", + "Password confirmation failed" : "Подтверждение пароля не удалось", "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", "Edit" : "Редактирование", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", - "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", - "Password confirmation failed" : "Подтверждение пароля не удалось", "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", @@ -60,21 +60,10 @@ "Compute device" : "Вычислительное устройство", "Additional options" : "Дополнительные возможности", "Verify connection" : "Проверить соединение", - "Daemon connection successful" : "Служба успешно установлена", - "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", - "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", "No Deploy daemons configured" : "Службы развертывания не настроены", "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", "Register Daemon" : "Регистрация службы", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", - "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", - "More info" : "Дополнительная информация", - "Download ExApp logs" : "Загрузить журналы ExApp", - "Remove test ExApp" : "Удалить тест ExApp", - "Start Deploy test" : "Начать тест развертывания", - "Stop Deploy test" : "Остановить тест развертывания", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", "Register ExApp in Nextcloud" : "Зарегистрировать ExApp в Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверьте, зарегистрирован ли ExApp в Nextcloud перед развертыванием.", "Image pull" : "Извлечение изображения", @@ -90,6 +79,30 @@ "Only if ExApp container is preset" : "Только если контейнер ExApp предварительно настроен", "Deploy test passed successfully!" : "Тест на развертывание пройден успешно!", "Deploy test failed at step \"{step}\"" : "Тест развертывания не пройден на шаге \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", + "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", + "More info" : "Дополнительная информация", + "Download ExApp logs" : "Загрузить журналы ExApp", + "Remove test ExApp" : "Удалить тест ExApp", + "Start Deploy test" : "Начать тест развертывания", + "Stop Deploy test" : "Остановить тест развертывания", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Служба с таким названием уже существует", + "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", + "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", + "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", + "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", + "Daemon connection successful" : "Служба успешно установлена", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Edit Deploy Daemon" : "Изменить службу развертывания", "Register Deploy Daemon" : "Регистрация службы развертывания", "Daemon configuration template" : "Шаблон конфигурации службы", @@ -107,7 +120,6 @@ "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Network" : "Сеть", "Docker network name" : "Имя в сети Docker", - "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", @@ -119,19 +131,8 @@ "Save" : "Сохранить", "Register" : "Регистрация", "Check connection" : "Проверить подключение", - "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Служба с таким названием уже существует", - "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", - "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", - "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", - "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", - "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", - "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", "External Apps" : "Внешние приложения", + "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", "Remove" : "Удалить", "Delete data on remove" : "Удалить данные при удалении", @@ -145,7 +146,6 @@ "Admin documentation" : "Документация администратора", "Developer documentation" : "Документация разработчика", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение не зарегистрировано в AppStore. Дополнительная информация отсутствует. Разрешены только действия включения/выключения и удаления.", - "{license}-licensed" : "Лицензия: {license}", "This app is supported via your current Nextcloud subscription." : "Это приложение поддерживается через вашу текущую подписку Nextcloud.", "Supported" : "Поддерживается", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Рекомендованные приложения разработаны совместно с сообществом. Эти приложения обеспечивают основной функционал и готовы для использования в рабочих системах.", @@ -165,11 +165,11 @@ "Type" : "Тип", "Display Name" : "Отображаемое имя", "With https enabled network is set to host" : "При включенном https сеть настроена на хост", + "by {author}\n{license}" : "автор: {author}\n{license}", "Your apps" : "Ваши приложения", "Documentation" : "Документация", "Details" : "Свойства", "Changelog" : "Журнал изменений", - "by {author}\n{license}" : "автор: {author}\n{license}", "Active apps" : "Активные приложения", "Disabled apps" : "Отключённые приложения", "Updates" : "Обновления", diff --git a/l10n/sc.js b/l10n/sc.js index a424a5a9..9e04d638 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", + "{license}-licensed" : "suta lissèntzia {license}", "Update to {version}" : "Agiorna a {version}", "Remove" : "Boga", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione mìnima de Nextcloud assignada. At a èssere unu problema in su benidore.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "Documentatzione utente", "Admin documentation" : "Documentatzione amministratzione", "Developer documentation" : "Documentatzione isvilupu", - "{license}-licensed" : "suta lissèntzia {license}", "This app is supported via your current Nextcloud subscription." : "Custa aplicatzione est suportada dae sa sutaiscritzione atuale tua in Nextcloud.", "Supported" : "Suportadu", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Is aplicatziones in evidèntzia sunt isvilupadas dae e cun sa comunidade. Oferint funtzionalidades noas e sunt prontas pro s'impreu in produtzione.", @@ -37,11 +37,11 @@ OC.L10N.register( "Actions" : "Atziones", "Results from other categories" : "Resurtados dae àteras categorias", "Type" : "Genia", + "by {author}\n{license}" : "de {author}\n{license}", "Your apps" : "Is aplicatziones tuas", "Documentation" : "Documentatzione", "Details" : "Detàllios", "Changelog" : "Registru de is càmbios", - "by {author}\n{license}" : "de {author}\n{license}", "Active apps" : "Aplicatziones ativas", "Disabled apps" : "Aplicatziones disativadas", "Updates" : "Agiornamentos", diff --git a/l10n/sc.json b/l10n/sc.json index c5792366..77da0410 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -12,6 +12,7 @@ "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", + "{license}-licensed" : "suta lissèntzia {license}", "Update to {version}" : "Agiorna a {version}", "Remove" : "Boga", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione mìnima de Nextcloud assignada. At a èssere unu problema in su benidore.", @@ -23,7 +24,6 @@ "User documentation" : "Documentatzione utente", "Admin documentation" : "Documentatzione amministratzione", "Developer documentation" : "Documentatzione isvilupu", - "{license}-licensed" : "suta lissèntzia {license}", "This app is supported via your current Nextcloud subscription." : "Custa aplicatzione est suportada dae sa sutaiscritzione atuale tua in Nextcloud.", "Supported" : "Suportadu", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Is aplicatziones in evidèntzia sunt isvilupadas dae e cun sa comunidade. Oferint funtzionalidades noas e sunt prontas pro s'impreu in produtzione.", @@ -35,11 +35,11 @@ "Actions" : "Atziones", "Results from other categories" : "Resurtados dae àteras categorias", "Type" : "Genia", + "by {author}\n{license}" : "de {author}\n{license}", "Your apps" : "Is aplicatziones tuas", "Documentation" : "Documentatzione", "Details" : "Detàllios", "Changelog" : "Registru de is càmbios", - "by {author}\n{license}" : "de {author}\n{license}", "Active apps" : "Aplicatziones ativas", "Disabled apps" : "Aplicatziones disativadas", "Updates" : "Agiornamentos", diff --git a/l10n/sk.js b/l10n/sk.js index 2446264d..f797f676 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "Nastavenia ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "External Apps management" : "Správa externých aplikácií", + "Admin options saved" : "Nastavenia administrátora boli uložené", + "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", "Deploy Daemons" : "Nasadenie démonov", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "Zásady reštartovania kontajnera ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", - "External Apps management" : "Správa externých aplikácií", - "Admin options saved" : "Nastavenia administrátora boli uložené", - "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", "Cancel" : "Zrušiť", "Delete" : "Vymazať", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", + "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", + "Password confirmation failed" : "Overenie hesla zlyhalo", "Default" : "Predvolené", "Set as default" : "Nastaviť ako predvolené", "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", - "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", - "Password confirmation failed" : "Overenie hesla zlyhalo", "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Výpočetné zariadenie", "Additional options" : "Ďalšie nastavenia", "Verify connection" : "Overiť spojenie", - "Daemon connection successful" : "Pripojenie démona bolo úspešné", - "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", - "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", "Register Daemon" : "Zaregistrovať Démona", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", - "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", - "More info" : "Viac informácií", - "Download ExApp logs" : "Stiahnuť logy ExApp", - "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", - "Start Deploy test" : "Spustiť test nasadenia", - "Stop Deploy test" : "Zastaviť test nasadenia", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Register ExApp in Nextcloud" : "Zaregistrovať ExApp v Nextcloude", "Check if the ExApp is registered in Nextcloud before deployment" : "Pred nasadením skontrolujte, či je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Stiahnutie obrazu", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Iba ak je prednastavený kontajner ExApp", "Deploy test passed successfully!" : "Test nasadenia skončil úspešne!", "Deploy test failed at step \"{step}\"" : "Test nasadenia zlyhal na kroku \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", + "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", + "More info" : "Viac informácií", + "Download ExApp logs" : "Stiahnuť logy ExApp", + "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", + "Start Deploy test" : "Spustiť test nasadenia", + "Stop Deploy test" : "Zastaviť test nasadenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", + "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", + "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", + "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", + "Daemon connection successful" : "Pripojenie démona bolo úspešné", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Edit Deploy Daemon" : "Upraviť Démona nasadenia", "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", "Daemon configuration template" : "Šablóna konfigurácie démona", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Network" : "Sieť", "Docker network name" : "Meno siete dockeru", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Uložiť", "Register" : "Registrovať", "Check connection" : "Skontrolovať pripojenie", - "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Démon s týmto názvom už existuje", - "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", - "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", - "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", - "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", - "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", - "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", "External Apps" : "Externé aplikácie", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", "Delete data on remove" : "Pri odobraní zmazať dáta", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Príručka administrátora", "Developer documentation" : "Dokumentácia vývojára", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Táto aplikácia nie je zaregistrovaná v AppStore. Nie sú k dispozícii žiadne ďalšie informácie. Povolené sú iba akcie zapnúť/vypnúť a odstrániť.", - "{license}-licensed" : "{license}-licencovaný", "This app is supported via your current Nextcloud subscription." : "Táto aplikácia je podporovaná prostredníctvom vášho aktuálneho predplatného Nextcloud.", "Supported" : "Podporované", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Odporúčané aplikácie sú vyvíjané komunitou Sú prepojené so zbytkom Nextcloud a pripravené na produkčné nasadenie.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Typ", "Display Name" : "Zobrazované meno", "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", + "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", "Details" : "Podrobnosti", "Changelog" : "Zoznam zmien", - "by {author}\n{license}" : "od {author}\n{license}", "Active apps" : "Aktívne aplikácie", "Disabled apps" : "Vypnuté aplikácie", "Updates" : "Aktualizácie", diff --git a/l10n/sk.json b/l10n/sk.json index 2a9850f3..953542e8 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -20,6 +20,9 @@ "ExApps Settings" : "Nastavenia ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "External Apps management" : "Správa externých aplikácií", + "Admin options saved" : "Nastavenia administrátora boli uložené", + "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", "Deploy Daemons" : "Nasadenie démonov", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "Zásady reštartovania kontajnera ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", - "External Apps management" : "Správa externých aplikácií", - "Admin options saved" : "Nastavenia administrátora boli uložené", - "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", "Cancel" : "Zrušiť", "Delete" : "Vymazať", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", + "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", + "Password confirmation failed" : "Overenie hesla zlyhalo", "Default" : "Predvolené", "Set as default" : "Nastaviť ako predvolené", "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", - "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", - "Password confirmation failed" : "Overenie hesla zlyhalo", "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", @@ -62,21 +62,10 @@ "Compute device" : "Výpočetné zariadenie", "Additional options" : "Ďalšie nastavenia", "Verify connection" : "Overiť spojenie", - "Daemon connection successful" : "Pripojenie démona bolo úspešné", - "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", - "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", "Register Daemon" : "Zaregistrovať Démona", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", - "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", - "More info" : "Viac informácií", - "Download ExApp logs" : "Stiahnuť logy ExApp", - "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", - "Start Deploy test" : "Spustiť test nasadenia", - "Stop Deploy test" : "Zastaviť test nasadenia", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Register ExApp in Nextcloud" : "Zaregistrovať ExApp v Nextcloude", "Check if the ExApp is registered in Nextcloud before deployment" : "Pred nasadením skontrolujte, či je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Stiahnutie obrazu", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Iba ak je prednastavený kontajner ExApp", "Deploy test passed successfully!" : "Test nasadenia skončil úspešne!", "Deploy test failed at step \"{step}\"" : "Test nasadenia zlyhal na kroku \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", + "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", + "More info" : "Viac informácií", + "Download ExApp logs" : "Stiahnuť logy ExApp", + "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", + "Start Deploy test" : "Spustiť test nasadenia", + "Stop Deploy test" : "Zastaviť test nasadenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", + "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", + "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", + "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", + "Daemon connection successful" : "Pripojenie démona bolo úspešné", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Edit Deploy Daemon" : "Upraviť Démona nasadenia", "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", "Daemon configuration template" : "Šablóna konfigurácie démona", @@ -109,7 +122,6 @@ "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Network" : "Sieť", "Docker network name" : "Meno siete dockeru", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", @@ -121,20 +133,9 @@ "Save" : "Uložiť", "Register" : "Registrovať", "Check connection" : "Skontrolovať pripojenie", - "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Démon s týmto názvom už existuje", - "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", - "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", - "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", - "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", - "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", - "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", "External Apps" : "Externé aplikácie", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", "Remove" : "Odobrať", "Delete data on remove" : "Pri odobraní zmazať dáta", @@ -148,7 +149,6 @@ "Admin documentation" : "Príručka administrátora", "Developer documentation" : "Dokumentácia vývojára", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Táto aplikácia nie je zaregistrovaná v AppStore. Nie sú k dispozícii žiadne ďalšie informácie. Povolené sú iba akcie zapnúť/vypnúť a odstrániť.", - "{license}-licensed" : "{license}-licencovaný", "This app is supported via your current Nextcloud subscription." : "Táto aplikácia je podporovaná prostredníctvom vášho aktuálneho predplatného Nextcloud.", "Supported" : "Podporované", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Odporúčané aplikácie sú vyvíjané komunitou Sú prepojené so zbytkom Nextcloud a pripravené na produkčné nasadenie.", @@ -168,11 +168,11 @@ "Type" : "Typ", "Display Name" : "Zobrazované meno", "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", + "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", "Details" : "Podrobnosti", "Changelog" : "Zoznam zmien", - "by {author}\n{license}" : "od {author}\n{license}", "Active apps" : "Aktívne aplikácie", "Disabled apps" : "Vypnuté aplikácie", "Updates" : "Aktualizácie", diff --git a/l10n/sl.js b/l10n/sl.js index a4971aee..5c6a92e0 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", + "{license}-licensed" : "dovoljenje {license}", "Update to {version}" : "Posodobitev na različico {version}", "Remove" : "Odstrani", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", @@ -25,7 +26,6 @@ OC.L10N.register( "User documentation" : "Uporabniška dokumentacija", "Admin documentation" : "Skrbniška dokumentacija", "Developer documentation" : "Dokumentacija za razvijalce", - "{license}-licensed" : "dovoljenje {license}", "This app is supported via your current Nextcloud subscription." : "Program je podprt prek trenutne naročnine Nextcloud", "Supported" : "Podprto", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki sodelujejo s skupnostjo. Paketi vključujejo osrednje zmožnosti programa, uporaba pa je namenjena tudi končnim uporabnikom.", @@ -39,11 +39,11 @@ OC.L10N.register( "Results from other categories" : "Rezultati iskanja med drugimi kategorijami", "_Update_::_Update all_" : ["Posodobi","Posodobi","Posodobi","Posodobi vse"], "Type" : "Vrsta", + "by {author}\n{license}" : "Razvoj: {author}\nDovoljenje: {license}", "Your apps" : "Vsi programi", "Documentation" : "Dokumentacija", "Details" : "Podrobnosti", "Changelog" : "Dnevnik sprememb", - "by {author}\n{license}" : "Razvoj: {author}\nDovoljenje: {license}", "Active apps" : "Zagnani programi", "Disabled apps" : "Onemogočeni programi", "Updates" : "Posodobitve", diff --git a/l10n/sl.json b/l10n/sl.json index 182cd33f..ba05dc89 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -12,6 +12,7 @@ "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", + "{license}-licensed" : "dovoljenje {license}", "Update to {version}" : "Posodobitev na različico {version}", "Remove" : "Odstrani", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", @@ -23,7 +24,6 @@ "User documentation" : "Uporabniška dokumentacija", "Admin documentation" : "Skrbniška dokumentacija", "Developer documentation" : "Dokumentacija za razvijalce", - "{license}-licensed" : "dovoljenje {license}", "This app is supported via your current Nextcloud subscription." : "Program je podprt prek trenutne naročnine Nextcloud", "Supported" : "Podprto", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki sodelujejo s skupnostjo. Paketi vključujejo osrednje zmožnosti programa, uporaba pa je namenjena tudi končnim uporabnikom.", @@ -37,11 +37,11 @@ "Results from other categories" : "Rezultati iskanja med drugimi kategorijami", "_Update_::_Update all_" : ["Posodobi","Posodobi","Posodobi","Posodobi vse"], "Type" : "Vrsta", + "by {author}\n{license}" : "Razvoj: {author}\nDovoljenje: {license}", "Your apps" : "Vsi programi", "Documentation" : "Dokumentacija", "Details" : "Podrobnosti", "Changelog" : "Dnevnik sprememb", - "by {author}\n{license}" : "Razvoj: {author}\nDovoljenje: {license}", "Active apps" : "Zagnani programi", "Disabled apps" : "Onemogočeni programi", "Updates" : "Posodobitve", diff --git a/l10n/sr.js b/l10n/sr.js index 5226b00b..98af4ce7 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "Подешавања за ExApp", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", + "External Apps management" : "Управљање спољним апликацијама", + "Admin options saved" : "Сачуване су админ опције", + "Failed to save admin options" : "Није успело чување админ опција", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "Политика поновног покретања ExApp контејнера", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", - "External Apps management" : "Управљање спољним апликацијама", - "Admin options saved" : "Сачуване су админ опције", - "Failed to save admin options" : "Није успело чување админ опција", "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", "Cancel" : "Откажи", "Delete" : "Избриши", + "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", + "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", + "Password confirmation failed" : "Није успело потврђивање лозинке", "Default" : "Подразумевано", "Set as default" : "Постави као подразумевано", "Test deploy" : "Тестирај постављање", "Edit" : "Измени", - "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", - "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", - "Password confirmation failed" : "Није успело потврђивање лозинке", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Рачунарски уређај", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", - "Daemon connection successful" : "Веза са даемоном је успела", - "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", - "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", "No Deploy daemons configured" : "Није подешен ниједан Даемон за постављање", "Register a custom one or setup from available templates" : "Региструјте произвољни или подесите неки према доступном шаблону", "Register Daemon" : "Региструј Даемон", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", - "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", - "More info" : "Више информација", - "Download ExApp logs" : "Преузми ExApp дневнике", - "Remove test ExApp" : "Уклони тест ExApp", - "Start Deploy test" : "Покрени тест постављања", - "Stop Deploy test" : "Заустави тест постављања", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Register ExApp in Nextcloud" : "Региструј ExApp у Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверава да ли је ExApp регистрована у Nextcloud пре постављања", "Image pull" : "Повлачење слике", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Само ако је присутан ExApp контејнер", "Deploy test passed successfully!" : "Тест постављања је успешно прошао!", "Deploy test failed at step \"{step}\"" : "Тест постављања је пао на кораку „{step}”", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", + "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", + "More info" : "Више информација", + "Download ExApp logs" : "Преузми ExApp дневнике", + "Remove test ExApp" : "Уклони тест ExApp", + "Start Deploy test" : "Покрени тест постављања", + "Stop Deploy test" : "Заустави тест постављања", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Hostname to access ExApps" : "Име хоста за приступ ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Даемон са овим именом већ постоји", + "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", + "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", + "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", + "DaemonConfig successfully registered" : "DaemonConfig је успешно регистрована", + "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", + "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", + "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", + "Daemon connection successful" : "Веза са даемоном је успела", + "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", + "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Edit Deploy Daemon" : "Уреди Даемона за постављање", "Register Deploy Daemon" : "Региструје Даемон за постављање", "Daemon configuration template" : "Шаблон подешавања Даемона", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Сакриј конфигурацију постављања", "Network" : "Мрежа", "Docker network name" : "Име Docker мреже: ", - "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Сачувај", "Register" : "Региструј се", "Check connection" : "Провера везе", - "Hostname to access ExApps" : "Име хоста за приступ ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Даемон са овим именом већ постоји", - "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", - "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", - "DaemonConfig successfully registered" : "DaemonConfig је успешно регистрована", - "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", - "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", - "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", "External Apps" : "Спољне апликације", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", + "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", "Remove" : "Уклони", "Delete data on remove" : "Обриши податке приликом уклањања", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Администраторска документација", "Developer documentation" : "Програмерска документација", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није регистрована у Продавници апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", - "{license}-licensed" : "{license}-лиценцирано", "This app is supported via your current Nextcloud subscription." : "Ова апликација је подржана са Вашом тренутном Некстклауд претплатом.", "Supported" : "Подржана", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Препоручене апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Тип", "Display Name" : "Име за приказ", "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", + "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваше апликације", "Documentation" : "Документација", "Details" : "Детаљи", "Changelog" : "Дневник измена", - "by {author}\n{license}" : "од {author}\n{license}", "Active apps" : "Активне апликације", "Disabled apps" : "Искључене апликације", "Updates" : "Ажурирања", diff --git a/l10n/sr.json b/l10n/sr.json index 64aa984f..45e12953 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -20,6 +20,9 @@ "ExApps Settings" : "Подешавања за ExApp", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", + "External Apps management" : "Управљање спољним апликацијама", + "Admin options saved" : "Сачуване су админ опције", + "Failed to save admin options" : "Није успело чување админ опција", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "Политика поновног покретања ExApp контејнера", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", - "External Apps management" : "Управљање спољним апликацијама", - "Admin options saved" : "Сачуване су админ опције", - "Failed to save admin options" : "Није успело чување админ опција", "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", "Cancel" : "Откажи", "Delete" : "Избриши", + "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", + "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", + "Password confirmation failed" : "Није успело потврђивање лозинке", "Default" : "Подразумевано", "Set as default" : "Постави као подразумевано", "Test deploy" : "Тестирај постављање", "Edit" : "Измени", - "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", - "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", - "Password confirmation failed" : "Није успело потврђивање лозинке", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -62,21 +62,10 @@ "Compute device" : "Рачунарски уређај", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", - "Daemon connection successful" : "Веза са даемоном је успела", - "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", - "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", "No Deploy daemons configured" : "Није подешен ниједан Даемон за постављање", "Register a custom one or setup from available templates" : "Региструјте произвољни или подесите неки према доступном шаблону", "Register Daemon" : "Региструј Даемон", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", - "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", - "More info" : "Више информација", - "Download ExApp logs" : "Преузми ExApp дневнике", - "Remove test ExApp" : "Уклони тест ExApp", - "Start Deploy test" : "Покрени тест постављања", - "Stop Deploy test" : "Заустави тест постављања", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Register ExApp in Nextcloud" : "Региструј ExApp у Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверава да ли је ExApp регистрована у Nextcloud пре постављања", "Image pull" : "Повлачење слике", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Само ако је присутан ExApp контејнер", "Deploy test passed successfully!" : "Тест постављања је успешно прошао!", "Deploy test failed at step \"{step}\"" : "Тест постављања је пао на кораку „{step}”", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", + "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", + "More info" : "Више информација", + "Download ExApp logs" : "Преузми ExApp дневнике", + "Remove test ExApp" : "Уклони тест ExApp", + "Start Deploy test" : "Покрени тест постављања", + "Stop Deploy test" : "Заустави тест постављања", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Hostname to access ExApps" : "Име хоста за приступ ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Даемон са овим именом већ постоји", + "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", + "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", + "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", + "DaemonConfig successfully registered" : "DaemonConfig је успешно регистрована", + "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", + "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", + "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", + "Daemon connection successful" : "Веза са даемоном је успела", + "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", + "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Edit Deploy Daemon" : "Уреди Даемона за постављање", "Register Deploy Daemon" : "Региструје Даемон за постављање", "Daemon configuration template" : "Шаблон подешавања Даемона", @@ -109,7 +122,6 @@ "Hide deploy config" : "Сакриј конфигурацију постављања", "Network" : "Мрежа", "Docker network name" : "Име Docker мреже: ", - "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", @@ -121,20 +133,9 @@ "Save" : "Сачувај", "Register" : "Региструј се", "Check connection" : "Провера везе", - "Hostname to access ExApps" : "Име хоста за приступ ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Даемон са овим именом већ постоји", - "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", - "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", - "DaemonConfig successfully registered" : "DaemonConfig је успешно регистрована", - "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", - "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", - "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", "External Apps" : "Спољне апликације", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", + "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", "Remove" : "Уклони", "Delete data on remove" : "Обриши податке приликом уклањања", @@ -148,7 +149,6 @@ "Admin documentation" : "Администраторска документација", "Developer documentation" : "Програмерска документација", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није регистрована у Продавници апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", - "{license}-licensed" : "{license}-лиценцирано", "This app is supported via your current Nextcloud subscription." : "Ова апликација је подржана са Вашом тренутном Некстклауд претплатом.", "Supported" : "Подржана", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Препоручене апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", @@ -168,11 +168,11 @@ "Type" : "Тип", "Display Name" : "Име за приказ", "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", + "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваше апликације", "Documentation" : "Документација", "Details" : "Детаљи", "Changelog" : "Дневник измена", - "by {author}\n{license}" : "од {author}\n{license}", "Active apps" : "Активне апликације", "Disabled apps" : "Искључене апликације", "Updates" : "Ажурирања", diff --git a/l10n/sv.js b/l10n/sv.js index d6f7c790..77ac9422 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -16,6 +16,7 @@ OC.L10N.register( "Save" : "Spara", "Register" : "Registrera", "External Apps" : "Externa appar", + "{license}-licensed" : "{license}-licensierad", "Update to {version}" : "Uppdatera till {version}", "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", @@ -27,7 +28,6 @@ OC.L10N.register( "User documentation" : "Användardokumentation", "Admin documentation" : "Administratörsdokumentation", "Developer documentation" : "Utvecklardokumentation", - "{license}-licensed" : "{license}-licensierad", "This app is supported via your current Nextcloud subscription." : "Den här appen stöds via ditt nuvarande Nextcloud-abonnemang.", "Supported" : "Stöds", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Utvalda appar utvecklas av och inom gemenskapen. De erbjuder central funktionalitet och är redo för produktionsanvändning.", @@ -42,11 +42,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", + "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dina appar", "Documentation" : "Dokumentation", "Details" : "Detaljer", "Changelog" : "Ändringslogg", - "by {author}\n{license}" : "av {author}\n{license}", "Active apps" : "Aktiva appar", "Disabled apps" : "Inaktiverade appar", "Updates" : "Uppdateringar", diff --git a/l10n/sv.json b/l10n/sv.json index ea168e54..c88a70f3 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -14,6 +14,7 @@ "Save" : "Spara", "Register" : "Registrera", "External Apps" : "Externa appar", + "{license}-licensed" : "{license}-licensierad", "Update to {version}" : "Uppdatera till {version}", "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", @@ -25,7 +26,6 @@ "User documentation" : "Användardokumentation", "Admin documentation" : "Administratörsdokumentation", "Developer documentation" : "Utvecklardokumentation", - "{license}-licensed" : "{license}-licensierad", "This app is supported via your current Nextcloud subscription." : "Den här appen stöds via ditt nuvarande Nextcloud-abonnemang.", "Supported" : "Stöds", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Utvalda appar utvecklas av och inom gemenskapen. De erbjuder central funktionalitet och är redo för produktionsanvändning.", @@ -40,11 +40,11 @@ "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", + "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dina appar", "Documentation" : "Dokumentation", "Details" : "Detaljer", "Changelog" : "Ändringslogg", - "by {author}\n{license}" : "av {author}\n{license}", "Active apps" : "Aktiva appar", "Disabled apps" : "Inaktiverade appar", "Updates" : "Uppdateringar", diff --git a/l10n/th.js b/l10n/th.js index 6e81591f..b8c17411 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -11,6 +11,7 @@ OC.L10N.register( "Confirm" : "ยืนยัน", "Save" : "บันทึก", "Register" : "ลงทะเบียน", + "{license}-licensed" : "สัญญาอนุญาต {license}", "Update to {version}" : "อัปเดตเป็น {version}", "Remove" : "ลบออก", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นขั้นต่ำของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", @@ -22,7 +23,6 @@ OC.L10N.register( "User documentation" : "เอกสารประกอบสำหรับผู้ใช้", "Admin documentation" : "เอกสารสำหรับผู้ดูแลระบบ", "Developer documentation" : "เอกสารสำหรับนักพัฒนา", - "{license}-licensed" : "สัญญาอนุญาต {license}", "This app is supported via your current Nextcloud subscription." : "แอปนี้รองรับผ่านการเป็นสมาชิก Nextcloud ปัจจุบันของคุณ", "Supported" : "รองรับ", "Featured" : "แนะนำ", @@ -32,11 +32,11 @@ OC.L10N.register( "Actions" : "การกระทำ", "Results from other categories" : "ผลลัพธ์จากหมวดหมู่อื่น ๆ", "Type" : "ประเภท", + "by {author}\n{license}" : "โดย {author}\n{license}", "Your apps" : "แอปของคุณ", "Documentation" : "เอกสารประกอบ", "Details" : "รายละเอียด", "Changelog" : "บันทึกการเปลี่ยนแปลง", - "by {author}\n{license}" : "โดย {author}\n{license}", "Active apps" : "แอปที่เปิดใช้งานอยู่", "Disabled apps" : "แอปที่ปิดใช้งาน", "Updates" : "อัปเดต", diff --git a/l10n/th.json b/l10n/th.json index 4006fa2d..30752620 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -9,6 +9,7 @@ "Confirm" : "ยืนยัน", "Save" : "บันทึก", "Register" : "ลงทะเบียน", + "{license}-licensed" : "สัญญาอนุญาต {license}", "Update to {version}" : "อัปเดตเป็น {version}", "Remove" : "ลบออก", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นขั้นต่ำของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", @@ -20,7 +21,6 @@ "User documentation" : "เอกสารประกอบสำหรับผู้ใช้", "Admin documentation" : "เอกสารสำหรับผู้ดูแลระบบ", "Developer documentation" : "เอกสารสำหรับนักพัฒนา", - "{license}-licensed" : "สัญญาอนุญาต {license}", "This app is supported via your current Nextcloud subscription." : "แอปนี้รองรับผ่านการเป็นสมาชิก Nextcloud ปัจจุบันของคุณ", "Supported" : "รองรับ", "Featured" : "แนะนำ", @@ -30,11 +30,11 @@ "Actions" : "การกระทำ", "Results from other categories" : "ผลลัพธ์จากหมวดหมู่อื่น ๆ", "Type" : "ประเภท", + "by {author}\n{license}" : "โดย {author}\n{license}", "Your apps" : "แอปของคุณ", "Documentation" : "เอกสารประกอบ", "Details" : "รายละเอียด", "Changelog" : "บันทึกการเปลี่ยนแปลง", - "by {author}\n{license}" : "โดย {author}\n{license}", "Active apps" : "แอปที่เปิดใช้งานอยู่", "Disabled apps" : "แอปที่ปิดใช้งาน", "Updates" : "อัปเดต", diff --git a/l10n/tr.js b/l10n/tr.js index 34b8e2d4..75b7e306 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "ExApps ayarları", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", + "External Apps management" : "Dış uygulamalar yönetimi", + "Admin options saved" : "Yönetici ayarları kaydedildi", + "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "ExApp kapsayıcısı yeniden başlatma ilkesi", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini belirtin. Örnek: Daemon sunucusu yeniden başlatıldıktan sonra ExApp çalışması için 'her zaman'", "This settings changes are reflected only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcılara uygulanır", - "External Apps management" : "Dış uygulamalar yönetimi", - "Admin options saved" : "Yönetici ayarları kaydedildi", - "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", "Cancel" : "İptal", "Delete" : "Sil", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", + "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", + "Password confirmation failed" : "Parola doğrulanamadı", "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", "Test deploy" : "Dağıtımı sına", "Edit" : "Düzenle", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", - "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", - "Password confirmation failed" : "Parola doğrulanamadı", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "Hesaplama aygıtı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", - "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", - "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", - "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", "No Deploy daemons configured" : "Herhangi bir dağıtım arka plan işlemi yapılandırılmamış", "Register a custom one or setup from available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan kurun", "Register Daemon" : "Arka plan işlemini kaydet", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", - "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", - "More info" : "Diğer bilgiler", - "Download ExApp logs" : "ExApp günlüklerini indir", - "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", - "Start Deploy test" : "Dağıtım sınamasını başlat", - "Stop Deploy test" : "Dağıtım sınamasını durdur", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", "Register ExApp in Nextcloud" : "Nextcloud üzerinde ExApp kaydını yap ", "Check if the ExApp is registered in Nextcloud before deployment" : "Dağıtmadan önce Nextcloud üzerinde ExApp kaydının olup olmadığını sınar", "Image pull" : "Kalıp çekme", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", + "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", + "More info" : "Diğer bilgiler", + "Download ExApp logs" : "ExApp günlüklerini indir", + "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", + "Start Deploy test" : "Dağıtım sınamasını başlat", + "Stop Deploy test" : "Dağıtım sınamasını durdur", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", + "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", + "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", + "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", + "DaemonConfig successfully updated" : "DaemonConfig güncellendi", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", + "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", + "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "Dağıtım yapılandırmasını gizle", "Network" : "Ağ", "Docker network name" : "Docker ağı adı", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "Kaydet", "Register" : "Kaydet", "Check connection" : "Bağlantıyı denetle", - "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", - "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", - "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", - "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", - "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", - "DaemonConfig successfully updated" : "DaemonConfig güncellendi", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", "External Apps" : "Dış uygulamalar", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", + "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", "Remove" : "Kaldır", "Delete data on remove" : "Kaldırıldığında veriler silinsin", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", - "{license}-licensed" : "{license}-lisanslı", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "Tür", "Display Name" : "Görüntülenecek ad", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", + "by {author}\n{license}" : "{author} tarafından\n{license}", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", "Details" : "Ayrıntılar", "Changelog" : "Değişiklik günlüğü", - "by {author}\n{license}" : "{author} tarafından\n{license}", "Active apps" : "Etkin uygulamalar", "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", "Updates" : "Güncellemeler", diff --git a/l10n/tr.json b/l10n/tr.json index 62ed7e39..1f3eae49 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -20,6 +20,9 @@ "ExApps Settings" : "ExApps ayarları", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", + "External Apps management" : "Dış uygulamalar yönetimi", + "Admin options saved" : "Yönetici ayarları kaydedildi", + "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "ExApp kapsayıcısı yeniden başlatma ilkesi", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini belirtin. Örnek: Daemon sunucusu yeniden başlatıldıktan sonra ExApp çalışması için 'her zaman'", "This settings changes are reflected only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcılara uygulanır", - "External Apps management" : "Dış uygulamalar yönetimi", - "Admin options saved" : "Yönetici ayarları kaydedildi", - "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", "Cancel" : "İptal", "Delete" : "Sil", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", + "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", + "Password confirmation failed" : "Parola doğrulanamadı", "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", "Test deploy" : "Dağıtımı sına", "Edit" : "Düzenle", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", - "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", - "Password confirmation failed" : "Parola doğrulanamadı", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -62,21 +62,10 @@ "Compute device" : "Hesaplama aygıtı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", - "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", - "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", - "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", "No Deploy daemons configured" : "Herhangi bir dağıtım arka plan işlemi yapılandırılmamış", "Register a custom one or setup from available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan kurun", "Register Daemon" : "Arka plan işlemini kaydet", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", - "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", - "More info" : "Diğer bilgiler", - "Download ExApp logs" : "ExApp günlüklerini indir", - "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", - "Start Deploy test" : "Dağıtım sınamasını başlat", - "Stop Deploy test" : "Dağıtım sınamasını durdur", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", "Register ExApp in Nextcloud" : "Nextcloud üzerinde ExApp kaydını yap ", "Check if the ExApp is registered in Nextcloud before deployment" : "Dağıtmadan önce Nextcloud üzerinde ExApp kaydının olup olmadığını sınar", "Image pull" : "Kalıp çekme", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", + "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", + "More info" : "Diğer bilgiler", + "Download ExApp logs" : "ExApp günlüklerini indir", + "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", + "Start Deploy test" : "Dağıtım sınamasını başlat", + "Stop Deploy test" : "Dağıtım sınamasını durdur", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", + "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", + "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", + "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", + "DaemonConfig successfully updated" : "DaemonConfig güncellendi", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", + "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", + "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", @@ -109,7 +122,6 @@ "Hide deploy config" : "Dağıtım yapılandırmasını gizle", "Network" : "Ağ", "Docker network name" : "Docker ağı adı", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", @@ -121,20 +133,9 @@ "Save" : "Kaydet", "Register" : "Kaydet", "Check connection" : "Bağlantıyı denetle", - "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", - "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", - "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", - "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", - "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", - "DaemonConfig successfully updated" : "DaemonConfig güncellendi", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", "External Apps" : "Dış uygulamalar", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", + "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", "Remove" : "Kaldır", "Delete data on remove" : "Kaldırıldığında veriler silinsin", @@ -148,7 +149,6 @@ "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", - "{license}-licensed" : "{license}-lisanslı", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", @@ -168,11 +168,11 @@ "Type" : "Tür", "Display Name" : "Görüntülenecek ad", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", + "by {author}\n{license}" : "{author} tarafından\n{license}", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", "Details" : "Ayrıntılar", "Changelog" : "Değişiklik günlüğü", - "by {author}\n{license}" : "{author} tarafından\n{license}", "Active apps" : "Etkin uygulamalar", "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", "Updates" : "Güncellemeler", diff --git a/l10n/ug.js b/l10n/ug.js index 7efa0b11..54be8dc3 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -20,6 +20,9 @@ OC.L10N.register( "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", "ExApps Settings" : "ExApps تەڭشەكلىرى", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", + "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", + "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", @@ -31,21 +34,18 @@ OC.L10N.register( "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", - "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", - "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", - "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", "Cancel" : "بىكار قىلىش", "Delete" : "ئۆچۈر", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Default" : "سۈكۈتتىكى", "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", "Edit" : "تەھرىر", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", - "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", @@ -62,21 +62,10 @@ OC.L10N.register( "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Additional options" : "قوشۇمچە تاللاشلار", "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", - "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", - "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", "Register Daemon" : "Daemon نى تىزىملىتىڭ", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", - "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", - "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", - "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", - "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", - "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", - "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", "Image pull" : "رەسىم تارتىش", @@ -92,6 +81,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", + "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", + "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", + "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", + "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", + "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", + "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", + "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", + "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", @@ -109,7 +122,6 @@ OC.L10N.register( "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", "Network" : "تور", "Docker network name" : "Docker تور ئىسمى", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", "Additional option" : "قوشۇمچە تاللاش", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", @@ -121,19 +133,8 @@ OC.L10N.register( "Save" : "ساقلا", "Register" : "تىزىملىتىڭ", "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", - "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", - "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", - "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", - "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", - "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", - "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", + "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", "Remove" : "ئۆچۈرۈڭ", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", @@ -147,7 +148,6 @@ OC.L10N.register( "Admin documentation" : "باشقۇرۇش ھۆججىتى", "Developer documentation" : "ئاچقۇچىلار ھۆججىتى", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore غا تىزىملاتمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", - "{license}-licensed" : "لىك {license}", "This app is supported via your current Nextcloud subscription." : "بۇ ئەپ نۆۋەتتىكى Nextcloud مۇشتەرىلىكىڭىز ئارقىلىق قوللىنىدۇ.", "Supported" : "قوللىدى", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ئالاھىدە ئەپلەر جەمئىيەت تەرىپىدىن ۋە تەرەققىي قىلدۇرۇلغان. ئۇلار مەركىزى ئىقتىدار بىلەن تەمىنلەيدۇ ھەمدە ئىشلەپچىقىرىشقا تەييار.", @@ -165,11 +165,11 @@ OC.L10N.register( "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", "Details" : "تەپسىلاتى", "Changelog" : "Changelog", - "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Active apps" : "ئاكتىپ ئەپلەر", "Disabled apps" : "چەكلەنگەن ئەپلەر", "Updates" : "يېڭىلانمىلار", diff --git a/l10n/ug.json b/l10n/ug.json index 58baecd1..5db44edd 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -18,6 +18,9 @@ "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", "ExApps Settings" : "ExApps تەڭشەكلىرى", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", + "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", + "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", @@ -29,21 +32,18 @@ "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", - "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", - "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", - "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", "Cancel" : "بىكار قىلىش", "Delete" : "ئۆچۈر", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Default" : "سۈكۈتتىكى", "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", "Edit" : "تەھرىر", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", - "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", @@ -60,21 +60,10 @@ "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Additional options" : "قوشۇمچە تاللاشلار", "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", - "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", - "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", "Register Daemon" : "Daemon نى تىزىملىتىڭ", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", - "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", - "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", - "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", - "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", - "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", - "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", "Image pull" : "رەسىم تارتىش", @@ -90,6 +79,30 @@ "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", + "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", + "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", + "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", + "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", + "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", + "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", + "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", + "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", + "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", @@ -107,7 +120,6 @@ "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", "Network" : "تور", "Docker network name" : "Docker تور ئىسمى", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", "Additional option" : "قوشۇمچە تاللاش", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", @@ -119,19 +131,8 @@ "Save" : "ساقلا", "Register" : "تىزىملىتىڭ", "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", - "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", - "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", - "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", - "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", - "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", - "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", - "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", + "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", "Remove" : "ئۆچۈرۈڭ", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", @@ -145,7 +146,6 @@ "Admin documentation" : "باشقۇرۇش ھۆججىتى", "Developer documentation" : "ئاچقۇچىلار ھۆججىتى", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore غا تىزىملاتمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", - "{license}-licensed" : "لىك {license}", "This app is supported via your current Nextcloud subscription." : "بۇ ئەپ نۆۋەتتىكى Nextcloud مۇشتەرىلىكىڭىز ئارقىلىق قوللىنىدۇ.", "Supported" : "قوللىدى", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ئالاھىدە ئەپلەر جەمئىيەت تەرىپىدىن ۋە تەرەققىي قىلدۇرۇلغان. ئۇلار مەركىزى ئىقتىدار بىلەن تەمىنلەيدۇ ھەمدە ئىشلەپچىقىرىشقا تەييار.", @@ -163,11 +163,11 @@ "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", "Details" : "تەپسىلاتى", "Changelog" : "Changelog", - "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Active apps" : "ئاكتىپ ئەپلەر", "Disabled apps" : "چەكلەنگەن ئەپلەر", "Updates" : "يېڭىلانمىلار", diff --git a/l10n/uk.js b/l10n/uk.js index 601d2f2e..96097b59 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -13,6 +13,7 @@ OC.L10N.register( "Save" : "Зберегти", "Register" : "Зареєструватися", "External Apps" : "Зовнішні застосунки", + "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", "Remove" : "Вилучити", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Цей застосунок не має обмежень щодо мінімальної версії Nextcloud. В майбутньому це може викликати певні помилки.", @@ -24,7 +25,6 @@ OC.L10N.register( "User documentation" : "Користувацька документація", "Admin documentation" : "Документація адміністратора", "Developer documentation" : "Документація для розробника", - "{license}-licensed" : "Ліцензія: {license}", "This app is supported via your current Nextcloud subscription." : "Підтримка застосунку через вашу поточну передплату Nextcloud.", "Supported" : "Підтримано", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Функціональні застосунки розробляються спільнотою. Вони пропонують основну функціональність і готові до використання у продуктовому середовищі.", @@ -38,11 +38,11 @@ OC.L10N.register( "Results from other categories" : "Результати з інших категорій", "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", + "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", "Details" : "Деталі", "Changelog" : "Зміни", - "by {author}\n{license}" : "Автор: {author}\n{license}", "Active apps" : "Активні застосунки", "Disabled apps" : "Неактивні застосунки", "Updates" : "Оновлення", diff --git a/l10n/uk.json b/l10n/uk.json index 7992343c..a594b80e 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -11,6 +11,7 @@ "Save" : "Зберегти", "Register" : "Зареєструватися", "External Apps" : "Зовнішні застосунки", + "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", "Remove" : "Вилучити", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Цей застосунок не має обмежень щодо мінімальної версії Nextcloud. В майбутньому це може викликати певні помилки.", @@ -22,7 +23,6 @@ "User documentation" : "Користувацька документація", "Admin documentation" : "Документація адміністратора", "Developer documentation" : "Документація для розробника", - "{license}-licensed" : "Ліцензія: {license}", "This app is supported via your current Nextcloud subscription." : "Підтримка застосунку через вашу поточну передплату Nextcloud.", "Supported" : "Підтримано", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Функціональні застосунки розробляються спільнотою. Вони пропонують основну функціональність і готові до використання у продуктовому середовищі.", @@ -36,11 +36,11 @@ "Results from other categories" : "Результати з інших категорій", "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", + "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", "Details" : "Деталі", "Changelog" : "Зміни", - "by {author}\n{license}" : "Автор: {author}\n{license}", "Active apps" : "Активні застосунки", "Disabled apps" : "Неактивні застосунки", "Updates" : "Оновлення", diff --git a/l10n/vi.js b/l10n/vi.js index 3285e7cc..c1794e30 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -11,6 +11,7 @@ OC.L10N.register( "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", + "{license}-licensed" : "{license}-được cấp phép", "Update to {version}" : "Cập nhật tới {version}", "Remove" : "Xoá", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối thiểu được chỉ định. Đây sẽ là một lỗi trong tương lai.", @@ -22,7 +23,6 @@ OC.L10N.register( "User documentation" : "Tài liệu người dùng", "Admin documentation" : "Tài liệu quản trị", "Developer documentation" : "Tài liệu dành cho nhà phát triển", - "{license}-licensed" : "{license}-được cấp phép", "This app is supported via your current Nextcloud subscription." : "Ứng dụng này được hỗ trợ thông qua thuê bao Nextcloud hiện tại của bạn.", "Supported" : "Đã hỗ trợ", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Các ứng dụng nổi bật được phát triển bởi và trong cộng đồng. Chúng cung cấp chức năng trung tâm và sẵn sàng để sử dụng trong sản xuất.", @@ -35,11 +35,11 @@ OC.L10N.register( "Results from other categories" : "Kết quả từ các danh mục khác", "_Update_::_Update all_" : ["Cập nhật tất cả"], "Type" : "Loại", + "by {author}\n{license}" : "bởi {tác giả}{giấy phép}", "Your apps" : "Ứng dụng của bạn", "Documentation" : "Tài liệu", "Details" : "Chi tiết", "Changelog" : "Sổ cập nhập thay đổi", - "by {author}\n{license}" : "bởi {tác giả}{giấy phép}", "Active apps" : "Ứng dụng kích hoạt", "Disabled apps" : "Ứng dụng vô hiệu hóa", "Updates" : "Cập nhật", diff --git a/l10n/vi.json b/l10n/vi.json index 24b7b0fc..6accba02 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -9,6 +9,7 @@ "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", + "{license}-licensed" : "{license}-được cấp phép", "Update to {version}" : "Cập nhật tới {version}", "Remove" : "Xoá", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối thiểu được chỉ định. Đây sẽ là một lỗi trong tương lai.", @@ -20,7 +21,6 @@ "User documentation" : "Tài liệu người dùng", "Admin documentation" : "Tài liệu quản trị", "Developer documentation" : "Tài liệu dành cho nhà phát triển", - "{license}-licensed" : "{license}-được cấp phép", "This app is supported via your current Nextcloud subscription." : "Ứng dụng này được hỗ trợ thông qua thuê bao Nextcloud hiện tại của bạn.", "Supported" : "Đã hỗ trợ", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Các ứng dụng nổi bật được phát triển bởi và trong cộng đồng. Chúng cung cấp chức năng trung tâm và sẵn sàng để sử dụng trong sản xuất.", @@ -33,11 +33,11 @@ "Results from other categories" : "Kết quả từ các danh mục khác", "_Update_::_Update all_" : ["Cập nhật tất cả"], "Type" : "Loại", + "by {author}\n{license}" : "bởi {tác giả}{giấy phép}", "Your apps" : "Ứng dụng của bạn", "Documentation" : "Tài liệu", "Details" : "Chi tiết", "Changelog" : "Sổ cập nhập thay đổi", - "by {author}\n{license}" : "bởi {tác giả}{giấy phép}", "Active apps" : "Ứng dụng kích hoạt", "Disabled apps" : "Ứng dụng vô hiệu hóa", "Updates" : "Cập nhật", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 1c68eab6..bdd22548 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -12,6 +12,9 @@ OC.L10N.register( "AI Integration Team" : "AI 集成团队", "ExApps Settings" : "外部应用设置", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "外部应用管理", + "Admin options saved" : "已保存管理员选项", + "Failed to save admin options" : "保存管理员选项失败", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", "Deploy Daemons" : "部署守护进程", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", @@ -22,9 +25,6 @@ OC.L10N.register( "ExApp container restart policy" : "外部应用容器重启策略", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", - "External Apps management" : "外部应用管理", - "Admin options saved" : "已保存管理员选项", - "Failed to save admin options" : "保存管理员选项失败", "Cancel" : "取消", "Delete" : "删除", "Default" : "默认", @@ -48,6 +48,7 @@ OC.L10N.register( "Save" : "保存", "Register" : "注册", "External Apps" : "外部应用", + "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", "Remove" : "移除", "Delete data on remove" : "移除时删除数据", @@ -60,7 +61,6 @@ OC.L10N.register( "User documentation" : "用户文档", "Admin documentation" : "管理员文档", "Developer documentation" : "开发者文档", - "{license}-licensed" : "{license}-许可协议", "This app is supported via your current Nextcloud subscription." : "根据你当前的 Nextcloud 订阅,此应用受到支持。", "Supported" : "受支持", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "特色应用由社区并在社区内开发。 它们提供了中心功能,并准备投入生产使用。", @@ -76,11 +76,11 @@ OC.L10N.register( "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", + "by {author}\n{license}" : "按照 {author}\n{license}", "Your apps" : "您的应用", "Documentation" : "文档", "Details" : "详情", "Changelog" : "更新日志", - "by {author}\n{license}" : "按照 {author}\n{license}", "Active apps" : "已启用的应用", "Disabled apps" : "已禁用的应用", "Updates" : "更新", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index aa0d40d3..13a5217d 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -10,6 +10,9 @@ "AI Integration Team" : "AI 集成团队", "ExApps Settings" : "外部应用设置", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "External Apps management" : "外部应用管理", + "Admin options saved" : "已保存管理员选项", + "Failed to save admin options" : "保存管理员选项失败", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", "Deploy Daemons" : "部署守护进程", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", @@ -20,9 +23,6 @@ "ExApp container restart policy" : "外部应用容器重启策略", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", - "External Apps management" : "外部应用管理", - "Admin options saved" : "已保存管理员选项", - "Failed to save admin options" : "保存管理员选项失败", "Cancel" : "取消", "Delete" : "删除", "Default" : "默认", @@ -46,6 +46,7 @@ "Save" : "保存", "Register" : "注册", "External Apps" : "外部应用", + "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", "Remove" : "移除", "Delete data on remove" : "移除时删除数据", @@ -58,7 +59,6 @@ "User documentation" : "用户文档", "Admin documentation" : "管理员文档", "Developer documentation" : "开发者文档", - "{license}-licensed" : "{license}-许可协议", "This app is supported via your current Nextcloud subscription." : "根据你当前的 Nextcloud 订阅,此应用受到支持。", "Supported" : "受支持", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "特色应用由社区并在社区内开发。 它们提供了中心功能,并准备投入生产使用。", @@ -74,11 +74,11 @@ "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", + "by {author}\n{license}" : "按照 {author}\n{license}", "Your apps" : "您的应用", "Documentation" : "文档", "Details" : "详情", "Changelog" : "更新日志", - "by {author}\n{license}" : "按照 {author}\n{license}", "Active apps" : "已启用的应用", "Disabled apps" : "已禁用的应用", "Updates" : "更新", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index ee02f739..e7ccfc72 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "應用程式設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "External Apps management" : "外部應用程式管理", + "Admin options saved" : "已儲存管理選項", + "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "外部應用程式容器重新啟動政策", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保外部應用程式在幕後程式伺服器重新啟動後執行", "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "External Apps management" : "外部應用程式管理", - "Admin options saved" : "已儲存管理選項", - "Failed to save admin options" : "儲存管理選項失敗", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", "Cancel" : "取消", "Delete" : "刪除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Password confirmation failed" : "密碼確認失敗", "Default" : "默認", "Set as default" : "設定為默認值", "Test deploy" : "測試部署", "Edit" : "編輯", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", - "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "計算裝置", "Additional options" : "附加選項", "Verify connection" : "驗證連線", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", "No Deploy daemons configured" : "未設定部署幕後程式", "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", "Register Daemon" : "註冊幕後程式", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資料", - "Download ExApp logs" : "下載 ExApp 記錄", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "僅當 ExApp 容器已預設時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資料", + "Download ExApp logs" : "下載 ExApp 記錄", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", + "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", + "DaemonConfig successfully updated" : "DaemonConfig 成功更新", + "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "隱藏部署設定", "Network" : "網絡", "Docker network name" : "Docker 網路名字", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "保存", "Register" : "註冊", "Check connection" : "檢查連線", - "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", - "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", - "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", - "DaemonConfig successfully updated" : "DaemonConfig 成功更新", - "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", + "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "管理員使用手冊", "Developer documentation" : "開發人員使用手冊", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", "Supported" : "支援", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "類型", "Display Name" : "顯示名稱", "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", + "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "說明書", "Details" : "細節", "Changelog" : "更新紀錄", - "by {author}\n{license}" : "作者為 {author}\n{license}", "Active apps" : "已啟用應用程式", "Disabled apps" : "已停用應用程式", "Updates" : "更新", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 65bb655f..c9dc7d4d 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -20,6 +20,9 @@ "ExApps Settings" : "應用程式設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "External Apps management" : "外部應用程式管理", + "Admin options saved" : "已儲存管理選項", + "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "外部應用程式容器重新啟動政策", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保外部應用程式在幕後程式伺服器重新啟動後執行", "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "External Apps management" : "外部應用程式管理", - "Admin options saved" : "已儲存管理選項", - "Failed to save admin options" : "儲存管理選項失敗", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", "Cancel" : "取消", "Delete" : "刪除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Password confirmation failed" : "密碼確認失敗", "Default" : "默認", "Set as default" : "設定為默認值", "Test deploy" : "測試部署", "Edit" : "編輯", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", - "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -62,21 +62,10 @@ "Compute device" : "計算裝置", "Additional options" : "附加選項", "Verify connection" : "驗證連線", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", "No Deploy daemons configured" : "未設定部署幕後程式", "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", "Register Daemon" : "註冊幕後程式", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資料", - "Download ExApp logs" : "下載 ExApp 記錄", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "僅當 ExApp 容器已預設時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資料", + "Download ExApp logs" : "下載 ExApp 記錄", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", + "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", + "DaemonConfig successfully updated" : "DaemonConfig 成功更新", + "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", @@ -109,7 +122,6 @@ "Hide deploy config" : "隱藏部署設定", "Network" : "網絡", "Docker network name" : "Docker 網路名字", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", @@ -121,20 +133,9 @@ "Save" : "保存", "Register" : "註冊", "Check connection" : "檢查連線", - "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", - "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", - "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", - "DaemonConfig successfully updated" : "DaemonConfig 成功更新", - "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", + "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", @@ -148,7 +149,6 @@ "Admin documentation" : "管理員使用手冊", "Developer documentation" : "開發人員使用手冊", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", "Supported" : "支援", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", @@ -168,11 +168,11 @@ "Type" : "類型", "Display Name" : "顯示名稱", "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", + "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "說明書", "Details" : "細節", "Changelog" : "更新紀錄", - "by {author}\n{license}" : "作者為 {author}\n{license}", "Active apps" : "已啟用應用程式", "Disabled apps" : "已停用應用程式", "Updates" : "更新", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 5cd15a26..5619ed4d 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -22,6 +22,9 @@ OC.L10N.register( "ExApps Settings" : "ExApp 設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "External Apps management" : "外部應用程式管理", + "Admin options saved" : "已儲存管理選項", + "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", @@ -33,21 +36,18 @@ OC.L10N.register( "ExApp container restart policy" : "ExApp 容器重新啟動政策", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保 ExApp 在幕後程式伺服器重新啟動後執行", "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "External Apps management" : "外部應用程式管理", - "Admin options saved" : "已儲存管理選項", - "Failed to save admin options" : "儲存管理選項失敗", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", "Cancel" : "取消", "Delete" : "刪除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Password confirmation failed" : "密碼確認失敗", "Default" : "預設", "Set as default" : "設定為預設值", "Test deploy" : "測試部署", "Edit" : "編輯", - "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", - "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其上", @@ -64,21 +64,10 @@ OC.L10N.register( "Compute device" : "計算裝置", "Additional options" : "其他選項", "Verify connection" : "驗證連線", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", "No Deploy daemons configured" : "未設定部署幕後程式", "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", "Register Daemon" : "註冊幕後程式", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資訊", - "Download ExApp logs" : "下載 ExApp 紀錄檔", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -94,6 +83,30 @@ OC.L10N.register( "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資訊", + "Download ExApp logs" : "下載 ExApp 紀錄檔", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Hostname to access ExApps" : "用來存取 ExApp 的主機名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", + "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", + "DaemonConfig successfully updated" : "DaemonConfig 成功更新", + "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", @@ -111,7 +124,6 @@ OC.L10N.register( "Hide deploy config" : "隱藏部署設定", "Network" : "網路", "Docker network name" : "Docker 網路名稱", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", @@ -123,20 +135,9 @@ OC.L10N.register( "Save" : "儲存", "Register" : "註冊", "Check connection" : "檢查連線", - "Hostname to access ExApps" : "用來存取 ExApp 的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", - "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", - "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", - "DaemonConfig successfully updated" : "DaemonConfig 成功更新", - "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", @@ -150,7 +151,6 @@ OC.L10N.register( "Admin documentation" : "管理員說明文件", "Developer documentation" : "開發者說明文件", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", "Supported" : "支援", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", @@ -170,11 +170,11 @@ OC.L10N.register( "Type" : "類型", "Display Name" : "顯示名稱", "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", + "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "文件", "Details" : "詳細資訊", "Changelog" : "變更紀錄", - "by {author}\n{license}" : "作者為 {author}\n{license}", "Active apps" : "已啟用應用程式", "Disabled apps" : "已停用應用程式", "Updates" : "更新", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 1f14b854..853effdd 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -20,6 +20,9 @@ "ExApps Settings" : "ExApp 設定", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "External Apps management" : "外部應用程式管理", + "Admin options saved" : "已儲存管理選項", + "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", @@ -31,21 +34,18 @@ "ExApp container restart policy" : "ExApp 容器重新啟動政策", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保 ExApp 在幕後程式伺服器重新啟動後執行", "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "External Apps management" : "外部應用程式管理", - "Admin options saved" : "已儲存管理選項", - "Failed to save admin options" : "儲存管理選項失敗", "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", "Cancel" : "取消", "Delete" : "刪除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Password confirmation failed" : "密碼確認失敗", "Default" : "預設", "Set as default" : "設定為預設值", "Test deploy" : "測試部署", "Edit" : "編輯", - "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", - "Password confirmation failed" : "密碼確認失敗", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其上", @@ -62,21 +62,10 @@ "Compute device" : "計算裝置", "Additional options" : "其他選項", "Verify connection" : "驗證連線", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", "No Deploy daemons configured" : "未設定部署幕後程式", "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", "Register Daemon" : "註冊幕後程式", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資訊", - "Download ExApp logs" : "下載 ExApp 紀錄檔", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -92,6 +81,30 @@ "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資訊", + "Download ExApp logs" : "下載 ExApp 紀錄檔", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Hostname to access ExApps" : "用來存取 ExApp 的主機名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", + "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", + "DaemonConfig successfully updated" : "DaemonConfig 成功更新", + "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", @@ -109,7 +122,6 @@ "Hide deploy config" : "隱藏部署設定", "Network" : "網路", "Docker network name" : "Docker 網路名稱", - "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", @@ -121,20 +133,9 @@ "Save" : "儲存", "Register" : "註冊", "Check connection" : "檢查連線", - "Hostname to access ExApps" : "用來存取 ExApp 的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", - "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", - "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", - "DaemonConfig successfully updated" : "DaemonConfig 成功更新", - "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", @@ -148,7 +149,6 @@ "Admin documentation" : "管理員說明文件", "Developer documentation" : "開發者說明文件", "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未在 AppStore 註冊。無可用的額外資訊。僅允許啟用/停用與移除動作。", - "{license}-licensed" : "以 {license} 授權", "This app is supported via your current Nextcloud subscription." : "您目前的 Nextcloud 訂閱支援此應用程式。", "Supported" : "支援", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "精選應用程式是由社群開發的。它們提供了相當重要的功能,並已準備好在正式環境使用。", @@ -168,11 +168,11 @@ "Type" : "類型", "Display Name" : "顯示名稱", "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", + "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "文件", "Details" : "詳細資訊", "Changelog" : "變更紀錄", - "by {author}\n{license}" : "作者為 {author}\n{license}", "Active apps" : "已啟用應用程式", "Disabled apps" : "已停用應用程式", "Updates" : "更新", From b212de480c2c5f8a47d5e044e375cfb21c2f7a0c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 2 Mar 2025 00:29:56 +0000 Subject: [PATCH 090/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_PT.js | 1 + l10n/pt_PT.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index af15ca45..45c3757c 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -39,6 +39,7 @@ OC.L10N.register( "Changelog" : "Registo de alterações", "Disabled apps" : "Apps desativadas", "Updates" : "Atualizações", + "Featured apps" : "Aplicações principais", "Enable" : "Ativar", "Disable" : "Desativar" }, diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 0f6fa287..6da3d37a 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -37,6 +37,7 @@ "Changelog" : "Registo de alterações", "Disabled apps" : "Apps desativadas", "Updates" : "Atualizações", + "Featured apps" : "Aplicações principais", "Enable" : "Ativar", "Disable" : "Desativar" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" From e4999b7b34a49173a5560c7f7a2eddb3d837d95c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 3 Mar 2025 00:30:04 +0000 Subject: [PATCH 091/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/el.js | 1 + l10n/el.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/el.js b/l10n/el.js index 4516d4e4..fac97457 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Ακύρωση", "Delete" : "Διαγραφή", + "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", "Edit" : "Επεξεργασία", "Name" : "Όνομα", diff --git a/l10n/el.json b/l10n/el.json index 8d1e6580..0efe1df7 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Ακύρωση", "Delete" : "Διαγραφή", + "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", "Edit" : "Επεξεργασία", "Name" : "Όνομα", From 4c694e8c16c146a3819200fc8e093da191289f1f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 4 Mar 2025 00:31:22 +0000 Subject: [PATCH 092/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ca.js | 1 + l10n/ca.json | 1 + l10n/hu.js | 1 + l10n/hu.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/ca.js b/l10n/ca.js index 43105e10..3a08d934 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -27,6 +27,7 @@ OC.L10N.register( "Confirm" : "Confirma", "Save" : "Desar", "Register" : "Registra", + "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", diff --git a/l10n/ca.json b/l10n/ca.json index 2eddc514..9658c46b 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -25,6 +25,7 @@ "Confirm" : "Confirma", "Save" : "Desar", "Register" : "Registra", + "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", diff --git a/l10n/hu.js b/l10n/hu.js index efb5bd73..e9ad6b63 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Mégse", "Delete" : "Törlés", + "Password confirmation failed" : "A jelszó megerősítése nem sikerült", "Default" : "Alapértelmezett", "Edit" : "Szerkesztés", "Name" : "Név", diff --git a/l10n/hu.json b/l10n/hu.json index 5b82dfcd..fa6039b0 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Mégse", "Delete" : "Törlés", + "Password confirmation failed" : "A jelszó megerősítése nem sikerült", "Default" : "Alapértelmezett", "Edit" : "Szerkesztés", "Name" : "Név", From 0d6e2e594c914381ee566af21d1ad020d141cffb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 6 Mar 2025 00:30:47 +0000 Subject: [PATCH 093/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/da.json | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/el.js | 10 ++++ l10n/el.json | 10 ++++ 4 files changed, 284 insertions(+), 2 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index 2ce50e07..bae94905 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -1,24 +1,142 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Daemon config ikke fundet", + "Error starting install of ExApp" : "Fejl under opstart af installation af ExApp", + "ExApp failed to register, check the NC logs" : "ExApp kunne ikke registrere. kontroller NC logs'ene", + "ExApp not found, failed to get status" : "ExApp ikke fundet. Kunne ikke hente status", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke installeret fra AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", + "Could not perform installation of ExApp" : "Kunne ikke udføre installation af ExApp", + "Failed to enable ExApp" : "Kunne ikke aktivere ExApp", + "Failed to disable ExApp" : "Kunne ikke deaktivere ExApp", + "Could not update ExApp" : "Kunne ikke opdatere ExApp", + "Error starting update of ExApp" : "Fejl under opstart af opdatering af ExApp", + "Could not perform update of ExApp" : "Kunne ikke udføre opdatering af ExApp", + "ExApp not found, failed to get logs" : "ExApp ikke fundet. Kunne ikke hente logs", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kunne ikke hente beholder logs. Bemærk: Download af Docker beholder, virker kun for beholdere med json-fil eller journald logging driver. Fejl: %s", + "ExApp not found, failed to get deploy options" : "ExApp ikke fundet. Kunne ikke hente udgivelsesindstillinger", + "AppAPI authentication failed" : "AppAPI godkendelse fejlede", + "AppAPI ExApp notifier" : "AppAPI ExApp underretter", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI integrationsteam", + "ExApps Settings" : "ExApps indstillinger", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udgivelse of styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "External Apps management" : "Styring af eksterne apps", + "Admin options saved" : "Adminindstillinger gemt", + "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", + "Deploy Daemons" : "Udgivelses daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemoner. Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udgivelses daemon er ikke tilgængelig. Verificer venligst dets konfiguration", + "ExApp init timeout (minutes)" : "ExApp init timeout (minutter)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialiseringsproces timeout efter hvilken AppAPI vil markere den som fejlet", + "ExApp init timeout" : "ExApp init timeout", + "ExApp container restart policy" : "ExApp beholder genstartspolitik", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", + "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udgivelses Daemon", + "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", + "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", "Cancel" : "Annuller", "Delete" : "Slet", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udgivelses Daemon kan ikke sættes som standard", + "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", + "Set as default" : "Angiv som standard", + "Test deploy" : "Test udgivelse", "Edit" : "Rediger", + "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", + "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", + "ExApps installed" : "ExApps installeret", "Name" : "Navn", + "Protocol" : "Protokol", "Host" : "Vært", + "Deploy config" : "Udgivelses config", + "Docker network" : "Docker netværk", + "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxy adgangskode", "GPUs support" : "GPUs support", "Compute device" : "Beregningsenhed", + "Additional options" : "Yderligere indstillinger", + "Verify connection" : "Verificer forbindelse", + "Registered Deploy daemons list" : "Liste over registrerede udgivelses daemoner", + "No Deploy daemons configured" : "Ingen udgivelses daemoner konfigureret", + "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", + "Register Daemon" : "Registrer daemon", + "Register ExApp in Nextcloud" : "Registrer ExApp in Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udgivelse", + "Image pull" : "Billede pull", + "Check if the image is successfully pulled" : "kontroller om billedet er blevet trukket", + "Container started" : "Beholder startet", + "Check if the image successfully pulled and container is created and started" : "Kontroller om billedet er blevet trukket og beholderen er oprettet og startet", + "Heartbeat" : "Hjerteslag", + "Check for the heartbeat is finished and healthy" : "Kontroller om hjerteslaget er færdigt og sundt", + "Init step" : "Init trin", + "Wait for initialization step to finish" : "Vent på at initialiseringstrin færdiggøres", "Enabled" : "Aktiveret", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "kontroller om ExApp håndterede den aktiverede begivenhed og registrerede alt korrekt", + "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", + "Deploy test passed successfully!" : "Udgivelsestest gennemført!", + "Deploy test failed at step \"{step}\"" : "Udgivelsestest fejlede ved trin \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at Daemon er konfigureret korrekt og udgivelsestrin kører.", + "The following Deploy test checks must be passed to succeed:" : "De følgende udgivelsestest kontrol skal gennemføres for succes:", + "More info" : "Mere info", + "Download ExApp logs" : "Download ExApp logs", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start udgivelsestest", + "Stop Deploy test" : "Stop udgivelsestest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", + "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", + "DaemonConfig successfully registered" : "DaemonConfig registreret", + "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", + "DaemonConfig successfully updated" : "DaemonConfig opdateret", + "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", + "Daemon connection successful" : "Daemon forbundet", + "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", + "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", + "Edit Deploy Daemon" : "Rediger udgivelsesdaemon", + "Register Deploy Daemon" : "Registrer udgivelsesdaemon", + "Daemon configuration template" : "Daemon konfigurationsskabelon", + "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", + "Daemon registration form" : "Daemon registreringsformular", + "Unique Deploy Daemon Name" : "Unik udgivelsesdaemon navn", "Display name" : "Vist navn", + "Deployment method" : "Udgivelsesmetode", + "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", + "Daemon host" : "Daemon host", + "Set daemon as default" : "Angiv daemon som standardas default", + "Set as default daemon" : "Angiv som standard daemon", + "Enable https" : "Aktiver https", + "Show deploy config" : "Vis udgivelseskonfiguration", + "Hide deploy config" : "Skjul udgivelseskonfiguration", "Network" : "Netværk", + "Docker network name" : "Docker ventværksnavn", + "Additional option" : "Yderligere mulighed", + "Add additional option" : "Tilføj yderligere mulighed", + "Option key (unique)" : "Mulighedsnøgle (unik)", + "Option key (unique, e.g. my_key)" : "Mulighedsnøgle (unik, fx my_key)", + "Option key is required" : "Mulighedsnøgle er krævet", + "Option value" : "Mulighedsværdi", + "Option value is required" : "Mulighedsværdi er krævet", "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Register", "Check connection" : "Kontroller forbindelsen", + "External Apps" : "Eksterne apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", @@ -32,11 +150,13 @@ OC.L10N.register( "User documentation" : "Bruger-dokumentation", "Admin documentation" : "Admin-dokumentation", "Developer documentation" : "Udvikler-dokumentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke registreret i AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", "This app is supported via your current Nextcloud subscription." : "Denne app understøttes via dit nuværende Nextcloud-abonnement.", "Supported" : "Understøttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", + "All ExApps are up-to-date." : "Alle ExApps er opdaterede.", "Default Deploy daemon is not accessible" : "Standard Deploy daemon er ikke tilgængelig", "Icon" : "Ikon", "Version" : "Version", @@ -44,9 +164,12 @@ OC.L10N.register( "Level" : "Niveau", "Actions" : "Handlinger", "Results from other categories" : "Resultater fra andre kategorier", + "No apps found" : "Ingen apps fundet", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en tilgængelig opdatering","%n apps har tilgængelige opdateringer"], "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", + "With https enabled network is set to host" : "Med https aktiveret, så er netværk sat til host", "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", @@ -57,13 +180,21 @@ OC.L10N.register( "Updates" : "Opdateringer", "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", + "manual-install apps cannot be updated" : "manual-install apps kan ikke opdateres", + "{progress}% Deploying" : "{progress}% udgiver", + "{progress}% Initializing" : "{progress}% initialiserer", + "Healthchecking" : "Sunhedskontrollerer", "Deploy and Enable" : "Implementer og aktiver", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", + "Default Deploy daemon is not accessible. Please verify configuration" : "Standard udgivelsesdaemon er ikke tilgængelig. Verificer venligst konfigurationen", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "App'en vil blive downloadet fra App Store og udgivet på standard udgivelsesdaemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", + "Your ExApps" : "Dine ExApps", "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", "The app has been enabled but needs to be updated." : "App'en er blevet aktiveret, men skal opdateres.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil" + "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n\n### Liste over applikationer som kræver AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index c4670727..58c7f418 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,22 +1,140 @@ { "translations": { + "Daemon config not found" : "Daemon config ikke fundet", + "Error starting install of ExApp" : "Fejl under opstart af installation af ExApp", + "ExApp failed to register, check the NC logs" : "ExApp kunne ikke registrere. kontroller NC logs'ene", + "ExApp not found, failed to get status" : "ExApp ikke fundet. Kunne ikke hente status", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke installeret fra AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", + "Could not perform installation of ExApp" : "Kunne ikke udføre installation af ExApp", + "Failed to enable ExApp" : "Kunne ikke aktivere ExApp", + "Failed to disable ExApp" : "Kunne ikke deaktivere ExApp", + "Could not update ExApp" : "Kunne ikke opdatere ExApp", + "Error starting update of ExApp" : "Fejl under opstart af opdatering af ExApp", + "Could not perform update of ExApp" : "Kunne ikke udføre opdatering af ExApp", + "ExApp not found, failed to get logs" : "ExApp ikke fundet. Kunne ikke hente logs", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kunne ikke hente beholder logs. Bemærk: Download af Docker beholder, virker kun for beholdere med json-fil eller journald logging driver. Fejl: %s", + "ExApp not found, failed to get deploy options" : "ExApp ikke fundet. Kunne ikke hente udgivelsesindstillinger", + "AppAPI authentication failed" : "AppAPI godkendelse fejlede", + "AppAPI ExApp notifier" : "AppAPI ExApp underretter", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI integrationsteam", + "ExApps Settings" : "ExApps indstillinger", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udgivelse of styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "External Apps management" : "Styring af eksterne apps", + "Admin options saved" : "Adminindstillinger gemt", + "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", + "Deploy Daemons" : "Udgivelses daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemoner. Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udgivelses daemon er ikke tilgængelig. Verificer venligst dets konfiguration", + "ExApp init timeout (minutes)" : "ExApp init timeout (minutter)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialiseringsproces timeout efter hvilken AppAPI vil markere den som fejlet", + "ExApp init timeout" : "ExApp init timeout", + "ExApp container restart policy" : "ExApp beholder genstartspolitik", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", + "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udgivelses Daemon", + "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", + "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", "Cancel" : "Annuller", "Delete" : "Slet", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udgivelses Daemon kan ikke sættes som standard", + "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", + "Set as default" : "Angiv som standard", + "Test deploy" : "Test udgivelse", "Edit" : "Rediger", + "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", + "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", + "ExApps installed" : "ExApps installeret", "Name" : "Navn", + "Protocol" : "Protokol", "Host" : "Vært", + "Deploy config" : "Udgivelses config", + "Docker network" : "Docker netværk", + "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxy adgangskode", "GPUs support" : "GPUs support", "Compute device" : "Beregningsenhed", + "Additional options" : "Yderligere indstillinger", + "Verify connection" : "Verificer forbindelse", + "Registered Deploy daemons list" : "Liste over registrerede udgivelses daemoner", + "No Deploy daemons configured" : "Ingen udgivelses daemoner konfigureret", + "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", + "Register Daemon" : "Registrer daemon", + "Register ExApp in Nextcloud" : "Registrer ExApp in Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udgivelse", + "Image pull" : "Billede pull", + "Check if the image is successfully pulled" : "kontroller om billedet er blevet trukket", + "Container started" : "Beholder startet", + "Check if the image successfully pulled and container is created and started" : "Kontroller om billedet er blevet trukket og beholderen er oprettet og startet", + "Heartbeat" : "Hjerteslag", + "Check for the heartbeat is finished and healthy" : "Kontroller om hjerteslaget er færdigt og sundt", + "Init step" : "Init trin", + "Wait for initialization step to finish" : "Vent på at initialiseringstrin færdiggøres", "Enabled" : "Aktiveret", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "kontroller om ExApp håndterede den aktiverede begivenhed og registrerede alt korrekt", + "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", + "Deploy test passed successfully!" : "Udgivelsestest gennemført!", + "Deploy test failed at step \"{step}\"" : "Udgivelsestest fejlede ved trin \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at Daemon er konfigureret korrekt og udgivelsestrin kører.", + "The following Deploy test checks must be passed to succeed:" : "De følgende udgivelsestest kontrol skal gennemføres for succes:", + "More info" : "Mere info", + "Download ExApp logs" : "Download ExApp logs", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start udgivelsestest", + "Stop Deploy test" : "Stop udgivelsestest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", + "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", + "DaemonConfig successfully registered" : "DaemonConfig registreret", + "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", + "DaemonConfig successfully updated" : "DaemonConfig opdateret", + "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", + "Daemon connection successful" : "Daemon forbundet", + "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", + "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", + "Edit Deploy Daemon" : "Rediger udgivelsesdaemon", + "Register Deploy Daemon" : "Registrer udgivelsesdaemon", + "Daemon configuration template" : "Daemon konfigurationsskabelon", + "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", + "Daemon registration form" : "Daemon registreringsformular", + "Unique Deploy Daemon Name" : "Unik udgivelsesdaemon navn", "Display name" : "Vist navn", + "Deployment method" : "Udgivelsesmetode", + "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", + "Daemon host" : "Daemon host", + "Set daemon as default" : "Angiv daemon som standardas default", + "Set as default daemon" : "Angiv som standard daemon", + "Enable https" : "Aktiver https", + "Show deploy config" : "Vis udgivelseskonfiguration", + "Hide deploy config" : "Skjul udgivelseskonfiguration", "Network" : "Netværk", + "Docker network name" : "Docker ventværksnavn", + "Additional option" : "Yderligere mulighed", + "Add additional option" : "Tilføj yderligere mulighed", + "Option key (unique)" : "Mulighedsnøgle (unik)", + "Option key (unique, e.g. my_key)" : "Mulighedsnøgle (unik, fx my_key)", + "Option key is required" : "Mulighedsnøgle er krævet", + "Option value" : "Mulighedsværdi", + "Option value is required" : "Mulighedsværdi er krævet", "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Register", "Check connection" : "Kontroller forbindelsen", + "External Apps" : "Eksterne apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Remove" : "Fjern", @@ -30,11 +148,13 @@ "User documentation" : "Bruger-dokumentation", "Admin documentation" : "Admin-dokumentation", "Developer documentation" : "Udvikler-dokumentation", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke registreret i AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", "This app is supported via your current Nextcloud subscription." : "Denne app understøttes via dit nuværende Nextcloud-abonnement.", "Supported" : "Understøttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", + "All ExApps are up-to-date." : "Alle ExApps er opdaterede.", "Default Deploy daemon is not accessible" : "Standard Deploy daemon er ikke tilgængelig", "Icon" : "Ikon", "Version" : "Version", @@ -42,9 +162,12 @@ "Level" : "Niveau", "Actions" : "Handlinger", "Results from other categories" : "Resultater fra andre kategorier", + "No apps found" : "Ingen apps fundet", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en tilgængelig opdatering","%n apps har tilgængelige opdateringer"], "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", + "With https enabled network is set to host" : "Med https aktiveret, så er netværk sat til host", "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", @@ -55,13 +178,21 @@ "Updates" : "Opdateringer", "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", + "manual-install apps cannot be updated" : "manual-install apps kan ikke opdateres", + "{progress}% Deploying" : "{progress}% udgiver", + "{progress}% Initializing" : "{progress}% initialiserer", + "Healthchecking" : "Sunhedskontrollerer", "Deploy and Enable" : "Implementer og aktiver", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", + "Default Deploy daemon is not accessible. Please verify configuration" : "Standard udgivelsesdaemon er ikke tilgængelig. Verificer venligst konfigurationen", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "App'en vil blive downloadet fra App Store og udgivet på standard udgivelsesdaemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", + "Your ExApps" : "Dine ExApps", "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", "The app has been enabled but needs to be updated." : "App'en er blevet aktiveret, men skal opdateres.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil" + "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n\n### Liste over applikationer som kræver AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/el.js b/l10n/el.js index fac97457..f45b61f7 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -6,9 +6,12 @@ OC.L10N.register( "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", "Edit" : "Επεξεργασία", + "Deploy Daemon" : "Υπηρεσία Ανάπτυξης", "Name" : "Όνομα", "Host" : "Διακομιστής", "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", + "GPUs support" : "Υποστήριξη GPUs", + "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", "Network" : "Δίκτυο", "Confirm" : "Επιβεβαίωση", @@ -17,6 +20,7 @@ OC.L10N.register( "{license}-licensed" : "{license}-αδειοδοτημένο", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Remove" : "Αφαίρεση", + "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Αυτή η εφαρμογή δεν μπορεί να εγκατασταθεί διότι δεν εκπληρώνονται οι ακόλουθες εξαρτήσεις:", @@ -31,6 +35,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι προτεινόμενες εφαρμογές αναπτύσσονται από και εντός της κοινότητας. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για χρήση.", "Featured" : "Προτεινόμενες", "Update to {update}" : "Ενημέρωση σε {update}", + "Default Deploy daemon is not accessible" : "Το προεπιλεγμένο Deploy daemon δεν είναι προσβάσιμο", "Icon" : "Εικονίδιο", "Version" : "Έκδοση", "Daemon" : "Υπηρεσία", @@ -49,9 +54,14 @@ OC.L10N.register( "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", "Featured apps" : "Προτεινόμενες εφαρμογές", + "Supported apps" : "Υποστηριζόμενες εφαρμογές", + "Deploy and Enable" : "Ανάπτυξη και Ενεργοποίηση", "Enable" : "Ενεργοποίηση", "Disable" : "Απενεργοποίηση", + "Allow untested app" : "Επιτρέψτε μη δοκιμασμένες εφαρμογές", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Η εφαρμογή δεν είναι συμβατή με την έκδοση Nextcloud σας. Εάν συνεχίσετε μπορείτε να εγκαταστήσετε την εφαρμογή. Η εφαρμογή ίσως να μην λειτουργεί σωστά.", + "An error occurred during the request. Unable to proceed." : "Προέκυψε σφάλμα κατά την αίτηση. Δεν είναι δυνατή η συνέχεια.", + "The app has been enabled but needs to be updated." : "Η εφαρμογή έχει ενεργοποιηθεί αλλά χρειάζεται ενημέρωση.", "Error: This app cannot be enabled because it makes the server unstable" : "Σφάλμα: Αυτή η εφαρμογή δεν μπορεί να ενεργοποιηθεί γιατί θα καταστήσει ασταθή τον διακομιστή." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/el.json b/l10n/el.json index 0efe1df7..08a4d5cb 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -4,9 +4,12 @@ "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", "Edit" : "Επεξεργασία", + "Deploy Daemon" : "Υπηρεσία Ανάπτυξης", "Name" : "Όνομα", "Host" : "Διακομιστής", "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", + "GPUs support" : "Υποστήριξη GPUs", + "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", "Network" : "Δίκτυο", "Confirm" : "Επιβεβαίωση", @@ -15,6 +18,7 @@ "{license}-licensed" : "{license}-αδειοδοτημένο", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Remove" : "Αφαίρεση", + "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Αυτή η εφαρμογή δεν μπορεί να εγκατασταθεί διότι δεν εκπληρώνονται οι ακόλουθες εξαρτήσεις:", @@ -29,6 +33,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι προτεινόμενες εφαρμογές αναπτύσσονται από και εντός της κοινότητας. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για χρήση.", "Featured" : "Προτεινόμενες", "Update to {update}" : "Ενημέρωση σε {update}", + "Default Deploy daemon is not accessible" : "Το προεπιλεγμένο Deploy daemon δεν είναι προσβάσιμο", "Icon" : "Εικονίδιο", "Version" : "Έκδοση", "Daemon" : "Υπηρεσία", @@ -47,9 +52,14 @@ "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", "Featured apps" : "Προτεινόμενες εφαρμογές", + "Supported apps" : "Υποστηριζόμενες εφαρμογές", + "Deploy and Enable" : "Ανάπτυξη και Ενεργοποίηση", "Enable" : "Ενεργοποίηση", "Disable" : "Απενεργοποίηση", + "Allow untested app" : "Επιτρέψτε μη δοκιμασμένες εφαρμογές", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Η εφαρμογή δεν είναι συμβατή με την έκδοση Nextcloud σας. Εάν συνεχίσετε μπορείτε να εγκαταστήσετε την εφαρμογή. Η εφαρμογή ίσως να μην λειτουργεί σωστά.", + "An error occurred during the request. Unable to proceed." : "Προέκυψε σφάλμα κατά την αίτηση. Δεν είναι δυνατή η συνέχεια.", + "The app has been enabled but needs to be updated." : "Η εφαρμογή έχει ενεργοποιηθεί αλλά χρειάζεται ενημέρωση.", "Error: This app cannot be enabled because it makes the server unstable" : "Σφάλμα: Αυτή η εφαρμογή δεν μπορεί να ενεργοποιηθεί γιατί θα καταστήσει ασταθή τον διακομιστή." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From 1a24c094a59ea1cf396eb6df56010e04abe8b059 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 9 Mar 2025 00:30:47 +0000 Subject: [PATCH 094/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uk.js | 1 + l10n/uk.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/uk.js b/l10n/uk.js index 96097b59..809055e4 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -38,6 +38,7 @@ OC.L10N.register( "Results from other categories" : "Результати з інших категорій", "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", + "Display Name" : "Назва для показу", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", diff --git a/l10n/uk.json b/l10n/uk.json index a594b80e..a0fbac43 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -36,6 +36,7 @@ "Results from other categories" : "Результати з інших категорій", "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", + "Display Name" : "Назва для показу", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", From add9fb6502211722bfe5d353c1f6ae1bc92ee2af Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 12 Mar 2025 00:31:13 +0000 Subject: [PATCH 095/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uz.js | 2 ++ l10n/uz.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/uz.js b/l10n/uz.js index b4bec869..921d859d 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -3,8 +3,10 @@ OC.L10N.register( { "Cancel" : "Cancel", "Delete" : "Delete", + "Edit" : "Tahrirlash", "Name" : "Name", "Confirm" : "Confirm", + "Save" : "Saqlash", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Visit website" : "Visit website", diff --git a/l10n/uz.json b/l10n/uz.json index bb7cd762..71fb2261 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -1,8 +1,10 @@ { "translations": { "Cancel" : "Cancel", "Delete" : "Delete", + "Edit" : "Tahrirlash", "Name" : "Name", "Confirm" : "Confirm", + "Save" : "Saqlash", "Update to {version}" : "Update to {version}", "Remove" : "Remove", "Visit website" : "Visit website", From a6e321c7884d63b6f77b531b0b746a68134f49b1 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 15 Mar 2025 00:31:18 +0000 Subject: [PATCH 096/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uz.js | 1 + l10n/uz.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/uz.js b/l10n/uz.js index 921d859d..f5ea3c46 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -13,6 +13,7 @@ OC.L10N.register( "User documentation" : "Foydalanuvchi hujjatlari", "Admin documentation" : "Admin documentation", "Developer documentation" : "developer hujjatlari", + "Update to {update}" : " {update}ni yangilash", "Actions" : "Actions", "Details" : "Details", "Enable" : "Enable", diff --git a/l10n/uz.json b/l10n/uz.json index 71fb2261..5232f02e 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -11,6 +11,7 @@ "User documentation" : "Foydalanuvchi hujjatlari", "Admin documentation" : "Admin documentation", "Developer documentation" : "developer hujjatlari", + "Update to {update}" : " {update}ni yangilash", "Actions" : "Actions", "Details" : "Details", "Enable" : "Enable", From d5e745531f62c2331204b178ec32d114c2ab99cd Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 16 Mar 2025 00:31:22 +0000 Subject: [PATCH 097/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uz.js | 2 ++ l10n/uz.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/uz.js b/l10n/uz.js index f5ea3c46..04659c1d 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -14,7 +14,9 @@ OC.L10N.register( "Admin documentation" : "Admin documentation", "Developer documentation" : "developer hujjatlari", "Update to {update}" : " {update}ni yangilash", + "Version" : "Versiya", "Actions" : "Actions", + "Type" : "Turi", "Details" : "Details", "Enable" : "Enable", "Disable" : "Oʻchirish" diff --git a/l10n/uz.json b/l10n/uz.json index 5232f02e..026bc595 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -12,7 +12,9 @@ "Admin documentation" : "Admin documentation", "Developer documentation" : "developer hujjatlari", "Update to {update}" : " {update}ni yangilash", + "Version" : "Versiya", "Actions" : "Actions", + "Type" : "Turi", "Details" : "Details", "Enable" : "Enable", "Disable" : "Oʻchirish" From 0134148f6c76ff0e582936d5023a3fb7cef457fe Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 17 Mar 2025 00:30:26 +0000 Subject: [PATCH 098/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ca.js | 1 + l10n/ca.json | 1 + l10n/fi.js | 1 + l10n/fi.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/ca.js b/l10n/ca.js index 3a08d934..787fbf3d 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -14,6 +14,7 @@ OC.L10N.register( "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "Cancel" : "Cancelar", "Delete" : "Suprimir", + "Default" : "Per defecte", "Edit" : "Edició", "Deploy Daemon" : "Desplega Dimoni", "Name" : "Nom", diff --git a/l10n/ca.json b/l10n/ca.json index 9658c46b..3bc546b8 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -12,6 +12,7 @@ "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "Cancel" : "Cancelar", "Delete" : "Suprimir", + "Default" : "Per defecte", "Edit" : "Edició", "Deploy Daemon" : "Desplega Dimoni", "Name" : "Nom", diff --git a/l10n/fi.js b/l10n/fi.js index 3d60fb63..b5ae7572 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Peruuta", "Delete" : "Poista", + "Default" : "Oletus", "Edit" : "Muokkaa", "Name" : "Nimi", "Host" : "Palvelin", diff --git a/l10n/fi.json b/l10n/fi.json index 6559a23f..3e049558 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Peruuta", "Delete" : "Poista", + "Default" : "Oletus", "Edit" : "Muokkaa", "Name" : "Nimi", "Host" : "Palvelin", From c5d845682c65348d11f45837de7be57dc4284a49 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 18 Mar 2025 00:31:56 +0000 Subject: [PATCH 099/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uz.js | 1 + l10n/uz.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/uz.js b/l10n/uz.js index 04659c1d..42cb494c 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -17,6 +17,7 @@ OC.L10N.register( "Version" : "Versiya", "Actions" : "Actions", "Type" : "Turi", + "Documentation" : "Hujjatlar", "Details" : "Details", "Enable" : "Enable", "Disable" : "Oʻchirish" diff --git a/l10n/uz.json b/l10n/uz.json index 026bc595..5eb98573 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -15,6 +15,7 @@ "Version" : "Versiya", "Actions" : "Actions", "Type" : "Turi", + "Documentation" : "Hujjatlar", "Details" : "Details", "Enable" : "Enable", "Disable" : "Oʻchirish" From fadae7f2c4cb39c8cca71d457be0da098853f93e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 20 Mar 2025 00:31:08 +0000 Subject: [PATCH 100/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ca.js | 122 +++++++++++++++++++++++++++++++++++++++++++++++- l10n/ca.json | 122 +++++++++++++++++++++++++++++++++++++++++++++++- l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + 4 files changed, 244 insertions(+), 2 deletions(-) diff --git a/l10n/ca.js b/l10n/ca.js index 787fbf3d..33956225 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -1,35 +1,142 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "No s'ha trobat la configuració del dimoni", + "Error starting install of ExApp" : "S'ha produït un error en iniciar la instal·lació d'ExApp", + "ExApp failed to register, check the NC logs" : "ExApp no s'ha pogut registrar, comproveu els registres NC", + "ExApp not found, failed to get status" : "No s'ha trobat ExApp, no s'ha pogut obtenir l'estat", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aquesta aplicació no està instal·lada des de l'AppStore. No hi ha informació addicional disponible. Només es permeten les accions d'activació/desactivació i eliminació.", + "Could not perform installation of ExApp" : "No s'ha pogut realitzar la instal·lació d'ExApp", "Failed to enable ExApp" : "No s'ha pogut activar ExApp", "Failed to disable ExApp" : "No s'ha pogut desactivar ExApp", "Could not update ExApp" : "No s'ha pogut actualitzar ExApp", + "Error starting update of ExApp" : "S'ha produït un error en iniciar l'actualització d'ExApp", + "Could not perform update of ExApp" : "No s'ha pogut realitzar l'actualització d'ExApp", + "ExApp not found, failed to get logs" : "No s'ha trobat ExApp, no s'han pogut obtenir els registres", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "No s'han pogut obtenir els registres del contenidor. Nota: la descàrrega del contenidor Docker només funciona per a contenidors amb el controlador de registre json-file o journald. Error: %s", + "ExApp not found, failed to get deploy options" : "No s'ha trobat ExApp, no s'han pogut obtenir les opcions de desplegament", "AppAPI authentication failed" : "Ha fallat l'autenticació de l'AppAPI", "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", + "AI Integration Team" : "Equip d'integració d'IA", + "ExApps Settings" : "Configuració d'ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n_Si voleu desenvolupar una aplicació, estarem encantats d'ajudar-vos i ajudar-vos._\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", + "Deploy Daemons" : "Desplega els dimonis", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu-ne la configuració", + "ExApp init timeout (minutes)" : "Temps d'espera d'inici ExApp (minuts)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Temps d'espera del procés d'inicialització de l'ExApp després del qual AppAPI el marcarà com a fallat", + "ExApp init timeout" : "Temps d'espera d'inici ExApp", + "ExApp container restart policy" : "Política de reinici del contenidor ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifiqueu la política de reinici del contenidor, p.ex. 'always' per garantir que ExApp s'executi després del reinici del servidor del dimoni", + "This settings changes are reflected only for newly created containers" : "Els canvis d'aquesta configuració només es reflecteixen als contenidors de nova creació", + "Are you sure you want delete Deploy Daemon" : "Esteu segur que voleu suprimir Deploy Daemon", + "All ExApps on this daemon will be removed" : "S'eliminaran totes les ExApps d'aquest dimoni", + "All ExApps installed on this daemon will be removed" : "S'eliminaran totes les ExApps instal·lades en aquest dimoni", "Cancel" : "Cancelar", "Delete" : "Suprimir", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon no es pot establir com a predeterminat", + "Failed to save admin options. Check the logs" : "No s'han pogut desar les opcions d'administració. Comproveu els registres", + "Password confirmation failed" : "La confirmació de la contrasenya ha fallat", "Default" : "Per defecte", + "Set as default" : "Estableix com a predeterminat", + "Test deploy" : "Prova de desplegament", "Edit" : "Edició", + "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", "Deploy Daemon" : "Desplega Dimoni", + "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El dimoni d'instal·lació manual s'utilitza normalment per al desenvolupament. No es pot establir com a dimoni per defecte.", + "ExApps installed" : "ExApps instal·lades", "Name" : "Nom", + "Protocol" : "Protocol", "Host" : "Servidor", + "Deploy config" : "Desplega la configuració", + "Docker network" : "Xarxa Docker", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "Contrasenya HaProxy", "GPUs support" : "Suport de GPU", "Compute device" : "Dispositiu de computació", + "Additional options" : "Opcions addicionals", + "Verify connection" : "Verifica la connexió", + "Registered Deploy daemons list" : "Llista de dimonis de desplegament registrats", + "No Deploy daemons configured" : "No s'ha configurat cap dimoni de desplegament", + "Register a custom one or setup from available templates" : "Registreu-ne un personalitzat o configureu-ne a partir de les plantilles disponibles", + "Register Daemon" : "Registre Daemon", + "Register ExApp in Nextcloud" : "Registreu ExApp a Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Comproveu si l'ExApp està registrada a Nextcloud abans del desplegament", + "Image pull" : "Tirada d'imatge", + "Check if the image is successfully pulled" : "Comproveu si la imatge s'ha extret correctament", + "Container started" : "El contenidor va començar", + "Check if the image successfully pulled and container is created and started" : "Comproveu si la imatge s'ha extret correctament i el contenidor està creat i iniciat", + "Heartbeat" : "Batec del cor", + "Check for the heartbeat is finished and healthy" : "Comproveu que el batec del cor estigui acabat i saludable", + "Init step" : "Pas inicial", + "Wait for initialization step to finish" : "Espereu que finalitzi el pas d'inicialització", "Enabled" : "Habilitat", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproveu si ExApp ha gestionat correctament l'esdeveniment habilitat i ha registrat totes les coses correctament", + "Only if ExApp container is preset" : "Només si el contenidor ExApp està predefinit", + "Deploy test passed successfully!" : "La prova de desplegament s'ha superat correctament!", + "Deploy test failed at step \"{step}\"" : "La prova de desplegament ha fallat al pas \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "L'AppAPI intentarà instal·lar l'ExApp d'esquelet petit per verificar que Daemon està configurat correctament i que s'estan passant els passos de desplegament.", + "The following Deploy test checks must be passed to succeed:" : "Per tenir èxit, s'han de superar les comprovacions de prova de desplegament següents:", + "More info" : "Més informació", + "Download ExApp logs" : "Baixeu els registres d'ExApp", + "Remove test ExApp" : "Elimina la prova ExApp", + "Start Deploy test" : "Inicieu la prova de desplegament", + "Stop Deploy test" : "Atura la prova de desplegament", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", + "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", + "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", + "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", + "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker sol·licitarà que tots els dispositius GPU disponibles a l'amfitrió del dimoni estiguin habilitats als contenidors ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig s'ha registrat correctament", + "Failed to register DaemonConfig. Check the logs" : "No s'ha pogut registrar DaemonConfig. Comproveu els registres", + "DaemonConfig successfully updated" : "DaemonConfig s'ha actualitzat correctament", + "Failed to update DaemonConfig. Check the logs" : "No s'ha pogut actualitzar DaemonConfig. Comproveu els registres", + "Daemon connection successful" : "La connexió del dimoni ha estat correcta", + "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", + "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", + "Edit Deploy Daemon" : "Edita Deploy Daemon", + "Register Deploy Daemon" : "Registre Deploy Daemon", + "Daemon configuration template" : "Plantilla de configuració del dimoni", + "Select daemon configuration template" : "Seleccioneu la plantilla de configuració del dimoni", + "Daemon registration form" : "Formulari de registre de Daemon", + "Unique Deploy Daemon Name" : "Nom únic del dimoni de desplegament", "Display name" : "Nom de visualització", + "Deployment method" : "Mètode de desplegament", + "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", + "Daemon host" : "Servidor del dimoni", + "Set daemon as default" : "Estableix el dimoni com a predeterminat", + "Set as default daemon" : "Estableix com a dimoni predeterminat", + "Enable https" : "Activa https", + "Show deploy config" : "Mostra la configuració de desplegament", + "Hide deploy config" : "Amaga la configuració de desplegament", "Network" : "Xarxa", + "Docker network name" : "Nom de la xarxa Docker", + "Additional option" : "Opció addicional", + "Add additional option" : "Afegeix una opció addicional", + "Option key (unique)" : "Tecla d'opció (única)", + "Option key (unique, e.g. my_key)" : "Clau d'opció (única, per exemple, my_key)", + "Option key is required" : "La clau d'opció és necessària", + "Option value" : "Valor de l'opció", + "Option value is required" : "El valor de l'opció és obligatori", "Confirm" : "Confirma", "Save" : "Desar", "Register" : "Registra", "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", @@ -43,11 +150,13 @@ OC.L10N.register( "User documentation" : "Documentació per a usuaris", "Admin documentation" : "Documentació per a administradors", "Developer documentation" : "Documentació per a desenvolupadors", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aquesta aplicació no està registrada a AppStore. No hi ha informació addicional disponible. Només es permeten les accions d'activació/desactivació i eliminació.", "This app is supported via your current Nextcloud subscription." : "Aquesta aplicació és compatible amb la vostra subscripció actual a Nextcloud.", "Supported" : "Compatible", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions destacades es desenvolupen per i dins de la comunitat. Ofereixen funcionalitats centrals i estan preparades per ser emprades en producció.", "Featured" : "Destacada", "Update to {update}" : "Actualitza a {update}", + "All ExApps are up-to-date." : "Totes les ExApps estan actualitzades.", "Default Deploy daemon is not accessible" : "El dimoni de desplegament predeterminat no és accessible", "Icon" : "Icona", "Version" : "Versió", @@ -55,9 +164,12 @@ OC.L10N.register( "Level" : "Nivell", "Actions" : "Accions", "Results from other categories" : "Resultats d'altres categories", + "No apps found" : "No s'ha trobat cap aplicació", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp té una actualització disponible","%n apps tenen una actualització disponible"], "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "With https enabled network is set to host" : "Amb https habilitat, la xarxa està configurada com a host", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", @@ -68,13 +180,21 @@ OC.L10N.register( "Updates" : "Actualitzacions", "Featured apps" : "Aplicacions destacades", "Supported apps" : "Aplicacions compatibles", + "manual-install apps cannot be updated" : "les aplicacions d'instal·lació manual no es poden actualitzar", + "{progress}% Deploying" : "{progress}% de desplegament", + "{progress}% Initializing" : "{progress}% d'inicialització", + "Healthchecking" : "Control de salut", "Deploy and Enable" : "Desplega i activa", "Enable" : "Activa", "Disable" : "Inhabilita", "Allow untested app" : "Permet l'aplicació no provada", + "Default Deploy daemon is not accessible. Please verify configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu la configuració", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "L'aplicació es baixarà des de l'App Store i es desplegarà de manera predeterminada Deploy Daemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aquesta aplicació no està marcada com a compatible amb la vostra versió de Nextcloud. Si continueu, encara podreu instal·lar l’aplicació. Tingueu en compte que pot ser que l’aplicació no funcioni correctament.", + "Your ExApps" : "Les teves ExApps", "An error occurred during the request. Unable to proceed." : "S'ha produït un error durant la sol·licitud. No es pot continuar.", "The app has been enabled but needs to be updated." : "L'aplicació s'ha habilitat, però s'ha d'actualitzar.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: aquesta aplicació no es pot habilitar perquè fa que el servidor sigui inestable" + "Error: This app cannot be enabled because it makes the server unstable" : "Error: aquesta aplicació no es pot habilitar perquè fa que el servidor sigui inestable", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n\n### Llista d'aplicacions que requereixen AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [exemple_upscaler](https://github.com/cloud-py-api/exemple_upscaler)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si voleu desenvolupar una aplicació, estarem encantats d'ajudar-vos i ajudar-vos._\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ca.json b/l10n/ca.json index 3bc546b8..34a5efa5 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -1,33 +1,140 @@ { "translations": { + "Daemon config not found" : "No s'ha trobat la configuració del dimoni", + "Error starting install of ExApp" : "S'ha produït un error en iniciar la instal·lació d'ExApp", + "ExApp failed to register, check the NC logs" : "ExApp no s'ha pogut registrar, comproveu els registres NC", + "ExApp not found, failed to get status" : "No s'ha trobat ExApp, no s'ha pogut obtenir l'estat", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aquesta aplicació no està instal·lada des de l'AppStore. No hi ha informació addicional disponible. Només es permeten les accions d'activació/desactivació i eliminació.", + "Could not perform installation of ExApp" : "No s'ha pogut realitzar la instal·lació d'ExApp", "Failed to enable ExApp" : "No s'ha pogut activar ExApp", "Failed to disable ExApp" : "No s'ha pogut desactivar ExApp", "Could not update ExApp" : "No s'ha pogut actualitzar ExApp", + "Error starting update of ExApp" : "S'ha produït un error en iniciar l'actualització d'ExApp", + "Could not perform update of ExApp" : "No s'ha pogut realitzar l'actualització d'ExApp", + "ExApp not found, failed to get logs" : "No s'ha trobat ExApp, no s'han pogut obtenir els registres", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "No s'han pogut obtenir els registres del contenidor. Nota: la descàrrega del contenidor Docker només funciona per a contenidors amb el controlador de registre json-file o journald. Error: %s", + "ExApp not found, failed to get deploy options" : "No s'ha trobat ExApp, no s'han pogut obtenir les opcions de desplegament", "AppAPI authentication failed" : "Ha fallat l'autenticació de l'AppAPI", "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", + "AI Integration Team" : "Equip d'integració d'IA", + "ExApps Settings" : "Configuració d'ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n_Si voleu desenvolupar una aplicació, estarem encantats d'ajudar-vos i ajudar-vos._\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", + "Deploy Daemons" : "Desplega els dimonis", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu-ne la configuració", + "ExApp init timeout (minutes)" : "Temps d'espera d'inici ExApp (minuts)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Temps d'espera del procés d'inicialització de l'ExApp després del qual AppAPI el marcarà com a fallat", + "ExApp init timeout" : "Temps d'espera d'inici ExApp", + "ExApp container restart policy" : "Política de reinici del contenidor ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifiqueu la política de reinici del contenidor, p.ex. 'always' per garantir que ExApp s'executi després del reinici del servidor del dimoni", + "This settings changes are reflected only for newly created containers" : "Els canvis d'aquesta configuració només es reflecteixen als contenidors de nova creació", + "Are you sure you want delete Deploy Daemon" : "Esteu segur que voleu suprimir Deploy Daemon", + "All ExApps on this daemon will be removed" : "S'eliminaran totes les ExApps d'aquest dimoni", + "All ExApps installed on this daemon will be removed" : "S'eliminaran totes les ExApps instal·lades en aquest dimoni", "Cancel" : "Cancelar", "Delete" : "Suprimir", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon no es pot establir com a predeterminat", + "Failed to save admin options. Check the logs" : "No s'han pogut desar les opcions d'administració. Comproveu els registres", + "Password confirmation failed" : "La confirmació de la contrasenya ha fallat", "Default" : "Per defecte", + "Set as default" : "Estableix com a predeterminat", + "Test deploy" : "Prova de desplegament", "Edit" : "Edició", + "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", "Deploy Daemon" : "Desplega Dimoni", + "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El dimoni d'instal·lació manual s'utilitza normalment per al desenvolupament. No es pot establir com a dimoni per defecte.", + "ExApps installed" : "ExApps instal·lades", "Name" : "Nom", + "Protocol" : "Protocol", "Host" : "Servidor", + "Deploy config" : "Desplega la configuració", + "Docker network" : "Xarxa Docker", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "Contrasenya HaProxy", "GPUs support" : "Suport de GPU", "Compute device" : "Dispositiu de computació", + "Additional options" : "Opcions addicionals", + "Verify connection" : "Verifica la connexió", + "Registered Deploy daemons list" : "Llista de dimonis de desplegament registrats", + "No Deploy daemons configured" : "No s'ha configurat cap dimoni de desplegament", + "Register a custom one or setup from available templates" : "Registreu-ne un personalitzat o configureu-ne a partir de les plantilles disponibles", + "Register Daemon" : "Registre Daemon", + "Register ExApp in Nextcloud" : "Registreu ExApp a Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Comproveu si l'ExApp està registrada a Nextcloud abans del desplegament", + "Image pull" : "Tirada d'imatge", + "Check if the image is successfully pulled" : "Comproveu si la imatge s'ha extret correctament", + "Container started" : "El contenidor va començar", + "Check if the image successfully pulled and container is created and started" : "Comproveu si la imatge s'ha extret correctament i el contenidor està creat i iniciat", + "Heartbeat" : "Batec del cor", + "Check for the heartbeat is finished and healthy" : "Comproveu que el batec del cor estigui acabat i saludable", + "Init step" : "Pas inicial", + "Wait for initialization step to finish" : "Espereu que finalitzi el pas d'inicialització", "Enabled" : "Habilitat", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproveu si ExApp ha gestionat correctament l'esdeveniment habilitat i ha registrat totes les coses correctament", + "Only if ExApp container is preset" : "Només si el contenidor ExApp està predefinit", + "Deploy test passed successfully!" : "La prova de desplegament s'ha superat correctament!", + "Deploy test failed at step \"{step}\"" : "La prova de desplegament ha fallat al pas \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "L'AppAPI intentarà instal·lar l'ExApp d'esquelet petit per verificar que Daemon està configurat correctament i que s'estan passant els passos de desplegament.", + "The following Deploy test checks must be passed to succeed:" : "Per tenir èxit, s'han de superar les comprovacions de prova de desplegament següents:", + "More info" : "Més informació", + "Download ExApp logs" : "Baixeu els registres d'ExApp", + "Remove test ExApp" : "Elimina la prova ExApp", + "Start Deploy test" : "Inicieu la prova de desplegament", + "Stop Deploy test" : "Atura la prova de desplegament", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", + "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", + "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", + "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", + "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker sol·licitarà que tots els dispositius GPU disponibles a l'amfitrió del dimoni estiguin habilitats als contenidors ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig s'ha registrat correctament", + "Failed to register DaemonConfig. Check the logs" : "No s'ha pogut registrar DaemonConfig. Comproveu els registres", + "DaemonConfig successfully updated" : "DaemonConfig s'ha actualitzat correctament", + "Failed to update DaemonConfig. Check the logs" : "No s'ha pogut actualitzar DaemonConfig. Comproveu els registres", + "Daemon connection successful" : "La connexió del dimoni ha estat correcta", + "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", + "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", + "Edit Deploy Daemon" : "Edita Deploy Daemon", + "Register Deploy Daemon" : "Registre Deploy Daemon", + "Daemon configuration template" : "Plantilla de configuració del dimoni", + "Select daemon configuration template" : "Seleccioneu la plantilla de configuració del dimoni", + "Daemon registration form" : "Formulari de registre de Daemon", + "Unique Deploy Daemon Name" : "Nom únic del dimoni de desplegament", "Display name" : "Nom de visualització", + "Deployment method" : "Mètode de desplegament", + "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", + "Daemon host" : "Servidor del dimoni", + "Set daemon as default" : "Estableix el dimoni com a predeterminat", + "Set as default daemon" : "Estableix com a dimoni predeterminat", + "Enable https" : "Activa https", + "Show deploy config" : "Mostra la configuració de desplegament", + "Hide deploy config" : "Amaga la configuració de desplegament", "Network" : "Xarxa", + "Docker network name" : "Nom de la xarxa Docker", + "Additional option" : "Opció addicional", + "Add additional option" : "Afegeix una opció addicional", + "Option key (unique)" : "Tecla d'opció (única)", + "Option key (unique, e.g. my_key)" : "Clau d'opció (única, per exemple, my_key)", + "Option key is required" : "La clau d'opció és necessària", + "Option value" : "Valor de l'opció", + "Option value is required" : "El valor de l'opció és obligatori", "Confirm" : "Confirma", "Save" : "Desar", "Register" : "Registra", "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Remove" : "Suprimeix", @@ -41,11 +148,13 @@ "User documentation" : "Documentació per a usuaris", "Admin documentation" : "Documentació per a administradors", "Developer documentation" : "Documentació per a desenvolupadors", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aquesta aplicació no està registrada a AppStore. No hi ha informació addicional disponible. Només es permeten les accions d'activació/desactivació i eliminació.", "This app is supported via your current Nextcloud subscription." : "Aquesta aplicació és compatible amb la vostra subscripció actual a Nextcloud.", "Supported" : "Compatible", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions destacades es desenvolupen per i dins de la comunitat. Ofereixen funcionalitats centrals i estan preparades per ser emprades en producció.", "Featured" : "Destacada", "Update to {update}" : "Actualitza a {update}", + "All ExApps are up-to-date." : "Totes les ExApps estan actualitzades.", "Default Deploy daemon is not accessible" : "El dimoni de desplegament predeterminat no és accessible", "Icon" : "Icona", "Version" : "Versió", @@ -53,9 +162,12 @@ "Level" : "Nivell", "Actions" : "Accions", "Results from other categories" : "Resultats d'altres categories", + "No apps found" : "No s'ha trobat cap aplicació", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp té una actualització disponible","%n apps tenen una actualització disponible"], "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "With https enabled network is set to host" : "Amb https habilitat, la xarxa està configurada com a host", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", @@ -66,13 +178,21 @@ "Updates" : "Actualitzacions", "Featured apps" : "Aplicacions destacades", "Supported apps" : "Aplicacions compatibles", + "manual-install apps cannot be updated" : "les aplicacions d'instal·lació manual no es poden actualitzar", + "{progress}% Deploying" : "{progress}% de desplegament", + "{progress}% Initializing" : "{progress}% d'inicialització", + "Healthchecking" : "Control de salut", "Deploy and Enable" : "Desplega i activa", "Enable" : "Activa", "Disable" : "Inhabilita", "Allow untested app" : "Permet l'aplicació no provada", + "Default Deploy daemon is not accessible. Please verify configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu la configuració", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "L'aplicació es baixarà des de l'App Store i es desplegarà de manera predeterminada Deploy Daemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aquesta aplicació no està marcada com a compatible amb la vostra versió de Nextcloud. Si continueu, encara podreu instal·lar l’aplicació. Tingueu en compte que pot ser que l’aplicació no funcioni correctament.", + "Your ExApps" : "Les teves ExApps", "An error occurred during the request. Unable to proceed." : "S'ha produït un error durant la sol·licitud. No es pot continuar.", "The app has been enabled but needs to be updated." : "L'aplicació s'ha habilitat, però s'ha d'actualitzar.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: aquesta aplicació no es pot habilitar perquè fa que el servidor sigui inestable" + "Error: This app cannot be enabled because it makes the server unstable" : "Error: aquesta aplicació no es pot habilitar perquè fa que el servidor sigui inestable", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n\n### Llista d'aplicacions que requereixen AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [exemple_upscaler](https://github.com/cloud-py-api/exemple_upscaler)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si voleu desenvolupar una aplicació, estarem encantats d'ajudar-vos i ajudar-vos._\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 77e15b9e..f797b872 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -14,6 +14,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Não foi possível realizar a atualização do ExApp", "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter registros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: o download do contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro:%s", + "ExApp not found, failed to get deploy options" : "ExApp não encontrado, falha ao obter opções de implantação", "AppAPI authentication failed" : "Falha na autenticação AppAPI", "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 41fb66dd..cd50d182 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -12,6 +12,7 @@ "Could not perform update of ExApp" : "Não foi possível realizar a atualização do ExApp", "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter registros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: o download do contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro:%s", + "ExApp not found, failed to get deploy options" : "ExApp não encontrado, falha ao obter opções de implantação", "AppAPI authentication failed" : "Falha na autenticação AppAPI", "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", From c4113887f947dac0eae73eab339ec74c78299e54 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 21 Mar 2025 00:54:13 +0000 Subject: [PATCH 101/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es_AR.js | 8 +++++++- l10n/es_AR.json | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 7bd4eff2..60f3f966 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -20,6 +20,7 @@ OC.L10N.register( "User documentation" : "Documentación del usuario", "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", + "Supported" : "Soportado", "Featured" : "Destacado", "Icon" : "Ícono", "Version" : "Versión", @@ -31,9 +32,14 @@ OC.L10N.register( "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Bitácora de cambios", + "Active apps" : "Aplicaciones activas", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", + "Featured apps" : "Aplicaciones destacadas", + "Supported apps" : "Aplicaciones soportadas", + "Deploy and Enable" : "Desplegar y habilitar", "Enable" : "Activar", - "Disable" : "Deshabilitar" + "Disable" : "Deshabilitar", + "Allow untested app" : "Permitir aplicación no probada" }, "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 index a0382fff..0ee45d52 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -18,6 +18,7 @@ "User documentation" : "Documentación del usuario", "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", + "Supported" : "Soportado", "Featured" : "Destacado", "Icon" : "Ícono", "Version" : "Versión", @@ -29,9 +30,14 @@ "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Bitácora de cambios", + "Active apps" : "Aplicaciones activas", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", + "Featured apps" : "Aplicaciones destacadas", + "Supported apps" : "Aplicaciones soportadas", + "Deploy and Enable" : "Desplegar y habilitar", "Enable" : "Activar", - "Disable" : "Deshabilitar" + "Disable" : "Deshabilitar", + "Allow untested app" : "Permitir aplicación no probada" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file From f21ef2333690c30ca2c0453cd8705ce19ba0b940 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 25 Mar 2025 00:30:22 +0000 Subject: [PATCH 102/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_TW.js | 2 +- l10n/zh_TW.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 5619ed4d..28fc98ba 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -71,7 +71,7 @@ OC.L10N.register( "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", - "Check if the image is successfully pulled" : "撿茶室否成功拉取映像檔", + "Check if the image is successfully pulled" : "檢查是否成功拉取映像檔", "Container started" : "容器已啟動", "Check if the image successfully pulled and container is created and started" : "檢查是否成功拉取映像檔,以及容器是否已建立並啟動", "Heartbeat" : "心跳", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 853effdd..bbcd021b 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -69,7 +69,7 @@ "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", - "Check if the image is successfully pulled" : "撿茶室否成功拉取映像檔", + "Check if the image is successfully pulled" : "檢查是否成功拉取映像檔", "Container started" : "容器已啟動", "Check if the image successfully pulled and container is created and started" : "檢查是否成功拉取映像檔,以及容器是否已建立並啟動", "Heartbeat" : "心跳", From 826ad52102681fa26c9794c86050b3386e4c00e1 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 26 Mar 2025 00:30:27 +0000 Subject: [PATCH 103/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es_AR.js | 6 +++++- l10n/es_AR.json | 6 +++++- l10n/zh_TW.js | 8 ++++---- l10n/zh_TW.json | 8 ++++---- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 60f3f966..2565d21d 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -40,6 +40,10 @@ OC.L10N.register( "Deploy and Enable" : "Desplegar y habilitar", "Enable" : "Activar", "Disable" : "Deshabilitar", - "Allow untested app" : "Permitir aplicación no probada" + "Allow untested app" : "Permitir aplicación no probada", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta aplicación no está marcada como compatible con tu versión de Nextcloud. Si continuás podrás instalar la aplicación, pero tené en cuenta que podría no funcionar según lo esperado.", + "An error occurred during the request. Unable to proceed." : "Ocurrió un error durante la solicitud. No se puede continuar.", + "The app has been enabled but needs to be updated." : "La aplicación ha sido habilitada pero necesita actualizarse.", + "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta aplicación no se puede habilitar porque genera inestabilidad en el servidor" }, "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 index 0ee45d52..ecb54d99 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -38,6 +38,10 @@ "Deploy and Enable" : "Desplegar y habilitar", "Enable" : "Activar", "Disable" : "Deshabilitar", - "Allow untested app" : "Permitir aplicación no probada" + "Allow untested app" : "Permitir aplicación no probada", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta aplicación no está marcada como compatible con tu versión de Nextcloud. Si continuás podrás instalar la aplicación, pero tené en cuenta que podría no funcionar según lo esperado.", + "An error occurred during the request. Unable to proceed." : "Ocurrió un error durante la solicitud. No se puede continuar.", + "The app has been enabled but needs to be updated." : "La aplicación ha sido habilitada pero necesita actualizarse.", + "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta aplicación no se puede habilitar porque genera inestabilidad en el servidor" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 28fc98ba..2908c64e 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -50,7 +50,7 @@ OC.L10N.register( "Edit" : "編輯", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", - "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其上", + "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名稱", @@ -62,7 +62,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy 密碼", "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", - "Additional options" : "其他選項", + "Additional options" : "額外選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", "No Deploy daemons configured" : "未設定部署幕後程式", @@ -82,7 +82,7 @@ OC.L10N.register( "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "檢查 ExApp 是否成功處理啟用的事件並正確註冊所有內容", "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", - "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "Deploy test failed at step \"{step}\"" : "部署測試於「{step}」步驟失敗", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", "More info" : "更多資訊", @@ -91,7 +91,7 @@ OC.L10N.register( "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", - "Hostname to access ExApps" : "用來存取 ExApp 的主機名稱", + "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index bbcd021b..9e68eed5 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -48,7 +48,7 @@ "Edit" : "編輯", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", - "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其上", + "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名稱", @@ -60,7 +60,7 @@ "HaProxy password" : "HaProxy 密碼", "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", - "Additional options" : "其他選項", + "Additional options" : "額外選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", "No Deploy daemons configured" : "未設定部署幕後程式", @@ -80,7 +80,7 @@ "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "檢查 ExApp 是否成功處理啟用的事件並正確註冊所有內容", "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", - "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "Deploy test failed at step \"{step}\"" : "部署測試於「{step}」步驟失敗", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", "More info" : "更多資訊", @@ -89,7 +89,7 @@ "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", - "Hostname to access ExApps" : "用來存取 ExApp 的主機名稱", + "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", From 545a597713d00465bf12c8019aa239f6c4f65a45 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 27 Mar 2025 00:31:50 +0000 Subject: [PATCH 104/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/pt_BR.js | 4 +++- l10n/pt_BR.json | 4 +++- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 9d3b268e..3db6df11 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -36,6 +36,7 @@ OC.L10N.register( "Changelog" : "Muudatuste logi", "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", + "Featured apps" : "Esiletõstetud rakendused", "Disable" : "Lülita välja" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 687e366b..a28d2e35 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -34,6 +34,7 @@ "Changelog" : "Muudatuste logi", "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", + "Featured apps" : "Esiletõstetud rakendused", "Disable" : "Lülita välja" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index f797b872..1074e9c8 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -21,6 +21,7 @@ OC.L10N.register( "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gestão de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", @@ -135,6 +136,7 @@ OC.L10N.register( "Register" : "Registro ", "Check connection" : "Verifique a conexão", "External Apps" : "Apps Externos", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", "Remove" : "Remover", @@ -193,6 +195,6 @@ OC.L10N.register( "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", "The app has been enabled but needs to be updated." : "O aplicativo foi habilitado, mas precisa ser atualizado.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável.", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para agilizar e aprimorar o processo de\ndesenvolvimento, implantação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite aos desenvolvedores criar\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Seus insights, sugestões e contribuições são inestimáveis ​​para nós.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem o AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*" }, "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 cd50d182..7ea43e00 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -19,6 +19,7 @@ "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gestão de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", @@ -133,6 +134,7 @@ "Register" : "Registro ", "Check connection" : "Verifique a conexão", "External Apps" : "Apps Externos", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", "Remove" : "Remover", @@ -191,6 +193,6 @@ "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", "The app has been enabled but needs to be updated." : "O aplicativo foi habilitado, mas precisa ser atualizado.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável.", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para agilizar e aprimorar o processo de\ndesenvolvimento, implantação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite aos desenvolvedores criar\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Seus insights, sugestões e contribuições são inestimáveis ​​para nós.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem o AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file From 86492b39a36971532e5bc3e7b63d7e7e127a23b7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 28 Mar 2025 00:31:19 +0000 Subject: [PATCH 105/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 3db6df11..937f7aec 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -14,6 +14,7 @@ OC.L10N.register( "Register" : "Registreeru", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", + "Remove" : "Eemalda", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index a28d2e35..31fc5146 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -12,6 +12,7 @@ "Register" : "Registreeru", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", + "Remove" : "Eemalda", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", From 75d95c82714171bae69ddcf2919b133a52ba37e0 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 31 Mar 2025 00:31:12 +0000 Subject: [PATCH 106/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 937f7aec..d67c9e79 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -38,6 +38,7 @@ OC.L10N.register( "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", + "Enable" : "Lülita sisse", "Disable" : "Lülita välja" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 31fc5146..5ded693d 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -36,6 +36,7 @@ "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", + "Enable" : "Lülita sisse", "Disable" : "Lülita välja" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From bf338b2c65ead8dd47560207e06940e72f004b2d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 2 Apr 2025 00:30:57 +0000 Subject: [PATCH 107/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 8 ++++---- l10n/ar.json | 8 ++++---- l10n/ast.js | 2 +- l10n/ast.json | 2 +- l10n/bg.js | 2 +- l10n/bg.json | 2 +- l10n/br.js | 2 +- l10n/br.json | 2 +- l10n/ca.js | 8 ++++---- l10n/ca.json | 8 ++++---- l10n/cs.js | 8 ++++---- l10n/cs.json | 8 ++++---- l10n/da.js | 8 ++++---- l10n/da.json | 8 ++++---- l10n/de.js | 8 ++++---- l10n/de.json | 8 ++++---- l10n/de_DE.js | 8 ++++---- l10n/de_DE.json | 8 ++++---- l10n/el.js | 2 +- l10n/el.json | 2 +- l10n/en_GB.js | 8 ++++---- l10n/en_GB.json | 8 ++++---- l10n/eo.js | 2 +- l10n/eo.json | 2 +- l10n/es.js | 8 ++++---- l10n/es.json | 8 ++++---- l10n/es_EC.js | 2 +- l10n/es_EC.json | 2 +- l10n/es_MX.js | 2 +- l10n/es_MX.json | 2 +- l10n/et_EE.js | 8 ++++++-- l10n/et_EE.json | 8 ++++++-- l10n/eu.js | 2 +- l10n/eu.json | 2 +- l10n/fa.js | 2 +- l10n/fa.json | 2 +- l10n/fi.js | 2 +- l10n/fi.json | 2 +- l10n/fr.js | 8 ++++---- l10n/fr.json | 8 ++++---- l10n/ga.js | 8 ++++---- l10n/ga.json | 8 ++++---- l10n/gl.js | 8 ++++---- l10n/gl.json | 8 ++++---- l10n/he.js | 2 +- l10n/he.json | 2 +- l10n/hr.js | 2 +- l10n/hr.json | 2 +- l10n/hu.js | 2 +- l10n/hu.json | 2 +- l10n/is.js | 2 +- l10n/is.json | 2 +- l10n/it.js | 2 +- l10n/it.json | 2 +- l10n/ja.js | 2 +- l10n/ja.json | 2 +- l10n/ka.js | 2 +- l10n/ka.json | 2 +- l10n/ko.js | 8 ++++---- l10n/ko.json | 8 ++++---- l10n/lt_LT.js | 2 +- l10n/lt_LT.json | 2 +- l10n/lv.js | 2 +- l10n/lv.json | 2 +- l10n/mk.js | 2 +- l10n/mk.json | 2 +- l10n/nb.js | 8 ++++---- l10n/nb.json | 8 ++++---- l10n/nl.js | 2 +- l10n/nl.json | 2 +- l10n/pl.js | 8 ++++---- l10n/pl.json | 8 ++++---- l10n/pt_BR.js | 8 ++++---- l10n/pt_BR.json | 8 ++++---- l10n/pt_PT.js | 2 +- l10n/pt_PT.json | 2 +- l10n/ru.js | 8 ++++---- l10n/ru.json | 8 ++++---- l10n/sc.js | 2 +- l10n/sc.json | 2 +- l10n/sk.js | 8 ++++---- l10n/sk.json | 8 ++++---- l10n/sl.js | 2 +- l10n/sl.json | 2 +- l10n/sr.js | 8 ++++---- l10n/sr.json | 8 ++++---- l10n/sv.js | 2 +- l10n/sv.json | 2 +- l10n/tr.js | 8 ++++---- l10n/tr.json | 8 ++++---- l10n/ug.js | 8 ++++---- l10n/ug.json | 8 ++++---- l10n/uk.js | 2 +- l10n/uk.json | 2 +- l10n/zh_CN.js | 2 +- l10n/zh_CN.json | 2 +- l10n/zh_HK.js | 8 ++++---- l10n/zh_HK.json | 8 ++++---- l10n/zh_TW.js | 8 ++++---- l10n/zh_TW.json | 8 ++++---- 100 files changed, 242 insertions(+), 234 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 0cc97a07..2d927a35 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", - "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "طُرُق النشر", "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "Daemon host" : "مُضِيف البرنامج الخفي", + "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", "Enable https" : "تمكين https", "Show deploy config" : "أظهِر تهيئة النشر deploy config", "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", - "Network" : "الشبكة", - "Docker network name" : "إسم شبكة \"دوكر\" Docker", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], "Type" : "النوع", "Display Name" : "إسم العرض", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", + "Network" : "الشبكة", + "Docker network name" : "إسم شبكة \"دوكر\" Docker", "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", diff --git a/l10n/ar.json b/l10n/ar.json index 84096919..195853a3 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", - "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "طُرُق النشر", "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "Daemon host" : "مُضِيف البرنامج الخفي", + "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", "Enable https" : "تمكين https", "Show deploy config" : "أظهِر تهيئة النشر deploy config", "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", - "Network" : "الشبكة", - "Docker network name" : "إسم شبكة \"دوكر\" Docker", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], "Type" : "النوع", "Display Name" : "إسم العرض", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", + "Network" : "الشبكة", + "Docker network name" : "إسم شبكة \"دوكر\" Docker", "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", diff --git a/l10n/ast.js b/l10n/ast.js index ef70c2c0..e7e53ee4 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -33,7 +33,6 @@ OC.L10N.register( "Set daemon as default" : "Predeterminar el degorriu", "Set as default daemon" : "Predeterminar el degorriu", "Enable https" : "Activar HTTPS", - "Network" : "Rede", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", @@ -64,6 +63,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Anovar","Anovar too"], "Type" : "Tipu", "Display Name" : "Nome visible", + "Network" : "Rede", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Les tos aplicaciones", "Documentation" : "Documentación", diff --git a/l10n/ast.json b/l10n/ast.json index cc04c6d0..d2ed3f44 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -31,7 +31,6 @@ "Set daemon as default" : "Predeterminar el degorriu", "Set as default daemon" : "Predeterminar el degorriu", "Enable https" : "Activar HTTPS", - "Network" : "Rede", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", @@ -62,6 +61,7 @@ "_Update_::_Update all_" : ["Anovar","Anovar too"], "Type" : "Tipu", "Display Name" : "Nome visible", + "Network" : "Rede", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Les tos aplicaciones", "Documentation" : "Documentación", diff --git a/l10n/bg.js b/l10n/bg.js index 78c63134..95ec22c3 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "URL адрес на Nextcloud", "Enabled" : "Включено", "Display name" : "Име за визуализация", - "Network" : "Мрежа", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", @@ -39,6 +38,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], "Type" : "Тип", "Display Name" : "Име за визуализация", + "Network" : "Мрежа", "by {author}\n{license}" : "от {author}\n{license}", "Your apps" : "Вашите приложения", "Documentation" : "Документация", diff --git a/l10n/bg.json b/l10n/bg.json index be983888..ecbefd43 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "URL адрес на Nextcloud", "Enabled" : "Включено", "Display name" : "Име за визуализация", - "Network" : "Мрежа", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", @@ -37,6 +36,7 @@ "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], "Type" : "Тип", "Display Name" : "Име за визуализация", + "Network" : "Мрежа", "by {author}\n{license}" : "от {author}\n{license}", "Your apps" : "Вашите приложения", "Documentation" : "Документация", diff --git a/l10n/br.js b/l10n/br.js index ad8cdae4..a0f38962 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -7,7 +7,6 @@ OC.L10N.register( "Name" : "Anv", "Host" : "Ostiz", "Display name" : "Anv ardivink", - "Network" : "Rouedad", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", "{license}-licensed" : "{license}-aotre", @@ -31,6 +30,7 @@ OC.L10N.register( "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", "Type" : "Stumm", + "Network" : "Rouedad", "by {author}\n{license}" : "great gant {author}\n{license}", "Your apps" : "Ho meziantoù", "Documentation" : "Diellvadur", diff --git a/l10n/br.json b/l10n/br.json index b6754660..5a823350 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -5,7 +5,6 @@ "Name" : "Anv", "Host" : "Ostiz", "Display name" : "Anv ardivink", - "Network" : "Rouedad", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", "{license}-licensed" : "{license}-aotre", @@ -29,6 +28,7 @@ "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", "Type" : "Stumm", + "Network" : "Rouedad", "by {author}\n{license}" : "great gant {author}\n{license}", "Your apps" : "Ho meziantoù", "Documentation" : "Diellvadur", diff --git a/l10n/ca.js b/l10n/ca.js index 33956225..6187a9ff 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Atura la prova de desplegament", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", - "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Mètode de desplegament", "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", "Daemon host" : "Servidor del dimoni", + "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", "Set daemon as default" : "Estableix el dimoni com a predeterminat", "Set as default daemon" : "Estableix com a dimoni predeterminat", "Enable https" : "Activa https", "Show deploy config" : "Mostra la configuració de desplegament", "Hide deploy config" : "Amaga la configuració de desplegament", - "Network" : "Xarxa", - "Docker network name" : "Nom de la xarxa Docker", "Additional option" : "Opció addicional", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Amb https habilitat, la xarxa està configurada com a host", + "Network" : "Xarxa", + "Docker network name" : "Nom de la xarxa Docker", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", diff --git a/l10n/ca.json b/l10n/ca.json index 34a5efa5..83489ca7 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Atura la prova de desplegament", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", - "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Mètode de desplegament", "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", "Daemon host" : "Servidor del dimoni", + "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", "Set daemon as default" : "Estableix el dimoni com a predeterminat", "Set as default daemon" : "Estableix com a dimoni predeterminat", "Enable https" : "Activa https", "Show deploy config" : "Mostra la configuració de desplegament", "Hide deploy config" : "Amaga la configuració de desplegament", - "Network" : "Xarxa", - "Docker network name" : "Nom de la xarxa Docker", "Additional option" : "Opció addicional", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Amb https habilitat, la xarxa està configurada com a host", + "Network" : "Xarxa", + "Docker network name" : "Nom de la xarxa Docker", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", diff --git a/l10n/cs.js b/l10n/cs.js index 2285196c..fef7c82d 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -91,10 +91,8 @@ OC.L10N.register( "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", @@ -116,13 +114,12 @@ OC.L10N.register( "Deployment method" : "Metoda nasazování", "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", "Daemon host" : "Hostitel procesu služby", + "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", "Enable https" : "Zapnout https", "Show deploy config" : "Zobrazit nastavení nasazení", "Hide deploy config" : "Skrýt nastavení nasazení", - "Network" : "Síť", - "Docker network name" : "Název Docker sítě", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", @@ -167,7 +164,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], "Type" : "Typ", "Display Name" : "Zobrazované jméno", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "Network" : "Síť", + "Docker network name" : "Název Docker sítě", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", diff --git a/l10n/cs.json b/l10n/cs.json index 27bb24f7..21d889f2 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -89,10 +89,8 @@ "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", @@ -114,13 +112,12 @@ "Deployment method" : "Metoda nasazování", "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", "Daemon host" : "Hostitel procesu služby", + "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", "Enable https" : "Zapnout https", "Show deploy config" : "Zobrazit nastavení nasazení", "Hide deploy config" : "Skrýt nastavení nasazení", - "Network" : "Síť", - "Docker network name" : "Název Docker sítě", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", @@ -165,7 +162,10 @@ "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], "Type" : "Typ", "Display Name" : "Zobrazované jméno", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "Network" : "Síť", + "Docker network name" : "Název Docker sítě", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", diff --git a/l10n/da.js b/l10n/da.js index bae94905..51d68786 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", - "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Udgivelsesmetode", "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "Set daemon as default" : "Angiv daemon som standardas default", "Set as default daemon" : "Angiv som standard daemon", "Enable https" : "Aktiver https", "Show deploy config" : "Vis udgivelseskonfiguration", "Hide deploy config" : "Skjul udgivelseskonfiguration", - "Network" : "Netværk", - "Docker network name" : "Docker ventværksnavn", "Additional option" : "Yderligere mulighed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Med https aktiveret, så er netværk sat til host", + "Network" : "Netværk", + "Docker network name" : "Docker ventværksnavn", "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", diff --git a/l10n/da.json b/l10n/da.json index 58c7f418..330d61f8 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", - "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Udgivelsesmetode", "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "Set daemon as default" : "Angiv daemon som standardas default", "Set as default daemon" : "Angiv som standard daemon", "Enable https" : "Aktiver https", "Show deploy config" : "Vis udgivelseskonfiguration", "Hide deploy config" : "Skjul udgivelseskonfiguration", - "Network" : "Netværk", - "Docker network name" : "Docker ventværksnavn", "Additional option" : "Yderligere mulighed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Opdater","Opdater alle"], "Type" : "Type", "Display Name" : "Vist navn", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Med https aktiveret, så er netværk sat til host", + "Network" : "Netværk", + "Docker network name" : "Docker ventværksnavn", "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", diff --git a/l10n/de.js b/l10n/de.js index 0e885c5b..b8f385bc 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "Daemon host" : "Daemon-Host", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", - "Network" : "Netzwerk", - "Docker network name" : "Docker-Netzwerkname", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Network" : "Netzwerk", + "Docker network name" : "Docker-Netzwerkname", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", diff --git a/l10n/de.json b/l10n/de.json index 00729e15..3574acbe 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -115,13 +113,12 @@ "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "Daemon host" : "Daemon-Host", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", - "Network" : "Netzwerk", - "Docker network name" : "Docker-Netzwerkname", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Network" : "Netzwerk", + "Docker network name" : "Docker-Netzwerkname", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 767bd9ae..bdcba418 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "Daemon host" : "Daemon-Host", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", - "Network" : "Netzwerk", - "Docker network name" : "Docker-Netzwerkname", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Network" : "Netzwerk", + "Docker network name" : "Docker-Netzwerkname", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index bc74d1cc..b41a32b6 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", @@ -115,13 +113,12 @@ "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "Daemon host" : "Daemon-Host", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", - "Network" : "Netzwerk", - "Docker network name" : "Docker-Netzwerkname", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], "Type" : "Typ", "Display Name" : "Anzeigename", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Network" : "Netzwerk", + "Docker network name" : "Docker-Netzwerkname", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", diff --git a/l10n/el.js b/l10n/el.js index f45b61f7..dc790559 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -13,7 +13,6 @@ OC.L10N.register( "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", - "Network" : "Δίκτυο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", @@ -45,6 +44,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "Network" : "Δίκτυο", "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", diff --git a/l10n/el.json b/l10n/el.json index 08a4d5cb..c4c2394d 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -11,7 +11,6 @@ "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", - "Network" : "Δίκτυο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", @@ -43,6 +42,7 @@ "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "Network" : "Δίκτυο", "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index ab66a9c8..da721653 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Hostname to access ExApps" : "Hostname to access ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon with this name already exists", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", - "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", "URL should start with http:// or https://" : "URL should start with http:// or https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Deployment method", "Select daemon deploy method" : "Select daemon deploy method", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "Set daemon as default" : "Set daemon as default", "Set as default daemon" : "Set as default daemon", "Enable https" : "Enable https", "Show deploy config" : "Show deploy config", "Hide deploy config" : "Hide deploy config", - "Network" : "Network", - "Docker network name" : "Docker network name", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", "Display Name" : "Display Name", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "With https enabled network is set to host", + "Network" : "Network", + "Docker network name" : "Docker network name", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 735163b5..26fb91c4 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Hostname to access ExApps" : "Hostname to access ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon with this name already exists", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", - "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", "URL should start with http:// or https://" : "URL should start with http:// or https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Deployment method", "Select daemon deploy method" : "Select daemon deploy method", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "Set daemon as default" : "Set daemon as default", "Set as default daemon" : "Set as default daemon", "Enable https" : "Enable https", "Show deploy config" : "Show deploy config", "Hide deploy config" : "Hide deploy config", - "Network" : "Network", - "Docker network name" : "Docker network name", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", "Display Name" : "Display Name", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "With https enabled network is set to host", + "Network" : "Network", + "Docker network name" : "Docker network name", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", diff --git a/l10n/eo.js b/l10n/eo.js index 114fa2cf..ff4e1cad 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -6,7 +6,6 @@ OC.L10N.register( "Name" : "Nomo", "Host" : "Gastigo", "Display name" : "Vidiga nomo", - "Network" : "Reto", "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", @@ -32,6 +31,7 @@ OC.L10N.register( "Actions" : "Agoj", "Results from other categories" : "Rezultoj el aliaj kategorioj", "Type" : "Tipo", + "Network" : "Reto", "Your apps" : "Viaj aplikaĵoj", "Documentation" : "Dokumentaro", "Details" : "Detaloj", diff --git a/l10n/eo.json b/l10n/eo.json index 80747d06..747b8612 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -4,7 +4,6 @@ "Name" : "Nomo", "Host" : "Gastigo", "Display name" : "Vidiga nomo", - "Network" : "Reto", "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", @@ -30,6 +29,7 @@ "Actions" : "Agoj", "Results from other categories" : "Rezultoj el aliaj kategorioj", "Type" : "Tipo", + "Network" : "Reto", "Your apps" : "Viaj aplikaĵoj", "Documentation" : "Dokumentaro", "Details" : "Detaloj", diff --git a/l10n/es.js b/l10n/es.js index ec37438f..75412d66 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -88,10 +88,8 @@ OC.L10N.register( "Stop Deploy test" : "Detener pruebas de despliegue", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", - "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", @@ -107,13 +105,12 @@ OC.L10N.register( "Deployment method" : "Método de despliegue", "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", "Daemon host" : "Host del daemon", + "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "Set daemon as default" : "Establecer daemon como predeterminado", "Set as default daemon" : "Establecer como daemon predeterminado", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuración de despligue", "Hide deploy config" : "Ocultar configuración de despliegue", - "Network" : "Red", - "Docker network name" : "Nombre de la red Docker", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", @@ -158,7 +155,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a mostrar", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", + "Network" : "Red", + "Docker network name" : "Nombre de la red Docker", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus apps", "Documentation" : "Documentación", diff --git a/l10n/es.json b/l10n/es.json index 407c9057..1b3fa0e4 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -86,10 +86,8 @@ "Stop Deploy test" : "Detener pruebas de despliegue", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", - "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", @@ -105,13 +103,12 @@ "Deployment method" : "Método de despliegue", "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", "Daemon host" : "Host del daemon", + "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "Set daemon as default" : "Establecer daemon como predeterminado", "Set as default daemon" : "Establecer como daemon predeterminado", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuración de despligue", "Hide deploy config" : "Ocultar configuración de despliegue", - "Network" : "Red", - "Docker network name" : "Nombre de la red Docker", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", @@ -156,7 +153,10 @@ "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a mostrar", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", + "Network" : "Red", + "Docker network name" : "Nombre de la red Docker", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus apps", "Documentation" : "Documentación", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index c35e14ac..42b86360 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -9,7 +9,6 @@ OC.L10N.register( "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", - "Network" : "Red", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", @@ -38,6 +37,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "Network" : "Red", "by {author}\n{license}" : "por {author}\n {license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index 38eb60e9..1df83fc2 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -7,7 +7,6 @@ "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", - "Network" : "Red", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", @@ -36,6 +35,7 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "Network" : "Red", "by {author}\n{license}" : "por {author}\n {license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 69604291..d4bdd7df 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -12,7 +12,6 @@ OC.L10N.register( "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", - "Network" : "Red", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", @@ -44,6 +43,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "Network" : "Red", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 8e16417e..efa8b6a5 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -10,7 +10,6 @@ "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", - "Network" : "Red", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", @@ -42,6 +41,7 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "Network" : "Red", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus aplicaciones", "Documentation" : "Documentación", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index d67c9e79..aea01fc3 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -8,7 +8,6 @@ OC.L10N.register( "Host" : "Host", "Enabled" : "Sisse lülitatud", "Display name" : "Kuvatav nimi", - "Network" : "Võrk", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", @@ -29,8 +28,10 @@ OC.L10N.register( "Version" : "Versioon", "Level" : "Tase", "Actions" : "Tegevused", + "_Update_::_Update all_" : ["Uuenda","Uuenda kõik"], "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", + "Network" : "Võrk", "Your apps" : "Sinu rakendused", "Documentation" : "Dokumentatsioon", "Details" : "Üksikasjad", @@ -38,7 +39,10 @@ OC.L10N.register( "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", + "Supported apps" : "Toetatud rakendused", "Enable" : "Lülita sisse", - "Disable" : "Lülita välja" + "Disable" : "Lülita välja", + "Allow untested app" : "Luba testimata rakenduse kasutamine", + "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 5ded693d..8a92b181 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -6,7 +6,6 @@ "Host" : "Host", "Enabled" : "Sisse lülitatud", "Display name" : "Kuvatav nimi", - "Network" : "Võrk", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", @@ -27,8 +26,10 @@ "Version" : "Versioon", "Level" : "Tase", "Actions" : "Tegevused", + "_Update_::_Update all_" : ["Uuenda","Uuenda kõik"], "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", + "Network" : "Võrk", "Your apps" : "Sinu rakendused", "Documentation" : "Dokumentatsioon", "Details" : "Üksikasjad", @@ -36,7 +37,10 @@ "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", + "Supported apps" : "Toetatud rakendused", "Enable" : "Lülita sisse", - "Disable" : "Lülita välja" + "Disable" : "Lülita välja", + "Allow untested app" : "Luba testimata rakenduse kasutamine", + "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/eu.js b/l10n/eu.js index 482de0cc..363cb015 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -44,7 +44,6 @@ OC.L10N.register( "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", "Enable https" : "Gaitu https", - "Network" : "Sarea", "Additional option" : "Aukera gehiago", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", @@ -81,6 +80,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], "Type" : "Mota", "Display Name" : "Izena erakutsi", + "Network" : "Sarea", "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", diff --git a/l10n/eu.json b/l10n/eu.json index 80d54c1c..4f803ac2 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -42,7 +42,6 @@ "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", "Enable https" : "Gaitu https", - "Network" : "Sarea", "Additional option" : "Aukera gehiago", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", @@ -79,6 +78,7 @@ "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], "Type" : "Mota", "Display Name" : "Izena erakutsi", + "Network" : "Sarea", "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", diff --git a/l10n/fa.js b/l10n/fa.js index b06233fe..70d3be12 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", "Display name" : "Display name", - "Network" : "شبکه", "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", @@ -39,6 +38,7 @@ OC.L10N.register( "Results from other categories" : "نتایج از دیگر دسته‌ها", "_Update_::_Update all_" : ["به‌روز رسانی","به‌روز رسانی همه"], "Type" : "نوع", + "Network" : "شبکه", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "برنامه‌های شما", "Documentation" : "مستندات", diff --git a/l10n/fa.json b/l10n/fa.json index 380c96df..e274d03f 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", "Display name" : "Display name", - "Network" : "شبکه", "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", @@ -37,6 +36,7 @@ "Results from other categories" : "نتایج از دیگر دسته‌ها", "_Update_::_Update all_" : ["به‌روز رسانی","به‌روز رسانی همه"], "Type" : "نوع", + "Network" : "شبکه", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "برنامه‌های شما", "Documentation" : "مستندات", diff --git a/l10n/fi.js b/l10n/fi.js index b5ae7572..af404042 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloudin URL-osoite", "Enabled" : "Käytössä", "Display name" : "Näyttönimi", - "Network" : "Verkko", "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", @@ -40,6 +39,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Päivitä","Päivitä kaikki"], "Type" : "Tyyppi", "Display Name" : "Näyttönimi", + "Network" : "Verkko", "by {author}\n{license}" : "tekijä {author}\n{license}", "Your apps" : "Sovelluksesi", "Documentation" : "Dokumentaatio", diff --git a/l10n/fi.json b/l10n/fi.json index 3e049558..3e61aa3f 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "Nextcloudin URL-osoite", "Enabled" : "Käytössä", "Display name" : "Näyttönimi", - "Network" : "Verkko", "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", @@ -38,6 +37,7 @@ "_Update_::_Update all_" : ["Päivitä","Päivitä kaikki"], "Type" : "Tyyppi", "Display Name" : "Näyttönimi", + "Network" : "Verkko", "by {author}\n{license}" : "tekijä {author}\n{license}", "Your apps" : "Sovelluksesi", "Documentation" : "Dokumentaatio", diff --git a/l10n/fr.js b/l10n/fr.js index 460eada4..1ecbdfe3 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -89,10 +89,8 @@ OC.L10N.register( "Stop Deploy test" : "Arrêt du test de déploiement", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un service du même nom existe déjà", "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", - "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", @@ -114,13 +112,12 @@ OC.L10N.register( "Deployment method" : "Méthode de déploiement", "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", "Daemon host" : "Hôte du Deamon", + "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Set daemon as default" : "Définir comme service par défaut", "Set as default daemon" : "Définir ce deamon par défaut", "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", - "Network" : "Réseau", - "Docker network name" : "Nom du réseau Docker", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", @@ -165,7 +162,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], "Type" : "Type", "Display Name" : "Nom affiché", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", + "Network" : "Réseau", + "Docker network name" : "Nom du réseau Docker", "by {author}\n{license}" : "par {author}\n{license}", "Your apps" : "Vos applications", "Documentation" : "Documentation", diff --git a/l10n/fr.json b/l10n/fr.json index 6d91bf87..fae76ae1 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -87,10 +87,8 @@ "Stop Deploy test" : "Arrêt du test de déploiement", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un service du même nom existe déjà", "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", - "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", @@ -112,13 +110,12 @@ "Deployment method" : "Méthode de déploiement", "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", "Daemon host" : "Hôte du Deamon", + "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Set daemon as default" : "Définir comme service par défaut", "Set as default daemon" : "Définir ce deamon par défaut", "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", - "Network" : "Réseau", - "Docker network name" : "Nom du réseau Docker", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", @@ -163,7 +160,10 @@ "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], "Type" : "Type", "Display Name" : "Nom affiché", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", + "Network" : "Réseau", + "Docker network name" : "Nom du réseau Docker", "by {author}\n{license}" : "par {author}\n{license}", "Your apps" : "Vos applications", "Documentation" : "Documentation", diff --git a/l10n/ga.js b/l10n/ga.js index 0bfe4578..011e98f5 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", - "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Modh imscaradh", "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", "Daemon host" : "Deamhan óstach", + "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", "Enable https" : "Cumasaigh https", "Show deploy config" : "Taispeáin cumraíocht imscaradh", "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", - "Network" : "Líonra", - "Docker network name" : "Ainm líonra docker", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], "Type" : "Cineál", "Display Name" : "Ainm taispeána", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", + "Network" : "Líonra", + "Docker network name" : "Ainm líonra docker", "by {author}\n{license}" : "le {author}\n{license}", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", diff --git a/l10n/ga.json b/l10n/ga.json index 3872d98c..7d6226b6 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", - "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Modh imscaradh", "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", "Daemon host" : "Deamhan óstach", + "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", "Enable https" : "Cumasaigh https", "Show deploy config" : "Taispeáin cumraíocht imscaradh", "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", - "Network" : "Líonra", - "Docker network name" : "Ainm líonra docker", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], "Type" : "Cineál", "Display Name" : "Ainm taispeána", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", + "Network" : "Líonra", + "Docker network name" : "Ainm líonra docker", "by {author}\n{license}" : "le {author}\n{license}", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", diff --git a/l10n/gl.js b/l10n/gl.js index fb73831e..0b3162cb 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Deter a proba de despregadura", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", - "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Método de despregadura", "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", "Daemon host" : "Servidor do servizo", + "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "Set daemon as default" : "Definir o servizo como predeterminado", "Set as default daemon" : "Definir como servizo predeterminado", "Enable https" : "Activar https", "Show deploy config" : "Amosar a configuración da despregadura", "Hide deploy config" : "Agochar a configuración da despregadura", - "Network" : "Rede", - "Docker network name" : "Nome da rede Docker", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], "Type" : "Escribir", "Display Name" : "Nome para amosar", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", + "Network" : "Rede", + "Docker network name" : "Nome da rede Docker", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", diff --git a/l10n/gl.json b/l10n/gl.json index b87d94a1..6b986f72 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Deter a proba de despregadura", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", - "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Método de despregadura", "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", "Daemon host" : "Servidor do servizo", + "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "Set daemon as default" : "Definir o servizo como predeterminado", "Set as default daemon" : "Definir como servizo predeterminado", "Enable https" : "Activar https", "Show deploy config" : "Amosar a configuración da despregadura", "Hide deploy config" : "Agochar a configuración da despregadura", - "Network" : "Rede", - "Docker network name" : "Nome da rede Docker", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], "Type" : "Escribir", "Display Name" : "Nome para amosar", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", + "Network" : "Rede", + "Docker network name" : "Nome da rede Docker", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", diff --git a/l10n/he.js b/l10n/he.js index b4d68cc2..18ae47fb 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", - "Network" : "רשת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", @@ -38,6 +37,7 @@ OC.L10N.register( "Results from other categories" : "תוצאות מקטגוריות אחרות", "Type" : "סוג", "Display Name" : "שם תצוגה", + "Network" : "רשת", "by {author}\n{license}" : "מאת {author}\n{license}", "Your apps" : "היישומונים שלך", "Documentation" : "תיעוד", diff --git a/l10n/he.json b/l10n/he.json index 4a31afb7..e093abbd 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -7,7 +7,6 @@ "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", - "Network" : "רשת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", @@ -36,6 +35,7 @@ "Results from other categories" : "תוצאות מקטגוריות אחרות", "Type" : "סוג", "Display Name" : "שם תצוגה", + "Network" : "רשת", "by {author}\n{license}" : "מאת {author}\n{license}", "Your apps" : "היישומונים שלך", "Documentation" : "תיעוד", diff --git a/l10n/hr.js b/l10n/hr.js index 4db72e88..6432beca 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", - "Network" : "Mreža", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", @@ -38,6 +37,7 @@ OC.L10N.register( "Results from other categories" : "Rezultati iz drugih kategorija", "Type" : "Vrsta", "Display Name" : "Ime", + "Network" : "Mreža", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Vaše aplikacije", "Documentation" : "Dokumentacija", diff --git a/l10n/hr.json b/l10n/hr.json index af18c898..1e1d07e7 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -7,7 +7,6 @@ "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", - "Network" : "Mreža", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", @@ -36,6 +35,7 @@ "Results from other categories" : "Rezultati iz drugih kategorija", "Type" : "Vrsta", "Display Name" : "Ime", + "Network" : "Mreža", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Vaše aplikacije", "Documentation" : "Dokumentacija", diff --git a/l10n/hu.js b/l10n/hu.js index e9ad6b63..615d13ad 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -11,7 +11,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Engedélyezve", "Display name" : "Megjelenítendő név", - "Network" : "Hálózat", "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", @@ -41,6 +40,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Frissítés","Összes frissítése"], "Type" : "Típus", "Display Name" : "Megjelenített név", + "Network" : "Hálózat", "by {author}\n{license}" : "szerző: {author}\n{license}", "Your apps" : "Az Ön alkalmazásai", "Documentation" : "Dokumentáció", diff --git a/l10n/hu.json b/l10n/hu.json index fa6039b0..364544c4 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -9,7 +9,6 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Engedélyezve", "Display name" : "Megjelenítendő név", - "Network" : "Hálózat", "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", @@ -39,6 +38,7 @@ "_Update_::_Update all_" : ["Frissítés","Összes frissítése"], "Type" : "Típus", "Display Name" : "Megjelenített név", + "Network" : "Hálózat", "by {author}\n{license}" : "szerző: {author}\n{license}", "Your apps" : "Az Ön alkalmazásai", "Documentation" : "Dokumentáció", diff --git a/l10n/is.js b/l10n/is.js index c23532d2..1c5af7cb 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -12,7 +12,6 @@ OC.L10N.register( "Compute device" : "Reiknitæki", "Enabled" : "Virkt", "Display name" : "Birtingarnafn", - "Network" : "Netkerfi", "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", @@ -43,6 +42,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], "Type" : "Tegund", "Display Name" : "Birtingarnafn", + "Network" : "Netkerfi", "by {author}\n{license}" : "frá {author}\n{license}", "Your apps" : "Forritin þín", "Documentation" : "Hjálparskjöl", diff --git a/l10n/is.json b/l10n/is.json index bb817b87..39dbbf45 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -10,7 +10,6 @@ "Compute device" : "Reiknitæki", "Enabled" : "Virkt", "Display name" : "Birtingarnafn", - "Network" : "Netkerfi", "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", @@ -41,6 +40,7 @@ "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], "Type" : "Tegund", "Display Name" : "Birtingarnafn", + "Network" : "Netkerfi", "by {author}\n{license}" : "frá {author}\n{license}", "Your apps" : "Forritin þín", "Documentation" : "Hjálparskjöl", diff --git a/l10n/it.js b/l10n/it.js index 85214dbf..550b0c8a 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Abilitata", "Display name" : "Nome visualizzato", - "Network" : "Rete", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", @@ -40,6 +39,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], "Type" : "Tipo", "Display Name" : "Nome visualizzato", + "Network" : "Rete", "by {author}\n{license}" : "di {author}\n{license}", "Your apps" : "Le tue applicazioni", "Documentation" : "Documentazione", diff --git a/l10n/it.json b/l10n/it.json index d647aaed..38b823ec 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Abilitata", "Display name" : "Nome visualizzato", - "Network" : "Rete", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", @@ -38,6 +37,7 @@ "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], "Type" : "Tipo", "Display Name" : "Nome visualizzato", + "Network" : "Rete", "by {author}\n{license}" : "di {author}\n{license}", "Your apps" : "Le tue applicazioni", "Documentation" : "Documentazione", diff --git a/l10n/ja.js b/l10n/ja.js index 84b0b310..88eb14c5 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -12,7 +12,6 @@ OC.L10N.register( "Compute device" : "計算デバイス", "Enabled" : "有効", "Display name" : "表示名", - "Network" : "ネットワーク", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", @@ -44,6 +43,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", + "Network" : "ネットワーク", "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", diff --git a/l10n/ja.json b/l10n/ja.json index aeaf53a4..a84155bd 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -10,7 +10,6 @@ "Compute device" : "計算デバイス", "Enabled" : "有効", "Display name" : "表示名", - "Network" : "ネットワーク", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", @@ -42,6 +41,7 @@ "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", + "Network" : "ネットワーク", "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", diff --git a/l10n/ka.js b/l10n/ka.js index 42eee45e..8822bf0b 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", "Display name" : "Display name", - "Network" : "Network", "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", @@ -38,6 +37,7 @@ OC.L10N.register( "Results from other categories" : "Results from other categories", "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", + "Network" : "Network", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", diff --git a/l10n/ka.json b/l10n/ka.json index cc24cc82..081f4e76 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", "Display name" : "Display name", - "Network" : "Network", "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", @@ -36,6 +35,7 @@ "Results from other categories" : "Results from other categories", "_Update_::_Update all_" : ["Update","Update all"], "Type" : "Type", + "Network" : "Network", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", diff --git a/l10n/ko.js b/l10n/ko.js index 163797df..958d82e7 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -89,10 +89,8 @@ OC.L10N.register( "Stop Deploy test" : "배포 테스트 중단", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", - "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", @@ -109,13 +107,12 @@ OC.L10N.register( "Deployment method" : "배포 방식", "Select daemon deploy method" : "데몬 배포 방식 선택", "Daemon host" : "데몬 호스트", + "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", "Set daemon as default" : "데몬을 기본값으로 설정", "Set as default daemon" : "기본 데몬으로 설정", "Enable https" : "https 활성화", "Show deploy config" : "배포 구성 표시", "Hide deploy config" : "배포 구성 숨기기", - "Network" : "네트워크", - "Docker network name" : "Docker 네트워크 이름", "Additional option" : "부가 옵션", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", @@ -160,7 +157,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["모두 업데이트"], "Type" : "종류", "Display Name" : "표시 이름", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", + "Network" : "네트워크", + "Docker network name" : "Docker 네트워크 이름", "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Your apps" : "내 앱", "Documentation" : "문서", diff --git a/l10n/ko.json b/l10n/ko.json index 0d5ed877..26da37b5 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -87,10 +87,8 @@ "Stop Deploy test" : "배포 테스트 중단", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", - "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", @@ -107,13 +105,12 @@ "Deployment method" : "배포 방식", "Select daemon deploy method" : "데몬 배포 방식 선택", "Daemon host" : "데몬 호스트", + "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", "Set daemon as default" : "데몬을 기본값으로 설정", "Set as default daemon" : "기본 데몬으로 설정", "Enable https" : "https 활성화", "Show deploy config" : "배포 구성 표시", "Hide deploy config" : "배포 구성 숨기기", - "Network" : "네트워크", - "Docker network name" : "Docker 네트워크 이름", "Additional option" : "부가 옵션", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", @@ -158,7 +155,10 @@ "_Update_::_Update all_" : ["모두 업데이트"], "Type" : "종류", "Display Name" : "표시 이름", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", + "Network" : "네트워크", + "Docker network name" : "Docker 네트워크 이름", "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Your apps" : "내 앱", "Documentation" : "문서", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 440338cf..1742ca4f 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -12,7 +12,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Įjungta", "More info" : "Daugiau informacijos", - "Network" : "Tinklas", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", @@ -43,6 +42,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", + "Network" : "Tinklas", "by {author}\n{license}" : "pagal {author}\n{license}", "Your apps" : "Jūsų programėlės", "Documentation" : "Dokumentacija", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 057421fc..01eea2ee 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -10,7 +10,6 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Įjungta", "More info" : "Daugiau informacijos", - "Network" : "Tinklas", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", @@ -41,6 +40,7 @@ "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", + "Network" : "Tinklas", "by {author}\n{license}" : "pagal {author}\n{license}", "Your apps" : "Jūsų programėlės", "Documentation" : "Dokumentacija", diff --git a/l10n/lv.js b/l10n/lv.js index 163170e3..b3557016 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -9,7 +9,6 @@ OC.L10N.register( "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", "Display name" : "Attēlojamais vārds", - "Network" : "Tīkls", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", @@ -27,6 +26,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atjaunināt visas","Atjaunināt","Atjaunināt visas"], "Type" : "Veids", "Display Name" : "Attēlojamais vārds", + "Network" : "Tīkls", "Documentation" : "Dokumentācija", "Details" : "Detaļas", "Changelog" : "Izmaiņu žurnāls", diff --git a/l10n/lv.json b/l10n/lv.json index f73cd222..64f92a05 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -7,7 +7,6 @@ "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", "Display name" : "Attēlojamais vārds", - "Network" : "Tīkls", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", @@ -25,6 +24,7 @@ "_Update_::_Update all_" : ["Atjaunināt visas","Atjaunināt","Atjaunināt visas"], "Type" : "Veids", "Display Name" : "Attēlojamais vārds", + "Network" : "Tīkls", "Documentation" : "Dokumentācija", "Details" : "Detaļas", "Changelog" : "Izmaiņu žurnāls", diff --git a/l10n/mk.js b/l10n/mk.js index fd1bd6c8..a3c71eda 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Овозможено", "Display name" : "Име и презиме", - "Network" : "Мрежа", "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", @@ -38,6 +37,7 @@ OC.L10N.register( "Results from other categories" : "Резултати од други категории", "_Update_::_Update all_" : ["Ажурирај","Ажурирај ги сите"], "Type" : "Вид", + "Network" : "Мрежа", "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваши апликации", "Documentation" : "Документација", diff --git a/l10n/mk.json b/l10n/mk.json index bcacaab3..95959695 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Овозможено", "Display name" : "Име и презиме", - "Network" : "Мрежа", "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", @@ -36,6 +35,7 @@ "Results from other categories" : "Резултати од други категории", "_Update_::_Update all_" : ["Ажурирај","Ажурирај ги сите"], "Type" : "Вид", + "Network" : "Мрежа", "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваши апликации", "Documentation" : "Документација", diff --git a/l10n/nb.js b/l10n/nb.js index f0a67f26..314ad0ef 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -89,10 +89,8 @@ OC.L10N.register( "Stop Deploy test" : "Stopp distribusjonstest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", - "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", @@ -114,13 +112,12 @@ OC.L10N.register( "Deployment method" : "Distribueringsmetode", "Select daemon deploy method" : "Velg metode for daemon-distribuering", "Daemon host" : "Daemon-vert", + "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", "Set daemon as default" : "Angi daemon som standard", "Set as default daemon" : "Angi som standard daemon", "Enable https" : "Aktiver https", "Show deploy config" : "Vis konfigurasjon for distribuering", "Hide deploy config" : "Skjul konfigurasjon for distribuering", - "Network" : "Nettverk", - "Docker network name" : "Docker-nettverksnavn", "Additional option" : "Ytterligere alternativ", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", @@ -165,7 +162,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], "Type" : "Type", "Display Name" : "Visningsnavn", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", + "Network" : "Nettverk", + "Docker network name" : "Docker-nettverksnavn", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", diff --git a/l10n/nb.json b/l10n/nb.json index 383fa2b7..c24c80db 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -87,10 +87,8 @@ "Stop Deploy test" : "Stopp distribusjonstest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", - "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", @@ -112,13 +110,12 @@ "Deployment method" : "Distribueringsmetode", "Select daemon deploy method" : "Velg metode for daemon-distribuering", "Daemon host" : "Daemon-vert", + "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", "Set daemon as default" : "Angi daemon som standard", "Set as default daemon" : "Angi som standard daemon", "Enable https" : "Aktiver https", "Show deploy config" : "Vis konfigurasjon for distribuering", "Hide deploy config" : "Skjul konfigurasjon for distribuering", - "Network" : "Nettverk", - "Docker network name" : "Docker-nettverksnavn", "Additional option" : "Ytterligere alternativ", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", @@ -163,7 +160,10 @@ "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], "Type" : "Type", "Display Name" : "Visningsnavn", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", + "Network" : "Nettverk", + "Docker network name" : "Docker-nettverksnavn", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", diff --git a/l10n/nl.js b/l10n/nl.js index a2728d37..571879e1 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -15,7 +15,6 @@ OC.L10N.register( "GPUs support" : "GPUs support", "Enabled" : "Ingeschakeld", "More info" : "Meer info", - "Network" : "Netwerk", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", @@ -46,6 +45,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", + "Network" : "Netwerk", "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", diff --git a/l10n/nl.json b/l10n/nl.json index 7478c879..2a793bdb 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -13,7 +13,6 @@ "GPUs support" : "GPUs support", "Enabled" : "Ingeschakeld", "More info" : "Meer info", - "Network" : "Netwerk", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", @@ -44,6 +43,7 @@ "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", + "Network" : "Netwerk", "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", diff --git a/l10n/pl.js b/l10n/pl.js index f80614fd..2fd0d574 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -31,15 +31,12 @@ OC.L10N.register( "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", - "Network" : "Sieć", - "Docker network name" : "Nazwa sieci Dockera", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key is required" : "Wymagany jest klucz opcji", @@ -81,7 +78,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", + "Network" : "Sieć", + "Docker network name" : "Nazwa sieci Dockera", "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", diff --git a/l10n/pl.json b/l10n/pl.json index 22b02396..08b9f1da 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -29,15 +29,12 @@ "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", - "Network" : "Sieć", - "Docker network name" : "Nazwa sieci Dockera", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key is required" : "Wymagany jest klucz opcji", @@ -79,7 +76,10 @@ "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", + "Network" : "Sieć", + "Docker network name" : "Nazwa sieci Dockera", "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 1074e9c8..d5ebddec 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", "Set as default daemon" : "Definir como daemon padrão", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuração de deploy", "Hide deploy config" : "Ocultar configuração de deploy", - "Network" : "Rede", - "Docker network name" : "Nome da rede do Docker", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave de opção (exclusiva)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], "Type" : "Tipo", "Display Name" : "Nome", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", + "Network" : "Rede", + "Docker network name" : "Nome da rede do Docker", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 7ea43e00..49f3289a 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", "Set as default daemon" : "Definir como daemon padrão", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuração de deploy", "Hide deploy config" : "Ocultar configuração de deploy", - "Network" : "Rede", - "Docker network name" : "Nome da rede do Docker", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave de opção (exclusiva)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], "Type" : "Tipo", "Display Name" : "Nome", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", + "Network" : "Rede", + "Docker network name" : "Nome da rede do Docker", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 45c3757c..62d9ce79 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Anfitrião", "Enabled" : "Ativado", "Display name" : "Nome a exibir", - "Network" : "Rede", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", @@ -33,6 +32,7 @@ OC.L10N.register( "Results from other categories" : "Resultados de outras categorias", "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", + "Network" : "Rede", "Your apps" : "As suas apps", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 6da3d37a..1a8a4b5f 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -7,7 +7,6 @@ "Host" : "Anfitrião", "Enabled" : "Ativado", "Display name" : "Nome a exibir", - "Network" : "Rede", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", @@ -31,6 +30,7 @@ "Results from other categories" : "Resultados de outras categorias", "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", + "Network" : "Rede", "Your apps" : "As suas apps", "Documentation" : "Documentação", "Details" : "Detalhes", diff --git a/l10n/ru.js b/l10n/ru.js index a71a08cc..9914ddc4 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -90,10 +90,8 @@ OC.L10N.register( "Stop Deploy test" : "Остановить тест развертывания", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", @@ -115,13 +113,12 @@ OC.L10N.register( "Deployment method" : "Метод развертывания", "Select daemon deploy method" : "Выберите метод развертывания службы", "Daemon host" : "Хост службы", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "Set daemon as default" : "Использовать службу по умолчанию", "Set as default daemon" : "Использовать службу по умолчанию", "Enable https" : "Использовать HTTPS", "Show deploy config" : "Показать конфигурацию развёртывания", "Hide deploy config" : "Скрыть конфигурацию развёртывания", - "Network" : "Сеть", - "Docker network name" : "Имя в сети Docker", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", @@ -166,7 +163,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], "Type" : "Тип", "Display Name" : "Отображаемое имя", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "При включенном https сеть настроена на хост", + "Network" : "Сеть", + "Docker network name" : "Имя в сети Docker", "by {author}\n{license}" : "автор: {author}\n{license}", "Your apps" : "Ваши приложения", "Documentation" : "Документация", diff --git a/l10n/ru.json b/l10n/ru.json index dc1ca11a..30ff90f1 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -88,10 +88,8 @@ "Stop Deploy test" : "Остановить тест развертывания", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", - "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", @@ -113,13 +111,12 @@ "Deployment method" : "Метод развертывания", "Select daemon deploy method" : "Выберите метод развертывания службы", "Daemon host" : "Хост службы", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "Set daemon as default" : "Использовать службу по умолчанию", "Set as default daemon" : "Использовать службу по умолчанию", "Enable https" : "Использовать HTTPS", "Show deploy config" : "Показать конфигурацию развёртывания", "Hide deploy config" : "Скрыть конфигурацию развёртывания", - "Network" : "Сеть", - "Docker network name" : "Имя в сети Docker", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", @@ -164,7 +161,10 @@ "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], "Type" : "Тип", "Display Name" : "Отображаемое имя", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "При включенном https сеть настроена на хост", + "Network" : "Сеть", + "Docker network name" : "Имя в сети Docker", "by {author}\n{license}" : "автор: {author}\n{license}", "Your apps" : "Ваши приложения", "Documentation" : "Документация", diff --git a/l10n/sc.js b/l10n/sc.js index 9e04d638..e24765f7 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", "Display name" : "Ammustra nùmene", - "Network" : "Rete", "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", @@ -37,6 +36,7 @@ OC.L10N.register( "Actions" : "Atziones", "Results from other categories" : "Resurtados dae àteras categorias", "Type" : "Genia", + "Network" : "Rete", "by {author}\n{license}" : "de {author}\n{license}", "Your apps" : "Is aplicatziones tuas", "Documentation" : "Documentatzione", diff --git a/l10n/sc.json b/l10n/sc.json index 77da0410..0fb07d6d 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", "Display name" : "Ammustra nùmene", - "Network" : "Rete", "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", @@ -35,6 +34,7 @@ "Actions" : "Atziones", "Results from other categories" : "Resurtados dae àteras categorias", "Type" : "Genia", + "Network" : "Rete", "by {author}\n{license}" : "de {author}\n{license}", "Your apps" : "Is aplicatziones tuas", "Documentation" : "Documentatzione", diff --git a/l10n/sk.js b/l10n/sk.js index f797f676..dbb05a09 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Zastaviť test nasadenia", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Démon s týmto názvom už existuje", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", - "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Metóda nasadenia", "Select daemon deploy method" : "Vybrať metódu nasadenia démona", "Daemon host" : "Hostiteľ démona", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "Set daemon as default" : "Nastaviť démona ako predvoleného", "Set as default daemon" : "Nastaviť ako predvoleného démona", "Enable https" : "Povoliť https", "Show deploy config" : "Zobraziť konfiguráciu nasadenia", "Hide deploy config" : "Skryť konfiguráciu nasadenia", - "Network" : "Sieť", - "Docker network name" : "Meno siete dockeru", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], "Type" : "Typ", "Display Name" : "Zobrazované meno", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", + "Network" : "Sieť", + "Docker network name" : "Meno siete dockeru", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", diff --git a/l10n/sk.json b/l10n/sk.json index 953542e8..653c8c09 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Zastaviť test nasadenia", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Démon s týmto názvom už existuje", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", - "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Metóda nasadenia", "Select daemon deploy method" : "Vybrať metódu nasadenia démona", "Daemon host" : "Hostiteľ démona", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "Set daemon as default" : "Nastaviť démona ako predvoleného", "Set as default daemon" : "Nastaviť ako predvoleného démona", "Enable https" : "Povoliť https", "Show deploy config" : "Zobraziť konfiguráciu nasadenia", "Hide deploy config" : "Skryť konfiguráciu nasadenia", - "Network" : "Sieť", - "Docker network name" : "Meno siete dockeru", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], "Type" : "Typ", "Display Name" : "Zobrazované meno", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", + "Network" : "Sieť", + "Docker network name" : "Meno siete dockeru", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", diff --git a/l10n/sl.js b/l10n/sl.js index 5c6a92e0..01c6093a 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -10,7 +10,6 @@ OC.L10N.register( "Nextcloud URL" : "Naslov URL Nextcloud", "Enabled" : "Omogočeno", "Display name" : "Prikazno ime", - "Network" : "Omrežje", "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", @@ -39,6 +38,7 @@ OC.L10N.register( "Results from other categories" : "Rezultati iskanja med drugimi kategorijami", "_Update_::_Update all_" : ["Posodobi","Posodobi","Posodobi","Posodobi vse"], "Type" : "Vrsta", + "Network" : "Omrežje", "by {author}\n{license}" : "Razvoj: {author}\nDovoljenje: {license}", "Your apps" : "Vsi programi", "Documentation" : "Dokumentacija", diff --git a/l10n/sl.json b/l10n/sl.json index ba05dc89..ad1cb09d 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -8,7 +8,6 @@ "Nextcloud URL" : "Naslov URL Nextcloud", "Enabled" : "Omogočeno", "Display name" : "Prikazno ime", - "Network" : "Omrežje", "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", @@ -37,6 +36,7 @@ "Results from other categories" : "Rezultati iskanja med drugimi kategorijami", "_Update_::_Update all_" : ["Posodobi","Posodobi","Posodobi","Posodobi vse"], "Type" : "Vrsta", + "Network" : "Omrežje", "by {author}\n{license}" : "Razvoj: {author}\nDovoljenje: {license}", "Your apps" : "Vsi programi", "Documentation" : "Dokumentacija", diff --git a/l10n/sr.js b/l10n/sr.js index 98af4ce7..63751198 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Hostname to access ExApps" : "Име хоста за приступ ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Даемон са овим именом већ постоји", "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", - "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Метода постављања", "Select daemon deploy method" : "Изаберте методу за постављање даемона", "Daemon host" : "Хост даемона", + "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "Set daemon as default" : "Постави даемон као подразумевани", "Set as default daemon" : "Поставља даемон као подразумевани", "Enable https" : "Укључи https", "Show deploy config" : "Прикажи конфигурацију постављања", "Hide deploy config" : "Сакриј конфигурацију постављања", - "Network" : "Мрежа", - "Docker network name" : "Име Docker мреже: ", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], "Type" : "Тип", "Display Name" : "Име за приказ", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", + "Network" : "Мрежа", + "Docker network name" : "Име Docker мреже: ", "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваше апликације", "Documentation" : "Документација", diff --git a/l10n/sr.json b/l10n/sr.json index 45e12953..0cbbc1c0 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Hostname to access ExApps" : "Име хоста за приступ ExApps", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Даемон са овим именом већ постоји", "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", - "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "Метода постављања", "Select daemon deploy method" : "Изаберте методу за постављање даемона", "Daemon host" : "Хост даемона", + "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "Set daemon as default" : "Постави даемон као подразумевани", "Set as default daemon" : "Поставља даемон као подразумевани", "Enable https" : "Укључи https", "Show deploy config" : "Прикажи конфигурацију постављања", "Hide deploy config" : "Сакриј конфигурацију постављања", - "Network" : "Мрежа", - "Docker network name" : "Име Docker мреже: ", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], "Type" : "Тип", "Display Name" : "Име за приказ", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", + "Network" : "Мрежа", + "Docker network name" : "Име Docker мреже: ", "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваше апликације", "Documentation" : "Документација", diff --git a/l10n/sv.js b/l10n/sv.js index 77ac9422..96663313 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -11,7 +11,6 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud-URL", "Enabled" : "Aktiverad", "Display name" : "Visningsnamn", - "Network" : "Nätverk", "Confirm" : "Bekräfta", "Save" : "Spara", "Register" : "Registrera", @@ -42,6 +41,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", + "Network" : "Nätverk", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dina appar", "Documentation" : "Dokumentation", diff --git a/l10n/sv.json b/l10n/sv.json index c88a70f3..4358904b 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -9,7 +9,6 @@ "Nextcloud URL" : "Nextcloud-URL", "Enabled" : "Aktiverad", "Display name" : "Visningsnamn", - "Network" : "Nätverk", "Confirm" : "Bekräfta", "Save" : "Spara", "Register" : "Registrera", @@ -40,6 +39,7 @@ "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", + "Network" : "Nätverk", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dina appar", "Documentation" : "Dokumentation", diff --git a/l10n/tr.js b/l10n/tr.js index 75b7e306..d5c1d4b5 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", - "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "Dağıtım yöntemi", "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", "Daemon host" : "Arka plan işlemi sunucusu", + "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", "Enable https" : "https kullanılsın", "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", "Hide deploy config" : "Dağıtım yapılandırmasını gizle", - "Network" : "Ağ", - "Docker network name" : "Docker ağı adı", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], "Type" : "Tür", "Display Name" : "Görüntülenecek ad", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", + "Network" : "Ağ", + "Docker network name" : "Docker ağı adı", "by {author}\n{license}" : "{author} tarafından\n{license}", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", diff --git a/l10n/tr.json b/l10n/tr.json index 1f3eae49..71a80735 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", - "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", @@ -115,13 +113,12 @@ "Deployment method" : "Dağıtım yöntemi", "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", "Daemon host" : "Arka plan işlemi sunucusu", + "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", "Enable https" : "https kullanılsın", "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", "Hide deploy config" : "Dağıtım yapılandırmasını gizle", - "Network" : "Ağ", - "Docker network name" : "Docker ağı adı", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], "Type" : "Tür", "Display Name" : "Görüntülenecek ad", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", + "Network" : "Ağ", + "Docker network name" : "Docker ağı adı", "by {author}\n{license}" : "{author} tarafından\n{license}", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", diff --git a/l10n/ug.js b/l10n/ug.js index 54be8dc3..e98e923e 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -90,10 +90,8 @@ OC.L10N.register( "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", - "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", @@ -115,13 +113,12 @@ OC.L10N.register( "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", "Enable https" : "Https نى قوزغىتىڭ", "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", - "Network" : "تور", - "Docker network name" : "Docker تور ئىسمى", "Additional option" : "قوشۇمچە تاللاش", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", @@ -164,7 +161,10 @@ OC.L10N.register( "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "Network" : "تور", + "Docker network name" : "Docker تور ئىسمى", "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", diff --git a/l10n/ug.json b/l10n/ug.json index 5db44edd..87d81ff9 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -88,10 +88,8 @@ "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", - "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", @@ -113,13 +111,12 @@ "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", "Daemon host" : "Daemon host", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", "Enable https" : "Https نى قوزغىتىڭ", "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", - "Network" : "تور", - "Docker network name" : "Docker تور ئىسمى", "Additional option" : "قوشۇمچە تاللاش", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", @@ -162,7 +159,10 @@ "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "Network" : "تور", + "Docker network name" : "Docker تور ئىسمى", "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", diff --git a/l10n/uk.js b/l10n/uk.js index 809055e4..d4e4ed6b 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -8,7 +8,6 @@ OC.L10N.register( "Host" : "Хост", "Enabled" : "Увімкнено", "Display name" : "Ім'я для показу", - "Network" : "Мережа", "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", @@ -39,6 +38,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", "Display Name" : "Назва для показу", + "Network" : "Мережа", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", diff --git a/l10n/uk.json b/l10n/uk.json index a0fbac43..46be7007 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -6,7 +6,6 @@ "Host" : "Хост", "Enabled" : "Увімкнено", "Display name" : "Ім'я для показу", - "Network" : "Мережа", "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", @@ -37,6 +36,7 @@ "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", "Display Name" : "Назва для показу", + "Network" : "Мережа", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index bdd22548..dda62c27 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -43,7 +43,6 @@ OC.L10N.register( "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", - "Network" : "网络", "Confirm" : "确认", "Save" : "保存", "Register" : "注册", @@ -76,6 +75,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", + "Network" : "网络", "by {author}\n{license}" : "按照 {author}\n{license}", "Your apps" : "您的应用", "Documentation" : "文档", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 13a5217d..ed8f7e13 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -41,7 +41,6 @@ "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", - "Network" : "网络", "Confirm" : "确认", "Save" : "保存", "Register" : "注册", @@ -74,6 +73,7 @@ "_Update_::_Update all_" : ["全部更新"], "Type" : "类型", "Display Name" : "显示名称", + "Network" : "网络", "by {author}\n{license}" : "按照 {author}\n{license}", "Your apps" : "您的应用", "Documentation" : "文档", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index e7ccfc72..6e608b3f 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", "Daemon host" : "幕後程式主機", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為默認值", "Set as default daemon" : "設定為默認 daemon", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", - "Network" : "網絡", - "Docker network name" : "Docker 網路名字", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", + "Network" : "網絡", + "Docker network name" : "Docker 網路名字", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "說明書", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index c9dc7d4d..9c5600e3 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", "Daemon host" : "幕後程式主機", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為默認值", "Set as default daemon" : "設定為默認 daemon", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", - "Network" : "網絡", - "Docker network name" : "Docker 網路名字", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", + "Network" : "網絡", + "Docker network name" : "Docker 網路名字", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "說明書", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 2908c64e..b613c378 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -92,10 +92,8 @@ OC.L10N.register( "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -117,13 +115,12 @@ OC.L10N.register( "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", "Daemon host" : "幕後程式主機", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為預設值", "Set as default daemon" : "設定為預設幕後程式", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", - "Network" : "網路", - "Docker network name" : "Docker 網路名稱", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", @@ -169,7 +166,10 @@ OC.L10N.register( "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", + "Network" : "網路", + "Docker network name" : "Docker 網路名稱", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "文件", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 9e68eed5..3a9db5b9 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -90,10 +90,8 @@ "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", @@ -115,13 +113,12 @@ "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", "Daemon host" : "幕後程式主機", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為預設值", "Set as default daemon" : "設定為預設幕後程式", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", - "Network" : "網路", - "Docker network name" : "Docker 網路名稱", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", @@ -167,7 +164,10 @@ "_Update_::_Update all_" : ["更新全部"], "Type" : "類型", "Display Name" : "顯示名稱", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", + "Network" : "網路", + "Docker network name" : "Docker 網路名稱", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "文件", From 25d35f2b27666bc43990b922d629004dbd600fc0 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 3 Apr 2025 00:31:06 +0000 Subject: [PATCH 108/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 16 ++++++++++++++++ l10n/ar.json | 16 ++++++++++++++++ l10n/de.js | 16 ++++++++++++++++ l10n/de.json | 16 ++++++++++++++++ l10n/de_DE.js | 16 ++++++++++++++++ l10n/de_DE.json | 16 ++++++++++++++++ l10n/pt_BR.js | 16 ++++++++++++++++ l10n/pt_BR.json | 16 ++++++++++++++++ l10n/si.js | 15 --------------- l10n/si.json | 13 ------------- l10n/sr.js | 16 ++++++++++++++++ l10n/sr.json | 16 ++++++++++++++++ l10n/tk.js | 15 --------------- l10n/tk.json | 13 ------------- l10n/zh_HK.js | 16 ++++++++++++++++ l10n/zh_HK.json | 16 ++++++++++++++++ l10n/zh_TW.js | 16 ++++++++++++++++ l10n/zh_TW.json | 16 ++++++++++++++++ 18 files changed, 224 insertions(+), 56 deletions(-) delete mode 100644 l10n/si.js delete mode 100644 l10n/si.json delete mode 100644 l10n/tk.js delete mode 100644 l10n/tk.json diff --git a/l10n/ar.js b/l10n/ar.js index 2d927a35..c9220000 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "واجهة AppAPO", "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", + "AppAPI deploy daemon" : "البرنامج الخفي daemon لنشر AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "البرنامج الخفي التلقائي لنشر AppAPI لم يتم تعيينه. رجاءً؛ قُم بتسجيله في الإعدادات ليمكنك تثبيت التطبيقات الخارجية (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "البرنامج الخفي لنشر AppAPI \"%s\" لايمكن الوصول إليه. رجاءً؛ قُم بفحص تهيئة البرنامج الخفي daemon.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "البرنامج الخفي التلقائي لنشر AppAPI لايستعمل HaRP. رجاءً؛ أدرُس إمكانية ترقيته لتحسين الأداء.", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "External Apps management" : "إدارة التطبيقات الخارجية", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "المفتاح السّري لاتصالات حاوية HaRP؛ أي (HP_SHARES_KEY).", "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", + "The docker network that the deployed ex-apps would use." : "شبكة \"دوكر\" docker التي ستستعملها التطبيقات الخارجية ex-apps المثبتة.", "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "اسم العرض", "Deployment method" : "طُرُق النشر", "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", + "HaRP host" : "مُضِيف HaRP", "Daemon host" : "مُضِيف البرنامج الخفي", + "HaRP shared key" : "مفتاح HaRP المُشتَرَك", "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", "Enable https" : "تمكين https", "Show deploy config" : "أظهِر تهيئة النشر deploy config", "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", + "Enable HaRP" : "تمكين HaRP", + "FRP server address" : "عنوان خادوم FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "عنوان خادوم FRP (أي المضيف: المنفذ) الذي يجب أن يكون الوصول إليه متاحاً بالنسبة للتطبيق الخارجي في الشبكة المُعرَّفة في 'شبكة دوكر Docker network'.", + "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "المنفذ الذي يتصل من خلاله وكيل مقبس \"دوكر\". هذا يجب أن يكون مكشوفاً؛ لكن بالنسبة للجاهز built-in فلايحتاج لأن يكون مكشوفاً ولا أن يتم تغييره.", + "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", diff --git a/l10n/ar.json b/l10n/ar.json index 195853a3..ba24e591 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -18,6 +18,10 @@ "AppAPI" : "واجهة AppAPO", "AI Integration Team" : "فريق تكامل الذكاء الاصطناعي", "ExApps Settings" : "إعدادات التطبيقات الخارجية ExApps", + "AppAPI deploy daemon" : "البرنامج الخفي daemon لنشر AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "البرنامج الخفي التلقائي لنشر AppAPI لم يتم تعيينه. رجاءً؛ قُم بتسجيله في الإعدادات ليمكنك تثبيت التطبيقات الخارجية (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "البرنامج الخفي لنشر AppAPI \"%s\" لايمكن الوصول إليه. رجاءً؛ قُم بفحص تهيئة البرنامج الخفي daemon.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "البرنامج الخفي التلقائي لنشر AppAPI لايستعمل HaRP. رجاءً؛ أدرُس إمكانية ترقيته لتحسين الأداء.", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "External Apps management" : "إدارة التطبيقات الخارجية", @@ -90,9 +94,13 @@ "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "المفتاح السّري لاتصالات حاوية HaRP؛ أي (HP_SHARES_KEY).", "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", + "The docker network that the deployed ex-apps would use." : "شبكة \"دوكر\" docker التي ستستعملها التطبيقات الخارجية ex-apps المثبتة.", "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", @@ -112,13 +120,21 @@ "Display name" : "اسم العرض", "Deployment method" : "طُرُق النشر", "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", + "HaRP host" : "مُضِيف HaRP", "Daemon host" : "مُضِيف البرنامج الخفي", + "HaRP shared key" : "مفتاح HaRP المُشتَرَك", "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", "Enable https" : "تمكين https", "Show deploy config" : "أظهِر تهيئة النشر deploy config", "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", + "Enable HaRP" : "تمكين HaRP", + "FRP server address" : "عنوان خادوم FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "عنوان خادوم FRP (أي المضيف: المنفذ) الذي يجب أن يكون الوصول إليه متاحاً بالنسبة للتطبيق الخارجي في الشبكة المُعرَّفة في 'شبكة دوكر Docker network'.", + "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "المنفذ الذي يتصل من خلاله وكيل مقبس \"دوكر\". هذا يجب أن يكون مكشوفاً؛ لكن بالنسبة للجاهز built-in فلايحتاج لأن يكون مكشوفاً ولا أن يتم تغييره.", + "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", diff --git a/l10n/de.js b/l10n/de.js index b8f385bc..e362a9f6 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", + "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", + "HaRP shared key" : "Gemeinsamer HaRP-Schlüssel", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", + "Enable HaRP" : "HaRP aktivieren", + "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/de.json b/l10n/de.json index 3574acbe..19f66c14 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", + "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", @@ -112,13 +120,21 @@ "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", + "HaRP shared key" : "Gemeinsamer HaRP-Schlüssel", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", + "Enable HaRP" : "HaRP aktivieren", + "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index bdcba418..db4300e2 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", + "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", + "HaRP shared key" : "Geteilter HaRP-Schlüssel", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", + "Enable HaRP" : "HaRP aktivieren", + "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index b41a32b6..ef47a590 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "KI Integrations-Team", "ExApps Settings" : "ExApp-Einstellungen", + "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", @@ -112,13 +120,21 @@ "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", + "HaRP shared key" : "Geteilter HaRP-Schlüssel", "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "Set daemon as default" : "Daemon als Standard auswählen", "Set as default daemon" : "Als Standard-Daemon festlegen", "Enable https" : "https aktivieren", "Show deploy config" : "Bereitstellungseinstellungen anzeigen", "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", + "Enable HaRP" : "HaRP aktivieren", + "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index d5ebddec..74d6aa50 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", + "AppAPI deploy daemon" : "Daemon de implantação de AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O daemon de implantação padrão de AppAPI não está definido. Por favor, registre um daemon de implantação padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O daemon de implantação padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O daemon de implantação padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gestão de Aplicativos Externos", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Hostname to access ExApps" : "Nome do host para acessar ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", + "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", + "HaRP host" : "Host HaRP", "Daemon host" : "Daemon host", + "HaRP shared key" : "Chave compartilhada HaRP", "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", "Set as default daemon" : "Definir como daemon padrão", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuração de deploy", "Hide deploy config" : "Ocultar configuração de deploy", + "Enable HaRP" : "Ativar HaRP", + "FRP server address" : "Endereço do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", + "Docker socket proxy port" : "Porta de proxy de soquete de Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", + "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave de opção (exclusiva)", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 49f3289a..e6b6f72e 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "Equipe de integração de IA", "ExApps Settings" : "Configurações de ExApps", + "AppAPI deploy daemon" : "Daemon de implantação de AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O daemon de implantação padrão de AppAPI não está definido. Por favor, registre um daemon de implantação padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O daemon de implantação padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O daemon de implantação padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gestão de Aplicativos Externos", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Hostname to access ExApps" : "Nome do host para acessar ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", + "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", @@ -112,13 +120,21 @@ "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", + "HaRP host" : "Host HaRP", "Daemon host" : "Daemon host", + "HaRP shared key" : "Chave compartilhada HaRP", "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", "Set as default daemon" : "Definir como daemon padrão", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuração de deploy", "Hide deploy config" : "Ocultar configuração de deploy", + "Enable HaRP" : "Ativar HaRP", + "FRP server address" : "Endereço do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", + "Docker socket proxy port" : "Porta de proxy de soquete de Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", + "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave de opção (exclusiva)", diff --git a/l10n/si.js b/l10n/si.js deleted file mode 100644 index 557b298d..00000000 --- a/l10n/si.js +++ /dev/null @@ -1,15 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "අවලංගු", - "Edit" : "සංස්කරණය", - "Name" : "නම", - "Host" : " ධාරකය", - "Enabled" : "සබල කර ඇත", - "Confirm" : "තහවුරු කරන්න", - "Remove" : "ඉවත් කරන්න", - "Version" : "අනුවාදය", - "Actions" : "ක්‍රියාමාර්ග", - "Disable" : "අබල කරන්න" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json deleted file mode 100644 index 7286fceb..00000000 --- a/l10n/si.json +++ /dev/null @@ -1,13 +0,0 @@ -{ "translations": { - "Cancel" : "අවලංගු", - "Edit" : "සංස්කරණය", - "Name" : "නම", - "Host" : " ධාරකය", - "Enabled" : "සබල කර ඇත", - "Confirm" : "තහවුරු කරන්න", - "Remove" : "ඉවත් කරන්න", - "Version" : "අනුවාදය", - "Actions" : "ක්‍රියාමාර්ග", - "Disable" : "අබල කරන්න" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/sr.js b/l10n/sr.js index 63751198..536da48f 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "Тим за интеграцију AI", "ExApps Settings" : "Подешавања за ExApp", + "AppAPI deploy daemon" : "AppAPI даемон за постављање", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Није постављен подразумевани AppAPI даемон за постављање. Да бисте инсталирали Спољне апликације (Ex-Apps), молимо вас да региструјете подразумевани даемон за постављање.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI подразумевани даемон за постављање „%s” није доступан. Молимо вас да проверите конфигурацију", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI подразумевани даемон за постављање не користи HaRP. Да бисте имали боље перформнсе, размотрите могућност да га ажурирате.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "External Apps management" : "Управљање спољним апликацијама", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Hostname to access ExApps" : "Име хоста за приступ ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста (и порт) или путања где је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи. Такође може да буде и путања до докер сокета. (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Даемон са овим именом већ постоји", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Тајни кључ за комуникацију HaRP контејнера (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", + "The docker network that the deployed ex-apps would use." : "Докер мрежа коју би користиле постављене ex-app.", "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "Име за приказ", "Deployment method" : "Метода постављања", "Select daemon deploy method" : "Изаберте методу за постављање даемона", + "HaRP host" : "HaRP хост", "Daemon host" : "Хост даемона", + "HaRP shared key" : "HaRP дељени кључ", "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "Set daemon as default" : "Постави даемон као подразумевани", "Set as default daemon" : "Поставља даемон као подразумевани", "Enable https" : "Укључи https", "Show deploy config" : "Прикажи конфигурацију постављања", "Hide deploy config" : "Сакриј конфигурацију постављања", + "Enable HaRP" : "Укључи HaRP", + "FRP server address" : "Адреса FRP сервера", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", + "Docker socket proxy port" : "Порт проксија за докер сокет", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", + "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", diff --git a/l10n/sr.json b/l10n/sr.json index 0cbbc1c0..a7df68f2 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "Тим за интеграцију AI", "ExApps Settings" : "Подешавања за ExApp", + "AppAPI deploy daemon" : "AppAPI даемон за постављање", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Није постављен подразумевани AppAPI даемон за постављање. Да бисте инсталирали Спољне апликације (Ex-Apps), молимо вас да региструјете подразумевани даемон за постављање.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI подразумевани даемон за постављање „%s” није доступан. Молимо вас да проверите конфигурацију", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI подразумевани даемон за постављање не користи HaRP. Да бисте имали боље перформнсе, размотрите могућност да га ажурирате.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "External Apps management" : "Управљање спољним апликацијама", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Hostname to access ExApps" : "Име хоста за приступ ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста (и порт) или путања где је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи. Такође може да буде и путања до докер сокета. (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Даемон са овим именом већ постоји", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Тајни кључ за комуникацију HaRP контејнера (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", + "The docker network that the deployed ex-apps would use." : "Докер мрежа коју би користиле постављене ex-app.", "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", @@ -112,13 +120,21 @@ "Display name" : "Име за приказ", "Deployment method" : "Метода постављања", "Select daemon deploy method" : "Изаберте методу за постављање даемона", + "HaRP host" : "HaRP хост", "Daemon host" : "Хост даемона", + "HaRP shared key" : "HaRP дељени кључ", "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "Set daemon as default" : "Постави даемон као подразумевани", "Set as default daemon" : "Поставља даемон као подразумевани", "Enable https" : "Укључи https", "Show deploy config" : "Прикажи конфигурацију постављања", "Hide deploy config" : "Сакриј конфигурацију постављања", + "Enable HaRP" : "Укључи HaRP", + "FRP server address" : "Адреса FRP сервера", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", + "Docker socket proxy port" : "Порт проксија за докер сокет", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", + "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", diff --git a/l10n/tk.js b/l10n/tk.js deleted file mode 100644 index 6ed05e8c..00000000 --- a/l10n/tk.js +++ /dev/null @@ -1,15 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "ýatyrmak", - "Delete" : "Pozmak", - "Default" : "Bellenen", - "Edit" : "Redaktirläň", - "Name" : "Ady", - "Save" : "Saklamak", - "Remove" : "Aýyrmak", - "Type" : "Görnüşi", - "Details" : "Jikme-jiklikler", - "Disable" : "Öçürmek" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/tk.json b/l10n/tk.json deleted file mode 100644 index c9cda836..00000000 --- a/l10n/tk.json +++ /dev/null @@ -1,13 +0,0 @@ -{ "translations": { - "Cancel" : "ýatyrmak", - "Delete" : "Pozmak", - "Default" : "Bellenen", - "Edit" : "Redaktirläň", - "Name" : "Ady", - "Save" : "Saklamak", - "Remove" : "Aýyrmak", - "Type" : "Görnüşi", - "Details" : "Jikme-jiklikler", - "Disable" : "Öçürmek" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 6e608b3f..88539d7b 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "AI 整合團隊", "ExApps Settings" : "應用程式設定", + "AppAPI deploy daemon" : "AppAPI 部署幕後程式", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "顯示名稱", "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", + "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", + "HaRP shared key" : "HaRP 共用密鑰", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為默認值", "Set as default daemon" : "設定為默認 daemon", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", + "Enable HaRP" : "啟用 HaRP", + "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", + "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 9c5600e3..ec72f977 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "AI 整合團隊", "ExApps Settings" : "應用程式設定", + "AppAPI deploy daemon" : "AppAPI 部署幕後程式", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", @@ -90,9 +94,13 @@ "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", @@ -112,13 +120,21 @@ "Display name" : "顯示名稱", "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", + "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", + "HaRP shared key" : "HaRP 共用密鑰", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為默認值", "Set as default daemon" : "設定為默認 daemon", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", + "Enable HaRP" : "啟用 HaRP", + "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", + "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index b613c378..75b300b0 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "整合團隊", "ExApps Settings" : "ExApp 設定", + "AppAPI deploy daemon" : "AppAPI 部署幕後程式", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "顯示名稱", "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", + "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", + "HaRP shared key" : "HaRP 共用金鑰", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為預設值", "Set as default daemon" : "設定為預設幕後程式", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", + "Enable HaRP" : "啟用 HaRP", + "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", + "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 3a9db5b9..28689b37 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "整合團隊", "ExApps Settings" : "ExApp 設定", + "AppAPI deploy daemon" : "AppAPI 部署幕後程式", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", @@ -90,9 +94,13 @@ "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", "Daemon with this name already exists" : "同名幕後程式已存在", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", @@ -112,13 +120,21 @@ "Display name" : "顯示名稱", "Deployment method" : "部署方法", "Select daemon deploy method" : "選取幕後程式部署方法", + "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", + "HaRP shared key" : "HaRP 共用金鑰", "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "Set daemon as default" : "設定幕後程式為預設值", "Set as default daemon" : "設定為預設幕後程式", "Enable https" : "啟用 https", "Show deploy config" : "顯示部署設定", "Hide deploy config" : "隱藏部署設定", + "Enable HaRP" : "啟用 HaRP", + "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", + "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", From cd73e7034f43d43cd479b80834974f42a4be17f8 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 4 Apr 2025 00:30:22 +0000 Subject: [PATCH 109/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 15 +++++++++++++++ l10n/cs.json | 15 +++++++++++++++ l10n/en_GB.js | 16 ++++++++++++++++ l10n/en_GB.json | 16 ++++++++++++++++ l10n/ga.js | 16 ++++++++++++++++ l10n/ga.json | 16 ++++++++++++++++ 6 files changed, 94 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index fef7c82d..938985a6 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", + "AppAPI deploy daemon" : "AppAPI proces služby nasazování", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", @@ -91,9 +95,12 @@ OC.L10N.register( "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "The docker network that the deployed ex-apps would use." : "Docker síť kterou mají nasazované ex-applikace používat.", "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", @@ -113,13 +120,21 @@ OC.L10N.register( "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", + "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", + "HaRP shared key" : "Sdílený klíč HaRP", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", "Enable https" : "Zapnout https", "Show deploy config" : "Zobrazit nastavení nasazení", "Hide deploy config" : "Skrýt nastavení nasazení", + "Enable HaRP" : "Zapnout HaRP", + "FRP server address" : "Adresa FRP serveru", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ex-app v síti, definované v 'Docker Network'.", + "Docker socket proxy port" : "Port Docker proxy soketu", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", + "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", diff --git a/l10n/cs.json b/l10n/cs.json index 21d889f2..51d44fe6 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "Tým napojení AI", "ExApps Settings" : "Nastavení pro ExApps", + "AppAPI deploy daemon" : "AppAPI proces služby nasazování", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", @@ -89,9 +93,12 @@ "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "The docker network that the deployed ex-apps would use." : "Docker síť kterou mají nasazované ex-applikace používat.", "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", @@ -111,13 +118,21 @@ "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", + "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", + "HaRP shared key" : "Sdílený klíč HaRP", "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "Set daemon as default" : "Nastavit proces služby jako výchozí", "Set as default daemon" : "Nastavit jako výchozí proces služby", "Enable https" : "Zapnout https", "Show deploy config" : "Zobrazit nastavení nasazení", "Hide deploy config" : "Skrýt nastavení nasazení", + "Enable HaRP" : "Zapnout HaRP", + "FRP server address" : "Adresa FRP serveru", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ex-app v síti, definované v 'Docker Network'.", + "Docker socket proxy port" : "Port Docker proxy soketu", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", + "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index da721653..b2435181 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "AI Integration Team", "ExApps Settings" : "ExApps Settings", + "AppAPI deploy daemon" : "AppAPI deploy daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Hostname to access ExApps" : "Hostname to access ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon with this name already exists", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "The secret key for the HaRP container communication (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", + "The docker network that the deployed ex-apps would use." : "The docker network that the deployed ex-apps would use.", "URL should start with http:// or https://" : "URL should start with http:// or https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "Display name", "Deployment method" : "Deployment method", "Select daemon deploy method" : "Select daemon deploy method", + "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP shared key", "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "Set daemon as default" : "Set daemon as default", "Set as default daemon" : "Set as default daemon", "Enable https" : "Enable https", "Show deploy config" : "Show deploy config", "Hide deploy config" : "Hide deploy config", + "Enable HaRP" : "Enable HaRP", + "FRP server address" : "FRP server address", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", + "Docker socket proxy port" : "Docker socket proxy port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", + "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 26fb91c4..8a797df4 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "AI Integration Team", "ExApps Settings" : "ExApps Settings", + "AppAPI deploy daemon" : "AppAPI deploy daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Hostname to access ExApps" : "Hostname to access ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon with this name already exists", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "The secret key for the HaRP container communication (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", + "The docker network that the deployed ex-apps would use." : "The docker network that the deployed ex-apps would use.", "URL should start with http:// or https://" : "URL should start with http:// or https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", @@ -112,13 +120,21 @@ "Display name" : "Display name", "Deployment method" : "Deployment method", "Select daemon deploy method" : "Select daemon deploy method", + "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP shared key", "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "Set daemon as default" : "Set daemon as default", "Set as default daemon" : "Set as default daemon", "Enable https" : "Enable https", "Show deploy config" : "Show deploy config", "Hide deploy config" : "Hide deploy config", + "Enable HaRP" : "Enable HaRP", + "FRP server address" : "FRP server address", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", + "Docker socket proxy port" : "Docker socket proxy port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", + "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", diff --git a/l10n/ga.js b/l10n/ga.js index 011e98f5..af561ba9 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "Foireann Comhtháthaithe AI", "ExApps Settings" : "Socruithe ExApps", + "AppAPI deploy daemon" : "Deamhan imscaradh AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Níl deamhan imlonnaithe réamhshocraithe AppAPI ag baint úsáide as HaRP. Déan machnamh le do thoil ar uasghrádú a dhéanamh air le haghaidh feidhmíochta níos fearr.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An óstainm (agus port) nó conair ag a bhfuil an {name}Nextcloudar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air. Is féidir leis a bheith ina chonair chuig an soicéad docker freisin. (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "An eochair rúnda don chumarsáid coimeádáin HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", + "The docker network that the deployed ex-apps would use." : "An líonra docker a d'úsáidfeadh na sean-aipeanna imlonnaithe.", "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", @@ -114,13 +122,21 @@ OC.L10N.register( "Display name" : "Ainm taispeána", "Deployment method" : "Modh imscaradh", "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", + "HaRP host" : "HaRP óstach", "Daemon host" : "Deamhan óstach", + "HaRP shared key" : "Eochair roinnte HaRP", "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", "Enable https" : "Cumasaigh https", "Show deploy config" : "Taispeáin cumraíocht imscaradh", "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", + "Enable HaRP" : "Cumasaigh HaRP", + "FRP server address" : "Seoladh freastalaí FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", + "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", + "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", diff --git a/l10n/ga.json b/l10n/ga.json index 7d6226b6..0e3dc00d 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "Foireann Comhtháthaithe AI", "ExApps Settings" : "Socruithe ExApps", + "AppAPI deploy daemon" : "Deamhan imscaradh AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Níl deamhan imlonnaithe réamhshocraithe AppAPI ag baint úsáide as HaRP. Déan machnamh le do thoil ar uasghrádú a dhéanamh air le haghaidh feidhmíochta níos fearr.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An óstainm (agus port) nó conair ag a bhfuil an {name}Nextcloudar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air. Is féidir leis a bheith ina chonair chuig an soicéad docker freisin. (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "An eochair rúnda don chumarsáid coimeádáin HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", + "The docker network that the deployed ex-apps would use." : "An líonra docker a d'úsáidfeadh na sean-aipeanna imlonnaithe.", "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", @@ -112,13 +120,21 @@ "Display name" : "Ainm taispeána", "Deployment method" : "Modh imscaradh", "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", + "HaRP host" : "HaRP óstach", "Daemon host" : "Deamhan óstach", + "HaRP shared key" : "Eochair roinnte HaRP", "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", "Enable https" : "Cumasaigh https", "Show deploy config" : "Taispeáin cumraíocht imscaradh", "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", + "Enable HaRP" : "Cumasaigh HaRP", + "FRP server address" : "Seoladh freastalaí FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", + "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", + "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", From b403ebf44bc050a7a57e2c7ad453cb770740235d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 5 Apr 2025 00:30:07 +0000 Subject: [PATCH 110/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 1 + l10n/cs.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 938985a6..ed1c100c 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -96,6 +96,7 @@ OC.L10N.register( "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", diff --git a/l10n/cs.json b/l10n/cs.json index 51d44fe6..daa8e7cb 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -94,6 +94,7 @@ "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", From c48328038c600d2cd8f0ec8b2865fb28378d414e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 6 Apr 2025 00:30:19 +0000 Subject: [PATCH 111/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sk.js | 6 ++++++ l10n/sk.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/l10n/sk.js b/l10n/sk.js index dbb05a09..9bb6bba6 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -20,6 +20,7 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", + "AppAPI deploy daemon" : "Démon nasadenia AppAPI", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", @@ -114,13 +115,18 @@ OC.L10N.register( "Display name" : "Zobrazované meno", "Deployment method" : "Metóda nasadenia", "Select daemon deploy method" : "Vybrať metódu nasadenia démona", + "HaRP host" : "HaRP hostiteľ", "Daemon host" : "Hostiteľ démona", + "HaRP shared key" : "HaRP zdieľaný kľúč", "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "Set daemon as default" : "Nastaviť démona ako predvoleného", "Set as default daemon" : "Nastaviť ako predvoleného démona", "Enable https" : "Povoliť https", "Show deploy config" : "Zobraziť konfiguráciu nasadenia", "Hide deploy config" : "Skryť konfiguráciu nasadenia", + "Enable HaRP" : "Zapnúť HaRP", + "FRP server address" : "HaRP adresa servera", + "Docker socket proxy port" : "Docker socket proxy port", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", diff --git a/l10n/sk.json b/l10n/sk.json index 653c8c09..4199d983 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -18,6 +18,7 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", + "AppAPI deploy daemon" : "Démon nasadenia AppAPI", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", @@ -112,13 +113,18 @@ "Display name" : "Zobrazované meno", "Deployment method" : "Metóda nasadenia", "Select daemon deploy method" : "Vybrať metódu nasadenia démona", + "HaRP host" : "HaRP hostiteľ", "Daemon host" : "Hostiteľ démona", + "HaRP shared key" : "HaRP zdieľaný kľúč", "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "Set daemon as default" : "Nastaviť démona ako predvoleného", "Set as default daemon" : "Nastaviť ako predvoleného démona", "Enable https" : "Povoliť https", "Show deploy config" : "Zobraziť konfiguráciu nasadenia", "Hide deploy config" : "Skryť konfiguráciu nasadenia", + "Enable HaRP" : "Zapnúť HaRP", + "FRP server address" : "HaRP adresa servera", + "Docker socket proxy port" : "Docker socket proxy port", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", From 64400e9c378488a39fce916cdb6a0f84fdecabbe Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 9 Apr 2025 00:31:23 +0000 Subject: [PATCH 112/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/br.js | 2 +- l10n/br.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/br.js b/l10n/br.js index a0f38962..36f84b86 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -29,7 +29,7 @@ OC.L10N.register( "Version" : "Stumm", "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", - "Type" : "Stumm", + "Type" : "Seurt", "Network" : "Rouedad", "by {author}\n{license}" : "great gant {author}\n{license}", "Your apps" : "Ho meziantoù", diff --git a/l10n/br.json b/l10n/br.json index 5a823350..8aad063d 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -27,7 +27,7 @@ "Version" : "Stumm", "Actions" : "Oberoù", "Results from other categories" : "Disoc'hoù evit rummadoù all", - "Type" : "Stumm", + "Type" : "Seurt", "Network" : "Rouedad", "by {author}\n{license}" : "great gant {author}\n{license}", "Your apps" : "Ho meziantoù", From 29686d529122804c33be72306ab1ed724d916628 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 10 Apr 2025 00:30:25 +0000 Subject: [PATCH 113/244] Fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/br.js | 2 +- l10n/br.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/br.js b/l10n/br.js index 36f84b86..a51c4a1a 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -2,7 +2,7 @@ OC.L10N.register( "app_api", { "Cancel" : "Nullañ", - "Delete" : "Lemel", + "Delete" : "Dilemel", "Edit" : "Embann", "Name" : "Anv", "Host" : "Ostiz", diff --git a/l10n/br.json b/l10n/br.json index 8aad063d..0e2c9882 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -1,6 +1,6 @@ { "translations": { "Cancel" : "Nullañ", - "Delete" : "Lemel", + "Delete" : "Dilemel", "Edit" : "Embann", "Name" : "Anv", "Host" : "Ostiz", From 9f630855592803ba31f8a0b69953e88ad7fbfda2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 16 Apr 2025 00:31:17 +0000 Subject: [PATCH 114/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lv.js | 2 +- l10n/lv.json | 2 +- l10n/sk.js | 10 ++++++++++ l10n/sk.json | 10 ++++++++++ 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/l10n/lv.js b/l10n/lv.js index b3557016..7ba8fa40 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -2,7 +2,7 @@ OC.L10N.register( "app_api", { "Cancel" : "Atcelt", - "Delete" : "Dzēst", + "Delete" : "Izdzēst", "Edit" : "Labot", "Name" : "Nosaukums", "Host" : "Resursdators", diff --git a/l10n/lv.json b/l10n/lv.json index 64f92a05..e1f97c27 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -1,6 +1,6 @@ { "translations": { "Cancel" : "Atcelt", - "Delete" : "Dzēst", + "Delete" : "Izdzēst", "Edit" : "Labot", "Name" : "Nosaukums", "Host" : "Resursdators", diff --git a/l10n/sk.js b/l10n/sk.js index 9bb6bba6..9412da8e 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -21,6 +21,9 @@ OC.L10N.register( "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", "AppAPI deploy daemon" : "Démon nasadenia AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Predvolený démon nasadenia AppAPI nie je nastavený. Ak chcete nainštalovať externé aplikácie (Ex-Apps), zaregistrujte si v nastaveniach predvoleného démona nasadenia.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Predvolený démon nasadenia AppAPI \"%s\" nie je prístupný. Skontrolujte konfiguráciu démona.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Predvolený démon nasadenia AppAPI nepoužíva HaRP. Zvážte jeho aktualizáciu pre lepší výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", @@ -93,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Zastaviť test nasadenia", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Názov hostiteľa (a port), na ktorom je k dispozícii {name}. Nemusí to byť verejný hostiteľ, len hostiteľ prístupný zo servera Nextcloud, napr. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa (a port) alebo cesta, na ktorej je k dispozícii {name}. Nemusí to byť verejný hostiteľ, iba hostiteľ prístupný zo servera Nextcloud. Môže to byť aj cesta k docker socketu. (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Tajný kľúč pre komunikáciu kontajnera HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "The docker network that the deployed ex-apps would use." : "Sieť dockera, ktorú použijú nasadené ex-app.", "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", @@ -126,7 +133,10 @@ OC.L10N.register( "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Enable HaRP" : "Zapnúť HaRP", "FRP server address" : "HaRP adresa servera", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (host:port) servera FRP, ktorý by mal byť dosiahnuteľný pre ex-app v sieti definovanej v 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ku ktorému sa pripája docker socket proxy. Ten by mal byť otvorený, ale v prípade vstavaného sa nevyžaduje, aby bol prístupný alebo zmenený.", + "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", diff --git a/l10n/sk.json b/l10n/sk.json index 4199d983..25686fb7 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -19,6 +19,9 @@ "AI Integration Team" : "Integračný tím AI", "ExApps Settings" : "Nastavenia ExApps", "AppAPI deploy daemon" : "Démon nasadenia AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Predvolený démon nasadenia AppAPI nie je nastavený. Ak chcete nainštalovať externé aplikácie (Ex-Apps), zaregistrujte si v nastaveniach predvoleného démona nasadenia.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Predvolený démon nasadenia AppAPI \"%s\" nie je prístupný. Skontrolujte konfiguráciu démona.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Predvolený démon nasadenia AppAPI nepoužíva HaRP. Zvážte jeho aktualizáciu pre lepší výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", @@ -91,9 +94,13 @@ "Stop Deploy test" : "Zastaviť test nasadenia", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Názov hostiteľa (a port), na ktorom je k dispozícii {name}. Nemusí to byť verejný hostiteľ, len hostiteľ prístupný zo servera Nextcloud, napr. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa (a port) alebo cesta, na ktorej je k dispozícii {name}. Nemusí to byť verejný hostiteľ, iba hostiteľ prístupný zo servera Nextcloud. Môže to byť aj cesta k docker socketu. (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Tajný kľúč pre komunikáciu kontajnera HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "The docker network that the deployed ex-apps would use." : "Sieť dockera, ktorú použijú nasadené ex-app.", "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", @@ -124,7 +131,10 @@ "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Enable HaRP" : "Zapnúť HaRP", "FRP server address" : "HaRP adresa servera", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (host:port) servera FRP, ktorý by mal byť dosiahnuteľný pre ex-app v sieti definovanej v 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ku ktorému sa pripája docker socket proxy. Ten by mal byť otvorený, ale v prípade vstavaného sa nevyžaduje, aby bol prístupný alebo zmenený.", + "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", From 6ace5a723187ea3ea85776fa5213805e93ba4bdb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 17 Apr 2025 00:30:53 +0000 Subject: [PATCH 115/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 17 +++++++++++++++++ l10n/da.json | 17 +++++++++++++++++ l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/el.js | 1 + l10n/el.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/eo.js | 1 + l10n/eo.json | 1 + l10n/es.js | 3 +++ l10n/es.json | 3 +++ l10n/es_AR.js | 1 + l10n/es_AR.json | 1 + l10n/es_CL.js | 1 + l10n/es_CL.json | 1 + l10n/es_CO.js | 1 + l10n/es_CO.json | 1 + l10n/es_CR.js | 1 + l10n/es_CR.json | 1 + l10n/es_DO.js | 1 + l10n/es_DO.json | 1 + l10n/es_EC.js | 1 + l10n/es_EC.json | 1 + l10n/es_GT.js | 1 + l10n/es_GT.json | 1 + l10n/es_HN.js | 1 + l10n/es_HN.json | 1 + l10n/es_MX.js | 1 + l10n/es_MX.json | 1 + l10n/es_NI.js | 1 + l10n/es_NI.json | 1 + l10n/es_PA.js | 1 + l10n/es_PA.json | 1 + l10n/es_PE.js | 1 + l10n/es_PE.json | 1 + l10n/es_PR.js | 1 + l10n/es_PR.json | 1 + l10n/es_PY.js | 1 + l10n/es_PY.json | 1 + l10n/es_SV.js | 1 + l10n/es_SV.json | 1 + l10n/es_UY.js | 1 + l10n/es_UY.json | 1 + l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/eu.js | 1 + l10n/eu.json | 1 + l10n/fa.js | 1 + l10n/fa.json | 1 + l10n/fi.js | 1 + l10n/fi.json | 1 + l10n/fr.js | 1 + l10n/fr.json | 1 + l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/he.js | 1 + l10n/he.json | 1 + l10n/hr.js | 1 + l10n/hr.json | 1 + l10n/hu.js | 1 + l10n/hu.json | 1 + l10n/id.js | 1 + l10n/id.json | 1 + l10n/is.js | 1 + l10n/is.json | 1 + l10n/it.js | 1 + l10n/it.json | 1 + l10n/ja.js | 1 + l10n/ja.json | 1 + l10n/ka.js | 1 + l10n/ka.json | 1 + l10n/ka_GE.js | 1 + l10n/ka_GE.json | 1 + l10n/kab.js | 1 + l10n/kab.json | 1 + l10n/km.js | 1 + l10n/km.json | 1 + l10n/ko.js | 1 + l10n/ko.json | 1 + l10n/lb.js | 1 + l10n/lb.json | 1 + l10n/lt_LT.js | 1 + l10n/lt_LT.json | 1 + l10n/lv.js | 1 + l10n/lv.json | 1 + l10n/mk.js | 1 + l10n/mk.json | 1 + l10n/mn.js | 1 + l10n/mn.json | 1 + l10n/nb.js | 1 + l10n/nb.json | 1 + l10n/nl.js | 1 + l10n/nl.json | 1 + l10n/nn_NO.js | 1 + l10n/nn_NO.json | 1 + l10n/oc.js | 1 + l10n/oc.json | 1 + l10n/pl.js | 1 + l10n/pl.json | 1 + l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + l10n/pt_PT.js | 1 + l10n/pt_PT.json | 1 + l10n/ro.js | 1 + l10n/ro.json | 1 + l10n/ru.js | 1 + l10n/ru.json | 1 + l10n/sc.js | 1 + l10n/sc.json | 1 + l10n/sk.js | 1 + l10n/sk.json | 1 + l10n/sl.js | 1 + l10n/sl.json | 1 + l10n/sq.js | 1 + l10n/sq.json | 1 + l10n/sr.js | 1 + l10n/sr.json | 1 + l10n/sv.js | 1 + l10n/sv.json | 1 + l10n/th.js | 1 + l10n/th.json | 1 + l10n/tr.js | 1 + l10n/tr.json | 1 + l10n/ug.js | 1 + l10n/ug.json | 1 + l10n/uk.js | 1 + l10n/uk.json | 1 + l10n/vi.js | 1 + l10n/vi.json | 1 + l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 140 files changed, 176 insertions(+) diff --git a/l10n/da.js b/l10n/da.js index 51d68786..46b38eaa 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -20,6 +20,10 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "AI integrationsteam", "ExApps Settings" : "ExApps indstillinger", + "AppAPI deploy daemon" : "AppAPI udgivelses dæmon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udgivelses dæmon er ikke sat. Registrer venligst en standard udgivelses dæmon under indstillingerne for at installere eksterne apps (Ex-apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udgivelses dæmon \"%s\" er ikke tilgængelig. Kontroller venligst dæmonkonfigurationen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udgivelses dæmon anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udgivelse of styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", @@ -92,9 +96,13 @@ OC.L10N.register( "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavnet (og port) eller stien på hvilken {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, men blot en host der er tilgængelig for Nextcloud serveren. Det kan også være en sti til docker sokkel. (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Den hemmelige nøgle til HaRP beholder kommunikationen (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", + "The docker network that the deployed ex-apps would use." : "Docker netværket som de udgivne ex-apps skal anvende.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", @@ -114,13 +122,22 @@ OC.L10N.register( "Display name" : "Vist navn", "Deployment method" : "Udgivelsesmetode", "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", + "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP delt nøgle", "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "Set daemon as default" : "Angiv daemon som standardas default", "Set as default daemon" : "Angiv som standard daemon", "Enable https" : "Aktiver https", "Show deploy config" : "Vis udgivelseskonfiguration", "Hide deploy config" : "Skjul udgivelseskonfiguration", + "Enable HaRP" : "Aktiver HaRP", + "FRP server address" : "FRP server adresse", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", + "Docker socket proxy port" : "Docker sokkel proxy port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", + "Disabled" : "Deaktiveret", + "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", "Additional option" : "Yderligere mulighed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", diff --git a/l10n/da.json b/l10n/da.json index 330d61f8..18c495d6 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -18,6 +18,10 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "AI integrationsteam", "ExApps Settings" : "ExApps indstillinger", + "AppAPI deploy daemon" : "AppAPI udgivelses dæmon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udgivelses dæmon er ikke sat. Registrer venligst en standard udgivelses dæmon under indstillingerne for at installere eksterne apps (Ex-apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udgivelses dæmon \"%s\" er ikke tilgængelig. Kontroller venligst dæmonkonfigurationen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udgivelses dæmon anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udgivelse of styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", @@ -90,9 +94,13 @@ "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavnet (og port) eller stien på hvilken {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, men blot en host der er tilgængelig for Nextcloud serveren. Det kan også være en sti til docker sokkel. (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Den hemmelige nøgle til HaRP beholder kommunikationen (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", + "The docker network that the deployed ex-apps would use." : "Docker netværket som de udgivne ex-apps skal anvende.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", @@ -112,13 +120,22 @@ "Display name" : "Vist navn", "Deployment method" : "Udgivelsesmetode", "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", + "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP delt nøgle", "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "Set daemon as default" : "Angiv daemon som standardas default", "Set as default daemon" : "Angiv som standard daemon", "Enable https" : "Aktiver https", "Show deploy config" : "Vis udgivelseskonfiguration", "Hide deploy config" : "Skjul udgivelseskonfiguration", + "Enable HaRP" : "Aktiver HaRP", + "FRP server address" : "FRP server adresse", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", + "Docker socket proxy port" : "Docker sokkel proxy port", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", + "Disabled" : "Deaktiveret", + "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", "Additional option" : "Yderligere mulighed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", diff --git a/l10n/de.js b/l10n/de.js index e362a9f6..46926599 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/de.json b/l10n/de.json index 19f66c14..b7c38a84 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index db4300e2..6c157d78 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index ef47a590..9a58bf2e 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/el.js b/l10n/el.js index dc790559..7fb233cf 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -13,6 +13,7 @@ OC.L10N.register( "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", + "Disabled" : "Απενεργοποιημένο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", diff --git a/l10n/el.json b/l10n/el.json index c4c2394d..c36725ca 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -11,6 +11,7 @@ "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", + "Disabled" : "Απενεργοποιημένο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index b2435181..6138f82b 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", + "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Additional option" : "Additional option", "Add additional option" : "Add additional option", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 8a797df4..ed12717f 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", + "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Additional option" : "Additional option", "Add additional option" : "Add additional option", diff --git a/l10n/eo.js b/l10n/eo.js index ff4e1cad..0fd46ecf 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nomo", "Host" : "Gastigo", "Display name" : "Vidiga nomo", + "Disabled" : "Malkapabligita", "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", diff --git a/l10n/eo.json b/l10n/eo.json index 747b8612..0a433237 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -4,6 +4,7 @@ "Name" : "Nomo", "Host" : "Gastigo", "Display name" : "Vidiga nomo", + "Disabled" : "Malkapabligita", "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", diff --git a/l10n/es.js b/l10n/es.js index 75412d66..c6d1d914 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -40,6 +40,7 @@ OC.L10N.register( "Delete" : "Eliminar", "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", + "Password confirmation failed" : "Fallo la confirmación de la contraseña", "Default" : "Por defecto", "Set as default" : "Establecer como predeterminado", "Test deploy" : "Probar despliegue", @@ -90,6 +91,7 @@ OC.L10N.register( "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", + "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", @@ -111,6 +113,7 @@ OC.L10N.register( "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuración de despligue", "Hide deploy config" : "Ocultar configuración de despliegue", + "Disabled" : "Deshabilitado", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", diff --git a/l10n/es.json b/l10n/es.json index 1b3fa0e4..4a4e0217 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -38,6 +38,7 @@ "Delete" : "Eliminar", "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", + "Password confirmation failed" : "Fallo la confirmación de la contraseña", "Default" : "Por defecto", "Set as default" : "Establecer como predeterminado", "Test deploy" : "Probar despliegue", @@ -88,6 +89,7 @@ "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", + "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", @@ -109,6 +111,7 @@ "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuración de despligue", "Hide deploy config" : "Ocultar configuración de despliegue", + "Disabled" : "Deshabilitado", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 2565d21d..a888034b 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index ecb54d99..3ba6e9b8 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CL.js b/l10n/es_CL.js index 6849c2d9..d1d66a8d 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 2ebff2ac..7f5fe28d 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CO.js b/l10n/es_CO.js index 585e6290..ad554c6f 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CO.json b/l10n/es_CO.json index bd5bfd65..179b83cd 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CR.js b/l10n/es_CR.js index 97e12429..edbb75e8 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CR.json b/l10n/es_CR.json index 5e3ad693..6cbffb9a 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_DO.js b/l10n/es_DO.js index 2ca2fe44..c579b7e6 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_DO.json b/l10n/es_DO.json index 6b0e0db0..21ac6fa4 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index 42b86360..9c8d7508 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -9,6 +9,7 @@ OC.L10N.register( "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index 1df83fc2..84595a2f 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -7,6 +7,7 @@ "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index 585e6290..ad554c6f 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_GT.json b/l10n/es_GT.json index bd5bfd65..179b83cd 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_HN.js b/l10n/es_HN.js index 585e6290..ad554c6f 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_HN.json b/l10n/es_HN.json index bd5bfd65..179b83cd 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index d4bdd7df..8ec0db4b 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -12,6 +12,7 @@ OC.L10N.register( "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index efa8b6a5..688ac88f 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -10,6 +10,7 @@ "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Display name" : "Nombre para mostrar", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_NI.js b/l10n/es_NI.js index f9a4dd3b..9f19ecf1 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_NI.json b/l10n/es_NI.json index 13cd8506..3e5ba09e 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PA.js b/l10n/es_PA.js index f9a4dd3b..9f19ecf1 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PA.json b/l10n/es_PA.json index 13cd8506..3e5ba09e 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PE.js b/l10n/es_PE.js index f9a4dd3b..9f19ecf1 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PE.json b/l10n/es_PE.json index 13cd8506..3e5ba09e 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PR.js b/l10n/es_PR.js index f9a4dd3b..9f19ecf1 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PR.json b/l10n/es_PR.json index 13cd8506..3e5ba09e 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PY.js b/l10n/es_PY.js index f9a4dd3b..9f19ecf1 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PY.json b/l10n/es_PY.json index 13cd8506..3e5ba09e 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_SV.js b/l10n/es_SV.js index 585e6290..ad554c6f 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_SV.json b/l10n/es_SV.json index bd5bfd65..179b83cd 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_UY.js b/l10n/es_UY.js index f9a4dd3b..9f19ecf1 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_UY.json b/l10n/es_UY.json index 13cd8506..3e5ba09e 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index aea01fc3..1b0e32f5 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -8,6 +8,7 @@ OC.L10N.register( "Host" : "Host", "Enabled" : "Sisse lülitatud", "Display name" : "Kuvatav nimi", + "Disabled" : "Välja lülitatud", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 8a92b181..b19cc10f 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -6,6 +6,7 @@ "Host" : "Host", "Enabled" : "Sisse lülitatud", "Display name" : "Kuvatav nimi", + "Disabled" : "Välja lülitatud", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", diff --git a/l10n/eu.js b/l10n/eu.js index 363cb015..ac09087e 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -44,6 +44,7 @@ OC.L10N.register( "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", "Enable https" : "Gaitu https", + "Disabled" : "Desgaituta", "Additional option" : "Aukera gehiago", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", diff --git a/l10n/eu.json b/l10n/eu.json index 4f803ac2..b81af63f 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -42,6 +42,7 @@ "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", "Enable https" : "Gaitu https", + "Disabled" : "Desgaituta", "Additional option" : "Aukera gehiago", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", diff --git a/l10n/fa.js b/l10n/fa.js index 70d3be12..f43aad9c 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", "Display name" : "Display name", + "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", diff --git a/l10n/fa.json b/l10n/fa.json index e274d03f..5d4e1716 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", "Display name" : "Display name", + "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", diff --git a/l10n/fi.js b/l10n/fi.js index af404042..b0cacf15 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloudin URL-osoite", "Enabled" : "Käytössä", "Display name" : "Näyttönimi", + "Disabled" : "Pois käytöstä", "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", diff --git a/l10n/fi.json b/l10n/fi.json index 3e61aa3f..3029157d 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "Nextcloudin URL-osoite", "Enabled" : "Käytössä", "Display name" : "Näyttönimi", + "Disabled" : "Pois käytöstä", "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", diff --git a/l10n/fr.js b/l10n/fr.js index 1ecbdfe3..217cd33b 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -118,6 +118,7 @@ OC.L10N.register( "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", + "Disabled" : "Désactivé", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", diff --git a/l10n/fr.json b/l10n/fr.json index fae76ae1..3e43ba62 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -116,6 +116,7 @@ "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", + "Disabled" : "Désactivé", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", diff --git a/l10n/ga.js b/l10n/ga.js index af561ba9..2c5f717d 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", + "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", diff --git a/l10n/ga.json b/l10n/ga.json index 0e3dc00d..0c64aa00 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", + "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", diff --git a/l10n/gl.js b/l10n/gl.js index 0b3162cb..f54f320c 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -121,6 +121,7 @@ OC.L10N.register( "Enable https" : "Activar https", "Show deploy config" : "Amosar a configuración da despregadura", "Hide deploy config" : "Agochar a configuración da despregadura", + "Disabled" : "Desactivado", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", diff --git a/l10n/gl.json b/l10n/gl.json index 6b986f72..f064c5c0 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -119,6 +119,7 @@ "Enable https" : "Activar https", "Show deploy config" : "Amosar a configuración da despregadura", "Hide deploy config" : "Agochar a configuración da despregadura", + "Disabled" : "Desactivado", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", diff --git a/l10n/he.js b/l10n/he.js index 18ae47fb..c4ef6213 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", + "Disabled" : "מושבת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", diff --git a/l10n/he.json b/l10n/he.json index e093abbd..5965c952 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -7,6 +7,7 @@ "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", + "Disabled" : "מושבת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", diff --git a/l10n/hr.js b/l10n/hr.js index 6432beca..220f923d 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", + "Disabled" : "Onemogućeno", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", diff --git a/l10n/hr.json b/l10n/hr.json index 1e1d07e7..aec8a5af 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -7,6 +7,7 @@ "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", + "Disabled" : "Onemogućeno", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", diff --git a/l10n/hu.js b/l10n/hu.js index 615d13ad..4430ca8d 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Engedélyezve", "Display name" : "Megjelenítendő név", + "Disabled" : "Letiltva", "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", diff --git a/l10n/hu.json b/l10n/hu.json index 364544c4..bb257714 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Engedélyezve", "Display name" : "Megjelenítendő név", + "Disabled" : "Letiltva", "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", diff --git a/l10n/id.js b/l10n/id.js index 1f70893a..c009411c 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -8,6 +8,7 @@ OC.L10N.register( "Name" : "Nama", "Host" : "Host", "Enabled" : "Diaktifkan", + "Disabled" : "Dinonaktifkan", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", diff --git a/l10n/id.json b/l10n/id.json index 4b0b1123..1856ec4d 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -6,6 +6,7 @@ "Name" : "Nama", "Host" : "Host", "Enabled" : "Diaktifkan", + "Disabled" : "Dinonaktifkan", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", diff --git a/l10n/is.js b/l10n/is.js index 1c5af7cb..d08e31da 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -12,6 +12,7 @@ OC.L10N.register( "Compute device" : "Reiknitæki", "Enabled" : "Virkt", "Display name" : "Birtingarnafn", + "Disabled" : "Óvirkt", "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", diff --git a/l10n/is.json b/l10n/is.json index 39dbbf45..9a40c266 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -10,6 +10,7 @@ "Compute device" : "Reiknitæki", "Enabled" : "Virkt", "Display name" : "Birtingarnafn", + "Disabled" : "Óvirkt", "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", diff --git a/l10n/it.js b/l10n/it.js index 550b0c8a..52fd4b76 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Abilitata", "Display name" : "Nome visualizzato", + "Disabled" : "Disabilitata", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", diff --git a/l10n/it.json b/l10n/it.json index 38b823ec..2e8e0d49 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Abilitata", "Display name" : "Nome visualizzato", + "Disabled" : "Disabilitata", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", diff --git a/l10n/ja.js b/l10n/ja.js index 88eb14c5..8fad4686 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -12,6 +12,7 @@ OC.L10N.register( "Compute device" : "計算デバイス", "Enabled" : "有効", "Display name" : "表示名", + "Disabled" : "無効", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", diff --git a/l10n/ja.json b/l10n/ja.json index a84155bd..aaa1ce73 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -10,6 +10,7 @@ "Compute device" : "計算デバイス", "Enabled" : "有効", "Display name" : "表示名", + "Disabled" : "無効", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", diff --git a/l10n/ka.js b/l10n/ka.js index 8822bf0b..f693c675 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", "Display name" : "Display name", + "Disabled" : "Disabled", "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", diff --git a/l10n/ka.json b/l10n/ka.json index 081f4e76..d75c950c 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", "Display name" : "Display name", + "Disabled" : "Disabled", "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index 71a1b9f2..c7e3e91e 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -8,6 +8,7 @@ OC.L10N.register( "Name" : "სახელი", "Host" : "ჰოსტი", "Enabled" : "მოქმედია", + "Disabled" : "არაა მოქმედი", "Confirm" : "დადასტურება", "Save" : "შენახვა", "Register" : "რეგისტრაცია", diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 6b27ddad..5375acb0 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -6,6 +6,7 @@ "Name" : "სახელი", "Host" : "ჰოსტი", "Enabled" : "მოქმედია", + "Disabled" : "არაა მოქმედი", "Confirm" : "დადასტურება", "Save" : "შენახვა", "Register" : "რეგისტრაცია", diff --git a/l10n/kab.js b/l10n/kab.js index fe7b19cb..7ba49591 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -6,6 +6,7 @@ OC.L10N.register( "Edit" : "Ẓreg", "Name" : "Nom", "Enabled" : "Yermed", + "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", "Remove" : "Kkes", diff --git a/l10n/kab.json b/l10n/kab.json index 8872e938..89f6ac7a 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -4,6 +4,7 @@ "Edit" : "Ẓreg", "Name" : "Nom", "Enabled" : "Yermed", + "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", "Remove" : "Kkes", diff --git a/l10n/km.js b/l10n/km.js index e204efe4..8a2f721a 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", + "Disabled" : "បាន​បិទ", "Save" : "រក្សាទុក", "Version" : "កំណែ", "Type" : "ប្រភេទ", diff --git a/l10n/km.json b/l10n/km.json index 3f8367ec..70dd3767 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -5,6 +5,7 @@ "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", + "Disabled" : "បាន​បិទ", "Save" : "រក្សាទុក", "Version" : "កំណែ", "Type" : "ប្រភេទ", diff --git a/l10n/ko.js b/l10n/ko.js index 958d82e7..462345b2 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -113,6 +113,7 @@ OC.L10N.register( "Enable https" : "https 활성화", "Show deploy config" : "배포 구성 표시", "Hide deploy config" : "배포 구성 숨기기", + "Disabled" : "비활성화됨", "Additional option" : "부가 옵션", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", diff --git a/l10n/ko.json b/l10n/ko.json index 26da37b5..0318b7a5 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -111,6 +111,7 @@ "Enable https" : "https 활성화", "Show deploy config" : "배포 구성 표시", "Hide deploy config" : "배포 구성 숨기기", + "Disabled" : "비활성화됨", "Additional option" : "부가 옵션", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", diff --git a/l10n/lb.js b/l10n/lb.js index 7cb62155..d76e6aa1 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Numm", "Host" : "Host", "Enabled" : "Aktivéiert", + "Disabled" : "Deaktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", "Report a bug" : "E Feeler melden", diff --git a/l10n/lb.json b/l10n/lb.json index eebd16c0..ab80d39c 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -4,6 +4,7 @@ "Name" : "Numm", "Host" : "Host", "Enabled" : "Aktivéiert", + "Disabled" : "Deaktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", "Report a bug" : "E Feeler melden", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 1742ca4f..ff4abc7f 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -12,6 +12,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Įjungta", "More info" : "Daugiau informacijos", + "Disabled" : "Išjungta", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 01eea2ee..6f0a94d4 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -10,6 +10,7 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Įjungta", "More info" : "Daugiau informacijos", + "Disabled" : "Išjungta", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", diff --git a/l10n/lv.js b/l10n/lv.js index 7ba8fa40..b7495548 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -9,6 +9,7 @@ OC.L10N.register( "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", "Display name" : "Attēlojamais vārds", + "Disabled" : "Atspējots", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", diff --git a/l10n/lv.json b/l10n/lv.json index e1f97c27..1a3a3aa8 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -7,6 +7,7 @@ "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", "Display name" : "Attēlojamais vārds", + "Disabled" : "Atspējots", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", diff --git a/l10n/mk.js b/l10n/mk.js index a3c71eda..3dd43f15 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Овозможено", "Display name" : "Име и презиме", + "Disabled" : "Оневозможено", "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", diff --git a/l10n/mk.json b/l10n/mk.json index 95959695..8abe0905 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Овозможено", "Display name" : "Име и презиме", + "Disabled" : "Оневозможено", "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", diff --git a/l10n/mn.js b/l10n/mn.js index 4e7071f9..59d9f66f 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "Нэр", "Host" : "хост", "Enabled" : "Идэвхижүүлэх", + "Disabled" : "идэвхигүй", "Confirm" : "Батлах", "Save" : "Хадгалах", "Update to {version}" : "{version} хувилбар руу шинэчлэх", diff --git a/l10n/mn.json b/l10n/mn.json index e89476a4..c685d7dd 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -5,6 +5,7 @@ "Name" : "Нэр", "Host" : "хост", "Enabled" : "Идэвхижүүлэх", + "Disabled" : "идэвхигүй", "Confirm" : "Батлах", "Save" : "Хадгалах", "Update to {version}" : "{version} хувилбар руу шинэчлэх", diff --git a/l10n/nb.js b/l10n/nb.js index 314ad0ef..f0c82001 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -118,6 +118,7 @@ OC.L10N.register( "Enable https" : "Aktiver https", "Show deploy config" : "Vis konfigurasjon for distribuering", "Hide deploy config" : "Skjul konfigurasjon for distribuering", + "Disabled" : "Deaktivert", "Additional option" : "Ytterligere alternativ", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", diff --git a/l10n/nb.json b/l10n/nb.json index c24c80db..05882744 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -116,6 +116,7 @@ "Enable https" : "Aktiver https", "Show deploy config" : "Vis konfigurasjon for distribuering", "Hide deploy config" : "Skjul konfigurasjon for distribuering", + "Disabled" : "Deaktivert", "Additional option" : "Ytterligere alternativ", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", diff --git a/l10n/nl.js b/l10n/nl.js index 571879e1..16d9d407 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -15,6 +15,7 @@ OC.L10N.register( "GPUs support" : "GPUs support", "Enabled" : "Ingeschakeld", "More info" : "Meer info", + "Disabled" : "Uitgeschakeld", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", diff --git a/l10n/nl.json b/l10n/nl.json index 2a793bdb..b5e6ab1e 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -13,6 +13,7 @@ "GPUs support" : "GPUs support", "Enabled" : "Ingeschakeld", "More info" : "Meer info", + "Disabled" : "Uitgeschakeld", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index 34014d69..8629905a 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -5,6 +5,7 @@ OC.L10N.register( "Edit" : "Rediger", "Name" : "Namn", "Host" : "Tenar", + "Disabled" : "Deaktivert", "Save" : "Lagre", "Visit website" : "Besøk nettstaden", "Report a bug" : "Rapporter feil", diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index feb39bb0..28b8064b 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -3,6 +3,7 @@ "Edit" : "Rediger", "Name" : "Namn", "Host" : "Tenar", + "Disabled" : "Deaktivert", "Save" : "Lagre", "Visit website" : "Besøk nettstaden", "Report a bug" : "Rapporter feil", diff --git a/l10n/oc.js b/l10n/oc.js index 52992ebe..37f8b61d 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -8,6 +8,7 @@ OC.L10N.register( "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Activada", + "Disabled" : "Desactivat", "Confirm" : "Confirmar", "Save" : "Enregistrar", "Register" : "S'inscriure", diff --git a/l10n/oc.json b/l10n/oc.json index 2790ecb4..89c1079a 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -6,6 +6,7 @@ "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Activada", + "Disabled" : "Desactivat", "Confirm" : "Confirmar", "Save" : "Enregistrar", "Register" : "S'inscriure", diff --git a/l10n/pl.js b/l10n/pl.js index 2fd0d574..02022cdb 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -37,6 +37,7 @@ OC.L10N.register( "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", + "Disabled" : "Wyłączone", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key is required" : "Wymagany jest klucz opcji", diff --git a/l10n/pl.json b/l10n/pl.json index 08b9f1da..e12242c2 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -35,6 +35,7 @@ "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", + "Disabled" : "Wyłączone", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key is required" : "Wymagany jest klucz opcji", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 74d6aa50..1b26f300 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", + "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index e6b6f72e..60c989e0 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", + "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 62d9ce79..c4c256ea 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Anfitrião", "Enabled" : "Ativado", "Display name" : "Nome a exibir", + "Disabled" : "Desativado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 1a8a4b5f..00094789 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -7,6 +7,7 @@ "Host" : "Anfitrião", "Enabled" : "Ativado", "Display name" : "Nome a exibir", + "Disabled" : "Desativado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", diff --git a/l10n/ro.js b/l10n/ro.js index 667b83eb..27ff3073 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Gazdă", "Enabled" : "Activat", "Display name" : "Nume afișat", + "Disabled" : "Dezactivați", "Confirm" : "Confirmă", "Save" : "Salvează", "Register" : "Înregistrează-te", diff --git a/l10n/ro.json b/l10n/ro.json index 28e9e615..c0ee3fc0 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -7,6 +7,7 @@ "Host" : "Gazdă", "Enabled" : "Activat", "Display name" : "Nume afișat", + "Disabled" : "Dezactivați", "Confirm" : "Confirmă", "Save" : "Salvează", "Register" : "Înregistrează-te", diff --git a/l10n/ru.js b/l10n/ru.js index 9914ddc4..5efbc456 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -119,6 +119,7 @@ OC.L10N.register( "Enable https" : "Использовать HTTPS", "Show deploy config" : "Показать конфигурацию развёртывания", "Hide deploy config" : "Скрыть конфигурацию развёртывания", + "Disabled" : "Отключено", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", diff --git a/l10n/ru.json b/l10n/ru.json index 30ff90f1..751fa900 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -117,6 +117,7 @@ "Enable https" : "Использовать HTTPS", "Show deploy config" : "Показать конфигурацию развёртывания", "Hide deploy config" : "Скрыть конфигурацию развёртывания", + "Disabled" : "Отключено", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", diff --git a/l10n/sc.js b/l10n/sc.js index e24765f7..0994e591 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", "Display name" : "Ammustra nùmene", + "Disabled" : "Disativadu", "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", diff --git a/l10n/sc.json b/l10n/sc.json index 0fb07d6d..4841b981 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", "Display name" : "Ammustra nùmene", + "Disabled" : "Disativadu", "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", diff --git a/l10n/sk.js b/l10n/sk.js index 9412da8e..21948f8c 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (host:port) servera FRP, ktorý by mal byť dosiahnuteľný pre ex-app v sieti definovanej v 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ku ktorému sa pripája docker socket proxy. Ten by mal byť otvorený, ale v prípade vstavaného sa nevyžaduje, aby bol prístupný alebo zmenený.", + "Disabled" : "Vypnuté", "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", diff --git a/l10n/sk.json b/l10n/sk.json index 25686fb7..708a1445 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (host:port) servera FRP, ktorý by mal byť dosiahnuteľný pre ex-app v sieti definovanej v 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ku ktorému sa pripája docker socket proxy. Ten by mal byť otvorený, ale v prípade vstavaného sa nevyžaduje, aby bol prístupný alebo zmenený.", + "Disabled" : "Vypnuté", "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", "Additional option" : "Ďalšia voľba", "Add additional option" : "Pridať ďalšiu voľbu", diff --git a/l10n/sl.js b/l10n/sl.js index 01c6093a..8fad9113 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -10,6 +10,7 @@ OC.L10N.register( "Nextcloud URL" : "Naslov URL Nextcloud", "Enabled" : "Omogočeno", "Display name" : "Prikazno ime", + "Disabled" : "Onemogočeno", "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", diff --git a/l10n/sl.json b/l10n/sl.json index ad1cb09d..14a6f357 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -8,6 +8,7 @@ "Nextcloud URL" : "Naslov URL Nextcloud", "Enabled" : "Omogočeno", "Display name" : "Prikazno ime", + "Disabled" : "Onemogočeno", "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", diff --git a/l10n/sq.js b/l10n/sq.js index 550b9457..479acc43 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -8,6 +8,7 @@ OC.L10N.register( "Name" : "Emër", "Host" : "Strehë", "Enabled" : "E aktivizuar", + "Disabled" : "I/E çaktivizuar", "Confirm" : "Konfirmo", "Save" : "Ruaje", "Register" : "Regjistrohu", diff --git a/l10n/sq.json b/l10n/sq.json index c85ca157..66deea83 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -6,6 +6,7 @@ "Name" : "Emër", "Host" : "Strehë", "Enabled" : "E aktivizuar", + "Disabled" : "I/E çaktivizuar", "Confirm" : "Konfirmo", "Save" : "Ruaje", "Register" : "Regjistrohu", diff --git a/l10n/sr.js b/l10n/sr.js index 536da48f..8f12bc4e 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", "Docker socket proxy port" : "Порт проксија за докер сокет", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", + "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", diff --git a/l10n/sr.json b/l10n/sr.json index a7df68f2..72721960 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", "Docker socket proxy port" : "Порт проксија за докер сокет", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", + "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", diff --git a/l10n/sv.js b/l10n/sv.js index 96663313..56857c08 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud-URL", "Enabled" : "Aktiverad", "Display name" : "Visningsnamn", + "Disabled" : "Inaktiverad", "Confirm" : "Bekräfta", "Save" : "Spara", "Register" : "Registrera", diff --git a/l10n/sv.json b/l10n/sv.json index 4358904b..ee12143e 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "Nextcloud-URL", "Enabled" : "Aktiverad", "Display name" : "Visningsnamn", + "Disabled" : "Inaktiverad", "Confirm" : "Bekräfta", "Save" : "Spara", "Register" : "Registrera", diff --git a/l10n/th.js b/l10n/th.js index b8c17411..197620fa 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -8,6 +8,7 @@ OC.L10N.register( "Host" : "โฮสต์", "Enabled" : "เปิดใช้งาน", "Display name" : "ชื่อที่แสดง", + "Disabled" : "ปิดใช้งาน", "Confirm" : "ยืนยัน", "Save" : "บันทึก", "Register" : "ลงทะเบียน", diff --git a/l10n/th.json b/l10n/th.json index 30752620..9b78e86f 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -6,6 +6,7 @@ "Host" : "โฮสต์", "Enabled" : "เปิดใช้งาน", "Display name" : "ชื่อที่แสดง", + "Disabled" : "ปิดใช้งาน", "Confirm" : "ยืนยัน", "Save" : "บันทึก", "Register" : "ลงทะเบียน", diff --git a/l10n/tr.js b/l10n/tr.js index d5c1d4b5..9ef34844 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -121,6 +121,7 @@ OC.L10N.register( "Enable https" : "https kullanılsın", "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", "Hide deploy config" : "Dağıtım yapılandırmasını gizle", + "Disabled" : "Kullanımdan kaldırılmış", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", diff --git a/l10n/tr.json b/l10n/tr.json index 71a80735..c113578d 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -119,6 +119,7 @@ "Enable https" : "https kullanılsın", "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", "Hide deploy config" : "Dağıtım yapılandırmasını gizle", + "Disabled" : "Kullanımdan kaldırılmış", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", diff --git a/l10n/ug.js b/l10n/ug.js index e98e923e..67235ee1 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -119,6 +119,7 @@ OC.L10N.register( "Enable https" : "Https نى قوزغىتىڭ", "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", + "Disabled" : "چەكلەنگەن", "Additional option" : "قوشۇمچە تاللاش", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", diff --git a/l10n/ug.json b/l10n/ug.json index 87d81ff9..34b35d97 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -117,6 +117,7 @@ "Enable https" : "Https نى قوزغىتىڭ", "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", + "Disabled" : "چەكلەنگەن", "Additional option" : "قوشۇمچە تاللاش", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", diff --git a/l10n/uk.js b/l10n/uk.js index d4e4ed6b..c5a3a586 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -8,6 +8,7 @@ OC.L10N.register( "Host" : "Хост", "Enabled" : "Увімкнено", "Display name" : "Ім'я для показу", + "Disabled" : "Вимкнено", "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", diff --git a/l10n/uk.json b/l10n/uk.json index 46be7007..8a8cdfb5 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -6,6 +6,7 @@ "Host" : "Хост", "Enabled" : "Увімкнено", "Display name" : "Ім'я для показу", + "Disabled" : "Вимкнено", "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", diff --git a/l10n/vi.js b/l10n/vi.js index c1794e30..1086ed8a 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -8,6 +8,7 @@ OC.L10N.register( "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", "Enabled" : "Đá kích hoạt", + "Disabled" : "Đã vô hiệu", "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", diff --git a/l10n/vi.json b/l10n/vi.json index 6accba02..6acadfd9 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -6,6 +6,7 @@ "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", "Enabled" : "Đá kích hoạt", + "Disabled" : "Đã vô hiệu", "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index dda62c27..f359652e 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -43,6 +43,7 @@ OC.L10N.register( "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", + "Disabled" : "已禁用", "Confirm" : "确认", "Save" : "保存", "Register" : "注册", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index ed8f7e13..2d595028 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -41,6 +41,7 @@ "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", + "Disabled" : "已禁用", "Confirm" : "确认", "Save" : "保存", "Register" : "注册", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 88539d7b..f5fb0f67 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index ec72f977..639726b8 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 75b300b0..51344458 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -136,6 +136,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 28689b37..624048eb 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -134,6 +134,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", From f95f4d15451bf3dfb23109b2bdcef950125dacb6 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 18 Apr 2025 00:31:23 +0000 Subject: [PATCH 116/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 3 ++- l10n/ar.json | 3 ++- l10n/ast.js | 3 ++- l10n/ast.json | 3 ++- l10n/az.js | 1 + l10n/az.json | 1 + l10n/bg.js | 3 ++- l10n/bg.json | 3 ++- l10n/bn_BD.js | 1 + l10n/bn_BD.json | 1 + l10n/br.js | 1 + l10n/br.json | 1 + l10n/bs.js | 1 + l10n/bs.json | 1 + l10n/ca.js | 4 +++- l10n/ca.json | 4 +++- l10n/cs.js | 7 ++++++- l10n/cs.json | 7 ++++++- l10n/da.js | 4 +++- l10n/da.json | 4 +++- l10n/de.js | 7 ++++++- l10n/de.json | 7 ++++++- l10n/de_DE.js | 7 ++++++- l10n/de_DE.json | 7 ++++++- l10n/el.js | 4 +++- l10n/el.json | 4 +++- l10n/en_GB.js | 4 +++- l10n/en_GB.json | 4 +++- l10n/eo.js | 1 + l10n/eo.json | 1 + l10n/es.js | 4 +++- l10n/es.json | 4 +++- l10n/es_419.js | 1 + l10n/es_419.json | 1 + l10n/es_AR.js | 3 ++- l10n/es_AR.json | 3 ++- l10n/es_CL.js | 3 ++- l10n/es_CL.json | 3 ++- l10n/es_CO.js | 1 + l10n/es_CO.json | 1 + l10n/es_CR.js | 1 + l10n/es_CR.json | 1 + l10n/es_DO.js | 1 + l10n/es_DO.json | 1 + l10n/es_EC.js | 3 +++ l10n/es_EC.json | 3 +++ l10n/es_GT.js | 3 +++ l10n/es_GT.json | 3 +++ l10n/es_HN.js | 1 + l10n/es_HN.json | 1 + l10n/es_MX.js | 5 ++++- l10n/es_MX.json | 5 ++++- l10n/es_NI.js | 1 + l10n/es_NI.json | 1 + l10n/es_PA.js | 1 + l10n/es_PA.json | 1 + l10n/es_PE.js | 1 + l10n/es_PE.json | 1 + l10n/es_PR.js | 1 + l10n/es_PR.json | 1 + l10n/es_PY.js | 1 + l10n/es_PY.json | 1 + l10n/es_SV.js | 1 + l10n/es_SV.json | 1 + l10n/es_UY.js | 1 + l10n/es_UY.json | 1 + l10n/et_EE.js | 5 ++++- l10n/et_EE.json | 5 ++++- l10n/eu.js | 5 ++++- l10n/eu.json | 5 ++++- l10n/fa.js | 4 +++- l10n/fa.json | 4 +++- l10n/fi.js | 5 ++++- l10n/fi.json | 5 ++++- l10n/fr.js | 5 ++++- l10n/fr.json | 5 ++++- l10n/ga.js | 5 ++++- l10n/ga.json | 5 ++++- l10n/gd.js | 16 ---------------- l10n/gd.json | 14 -------------- l10n/gl.js | 5 ++++- l10n/gl.json | 5 ++++- l10n/he.js | 5 ++++- l10n/he.json | 5 ++++- l10n/hr.js | 5 ++++- l10n/hr.json | 5 ++++- l10n/hu.js | 5 ++++- l10n/hu.json | 5 ++++- l10n/id.js | 3 ++- l10n/id.json | 3 ++- l10n/is.js | 5 ++++- l10n/is.json | 5 ++++- l10n/it.js | 5 ++++- l10n/it.json | 5 ++++- l10n/ja.js | 5 ++++- l10n/ja.json | 5 ++++- l10n/ka.js | 5 ++++- l10n/ka.json | 5 ++++- l10n/kab.js | 2 +- l10n/kab.json | 2 +- l10n/km.js | 1 + l10n/km.json | 1 + l10n/ko.js | 5 ++++- l10n/ko.json | 5 ++++- l10n/lb.js | 1 + l10n/lb.json | 1 + l10n/lo.js | 2 +- l10n/lo.json | 2 +- l10n/lt_LT.js | 5 ++++- l10n/lt_LT.json | 5 ++++- l10n/lv.js | 5 ++++- l10n/lv.json | 5 ++++- l10n/mk.js | 5 ++++- l10n/mk.json | 5 ++++- l10n/mn.js | 1 + l10n/mn.json | 1 + l10n/nb.js | 5 ++++- l10n/nb.json | 5 ++++- l10n/nl.js | 5 ++++- l10n/nl.json | 5 ++++- l10n/oc.js | 4 +++- l10n/oc.json | 4 +++- l10n/pl.js | 5 ++++- l10n/pl.json | 5 ++++- l10n/pt_BR.js | 5 ++++- l10n/pt_BR.json | 5 ++++- l10n/pt_PT.js | 5 ++++- l10n/pt_PT.json | 5 ++++- l10n/ro.js | 5 ++++- l10n/ro.json | 5 ++++- l10n/ru.js | 5 ++++- l10n/ru.json | 5 ++++- l10n/sc.js | 5 ++++- l10n/sc.json | 5 ++++- l10n/sk.js | 5 ++++- l10n/sk.json | 5 ++++- l10n/sl.js | 5 ++++- l10n/sl.json | 5 ++++- l10n/sq.js | 3 ++- l10n/sq.json | 3 ++- l10n/sr.js | 8 +++++++- l10n/sr.json | 8 +++++++- l10n/sv.js | 5 ++++- l10n/sv.json | 5 ++++- l10n/ta.js | 3 ++- l10n/ta.json | 3 ++- l10n/th.js | 2 +- l10n/th.json | 2 +- l10n/tr.js | 5 ++++- l10n/tr.json | 5 ++++- l10n/ug.js | 5 ++++- l10n/ug.json | 5 ++++- l10n/uk.js | 7 ++++++- l10n/uk.json | 7 ++++++- l10n/uz.js | 5 ++++- l10n/uz.json | 5 ++++- l10n/vi.js | 5 ++++- l10n/vi.json | 5 ++++- l10n/zh_CN.js | 5 ++++- l10n/zh_CN.json | 5 ++++- l10n/zh_HK.js | 5 ++++- l10n/zh_HK.json | 5 ++++- l10n/zh_TW.js | 8 +++++++- l10n/zh_TW.json | 8 +++++++- 164 files changed, 488 insertions(+), 148 deletions(-) delete mode 100644 l10n/gd.js delete mode 100644 l10n/gd.json diff --git a/l10n/ar.js b/l10n/ar.js index c9220000..737d930b 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -95,6 +95,7 @@ OC.L10N.register( "Start Deploy test" : "البدء في النشر التجريبي", "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", + "Remove" : "حذف", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -136,6 +137,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "عنوان خادوم FRP (أي المضيف: المنفذ) الذي يجب أن يكون الوصول إليه متاحاً بالنسبة للتطبيق الخارجي في الشبكة المُعرَّفة في 'شبكة دوكر Docker network'.", "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "المنفذ الذي يتصل من خلاله وكيل مقبس \"دوكر\". هذا يجب أن يكون مكشوفاً؛ لكن بالنسبة للجاهز built-in فلايحتاج لأن يكون مكشوفاً ولا أن يتم تغييره.", + "Disabled" : "مُعطّل", "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", @@ -152,7 +154,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", - "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "هذا التطبيق لم يُحدّد فيه أقدم إصدار متوافق معه من نكست كلاود. هذا قد يسبب خطأ في المستقبل.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : " لم يتم تعيين الحد الأقصى لهذا التطبيق لإصدار نكست كلاود. وهذا سيكون خطأ في المستقبل.", diff --git a/l10n/ar.json b/l10n/ar.json index ba24e591..61f35bf7 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -93,6 +93,7 @@ "Start Deploy test" : "البدء في النشر التجريبي", "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", + "Remove" : "حذف", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -134,6 +135,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "عنوان خادوم FRP (أي المضيف: المنفذ) الذي يجب أن يكون الوصول إليه متاحاً بالنسبة للتطبيق الخارجي في الشبكة المُعرَّفة في 'شبكة دوكر Docker network'.", "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "المنفذ الذي يتصل من خلاله وكيل مقبس \"دوكر\". هذا يجب أن يكون مكشوفاً؛ لكن بالنسبة للجاهز built-in فلايحتاج لأن يكون مكشوفاً ولا أن يتم تغييره.", + "Disabled" : "مُعطّل", "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", "Additional option" : "خيار إضافي", "Add additional option" : "إضِف خياراً إضافيّاً", @@ -150,7 +152,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", - "Remove" : "حذف", "Delete data on remove" : "إحذف البيانات عند الإزالة", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "هذا التطبيق لم يُحدّد فيه أقدم إصدار متوافق معه من نكست كلاود. هذا قد يسبب خطأ في المستقبل.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : " لم يتم تعيين الحد الأقصى لهذا التطبيق لإصدار نكست كلاود. وهذا سيكون خطأ في المستقبل.", diff --git a/l10n/ast.js b/l10n/ast.js index e7e53ee4..1e45a7c6 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -26,6 +26,7 @@ OC.L10N.register( "Register Daemon" : "Rexistrar el degorriu", "Enabled" : "Activóse", "More info" : "Más información", + "Remove" : "Quitar", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", @@ -33,6 +34,7 @@ OC.L10N.register( "Set daemon as default" : "Predeterminar el degorriu", "Set as default daemon" : "Predeterminar el degorriu", "Enable https" : "Activar HTTPS", + "Disabled" : "Desactivóse", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", @@ -40,7 +42,6 @@ OC.L10N.register( "External Apps" : "Aplicaciones esternes", "{license}-licensed" : "Con llicencia {license}", "Update to {version}" : "Anovar a la versión {version}", - "Remove" : "Quitar", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", "View in store" : "Ver na tienda", "Visit website" : "Visitar el sitiu web", diff --git a/l10n/ast.json b/l10n/ast.json index d2ed3f44..0c93b927 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -24,6 +24,7 @@ "Register Daemon" : "Rexistrar el degorriu", "Enabled" : "Activóse", "More info" : "Más información", + "Remove" : "Quitar", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", @@ -31,6 +32,7 @@ "Set daemon as default" : "Predeterminar el degorriu", "Set as default daemon" : "Predeterminar el degorriu", "Enable https" : "Activar HTTPS", + "Disabled" : "Desactivóse", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", @@ -38,7 +40,6 @@ "External Apps" : "Aplicaciones esternes", "{license}-licensed" : "Con llicencia {license}", "Update to {version}" : "Anovar a la versión {version}", - "Remove" : "Quitar", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", "View in store" : "Ver na tienda", "Visit website" : "Visitar el sitiu web", diff --git a/l10n/az.js b/l10n/az.js index 000ef036..3ffbf572 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Ad", "Host" : "Şəbəkədə ünvan", "Enabled" : "İşə salınıb", + "Disabled" : "Dayandırılıb", "Confirm" : "Təsdiq edin", "Save" : "Saxla", "Update to {version}" : "{version} dək yenilə", diff --git a/l10n/az.json b/l10n/az.json index 39122fde..ec38f3c1 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -4,6 +4,7 @@ "Name" : "Ad", "Host" : "Şəbəkədə ünvan", "Enabled" : "İşə salınıb", + "Disabled" : "Dayandırılıb", "Confirm" : "Təsdiq edin", "Save" : "Saxla", "Update to {version}" : "{version} dək yenilə", diff --git a/l10n/bg.js b/l10n/bg.js index 95ec22c3..5e4b6a46 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -9,13 +9,14 @@ OC.L10N.register( "Host" : "Хост", "Nextcloud URL" : "URL адрес на Nextcloud", "Enabled" : "Включено", + "Remove" : "Премахване", "Display name" : "Име за визуализация", + "Disabled" : "Изключено", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", "{license}-licensed" : "{license}-лицензиран", "Update to {version}" : "Актуализирай до {version}", - "Remove" : "Премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма зададена максимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложението не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", diff --git a/l10n/bg.json b/l10n/bg.json index ecbefd43..ff19a6e6 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -7,13 +7,14 @@ "Host" : "Хост", "Nextcloud URL" : "URL адрес на Nextcloud", "Enabled" : "Включено", + "Remove" : "Премахване", "Display name" : "Име за визуализация", + "Disabled" : "Изключено", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", "{license}-licensed" : "{license}-лицензиран", "Update to {version}" : "Актуализирай до {version}", - "Remove" : "Премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма зададена максимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложението не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index 45563541..d1e96452 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", + "Disabled" : "অকার্যকর", "Save" : "সংরক্ষণ", "Version" : "ভার্সন", "Actions" : "পদক্ষেপসমূহ", diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index a21d0d28..72261a13 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -5,6 +5,7 @@ "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", + "Disabled" : "অকার্যকর", "Save" : "সংরক্ষণ", "Version" : "ভার্সন", "Actions" : "পদক্ষেপসমূহ", diff --git a/l10n/br.js b/l10n/br.js index a51c4a1a..1bb49ec2 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "Anv", "Host" : "Ostiz", "Display name" : "Anv ardivink", + "Disabled" : "Disaotreañ", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", "{license}-licensed" : "{license}-aotre", diff --git a/l10n/br.json b/l10n/br.json index 0e2c9882..349a49e0 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -5,6 +5,7 @@ "Name" : "Anv", "Host" : "Ostiz", "Display name" : "Anv ardivink", + "Disabled" : "Disaotreañ", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", "{license}-licensed" : "{license}-aotre", diff --git a/l10n/bs.js b/l10n/bs.js index b183e2a1..f1a39d0f 100644 --- a/l10n/bs.js +++ b/l10n/bs.js @@ -6,6 +6,7 @@ OC.L10N.register( "Edit" : "Izmjeni", "Name" : "Ime", "Enabled" : "Aktivirano", + "Disabled" : "Onemogućeno", "Save" : "Spremi", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", "Version" : "Verzija", diff --git a/l10n/bs.json b/l10n/bs.json index 3eff3a94..346cec28 100644 --- a/l10n/bs.json +++ b/l10n/bs.json @@ -4,6 +4,7 @@ "Edit" : "Izmjeni", "Name" : "Ime", "Enabled" : "Aktivirano", + "Disabled" : "Onemogućeno", "Save" : "Spremi", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", "Version" : "Verzija", diff --git a/l10n/ca.js b/l10n/ca.js index 6187a9ff..5a43949c 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -91,6 +91,8 @@ OC.L10N.register( "Start Deploy test" : "Inicieu la prova de desplegament", "Stop Deploy test" : "Atura la prova de desplegament", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", + "Remove" : "Suprimeix", + "To" : "A", "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", @@ -121,6 +123,7 @@ OC.L10N.register( "Enable https" : "Activa https", "Show deploy config" : "Mostra la configuració de desplegament", "Hide deploy config" : "Amaga la configuració de desplegament", + "Disabled" : "Inhabilitat", "Additional option" : "Opció addicional", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", @@ -136,7 +139,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", - "Remove" : "Suprimeix", "Delete data on remove" : "Suprimir dades en eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", diff --git a/l10n/ca.json b/l10n/ca.json index 83489ca7..8b1c043c 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -89,6 +89,8 @@ "Start Deploy test" : "Inicieu la prova de desplegament", "Stop Deploy test" : "Atura la prova de desplegament", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", + "Remove" : "Suprimeix", + "To" : "A", "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", @@ -119,6 +121,7 @@ "Enable https" : "Activa https", "Show deploy config" : "Mostra la configuració de desplegament", "Hide deploy config" : "Amaga la configuració de desplegament", + "Disabled" : "Inhabilitat", "Additional option" : "Opció addicional", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", @@ -134,7 +137,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", - "Remove" : "Suprimeix", "Delete data on remove" : "Suprimir dades en eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", diff --git a/l10n/cs.js b/l10n/cs.js index ed1c100c..7c7c7739 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -59,6 +59,7 @@ OC.L10N.register( "Name" : "Název", "Protocol" : "Protokol", "Host" : "Hostitel", + "ExApp direct communication (FRP disabled)" : "Přímá komunikace ExAPP (FRP vypnuto)", "Deploy config" : "Nastavení nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", @@ -94,6 +95,8 @@ OC.L10N.register( "Start Deploy test" : "Spustit zkoušku nasazení", "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Remove" : "Odebrat", + "To" : "Pro", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", @@ -135,6 +138,9 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ex-app v síti, definované v 'Docker Network'.", "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", + "Disable FRP" : "Vypnout FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", + "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", @@ -150,7 +156,6 @@ OC.L10N.register( "External Apps" : "Externí aplikace", "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", - "Remove" : "Odebrat", "Delete data on remove" : "Při odebrání smazat data", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", diff --git a/l10n/cs.json b/l10n/cs.json index daa8e7cb..62553448 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -57,6 +57,7 @@ "Name" : "Název", "Protocol" : "Protokol", "Host" : "Hostitel", + "ExApp direct communication (FRP disabled)" : "Přímá komunikace ExAPP (FRP vypnuto)", "Deploy config" : "Nastavení nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", @@ -92,6 +93,8 @@ "Start Deploy test" : "Spustit zkoušku nasazení", "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Remove" : "Odebrat", + "To" : "Pro", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", @@ -133,6 +136,9 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ex-app v síti, definované v 'Docker Network'.", "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", + "Disable FRP" : "Vypnout FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", + "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", @@ -148,7 +154,6 @@ "External Apps" : "Externí aplikace", "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", - "Remove" : "Odebrat", "Delete data on remove" : "Při odebrání smazat data", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavený žádný požadavek na minimální verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou nejvyšší podporovanou verzi Nextcloud. To v budoucnu bude hodnoceno jako chyba.", diff --git a/l10n/da.js b/l10n/da.js index 46b38eaa..57b2d416 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -95,6 +95,9 @@ OC.L10N.register( "Start Deploy test" : "Start udgivelsestest", "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Remove" : "Fjern", + "To" : "Til", + "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavnet (og port) eller stien på hvilken {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, men blot en host der er tilgængelig for Nextcloud serveren. Det kan også være en sti til docker sokkel. (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -153,7 +156,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", - "Remove" : "Fjern", "Delete data on remove" : "Slet data ved fjernelse", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en mindste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en højeste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", diff --git a/l10n/da.json b/l10n/da.json index 18c495d6..4fc29856 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -93,6 +93,9 @@ "Start Deploy test" : "Start udgivelsestest", "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Remove" : "Fjern", + "To" : "Til", + "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavnet (og port) eller stien på hvilken {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, men blot en host der er tilgængelig for Nextcloud serveren. Det kan også være en sti til docker sokkel. (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -151,7 +154,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", - "Remove" : "Fjern", "Delete data on remove" : "Slet data ved fjernelse", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en mindste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne app har ikke angivet en højeste understøttede version af Nextcloud. I fremtiden vil det være en fejl.", diff --git a/l10n/de.js b/l10n/de.js index 46926599..31b02b47 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -60,6 +60,7 @@ OC.L10N.register( "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", @@ -95,6 +96,9 @@ OC.L10N.register( "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Remove" : "Entfernen", + "To" : "Bis", + "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -136,6 +140,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disable FRP" : "FRP deaktivieren", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", @@ -153,7 +159,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", diff --git a/l10n/de.json b/l10n/de.json index b7c38a84..828353ae 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -58,6 +58,7 @@ "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", @@ -93,6 +94,9 @@ "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Remove" : "Entfernen", + "To" : "Bis", + "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -134,6 +138,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disable FRP" : "FRP deaktivieren", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", @@ -151,7 +157,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 6c157d78..a3a126aa 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -60,6 +60,7 @@ OC.L10N.register( "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", @@ -95,6 +96,9 @@ OC.L10N.register( "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Remove" : "Entfernen", + "To" : "Bis", + "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -136,6 +140,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disable FRP" : "FRP deaktivieren", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", @@ -153,7 +159,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 9a58bf2e..7e820ae0 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -58,6 +58,7 @@ "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", @@ -93,6 +94,9 @@ "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Remove" : "Entfernen", + "To" : "Bis", + "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -134,6 +138,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", + "Disable FRP" : "FRP deaktivieren", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Additional option" : "Zusatzoption", @@ -151,7 +157,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", - "Remove" : "Entfernen", "Delete data on remove" : "Daten beim Entfernen löschen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", diff --git a/l10n/el.js b/l10n/el.js index 7fb233cf..b9204acb 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -13,13 +13,15 @@ OC.L10N.register( "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", + "Remove" : "Αφαίρεση", + "To" : "Έως", + "Add" : "Προσθήκη", "Disabled" : "Απενεργοποιημένο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", "{license}-licensed" : "{license}-αδειοδοτημένο", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", - "Remove" : "Αφαίρεση", "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", diff --git a/l10n/el.json b/l10n/el.json index c36725ca..1cf8b4d8 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -11,13 +11,15 @@ "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", + "Remove" : "Αφαίρεση", + "To" : "Έως", + "Add" : "Προσθήκη", "Disabled" : "Απενεργοποιημένο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", "{license}-licensed" : "{license}-αδειοδοτημένο", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", - "Remove" : "Αφαίρεση", "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 6138f82b..2a69b9d4 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -95,6 +95,9 @@ OC.L10N.register( "Start Deploy test" : "Start Deploy test", "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Remove" : "Remove", + "To" : "To", + "Add" : "Add", "Hostname to access ExApps" : "Hostname to access ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -153,7 +156,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", - "Remove" : "Remove", "Delete data on remove" : "Delete data on remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index ed12717f..67bd556a 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -93,6 +93,9 @@ "Start Deploy test" : "Start Deploy test", "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Remove" : "Remove", + "To" : "To", + "Add" : "Add", "Hostname to access ExApps" : "Hostname to access ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -151,7 +154,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", - "Remove" : "Remove", "Delete data on remove" : "Delete data on remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", diff --git a/l10n/eo.js b/l10n/eo.js index 0fd46ecf..988e609d 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -5,6 +5,7 @@ OC.L10N.register( "Edit" : "Modifi", "Name" : "Nomo", "Host" : "Gastigo", + "To" : "Al", "Display name" : "Vidiga nomo", "Disabled" : "Malkapabligita", "Confirm" : "Konfirmi", diff --git a/l10n/eo.json b/l10n/eo.json index 0a433237..978e04ea 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -3,6 +3,7 @@ "Edit" : "Modifi", "Name" : "Nomo", "Host" : "Gastigo", + "To" : "Al", "Display name" : "Vidiga nomo", "Disabled" : "Malkapabligita", "Confirm" : "Konfirmi", diff --git a/l10n/es.js b/l10n/es.js index c6d1d914..71026cf5 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -88,6 +88,9 @@ OC.L10N.register( "Start Deploy test" : "Iniciar pruebas de despliegue", "Stop Deploy test" : "Detener pruebas de despliegue", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Remove" : "Quitar", + "To" : "A", + "Add" : "Añadir", "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", @@ -128,7 +131,6 @@ OC.L10N.register( "External Apps" : "Apps Externas", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Quitar", "Delete data on remove" : "Eliminar datos al borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", diff --git a/l10n/es.json b/l10n/es.json index 4a4e0217..0a485d64 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -86,6 +86,9 @@ "Start Deploy test" : "Iniciar pruebas de despliegue", "Stop Deploy test" : "Detener pruebas de despliegue", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Remove" : "Quitar", + "To" : "A", + "Add" : "Añadir", "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", @@ -126,7 +129,6 @@ "External Apps" : "Apps Externas", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Quitar", "Delete data on remove" : "Eliminar datos al borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", diff --git a/l10n/es_419.js b/l10n/es_419.js index 2c69728c..535970ec 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -5,6 +5,7 @@ OC.L10N.register( "Edit" : "Editar", "Name" : "Nombre", "Host" : "Servidor", + "Add" : "Guardar", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_419.json b/l10n/es_419.json index 80512734..777dcfb9 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -3,6 +3,7 @@ "Edit" : "Editar", "Name" : "Nombre", "Host" : "Servidor", + "Add" : "Guardar", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index a888034b..d122c007 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -6,12 +6,13 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Remove" : "Eliminar", + "Add" : "Agregar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index 3ba6e9b8..4b7ee3c1 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -4,12 +4,13 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Remove" : "Eliminar", + "Add" : "Agregar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Eliminar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", diff --git a/l10n/es_CL.js b/l10n/es_CL.js index d1d66a8d..044bc75e 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -6,12 +6,13 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Remove" : "Remover", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 7f5fe28d..6c741d7e 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -4,12 +4,13 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Remove" : "Remover", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", diff --git a/l10n/es_CO.js b/l10n/es_CO.js index ad554c6f..b842ba0b 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 179b83cd..6c2d5a7a 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_CR.js b/l10n/es_CR.js index edbb75e8..b80b9c39 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_CR.json b/l10n/es_CR.json index 6cbffb9a..c4bc6c04 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_DO.js b/l10n/es_DO.js index c579b7e6..a283a96f 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_DO.json b/l10n/es_DO.json index 21ac6fa4..caab66f5 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index 9c8d7508..0a7b2b29 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -8,6 +8,9 @@ OC.L10N.register( "Host" : "Servidor", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", + "From" : "De", + "To" : "A", + "Add" : "Guardar", "Display name" : "Nombre para mostrar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index 84595a2f..e606bcfd 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -6,6 +6,9 @@ "Host" : "Servidor", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", + "From" : "De", + "To" : "A", + "Add" : "Guardar", "Display name" : "Nombre para mostrar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index ad554c6f..24ab8be0 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -6,6 +6,9 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "From" : "De", + "To" : "Para", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_GT.json b/l10n/es_GT.json index 179b83cd..ed205c7b 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -4,6 +4,9 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "From" : "De", + "To" : "Para", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_HN.js b/l10n/es_HN.js index ad554c6f..b842ba0b 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_HN.json b/l10n/es_HN.json index 179b83cd..6c2d5a7a 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 8ec0db4b..40bf3bc2 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -11,6 +11,10 @@ OC.L10N.register( "GPUs support" : "Soporte de GPUs", "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", + "Remove" : "Borrar", + "From" : "De", + "To" : "Para", + "Add" : "Añadir", "Display name" : "Nombre para mostrar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", @@ -18,7 +22,6 @@ OC.L10N.register( "Register" : "Registrar", "{license}-licensed" : "Licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Borrar", "Delete data on remove" : "Eliminar datos al remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 688ac88f..ce8b8c53 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -9,6 +9,10 @@ "GPUs support" : "Soporte de GPUs", "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", + "Remove" : "Borrar", + "From" : "De", + "To" : "Para", + "Add" : "Añadir", "Display name" : "Nombre para mostrar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", @@ -16,7 +20,6 @@ "Register" : "Registrar", "{license}-licensed" : "Licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Borrar", "Delete data on remove" : "Eliminar datos al remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", diff --git a/l10n/es_NI.js b/l10n/es_NI.js index 9f19ecf1..fc8e09b3 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_NI.json b/l10n/es_NI.json index 3e5ba09e..b51f513c 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PA.js b/l10n/es_PA.js index 9f19ecf1..fc8e09b3 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PA.json b/l10n/es_PA.json index 3e5ba09e..b51f513c 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PE.js b/l10n/es_PE.js index 9f19ecf1..fc8e09b3 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PE.json b/l10n/es_PE.json index 3e5ba09e..b51f513c 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PR.js b/l10n/es_PR.js index 9f19ecf1..fc8e09b3 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PR.json b/l10n/es_PR.json index 3e5ba09e..b51f513c 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PY.js b/l10n/es_PY.js index 9f19ecf1..fc8e09b3 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_PY.json b/l10n/es_PY.json index 3e5ba09e..b51f513c 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_SV.js b/l10n/es_SV.js index ad554c6f..b842ba0b 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_SV.json b/l10n/es_SV.json index 179b83cd..6c2d5a7a 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_UY.js b/l10n/es_UY.js index 9f19ecf1..fc8e09b3 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_UY.json b/l10n/es_UY.json index 3e5ba09e..b51f513c 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -4,6 +4,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "Add" : "Guardar", "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 1b0e32f5..48e457e4 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -7,6 +7,10 @@ OC.L10N.register( "Name" : "Nimi", "Host" : "Host", "Enabled" : "Sisse lülitatud", + "Remove" : "Eemalda", + "From" : "Saatja", + "To" : "Saaja", + "Add" : "Lisa", "Display name" : "Kuvatav nimi", "Disabled" : "Välja lülitatud", "Confirm" : "Kinnita", @@ -14,7 +18,6 @@ OC.L10N.register( "Register" : "Registreeru", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", - "Remove" : "Eemalda", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index b19cc10f..1c579929 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -5,6 +5,10 @@ "Name" : "Nimi", "Host" : "Host", "Enabled" : "Sisse lülitatud", + "Remove" : "Eemalda", + "From" : "Saatja", + "To" : "Saaja", + "Add" : "Lisa", "Display name" : "Kuvatav nimi", "Disabled" : "Välja lülitatud", "Confirm" : "Kinnita", @@ -12,7 +16,6 @@ "Register" : "Registreeru", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", - "Remove" : "Eemalda", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", diff --git a/l10n/eu.js b/l10n/eu.js index ac09087e..b36762d0 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -40,6 +40,10 @@ OC.L10N.register( "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", "More info" : "Informazio gehiago", + "Remove" : "Kendu", + "From" : "Nork", + "To" : "Nori", + "Add" : "Gehitu", "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", @@ -54,7 +58,6 @@ OC.L10N.register( "External Apps" : "Kanpoko aplikazioak", "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", - "Remove" : "Kendu", "Delete data on remove" : "Ezabatu datuak kentzean", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", diff --git a/l10n/eu.json b/l10n/eu.json index b81af63f..42d59721 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -38,6 +38,10 @@ "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", "More info" : "Informazio gehiago", + "Remove" : "Kendu", + "From" : "Nork", + "To" : "Nori", + "Add" : "Gehitu", "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", @@ -52,7 +56,6 @@ "External Apps" : "Kanpoko aplikazioak", "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", - "Remove" : "Kendu", "Delete data on remove" : "Ezabatu datuak kentzean", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", diff --git a/l10n/fa.js b/l10n/fa.js index f43aad9c..b90b4d34 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -9,6 +9,9 @@ OC.L10N.register( "Host" : "میزبان", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", + "Remove" : "حذف", + "From" : "از", + "To" : "به", "Display name" : "Display name", "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", @@ -16,7 +19,6 @@ OC.L10N.register( "Register" : "ثبت‌نام", "{license}-licensed" : "دارای مجوز- {license}", "Update to {version}" : "به‌روز رسانی به {version}", - "Remove" : "حذف", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداقل دارای نسخه بعدی نکست کلود است. این یک خطا در آینده خواهد بود.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداکثر نسخه نکست کلود اختصاصی ندارد. این یک خطا در آینده خواهد بود.", "This app cannot be installed because the following dependencies are not fulfilled:" : "امکان نصب این برنامه وجود ندارد، این پیش‌نیازها انجام نشده‌اند:", diff --git a/l10n/fa.json b/l10n/fa.json index 5d4e1716..cd26ae79 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -7,6 +7,9 @@ "Host" : "میزبان", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", + "Remove" : "حذف", + "From" : "از", + "To" : "به", "Display name" : "Display name", "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", @@ -14,7 +17,6 @@ "Register" : "ثبت‌نام", "{license}-licensed" : "دارای مجوز- {license}", "Update to {version}" : "به‌روز رسانی به {version}", - "Remove" : "حذف", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداقل دارای نسخه بعدی نکست کلود است. این یک خطا در آینده خواهد بود.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "این برنامه حداکثر نسخه نکست کلود اختصاصی ندارد. این یک خطا در آینده خواهد بود.", "This app cannot be installed because the following dependencies are not fulfilled:" : "امکان نصب این برنامه وجود ندارد، این پیش‌نیازها انجام نشده‌اند:", diff --git a/l10n/fi.js b/l10n/fi.js index b0cacf15..bb94e66f 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -9,6 +9,10 @@ OC.L10N.register( "Host" : "Palvelin", "Nextcloud URL" : "Nextcloudin URL-osoite", "Enabled" : "Käytössä", + "Remove" : "Poista", + "From" : "Lähettäjä", + "To" : "Vastaanottaja", + "Add" : "Lisää", "Display name" : "Näyttönimi", "Disabled" : "Pois käytöstä", "Confirm" : "Vahvista", @@ -16,7 +20,6 @@ OC.L10N.register( "Register" : "Rekisteröidy", "{license}-licensed" : "{license}-lisensoitu", "Update to {version}" : "Päivitä versioon {version}", - "Remove" : "Poista", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", diff --git a/l10n/fi.json b/l10n/fi.json index 3029157d..b25bbf76 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -7,6 +7,10 @@ "Host" : "Palvelin", "Nextcloud URL" : "Nextcloudin URL-osoite", "Enabled" : "Käytössä", + "Remove" : "Poista", + "From" : "Lähettäjä", + "To" : "Vastaanottaja", + "Add" : "Lisää", "Display name" : "Näyttönimi", "Disabled" : "Pois käytöstä", "Confirm" : "Vahvista", @@ -14,7 +18,6 @@ "Register" : "Rekisteröidy", "{license}-licensed" : "{license}-lisensoitu", "Update to {version}" : "Päivitä versioon {version}", - "Remove" : "Poista", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", diff --git a/l10n/fr.js b/l10n/fr.js index 217cd33b..2c1e277d 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -88,6 +88,10 @@ OC.L10N.register( "Start Deploy test" : "Démarrer le test de déploiement", "Stop Deploy test" : "Arrêt du test de déploiement", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Remove" : "Retirer", + "From" : "De", + "To" : "À", + "Add" : "Ajouter", "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Daemon with this name already exists" : "Un service du même nom existe déjà", "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", @@ -133,7 +137,6 @@ OC.L10N.register( "External Apps" : "Applications externes", "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", - "Remove" : "Retirer", "Delete data on remove" : "Supprimer les données lors de la désinstallation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", diff --git a/l10n/fr.json b/l10n/fr.json index 3e43ba62..4c67e84f 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -86,6 +86,10 @@ "Start Deploy test" : "Démarrer le test de déploiement", "Stop Deploy test" : "Arrêt du test de déploiement", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Remove" : "Retirer", + "From" : "De", + "To" : "À", + "Add" : "Ajouter", "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Daemon with this name already exists" : "Un service du même nom existe déjà", "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", @@ -131,7 +135,6 @@ "External Apps" : "Applications externes", "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", - "Remove" : "Retirer", "Delete data on remove" : "Supprimer les données lors de la désinstallation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n’a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l’avenir.", diff --git a/l10n/ga.js b/l10n/ga.js index 2c5f717d..3f8ec1e3 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -95,6 +95,10 @@ OC.L10N.register( "Start Deploy test" : "Tosaigh Imscaradh tástála", "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Remove" : "Bain", + "From" : "Ó", + "To" : "Chun", + "Add" : "Cuir", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An óstainm (agus port) nó conair ag a bhfuil an {name}Nextcloudar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air. Is féidir leis a bheith ina chonair chuig an soicéad docker freisin. (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -153,7 +157,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", - "Remove" : "Bain", "Delete data on remove" : "Scrios sonraí ar bhaint", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan íosta de Nextcloud sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan Nextcloud uasta sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", diff --git a/l10n/ga.json b/l10n/ga.json index 0c64aa00..336d7090 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -93,6 +93,10 @@ "Start Deploy test" : "Tosaigh Imscaradh tástála", "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Remove" : "Bain", + "From" : "Ó", + "To" : "Chun", + "Add" : "Cuir", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An óstainm (agus port) nó conair ag a bhfuil an {name}Nextcloudar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air. Is féidir leis a bheith ina chonair chuig an soicéad docker freisin. (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -151,7 +155,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", - "Remove" : "Bain", "Delete data on remove" : "Scrios sonraí ar bhaint", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan íosta de Nextcloud sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Níl aon leagan Nextcloud uasta sannta don aip seo. Earráid a bheidh anseo sa todhchaí.", diff --git a/l10n/gd.js b/l10n/gd.js deleted file mode 100644 index 628c3c7a..00000000 --- a/l10n/gd.js +++ /dev/null @@ -1,16 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "Sguir dheth", - "Delete" : "Sguab às", - "Default" : "Bunaiteach", - "Edit" : "Deasaich", - "Name" : "Ainm", - "Save" : "Sàbhail", - "Remove" : "Thoir air falbh", - "Version" : "Tionndadh", - "Type" : "Seòrsa", - "Details" : "Mion-fhiosrachadh", - "Disable" : "Cuir à comas" -}, -"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"); diff --git a/l10n/gd.json b/l10n/gd.json deleted file mode 100644 index 14a3d1b8..00000000 --- a/l10n/gd.json +++ /dev/null @@ -1,14 +0,0 @@ -{ "translations": { - "Cancel" : "Sguir dheth", - "Delete" : "Sguab às", - "Default" : "Bunaiteach", - "Edit" : "Deasaich", - "Name" : "Ainm", - "Save" : "Sàbhail", - "Remove" : "Thoir air falbh", - "Version" : "Tionndadh", - "Type" : "Seòrsa", - "Details" : "Mion-fhiosrachadh", - "Disable" : "Cuir à comas" -},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;" -} \ No newline at end of file diff --git a/l10n/gl.js b/l10n/gl.js index f54f320c..7840ff6c 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -91,6 +91,10 @@ OC.L10N.register( "Start Deploy test" : "Iniciar a proba de despregadura", "Stop Deploy test" : "Deter a proba de despregadura", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Remove" : "Retirar", + "From" : "Desde", + "To" : "Ata", + "Add" : "Engadir", "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", @@ -137,7 +141,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión mínima de Nextcloud asignada. Isto será un erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión máxima de Nextcloud asignada. Isto será un erro no futuro.", diff --git a/l10n/gl.json b/l10n/gl.json index f064c5c0..bc042bc1 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -89,6 +89,10 @@ "Start Deploy test" : "Iniciar a proba de despregadura", "Stop Deploy test" : "Deter a proba de despregadura", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Remove" : "Retirar", + "From" : "Desde", + "To" : "Ata", + "Add" : "Engadir", "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", @@ -135,7 +139,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", - "Remove" : "Retirar", "Delete data on remove" : "Eliminar os datos ao retirar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión mínima de Nextcloud asignada. Isto será un erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación non dispón dunha versión máxima de Nextcloud asignada. Isto será un erro no futuro.", diff --git a/l10n/he.js b/l10n/he.js index c4ef6213..a4eeb01c 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -9,13 +9,16 @@ OC.L10N.register( "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", + "Remove" : "הסרה", + "From" : "מאת", + "To" : "אל", + "Add" : "הוספה", "Disabled" : "מושבת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", "{license}-licensed" : "ברישיון {license}", "Update to {version}" : "עדכון ל־{version}", - "Remove" : "הסרה", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", diff --git a/l10n/he.json b/l10n/he.json index 5965c952..5507b6d7 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -7,13 +7,16 @@ "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", + "Remove" : "הסרה", + "From" : "מאת", + "To" : "אל", + "Add" : "הוספה", "Disabled" : "מושבת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", "{license}-licensed" : "ברישיון {license}", "Update to {version}" : "עדכון ל־{version}", - "Remove" : "הסרה", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", diff --git a/l10n/hr.js b/l10n/hr.js index 220f923d..27f860d3 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -9,13 +9,16 @@ OC.L10N.register( "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", + "Remove" : "Ukloni", + "From" : "Od", + "To" : "Do", + "Add" : "Dodaj", "Disabled" : "Onemogućeno", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", "{license}-licensed" : "Licencirano prema {license}", "Update to {version}" : "Ažuriraj na {version}", - "Remove" : "Ukloni", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najmanja inačica Nextclouda. To će biti pogreška u budućnosti.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najveća inačica Nextclouda. To će biti pogreška u budućnosti.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikaciju nije moguće instalirati jer nisu ispunjene sljedeće ovisnosti:", diff --git a/l10n/hr.json b/l10n/hr.json index aec8a5af..33db4a5c 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -7,13 +7,16 @@ "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", + "Remove" : "Ukloni", + "From" : "Od", + "To" : "Do", + "Add" : "Dodaj", "Disabled" : "Onemogućeno", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", "{license}-licensed" : "Licencirano prema {license}", "Update to {version}" : "Ažuriraj na {version}", - "Remove" : "Ukloni", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najmanja inačica Nextclouda. To će biti pogreška u budućnosti.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ovoj aplikaciji nije dodijeljena najveća inačica Nextclouda. To će biti pogreška u budućnosti.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikaciju nije moguće instalirati jer nisu ispunjene sljedeće ovisnosti:", diff --git a/l10n/hu.js b/l10n/hu.js index 4430ca8d..a53cd630 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -10,6 +10,10 @@ OC.L10N.register( "Host" : "Kiszolgáló", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Engedélyezve", + "Remove" : "Eltávolítás", + "From" : "Feladó", + "To" : "Címzett", + "Add" : "Hozzáadás", "Display name" : "Megjelenítendő név", "Disabled" : "Letiltva", "Confirm" : "Megerősítés", @@ -17,7 +21,6 @@ OC.L10N.register( "Register" : "Regisztráció", "{license}-licensed" : "{license}-licencelt", "Update to {version}" : "Frissítés erre: {version}", - "Remove" : "Eltávolítás", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az alkalmazást nem lehet telepíteni, mert a következő függőségek hiányoznak:", diff --git a/l10n/hu.json b/l10n/hu.json index bb257714..06af3634 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -8,6 +8,10 @@ "Host" : "Kiszolgáló", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Engedélyezve", + "Remove" : "Eltávolítás", + "From" : "Feladó", + "To" : "Címzett", + "Add" : "Hozzáadás", "Display name" : "Megjelenítendő név", "Disabled" : "Letiltva", "Confirm" : "Megerősítés", @@ -15,7 +19,6 @@ "Register" : "Regisztráció", "{license}-licensed" : "{license}-licencelt", "Update to {version}" : "Frissítés erre: {version}", - "Remove" : "Eltávolítás", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az alkalmazást nem lehet telepíteni, mert a következő függőségek hiányoznak:", diff --git a/l10n/id.js b/l10n/id.js index c009411c..1aca21e5 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -8,13 +8,14 @@ OC.L10N.register( "Name" : "Nama", "Host" : "Host", "Enabled" : "Diaktifkan", + "Remove" : "Hapus", + "Add" : "Tambah", "Disabled" : "Dinonaktifkan", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", - "Remove" : "Hapus", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", diff --git a/l10n/id.json b/l10n/id.json index 1856ec4d..1d947309 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -6,13 +6,14 @@ "Name" : "Nama", "Host" : "Host", "Enabled" : "Diaktifkan", + "Remove" : "Hapus", + "Add" : "Tambah", "Disabled" : "Dinonaktifkan", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", - "Remove" : "Hapus", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", diff --git a/l10n/is.js b/l10n/is.js index d08e31da..d2774dc1 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -11,6 +11,10 @@ OC.L10N.register( "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", "Compute device" : "Reiknitæki", "Enabled" : "Virkt", + "Remove" : "Fjarlægja", + "From" : "Frá", + "To" : "Til", + "Add" : "Bæta við", "Display name" : "Birtingarnafn", "Disabled" : "Óvirkt", "Confirm" : "Staðfesta", @@ -18,7 +22,6 @@ OC.L10N.register( "Register" : "Nýskráning", "{license}-licensed" : "{license}-notkunarleyfi", "Update to {version}" : "Uppfæra í {version}", - "Remove" : "Fjarlægja", "Delete data on remove" : "Eyða gögnum við fjarlægingu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", diff --git a/l10n/is.json b/l10n/is.json index 9a40c266..6fae5812 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -9,6 +9,10 @@ "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", "Compute device" : "Reiknitæki", "Enabled" : "Virkt", + "Remove" : "Fjarlægja", + "From" : "Frá", + "To" : "Til", + "Add" : "Bæta við", "Display name" : "Birtingarnafn", "Disabled" : "Óvirkt", "Confirm" : "Staðfesta", @@ -16,7 +20,6 @@ "Register" : "Nýskráning", "{license}-licensed" : "{license}-notkunarleyfi", "Update to {version}" : "Uppfæra í {version}", - "Remove" : "Fjarlægja", "Delete data on remove" : "Eyða gögnum við fjarlægingu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", diff --git a/l10n/it.js b/l10n/it.js index 52fd4b76..168cf487 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -9,6 +9,10 @@ OC.L10N.register( "Host" : "Host", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Abilitata", + "Remove" : "Rimuovi", + "From" : "Da", + "To" : "A", + "Add" : "Aggiungi", "Display name" : "Nome visualizzato", "Disabled" : "Disabilitata", "Confirm" : "Conferma", @@ -16,7 +20,6 @@ OC.L10N.register( "Register" : "Registra", "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", - "Remove" : "Rimuovi", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", diff --git a/l10n/it.json b/l10n/it.json index 2e8e0d49..5ce5fe60 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -7,6 +7,10 @@ "Host" : "Host", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Abilitata", + "Remove" : "Rimuovi", + "From" : "Da", + "To" : "A", + "Add" : "Aggiungi", "Display name" : "Nome visualizzato", "Disabled" : "Disabilitata", "Confirm" : "Conferma", @@ -14,7 +18,6 @@ "Register" : "Registra", "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", - "Remove" : "Rimuovi", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", diff --git a/l10n/ja.js b/l10n/ja.js index 8fad4686..77928614 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -11,6 +11,10 @@ OC.L10N.register( "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", "Enabled" : "有効", + "Remove" : "削除", + "From" : "開始", + "To" : "宛先", + "Add" : "追加", "Display name" : "表示名", "Disabled" : "無効", "Confirm" : "承認", @@ -18,7 +22,6 @@ OC.L10N.register( "Register" : "登録", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", - "Remove" : "削除", "Delete data on remove" : "削除時にデータを消去する", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", diff --git a/l10n/ja.json b/l10n/ja.json index aaa1ce73..a288873d 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -9,6 +9,10 @@ "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", "Enabled" : "有効", + "Remove" : "削除", + "From" : "開始", + "To" : "宛先", + "Add" : "追加", "Display name" : "表示名", "Disabled" : "無効", "Confirm" : "承認", @@ -16,7 +20,6 @@ "Register" : "登録", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", - "Remove" : "削除", "Delete data on remove" : "削除時にデータを消去する", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", diff --git a/l10n/ka.js b/l10n/ka.js index f693c675..d09e9ce7 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -9,6 +9,10 @@ OC.L10N.register( "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", + "Remove" : "Remove", + "From" : "From", + "To" : "To", + "Add" : "დამატება", "Display name" : "Display name", "Disabled" : "Disabled", "Confirm" : "Confirm", @@ -16,7 +20,6 @@ OC.L10N.register( "Register" : "Register", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", - "Remove" : "Remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", diff --git a/l10n/ka.json b/l10n/ka.json index d75c950c..e5f28f9e 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -7,6 +7,10 @@ "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", + "Remove" : "Remove", + "From" : "From", + "To" : "To", + "Add" : "დამატება", "Display name" : "Display name", "Disabled" : "Disabled", "Confirm" : "Confirm", @@ -14,7 +18,6 @@ "Register" : "Register", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", - "Remove" : "Remove", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", diff --git a/l10n/kab.js b/l10n/kab.js index 7ba49591..6bfdb6ee 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -6,10 +6,10 @@ OC.L10N.register( "Edit" : "Ẓreg", "Name" : "Nom", "Enabled" : "Yermed", + "Remove" : "Kkes", "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", - "Remove" : "Kkes", "Type" : "Anaw", "Details" : "Talqayt", "Disable" : "Désactiver" diff --git a/l10n/kab.json b/l10n/kab.json index 89f6ac7a..c057e7a8 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -4,10 +4,10 @@ "Edit" : "Ẓreg", "Name" : "Nom", "Enabled" : "Yermed", + "Remove" : "Kkes", "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", - "Remove" : "Kkes", "Type" : "Anaw", "Details" : "Talqayt", "Disable" : "Désactiver" diff --git a/l10n/km.js b/l10n/km.js index 8a2f721a..ad8b3b17 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", + "Add" : "បន្ថែម", "Disabled" : "បាន​បិទ", "Save" : "រក្សាទុក", "Version" : "កំណែ", diff --git a/l10n/km.json b/l10n/km.json index 70dd3767..9b5c7e2b 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -5,6 +5,7 @@ "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", + "Add" : "បន្ថែម", "Disabled" : "បាន​បិទ", "Save" : "រក្សាទុក", "Version" : "កំណែ", diff --git a/l10n/ko.js b/l10n/ko.js index 462345b2..e7d31884 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -88,6 +88,10 @@ OC.L10N.register( "Start Deploy test" : "배포 테스트 시작", "Stop Deploy test" : "배포 테스트 중단", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", + "Remove" : "삭제", + "From" : "시작", + "To" : "종료", + "Add" : "추가", "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", @@ -128,7 +132,6 @@ OC.L10N.register( "External Apps" : "외부 응용 프로그램", "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", - "Remove" : "삭제", "Delete data on remove" : "제거 시 데이터 삭제", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", diff --git a/l10n/ko.json b/l10n/ko.json index 0318b7a5..7eb538f4 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -86,6 +86,10 @@ "Start Deploy test" : "배포 테스트 시작", "Stop Deploy test" : "배포 테스트 중단", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", + "Remove" : "삭제", + "From" : "시작", + "To" : "종료", + "Add" : "추가", "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", @@ -126,7 +130,6 @@ "External Apps" : "외부 응용 프로그램", "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", - "Remove" : "삭제", "Delete data on remove" : "제거 시 데이터 삭제", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", diff --git a/l10n/lb.js b/l10n/lb.js index d76e6aa1..ec2a039d 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -6,6 +6,7 @@ OC.L10N.register( "Name" : "Numm", "Host" : "Host", "Enabled" : "Aktivéiert", + "Add" : "Dobäisetzen", "Disabled" : "Deaktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", diff --git a/l10n/lb.json b/l10n/lb.json index ab80d39c..28c239be 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -4,6 +4,7 @@ "Name" : "Numm", "Host" : "Host", "Enabled" : "Aktivéiert", + "Add" : "Dobäisetzen", "Disabled" : "Deaktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", diff --git a/l10n/lo.js b/l10n/lo.js index 57be4d45..5b64404f 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -6,10 +6,10 @@ OC.L10N.register( "Default" : "ເລີ່ມຕົ້ນ", "Edit" : "ແກ້ໄຂ", "Name" : "ຊື່", + "Remove" : "ຍ້າຍອອກ", "Confirm" : "ຢືນຢັນ", "Save" : "ບັນທຶກ", "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Remove" : "ຍ້າຍອອກ", "Type" : "ພິມ", "Details" : "ລາຍລະອຽດ", "Disable" : "ປິດ" diff --git a/l10n/lo.json b/l10n/lo.json index 864be0f6..30dd8844 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -4,10 +4,10 @@ "Default" : "ເລີ່ມຕົ້ນ", "Edit" : "ແກ້ໄຂ", "Name" : "ຊື່", + "Remove" : "ຍ້າຍອອກ", "Confirm" : "ຢືນຢັນ", "Save" : "ບັນທຶກ", "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Remove" : "ຍ້າຍອອກ", "Type" : "ພິມ", "Details" : "ລາຍລະອຽດ", "Disable" : "ປິດ" diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index ff4abc7f..88b14b00 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -12,6 +12,10 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Įjungta", "More info" : "Daugiau informacijos", + "Remove" : "Šalinti", + "From" : "Nuo", + "To" : "Kam", + "Add" : "Pridėti", "Disabled" : "Išjungta", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", @@ -19,7 +23,6 @@ OC.L10N.register( "Check connection" : "Tikrinti ryšį", "{license}-licensed" : "Licencijuota pagal {license}", "Update to {version}" : "Atnaujinti į versiją {version}", - "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos aukščiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ši programėlė negali būti įdiegta, nes nėra patenkintos žemiau išvardintos priklausomybės:", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 6f0a94d4..dff0a27d 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -10,6 +10,10 @@ "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Įjungta", "More info" : "Daugiau informacijos", + "Remove" : "Šalinti", + "From" : "Nuo", + "To" : "Kam", + "Add" : "Pridėti", "Disabled" : "Išjungta", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", @@ -17,7 +21,6 @@ "Check connection" : "Tikrinti ryšį", "{license}-licensed" : "Licencijuota pagal {license}", "Update to {version}" : "Atnaujinti į versiją {version}", - "Remove" : "Šalinti", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos aukščiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ši programėlė negali būti įdiegta, nes nėra patenkintos žemiau išvardintos priklausomybės:", diff --git a/l10n/lv.js b/l10n/lv.js index b7495548..7d8bef4e 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -8,12 +8,15 @@ OC.L10N.register( "Host" : "Resursdators", "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", + "Remove" : "Izņemt", + "From" : "No", + "To" : "Līdz", + "Add" : "Pievienot", "Display name" : "Attēlojamais vārds", "Disabled" : "Atspējots", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", - "Remove" : "Izņemt", "Visit website" : "Apmeklējiet vietni", "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", diff --git a/l10n/lv.json b/l10n/lv.json index 1a3a3aa8..fc4f08a0 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -6,12 +6,15 @@ "Host" : "Resursdators", "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", + "Remove" : "Izņemt", + "From" : "No", + "To" : "Līdz", + "Add" : "Pievienot", "Display name" : "Attēlojamais vārds", "Disabled" : "Atspējots", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", - "Remove" : "Izņemt", "Visit website" : "Apmeklējiet vietni", "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", diff --git a/l10n/mk.js b/l10n/mk.js index 3dd43f15..6a7759d3 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -9,6 +9,10 @@ OC.L10N.register( "Host" : "Домаќин", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Овозможено", + "Remove" : "Отстрани ", + "From" : "Од", + "To" : "До", + "Add" : "Додади", "Display name" : "Име и презиме", "Disabled" : "Оневозможено", "Confirm" : "Потврди", @@ -16,7 +20,6 @@ OC.L10N.register( "Register" : "Регистрирај се", "{license}-licensed" : "{license}-лиценца", "Update to {version}" : "Надгради на {version}", - "Remove" : "Отстрани ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена минимална верзија. Може да настане грешка во иднина.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена максимална верзија. Може да настане грешка во иднина.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Оваа апликација не може да се инсталира затоа што следниве зависности не се исполнети:", diff --git a/l10n/mk.json b/l10n/mk.json index 8abe0905..c4c83382 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -7,6 +7,10 @@ "Host" : "Домаќин", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Овозможено", + "Remove" : "Отстрани ", + "From" : "Од", + "To" : "До", + "Add" : "Додади", "Display name" : "Име и презиме", "Disabled" : "Оневозможено", "Confirm" : "Потврди", @@ -14,7 +18,6 @@ "Register" : "Регистрирај се", "{license}-licensed" : "{license}-лиценца", "Update to {version}" : "Надгради на {version}", - "Remove" : "Отстрани ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена минимална верзија. Може да настане грешка во иднина.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Оваа апликација нема доделена максимална верзија. Може да настане грешка во иднина.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Оваа апликација не може да се инсталира затоа што следниве зависности не се исполнети:", diff --git a/l10n/mn.js b/l10n/mn.js index 59d9f66f..1b46c13b 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "Нэр", "Host" : "хост", "Enabled" : "Идэвхижүүлэх", + "Add" : "Нэмэх", "Disabled" : "идэвхигүй", "Confirm" : "Батлах", "Save" : "Хадгалах", diff --git a/l10n/mn.json b/l10n/mn.json index c685d7dd..532f3173 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -5,6 +5,7 @@ "Name" : "Нэр", "Host" : "хост", "Enabled" : "Идэвхижүүлэх", + "Add" : "Нэмэх", "Disabled" : "идэвхигүй", "Confirm" : "Батлах", "Save" : "Хадгалах", diff --git a/l10n/nb.js b/l10n/nb.js index f0c82001..d121eb45 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -88,6 +88,10 @@ OC.L10N.register( "Start Deploy test" : "Start distribusjonstest", "Stop Deploy test" : "Stopp distribusjonstest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", + "Remove" : "Fjern", + "From" : "Fra", + "To" : "Til", + "Add" : "Legg til", "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", @@ -133,7 +137,6 @@ OC.L10N.register( "External Apps" : "Eksterne apper", "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", - "Remove" : "Fjern", "Delete data on remove" : "Slett data ved fjerning", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen minimumversjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", diff --git a/l10n/nb.json b/l10n/nb.json index 05882744..625a214f 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -86,6 +86,10 @@ "Start Deploy test" : "Start distribusjonstest", "Stop Deploy test" : "Stopp distribusjonstest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", + "Remove" : "Fjern", + "From" : "Fra", + "To" : "Til", + "Add" : "Legg til", "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", @@ -131,7 +135,6 @@ "External Apps" : "Eksterne apper", "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", - "Remove" : "Fjern", "Delete data on remove" : "Slett data ved fjerning", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen minimumversjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denne appen har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", diff --git a/l10n/nl.js b/l10n/nl.js index 16d9d407..ed98403a 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -15,6 +15,10 @@ OC.L10N.register( "GPUs support" : "GPUs support", "Enabled" : "Ingeschakeld", "More info" : "Meer info", + "Remove" : "Verwijderen", + "From" : "Van", + "To" : "Naar", + "Add" : "Toevoegen", "Disabled" : "Uitgeschakeld", "Confirm" : "Bevestigen", "Save" : "Opslaan", @@ -22,7 +26,6 @@ OC.L10N.register( "External Apps" : "Externe apps", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", - "Remove" : "Verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd, omdat de volgende afhankelijkheden niet zijn ingevuld:", diff --git a/l10n/nl.json b/l10n/nl.json index b5e6ab1e..2ff27ce8 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -13,6 +13,10 @@ "GPUs support" : "GPUs support", "Enabled" : "Ingeschakeld", "More info" : "Meer info", + "Remove" : "Verwijderen", + "From" : "Van", + "To" : "Naar", + "Add" : "Toevoegen", "Disabled" : "Uitgeschakeld", "Confirm" : "Bevestigen", "Save" : "Opslaan", @@ -20,7 +24,6 @@ "External Apps" : "Externe apps", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", - "Remove" : "Verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd, omdat de volgende afhankelijkheden niet zijn ingevuld:", diff --git a/l10n/oc.js b/l10n/oc.js index 37f8b61d..e9085fe1 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -8,12 +8,14 @@ OC.L10N.register( "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Activada", + "Remove" : "Suprimir", + "From" : "De", + "Add" : "Apondre", "Disabled" : "Desactivat", "Confirm" : "Confirmar", "Save" : "Enregistrar", "Register" : "S'inscriure", "Update to {version}" : "Metre a jorn cap a {version}", - "Remove" : "Suprimir", "View in store" : "Veire a la botiga", "Visit website" : "Veire lo site web", "Report a bug" : "Raportar un bug", diff --git a/l10n/oc.json b/l10n/oc.json index 89c1079a..8a52ab7c 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -6,12 +6,14 @@ "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Activada", + "Remove" : "Suprimir", + "From" : "De", + "Add" : "Apondre", "Disabled" : "Desactivat", "Confirm" : "Confirmar", "Save" : "Enregistrar", "Register" : "S'inscriure", "Update to {version}" : "Metre a jorn cap a {version}", - "Remove" : "Suprimir", "View in store" : "Veire a la botiga", "Visit website" : "Veire lo site web", "Report a bug" : "Raportar un bug", diff --git a/l10n/pl.js b/l10n/pl.js index 02022cdb..6db986ad 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -30,6 +30,10 @@ OC.L10N.register( "Enabled" : "Włączone", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", + "Remove" : "Usuń", + "From" : "Od", + "To" : "Do", + "Add" : "Dodaj", "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", @@ -50,7 +54,6 @@ OC.L10N.register( "External Apps" : "Aplikacje zewnętrzne", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", - "Remove" : "Usuń", "Delete data on remove" : "Usuń dane przy usuwaniu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", diff --git a/l10n/pl.json b/l10n/pl.json index e12242c2..43b48264 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -28,6 +28,10 @@ "Enabled" : "Włączone", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", + "Remove" : "Usuń", + "From" : "Od", + "To" : "Do", + "Add" : "Dodaj", "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", @@ -48,7 +52,6 @@ "External Apps" : "Aplikacje zewnętrzne", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", - "Remove" : "Usuń", "Delete data on remove" : "Usuń dane przy usuwaniu", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 1b26f300..c8aa1576 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -95,6 +95,10 @@ OC.L10N.register( "Start Deploy test" : "Iniciar teste de implantação", "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "Remove" : "Remover", + "From" : "De", + "To" : "Para", + "Add" : "Adicionar", "Hostname to access ExApps" : "Nome do host para acessar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -153,7 +157,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", - "Remove" : "Remover", "Delete data on remove" : "Excluir dados ao remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 60c989e0..d1127117 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -93,6 +93,10 @@ "Start Deploy test" : "Iniciar teste de implantação", "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "Remove" : "Remover", + "From" : "De", + "To" : "Para", + "Add" : "Adicionar", "Hostname to access ExApps" : "Nome do host para acessar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -151,7 +155,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", - "Remove" : "Remover", "Delete data on remove" : "Excluir dados ao remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index c4c256ea..cfaabdd3 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -8,13 +8,16 @@ OC.L10N.register( "Name" : "Nome", "Host" : "Anfitrião", "Enabled" : "Ativado", + "Remove" : "Remover", + "From" : "De", + "To" : "Para", + "Add" : "Adicionar", "Display name" : "Nome a exibir", "Disabled" : "Desativado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", "Update to {version}" : "Atualizar para {version}", - "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 00094789..3cde9ad5 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -6,13 +6,16 @@ "Name" : "Nome", "Host" : "Anfitrião", "Enabled" : "Ativado", + "Remove" : "Remover", + "From" : "De", + "To" : "Para", + "Add" : "Adicionar", "Display name" : "Nome a exibir", "Disabled" : "Desativado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", "Update to {version}" : "Atualizar para {version}", - "Remove" : "Remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", diff --git a/l10n/ro.js b/l10n/ro.js index 27ff3073..9b648593 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -8,13 +8,16 @@ OC.L10N.register( "Name" : "Nume", "Host" : "Gazdă", "Enabled" : "Activat", + "Remove" : "Elimină", + "From" : "De la", + "To" : "Către", + "Add" : "Adaugă", "Display name" : "Nume afișat", "Disabled" : "Dezactivați", "Confirm" : "Confirmă", "Save" : "Salvează", "Register" : "Înregistrează-te", "Update to {version}" : "Actualizare la {version}", - "Remove" : "Elimină", "View in store" : "Vezi în magazin", "Visit website" : "Viziteaza pagina web", "Report a bug" : "Raportează un defect", diff --git a/l10n/ro.json b/l10n/ro.json index c0ee3fc0..7f6ad56b 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -6,13 +6,16 @@ "Name" : "Nume", "Host" : "Gazdă", "Enabled" : "Activat", + "Remove" : "Elimină", + "From" : "De la", + "To" : "Către", + "Add" : "Adaugă", "Display name" : "Nume afișat", "Disabled" : "Dezactivați", "Confirm" : "Confirmă", "Save" : "Salvează", "Register" : "Înregistrează-te", "Update to {version}" : "Actualizare la {version}", - "Remove" : "Elimină", "View in store" : "Vezi în magazin", "Visit website" : "Viziteaza pagina web", "Report a bug" : "Raportează un defect", diff --git a/l10n/ru.js b/l10n/ru.js index 5efbc456..8d795def 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -89,6 +89,10 @@ OC.L10N.register( "Start Deploy test" : "Начать тест развертывания", "Stop Deploy test" : "Остановить тест развертывания", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Remove" : "Удалить", + "From" : "От", + "To" : "По", + "Add" : "Добавить", "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", "Daemon with this name already exists" : "Служба с таким названием уже существует", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", @@ -134,7 +138,6 @@ OC.L10N.register( "External Apps" : "Внешние приложения", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", - "Remove" : "Удалить", "Delete data on remove" : "Удалить данные при удалении", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", diff --git a/l10n/ru.json b/l10n/ru.json index 751fa900..c5d4aa23 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -87,6 +87,10 @@ "Start Deploy test" : "Начать тест развертывания", "Stop Deploy test" : "Остановить тест развертывания", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Remove" : "Удалить", + "From" : "От", + "To" : "По", + "Add" : "Добавить", "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", "Daemon with this name already exists" : "Служба с таким названием уже существует", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", @@ -132,7 +136,6 @@ "External Apps" : "Внешние приложения", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", - "Remove" : "Удалить", "Delete data on remove" : "Удалить данные при удалении", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", diff --git a/l10n/sc.js b/l10n/sc.js index 0994e591..002bb388 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -9,6 +9,10 @@ OC.L10N.register( "Host" : "Retzidore", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", + "Remove" : "Boga", + "From" : "Dae", + "To" : "A", + "Add" : "Agiunghe", "Display name" : "Ammustra nùmene", "Disabled" : "Disativadu", "Confirm" : "Cunfirma", @@ -16,7 +20,6 @@ OC.L10N.register( "Register" : "Registra", "{license}-licensed" : "suta lissèntzia {license}", "Update to {version}" : "Agiorna a {version}", - "Remove" : "Boga", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione mìnima de Nextcloud assignada. At a èssere unu problema in su benidore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione màssima de Nextcloud assignada. At a èssere unu problema in su benidore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Non faghet a installare custa aplicatzione ca is dipendèntzias in fatu non sunt satisfatos:", diff --git a/l10n/sc.json b/l10n/sc.json index 4841b981..a160f4fe 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -7,6 +7,10 @@ "Host" : "Retzidore", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", + "Remove" : "Boga", + "From" : "Dae", + "To" : "A", + "Add" : "Agiunghe", "Display name" : "Ammustra nùmene", "Disabled" : "Disativadu", "Confirm" : "Cunfirma", @@ -14,7 +18,6 @@ "Register" : "Registra", "{license}-licensed" : "suta lissèntzia {license}", "Update to {version}" : "Agiorna a {version}", - "Remove" : "Boga", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione mìnima de Nextcloud assignada. At a èssere unu problema in su benidore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Custa aplicatzione non cuntenet sa versione màssima de Nextcloud assignada. At a èssere unu problema in su benidore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Non faghet a installare custa aplicatzione ca is dipendèntzias in fatu non sunt satisfatos:", diff --git a/l10n/sk.js b/l10n/sk.js index 21948f8c..e7e66a1f 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -95,6 +95,10 @@ OC.L10N.register( "Start Deploy test" : "Spustiť test nasadenia", "Stop Deploy test" : "Zastaviť test nasadenia", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Remove" : "Odobrať", + "From" : "Od", + "To" : "Pre", + "Add" : "Pridať", "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Názov hostiteľa (a port), na ktorom je k dispozícii {name}. Nemusí to byť verejný hostiteľ, len hostiteľ prístupný zo servera Nextcloud, napr. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa (a port) alebo cesta, na ktorej je k dispozícii {name}. Nemusí to byť verejný hostiteľ, iba hostiteľ prístupný zo servera Nextcloud. Môže to byť aj cesta k docker socketu. (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -153,7 +157,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", - "Remove" : "Odobrať", "Delete data on remove" : "Pri odobraní zmazať dáta", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", diff --git a/l10n/sk.json b/l10n/sk.json index 708a1445..35738501 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -93,6 +93,10 @@ "Start Deploy test" : "Spustiť test nasadenia", "Stop Deploy test" : "Zastaviť test nasadenia", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Remove" : "Odobrať", + "From" : "Od", + "To" : "Pre", + "Add" : "Pridať", "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Názov hostiteľa (a port), na ktorom je k dispozícii {name}. Nemusí to byť verejný hostiteľ, len hostiteľ prístupný zo servera Nextcloud, napr. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa (a port) alebo cesta, na ktorej je k dispozícii {name}. Nemusí to byť verejný hostiteľ, iba hostiteľ prístupný zo servera Nextcloud. Môže to byť aj cesta k docker socketu. (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -151,7 +155,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", - "Remove" : "Odobrať", "Delete data on remove" : "Pri odobraní zmazať dáta", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", diff --git a/l10n/sl.js b/l10n/sl.js index 8fad9113..29ef6f60 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -9,6 +9,10 @@ OC.L10N.register( "Host" : "Gostitelj", "Nextcloud URL" : "Naslov URL Nextcloud", "Enabled" : "Omogočeno", + "Remove" : "Odstrani", + "From" : "Od", + "To" : "Za", + "Add" : "Dodaj", "Display name" : "Prikazno ime", "Disabled" : "Onemogočeno", "Confirm" : "Potrdi", @@ -16,7 +20,6 @@ OC.L10N.register( "Register" : "Vpis računa", "{license}-licensed" : "dovoljenje {license}", "Update to {version}" : "Posodobitev na različico {version}", - "Remove" : "Odstrani", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcoud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerazrešenih odvisnosti:", diff --git a/l10n/sl.json b/l10n/sl.json index 14a6f357..8c13b020 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -7,6 +7,10 @@ "Host" : "Gostitelj", "Nextcloud URL" : "Naslov URL Nextcloud", "Enabled" : "Omogočeno", + "Remove" : "Odstrani", + "From" : "Od", + "To" : "Za", + "Add" : "Dodaj", "Display name" : "Prikazno ime", "Disabled" : "Onemogočeno", "Confirm" : "Potrdi", @@ -14,7 +18,6 @@ "Register" : "Vpis računa", "{license}-licensed" : "dovoljenje {license}", "Update to {version}" : "Posodobitev na različico {version}", - "Remove" : "Odstrani", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja Nextcoud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerazrešenih odvisnosti:", diff --git a/l10n/sq.js b/l10n/sq.js index 479acc43..72387e2b 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -8,12 +8,13 @@ OC.L10N.register( "Name" : "Emër", "Host" : "Strehë", "Enabled" : "E aktivizuar", + "Remove" : "Hiqe", + "Add" : "Shto ", "Disabled" : "I/E çaktivizuar", "Confirm" : "Konfirmo", "Save" : "Ruaje", "Register" : "Regjistrohu", "Update to {version}" : "Përditëso në {version}", - "Remove" : "Hiqe", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një minimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ky aplikacion s’mund të instalohet, ngaqë për të nuk plotësohen varësitë vijuese:", diff --git a/l10n/sq.json b/l10n/sq.json index 66deea83..0179ee39 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -6,12 +6,13 @@ "Name" : "Emër", "Host" : "Strehë", "Enabled" : "E aktivizuar", + "Remove" : "Hiqe", + "Add" : "Shto ", "Disabled" : "I/E çaktivizuar", "Confirm" : "Konfirmo", "Save" : "Ruaje", "Register" : "Regjistrohu", "Update to {version}" : "Përditëso në {version}", - "Remove" : "Hiqe", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një minimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ky aplikacion s’mund të instalohet, ngaqë për të nuk plotësohen varësitë vijuese:", diff --git a/l10n/sr.js b/l10n/sr.js index 8f12bc4e..d9bf81f9 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -60,6 +60,7 @@ OC.L10N.register( "Name" : "Име", "Protocol" : "Протокол", "Host" : "Домаћин", + "ExApp direct communication (FRP disabled)" : "ExApp директна комуникација (искључен FRP)", "Deploy config" : "Конфигурација постављања", "Docker network" : "Docker мрежа", "Nextcloud URL" : "Nextcloud URL", @@ -95,6 +96,10 @@ OC.L10N.register( "Start Deploy test" : "Покрени тест постављања", "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Remove" : "Уклони", + "From" : "Од", + "To" : "За", + "Add" : "Додај", "Hostname to access ExApps" : "Име хоста за приступ ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста (и порт) или путања где је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи. Такође може да буде и путања до докер сокета. (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -136,6 +141,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", "Docker socket proxy port" : "Порт проксија за докер сокет", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", + "Disable FRP" : "Искључи FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Заставица само за напредне инсталације. Искључује FRP тунел између ExApp апликација и HaRP.", "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Additional option" : "Додатна опција", @@ -153,7 +160,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", - "Remove" : "Уклони", "Delete data on remove" : "Обриши податке приликом уклањања", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", diff --git a/l10n/sr.json b/l10n/sr.json index 72721960..a425bc18 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -58,6 +58,7 @@ "Name" : "Име", "Protocol" : "Протокол", "Host" : "Домаћин", + "ExApp direct communication (FRP disabled)" : "ExApp директна комуникација (искључен FRP)", "Deploy config" : "Конфигурација постављања", "Docker network" : "Docker мрежа", "Nextcloud URL" : "Nextcloud URL", @@ -93,6 +94,10 @@ "Start Deploy test" : "Покрени тест постављања", "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Remove" : "Уклони", + "From" : "Од", + "To" : "За", + "Add" : "Додај", "Hostname to access ExApps" : "Име хоста за приступ ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста (и порт) или путања где је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи. Такође може да буде и путања до докер сокета. (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -134,6 +139,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", "Docker socket proxy port" : "Порт проксија за докер сокет", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", + "Disable FRP" : "Искључи FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Заставица само за напредне инсталације. Искључује FRP тунел између ExApp апликација и HaRP.", "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Additional option" : "Додатна опција", @@ -151,7 +158,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", - "Remove" : "Уклони", "Delete data on remove" : "Обриши податке приликом уклањања", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", diff --git a/l10n/sv.js b/l10n/sv.js index 56857c08..20d507f6 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -10,6 +10,10 @@ OC.L10N.register( "Host" : "Server", "Nextcloud URL" : "Nextcloud-URL", "Enabled" : "Aktiverad", + "Remove" : "Ta bort", + "From" : "Från", + "To" : "Till", + "Add" : "Lägg till", "Display name" : "Visningsnamn", "Disabled" : "Inaktiverad", "Confirm" : "Bekräfta", @@ -18,7 +22,6 @@ OC.L10N.register( "External Apps" : "Externa appar", "{license}-licensed" : "{license}-licensierad", "Update to {version}" : "Uppdatera till {version}", - "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", diff --git a/l10n/sv.json b/l10n/sv.json index ee12143e..d90ac609 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -8,6 +8,10 @@ "Host" : "Server", "Nextcloud URL" : "Nextcloud-URL", "Enabled" : "Aktiverad", + "Remove" : "Ta bort", + "From" : "Från", + "To" : "Till", + "Add" : "Lägg till", "Display name" : "Visningsnamn", "Disabled" : "Inaktiverad", "Confirm" : "Bekräfta", @@ -16,7 +20,6 @@ "External Apps" : "Externa appar", "{license}-licensed" : "{license}-licensierad", "Update to {version}" : "Uppdatera till {version}", - "Remove" : "Ta bort", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", diff --git a/l10n/ta.js b/l10n/ta.js index a4c36c9b..d84a318c 100644 --- a/l10n/ta.js +++ b/l10n/ta.js @@ -6,8 +6,9 @@ OC.L10N.register( "Edit" : "தொகுக்க", "Name" : "பெயர்", "Host" : "ஓம்புனர்", - "Save" : "சேமிக்க ", "Remove" : "அகற்றுக", + "Add" : "சேர்க்க", + "Save" : "சேமிக்க ", "Actions" : "செயல்கள்", "Type" : "வகை", "Documentation" : "ஆவணமாக்கல்", diff --git a/l10n/ta.json b/l10n/ta.json index 67808667..6f420fe6 100644 --- a/l10n/ta.json +++ b/l10n/ta.json @@ -4,8 +4,9 @@ "Edit" : "தொகுக்க", "Name" : "பெயர்", "Host" : "ஓம்புனர்", - "Save" : "சேமிக்க ", "Remove" : "அகற்றுக", + "Add" : "சேர்க்க", + "Save" : "சேமிக்க ", "Actions" : "செயல்கள்", "Type" : "வகை", "Documentation" : "ஆவணமாக்கல்", diff --git a/l10n/th.js b/l10n/th.js index 197620fa..ed48c664 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "ชื่อ", "Host" : "โฮสต์", "Enabled" : "เปิดใช้งาน", + "Remove" : "ลบออก", "Display name" : "ชื่อที่แสดง", "Disabled" : "ปิดใช้งาน", "Confirm" : "ยืนยัน", @@ -14,7 +15,6 @@ OC.L10N.register( "Register" : "ลงทะเบียน", "{license}-licensed" : "สัญญาอนุญาต {license}", "Update to {version}" : "อัปเดตเป็น {version}", - "Remove" : "ลบออก", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นขั้นต่ำของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นสูงสุดของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอปนี้ เนื่องจากสิ่งที่พึ่งพาต่อไปนี้ยังไม่ครบ:", diff --git a/l10n/th.json b/l10n/th.json index 9b78e86f..be2a7969 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -5,6 +5,7 @@ "Name" : "ชื่อ", "Host" : "โฮสต์", "Enabled" : "เปิดใช้งาน", + "Remove" : "ลบออก", "Display name" : "ชื่อที่แสดง", "Disabled" : "ปิดใช้งาน", "Confirm" : "ยืนยัน", @@ -12,7 +13,6 @@ "Register" : "ลงทะเบียน", "{license}-licensed" : "สัญญาอนุญาต {license}", "Update to {version}" : "อัปเดตเป็น {version}", - "Remove" : "ลบออก", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นขั้นต่ำของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "แอปนี้ไม่ได้ระบุรุ่นสูงสุดของ Nextcloud ซึ่งอาจเป็นปัญหาในอนาคตได้", "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอปนี้ เนื่องจากสิ่งที่พึ่งพาต่อไปนี้ยังไม่ครบ:", diff --git a/l10n/tr.js b/l10n/tr.js index 9ef34844..de87b81d 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -91,6 +91,10 @@ OC.L10N.register( "Start Deploy test" : "Dağıtım sınamasını başlat", "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Remove" : "Kaldır", + "From" : "Başlangıç", + "To" : "Bitiş", + "Add" : "Ekle", "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", @@ -137,7 +141,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", - "Remove" : "Kaldır", "Delete data on remove" : "Kaldırıldığında veriler silinsin", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", diff --git a/l10n/tr.json b/l10n/tr.json index c113578d..e6130dcf 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -89,6 +89,10 @@ "Start Deploy test" : "Dağıtım sınamasını başlat", "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Remove" : "Kaldır", + "From" : "Başlangıç", + "To" : "Bitiş", + "Add" : "Ekle", "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", @@ -135,7 +139,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", - "Remove" : "Kaldır", "Delete data on remove" : "Kaldırıldığında veriler silinsin", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", diff --git a/l10n/ug.js b/l10n/ug.js index 67235ee1..ce2230aa 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -89,6 +89,10 @@ OC.L10N.register( "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Remove" : "ئۆچۈرۈڭ", + "From" : "From", + "To" : "To", + "Add" : "قوش", "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", @@ -134,7 +138,6 @@ OC.L10N.register( "External Apps" : "سىرتقى ئەپلەر", "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", - "Remove" : "ئۆچۈرۈڭ", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ تۆۋەن Nextcloud نەشرى يوق. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ چوڭ Nextcloud نەشرى بېكىتىلمىگەن. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", diff --git a/l10n/ug.json b/l10n/ug.json index 34b35d97..b3dda862 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -87,6 +87,10 @@ "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Remove" : "ئۆچۈرۈڭ", + "From" : "From", + "To" : "To", + "Add" : "قوش", "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", @@ -132,7 +136,6 @@ "External Apps" : "سىرتقى ئەپلەر", "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", - "Remove" : "ئۆچۈرۈڭ", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ تۆۋەن Nextcloud نەشرى يوق. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "بۇ ئەپنىڭ ئەڭ چوڭ Nextcloud نەشرى بېكىتىلمىگەن. بۇ كەلگۈسىدە خاتالىق بولىدۇ.", diff --git a/l10n/uk.js b/l10n/uk.js index c5a3a586..44049a08 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -6,7 +6,13 @@ OC.L10N.register( "Edit" : "Редагувати", "Name" : "Назва", "Host" : "Хост", + "GPUs support" : "Підтримка GPU", + "Compute device" : "Обчислити пристрій", "Enabled" : "Увімкнено", + "Remove" : "Вилучити", + "From" : "Від", + "To" : "Кому", + "Add" : "Додати", "Display name" : "Ім'я для показу", "Disabled" : "Вимкнено", "Confirm" : "Підтвердити", @@ -15,7 +21,6 @@ OC.L10N.register( "External Apps" : "Зовнішні застосунки", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", - "Remove" : "Вилучити", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Цей застосунок не має обмежень щодо мінімальної версії Nextcloud. В майбутньому це може викликати певні помилки.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для цього застосунку не визначено найвищу версію Nextcloud. Це може викликати помилку в майбутньому.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Цей застосунок не буде встановлено, оскільки такі залежності неможливо виконати:", diff --git a/l10n/uk.json b/l10n/uk.json index 8a8cdfb5..89e2c284 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -4,7 +4,13 @@ "Edit" : "Редагувати", "Name" : "Назва", "Host" : "Хост", + "GPUs support" : "Підтримка GPU", + "Compute device" : "Обчислити пристрій", "Enabled" : "Увімкнено", + "Remove" : "Вилучити", + "From" : "Від", + "To" : "Кому", + "Add" : "Додати", "Display name" : "Ім'я для показу", "Disabled" : "Вимкнено", "Confirm" : "Підтвердити", @@ -13,7 +19,6 @@ "External Apps" : "Зовнішні застосунки", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", - "Remove" : "Вилучити", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Цей застосунок не має обмежень щодо мінімальної версії Nextcloud. В майбутньому це може викликати певні помилки.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для цього застосунку не визначено найвищу версію Nextcloud. Це може викликати помилку в майбутньому.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Цей застосунок не буде встановлено, оскільки такі залежності неможливо виконати:", diff --git a/l10n/uz.js b/l10n/uz.js index 42cb494c..9ca4a052 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -5,10 +5,13 @@ OC.L10N.register( "Delete" : "Delete", "Edit" : "Tahrirlash", "Name" : "Name", + "Remove" : "Remove", + "From" : "Dan", + "To" : "Gacha", + "Add" : "Qo'shish", "Confirm" : "Confirm", "Save" : "Saqlash", "Update to {version}" : "Update to {version}", - "Remove" : "Remove", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", "Admin documentation" : "Admin documentation", diff --git a/l10n/uz.json b/l10n/uz.json index 5eb98573..6c9835af 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -3,10 +3,13 @@ "Delete" : "Delete", "Edit" : "Tahrirlash", "Name" : "Name", + "Remove" : "Remove", + "From" : "Dan", + "To" : "Gacha", + "Add" : "Qo'shish", "Confirm" : "Confirm", "Save" : "Saqlash", "Update to {version}" : "Update to {version}", - "Remove" : "Remove", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", "Admin documentation" : "Admin documentation", diff --git a/l10n/vi.js b/l10n/vi.js index 1086ed8a..00fcb855 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -8,13 +8,16 @@ OC.L10N.register( "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", "Enabled" : "Đá kích hoạt", + "Remove" : "Xoá", + "From" : "Từ", + "To" : "Tới", + "Add" : "Thêm", "Disabled" : "Đã vô hiệu", "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", "{license}-licensed" : "{license}-được cấp phép", "Update to {version}" : "Cập nhật tới {version}", - "Remove" : "Xoá", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối thiểu được chỉ định. Đây sẽ là một lỗi trong tương lai.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối đa được chỉ định. Đây sẽ là một lỗi trong tương lai.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ứng dụng này không thể được cài đặt vì các điều kiện phụ thuộc sau không được đáp ứng:", diff --git a/l10n/vi.json b/l10n/vi.json index 6acadfd9..7d291435 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -6,13 +6,16 @@ "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", "Enabled" : "Đá kích hoạt", + "Remove" : "Xoá", + "From" : "Từ", + "To" : "Tới", + "Add" : "Thêm", "Disabled" : "Đã vô hiệu", "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", "{license}-licensed" : "{license}-được cấp phép", "Update to {version}" : "Cập nhật tới {version}", - "Remove" : "Xoá", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối thiểu được chỉ định. Đây sẽ là một lỗi trong tương lai.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ứng dụng này không có phiên bản Nextcloud tối đa được chỉ định. Đây sẽ là một lỗi trong tương lai.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ứng dụng này không thể được cài đặt vì các điều kiện phụ thuộc sau không được đáp ứng:", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index f359652e..71885173 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -40,6 +40,10 @@ OC.L10N.register( "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", "Register Daemon" : "注册守护进程", "Enabled" : "已启用", + "Remove" : "移除", + "From" : "来自", + "To" : "给", + "Add" : "添加", "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", @@ -50,7 +54,6 @@ OC.L10N.register( "External Apps" : "外部应用", "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", - "Remove" : "移除", "Delete data on remove" : "移除时删除数据", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本。可能会在将来出现问题。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本。可能会在将来出现问题。", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 2d595028..0d289483 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -38,6 +38,10 @@ "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", "Register Daemon" : "注册守护进程", "Enabled" : "已启用", + "Remove" : "移除", + "From" : "来自", + "To" : "给", + "Add" : "添加", "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", @@ -48,7 +52,6 @@ "External Apps" : "外部应用", "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", - "Remove" : "移除", "Delete data on remove" : "移除时删除数据", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本。可能会在将来出现问题。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本。可能会在将来出现问题。", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index f5fb0f67..a0d4e921 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -95,6 +95,10 @@ OC.L10N.register( "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Remove" : "移除", + "From" : "從", + "To" : "至", + "Add" : "添加", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", @@ -153,7 +157,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", - "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 639726b8..54d29163 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -93,6 +93,10 @@ "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Remove" : "移除", + "From" : "從", + "To" : "至", + "Add" : "添加", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", @@ -151,7 +155,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", - "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 51344458..8fc1b2d6 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -60,6 +60,7 @@ OC.L10N.register( "Name" : "名稱", "Protocol" : "協定", "Host" : "主機", + "ExApp direct communication (FRP disabled)" : "ExApp 直接通訊(已停用 FRP)", "Deploy config" : "部署設定", "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", @@ -95,6 +96,10 @@ OC.L10N.register( "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Remove" : "移除", + "From" : "從", + "To" : "至", + "Add" : "新增", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", @@ -136,6 +141,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disable FRP" : "停用 FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApp 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "其他選項", @@ -153,7 +160,6 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", - "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 624048eb..b2d22fd0 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -58,6 +58,7 @@ "Name" : "名稱", "Protocol" : "協定", "Host" : "主機", + "ExApp direct communication (FRP disabled)" : "ExApp 直接通訊(已停用 FRP)", "Deploy config" : "部署設定", "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", @@ -93,6 +94,10 @@ "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Remove" : "移除", + "From" : "從", + "To" : "至", + "Add" : "新增", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", @@ -134,6 +139,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disable FRP" : "停用 FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApp 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "其他選項", @@ -151,7 +158,6 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", - "Remove" : "移除", "Delete data on remove" : "移除時刪除資料", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最低的 Nextcloud 版本。未來可能會出現錯誤。", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未指定最高的 Nextcloud 版本。未來可能會出現錯誤。", From aafb75d42ce66f4456c107fd5a8a2de1eaa6f964 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 19 Apr 2025 00:30:25 +0000 Subject: [PATCH 117/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/af.js | 3 ++ l10n/af.json | 3 ++ l10n/ar.js | 3 ++ l10n/ar.json | 3 ++ l10n/ast.js | 3 ++ l10n/ast.json | 3 ++ l10n/bg.js | 3 ++ l10n/bg.json | 3 ++ l10n/bn_BD.js | 1 + l10n/bn_BD.json | 1 + l10n/ca.js | 2 ++ l10n/ca.json | 2 ++ l10n/cs.js | 2 ++ l10n/cs.json | 2 ++ l10n/da.js | 1 + l10n/da.json | 1 + l10n/de.js | 17 ++++++++++ l10n/de.json | 17 ++++++++++ l10n/de_DE.js | 17 ++++++++++ l10n/de_DE.json | 17 ++++++++++ l10n/el.js | 1 + l10n/el.json | 1 + l10n/es.js | 85 +++++++++++++++++++++++++++++++++++++------------ l10n/es.json | 85 +++++++++++++++++++++++++++++++++++++------------ l10n/et_EE.js | 2 ++ l10n/et_EE.json | 2 ++ l10n/ja.js | 68 +++++++++++++++++++++++++++++++++++++++ l10n/ja.json | 68 +++++++++++++++++++++++++++++++++++++++ l10n/si.js | 17 ++++++++++ l10n/si.json | 15 +++++++++ l10n/sr.js | 16 ++++++++++ l10n/sr.json | 16 ++++++++++ l10n/zh_TW.js | 16 ++++++++++ l10n/zh_TW.json | 16 ++++++++++ 34 files changed, 472 insertions(+), 40 deletions(-) create mode 100644 l10n/si.js create mode 100644 l10n/si.json diff --git a/l10n/af.js b/l10n/af.js index d71164cf..95e49af9 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -3,6 +3,9 @@ OC.L10N.register( { "Delete" : "Skrap", "Host" : "Gasheer", + "From" : "Van", + "To" : "Aan", + "Add" : "Voeg toe", "Confirm" : "Bevestig", "Save" : "Stoor", "Register" : "Registreer", diff --git a/l10n/af.json b/l10n/af.json index 05b7afaa..c7680a0e 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -1,6 +1,9 @@ { "translations": { "Delete" : "Skrap", "Host" : "Gasheer", + "From" : "Van", + "To" : "Aan", + "Add" : "Voeg toe", "Confirm" : "Bevestig", "Save" : "Stoor", "Register" : "Registreer", diff --git a/l10n/ar.js b/l10n/ar.js index 737d930b..31832d08 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -96,6 +96,9 @@ OC.L10N.register( "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Remove" : "حذف", + "From" : "مِن :", + "To" : "إلى :", + "Add" : "إضافة ", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", diff --git a/l10n/ar.json b/l10n/ar.json index 61f35bf7..10771feb 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -94,6 +94,9 @@ "Stop Deploy test" : "إيقاف النشر التجريبي", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Remove" : "حذف", + "From" : "مِن :", + "To" : "إلى :", + "Add" : "إضافة ", "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", diff --git a/l10n/ast.js b/l10n/ast.js index 1e45a7c6..82a65064 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -27,6 +27,9 @@ OC.L10N.register( "Enabled" : "Activóse", "More info" : "Más información", "Remove" : "Quitar", + "From" : "De", + "To" : "Pa", + "Add" : "Amestar", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", diff --git a/l10n/ast.json b/l10n/ast.json index 0c93b927..68eed4b4 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -25,6 +25,9 @@ "Enabled" : "Activóse", "More info" : "Más información", "Remove" : "Quitar", + "From" : "De", + "To" : "Pa", + "Add" : "Amestar", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", diff --git a/l10n/bg.js b/l10n/bg.js index 5e4b6a46..1783e74e 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -10,6 +10,9 @@ OC.L10N.register( "Nextcloud URL" : "URL адрес на Nextcloud", "Enabled" : "Включено", "Remove" : "Премахване", + "From" : "От", + "To" : "До", + "Add" : "Добавяне", "Display name" : "Име за визуализация", "Disabled" : "Изключено", "Confirm" : "Потвърдете", diff --git a/l10n/bg.json b/l10n/bg.json index ff19a6e6..e45fb62f 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -8,6 +8,9 @@ "Nextcloud URL" : "URL адрес на Nextcloud", "Enabled" : "Включено", "Remove" : "Премахване", + "From" : "От", + "To" : "До", + "Add" : "Добавяне", "Display name" : "Име за визуализация", "Disabled" : "Изключено", "Confirm" : "Потвърдете", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index d1e96452..8efd4c20 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -7,6 +7,7 @@ OC.L10N.register( "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", + "Add" : "যোগ কর", "Disabled" : "অকার্যকর", "Save" : "সংরক্ষণ", "Version" : "ভার্সন", diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index 72261a13..1a970d70 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -5,6 +5,7 @@ "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", + "Add" : "যোগ কর", "Disabled" : "অকার্যকর", "Save" : "সংরক্ষণ", "Version" : "ভার্সন", diff --git a/l10n/ca.js b/l10n/ca.js index 5a43949c..c2918d3f 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -92,7 +92,9 @@ OC.L10N.register( "Stop Deploy test" : "Atura la prova de desplegament", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", "Remove" : "Suprimeix", + "From" : "De", "To" : "A", + "Add" : "Afegeix", "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", diff --git a/l10n/ca.json b/l10n/ca.json index 8b1c043c..af330532 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -90,7 +90,9 @@ "Stop Deploy test" : "Atura la prova de desplegament", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", "Remove" : "Suprimeix", + "From" : "De", "To" : "A", + "Add" : "Afegeix", "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", diff --git a/l10n/cs.js b/l10n/cs.js index 7c7c7739..4273e2fe 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -96,7 +96,9 @@ OC.L10N.register( "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Remove" : "Odebrat", + "From" : "Od", "To" : "Pro", + "Add" : "Přidat", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", diff --git a/l10n/cs.json b/l10n/cs.json index 62553448..05b3951c 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -94,7 +94,9 @@ "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Remove" : "Odebrat", + "From" : "Od", "To" : "Pro", + "Add" : "Přidat", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", diff --git a/l10n/da.js b/l10n/da.js index 57b2d416..2b54a9a3 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -96,6 +96,7 @@ OC.L10N.register( "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", "Remove" : "Fjern", + "From" : "Fra", "To" : "Til", "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", diff --git a/l10n/da.json b/l10n/da.json index 4fc29856..61291263 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -94,6 +94,7 @@ "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", "Remove" : "Fjern", + "From" : "Fra", "To" : "Til", "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", diff --git a/l10n/de.js b/l10n/de.js index 31b02b47..9669eb92 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "Error adding Docker registry" : "Fehler beim Hinzufügen der Docker-Registry", + "Error removing Docker registry" : "Fehler beim Entfernen der Docker-Registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "ExApp konnte nicht installiert werden", "Failed to enable ExApp" : "Aktivieren von ExApp fehlgeschlagen", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", + "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", @@ -96,8 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", + "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", + "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", + "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", + "From" : "Von", + "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", + "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", diff --git a/l10n/de.json b/l10n/de.json index 828353ae..05b1e43c 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "Error adding Docker registry" : "Fehler beim Hinzufügen der Docker-Registry", + "Error removing Docker registry" : "Fehler beim Entfernen der Docker-Registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "ExApp konnte nicht installiert werden", "Failed to enable ExApp" : "Aktivieren von ExApp fehlgeschlagen", @@ -49,6 +51,7 @@ "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", + "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", @@ -94,8 +97,22 @@ "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", + "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", + "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", + "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", + "From" : "Von", + "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", + "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index a3a126aa..8cc0547f 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "Error adding Docker registry" : "Fehler beim Hinzufügen der Docker-Registry", + "Error removing Docker registry" : "Fehler beim Entfernen der Docker-Registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", "Failed to enable ExApp" : "Fehler beim Aktivieren von ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", + "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", @@ -96,8 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", + "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", + "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", + "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", + "From" : "Von", + "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", + "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 7e820ae0..bde57647 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Fehler beim Starten der Installation von ExApp", "ExApp failed to register, check the NC logs" : "ExApp konnte nicht registriert werden, NC-Protokolle überprüfen.", "ExApp not found, failed to get status" : "ExApp nicht gefunden, Status konnte nicht abgerufen werden", + "Error adding Docker registry" : "Fehler beim Hinzufügen der Docker-Registry", + "Error removing Docker registry" : "Fehler beim Entfernen der Docker-Registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", "Failed to enable ExApp" : "Fehler beim Aktivieren von ExApp", @@ -49,6 +51,7 @@ "Default" : "Standard", "Set as default" : "Als Standard festlegen", "Test deploy" : "Bereitstellung testen", + "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", @@ -94,8 +97,22 @@ "Start Deploy test" : "Bereitstellungstest starten", "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", + "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", + "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", + "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", + "From" : "Von", + "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", + "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", diff --git a/l10n/el.js b/l10n/el.js index b9204acb..0f217c89 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -14,6 +14,7 @@ OC.L10N.register( "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", "Remove" : "Αφαίρεση", + "From" : "Από", "To" : "Έως", "Add" : "Προσθήκη", "Disabled" : "Απενεργοποιημένο", diff --git a/l10n/el.json b/l10n/el.json index 1cf8b4d8..e6812503 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -12,6 +12,7 @@ "Compute device" : "Συσκευή υπολογισμού", "Enabled" : "Ενεργοποιημένο", "Remove" : "Αφαίρεση", + "From" : "Από", "To" : "Έως", "Add" : "Προσθήκη", "Disabled" : "Απενεργοποιημένο", diff --git a/l10n/es.js b/l10n/es.js index 71026cf5..5f7cba56 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -5,6 +5,9 @@ OC.L10N.register( "Error starting install of ExApp" : "Error iniciando la instalación de ExApp", "ExApp failed to register, check the NC logs" : "La ExApp falló al registrarse, revise los registros de NC", "ExApp not found, failed to get status" : "No se encontró ExApp, fallo al obtener el estado", + "Error adding Docker registry" : "Error al añadir registry de Docker", + "Error removing Docker registry" : "Error al quitar registry de Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no se ha instalado desde el AppStore. No hay información extra disponible. Solo están permitidas las acciones de habilitar/deshabilitar", "Could not perform installation of ExApp" : "No se pudo ejecutar la instalación de ExApp", "Failed to enable ExApp" : "Fallo al habilitar ExApp", "Failed to disable ExApp" : "Fallo al deshabilitar ExApp", @@ -13,12 +16,18 @@ OC.L10N.register( "Could not perform update of ExApp" : "No se pudo ejecutar la actualización de la ExApp", "ExApp not found, failed to get logs" : "No se consiguió la ExApp, fallo al obtener los registros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Fallo al obtener los registros del contenedor. Nota: La descarga del contenedor Docker funciona solamente para contenedores que tengan el controlador json-file o journald. Error: %s", + "ExApp not found, failed to get deploy options" : "No se consiguió la ExApp, fallo al obtener las opciones de despliegue", "AppAPI authentication failed" : "Fallo de autenticación AppAPI", - "AppAPI ExApp notifier" : "Notificador AppAPI", + "AppAPI ExApp notifier" : "Notificador ExAPP de AppAPI ", "AppAPI" : "AppAPI", "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Ajustes de las ExApps", + "AppAPI deploy daemon" : "Daemon de despliegue AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "El daemon de despliegue AppAPI predeterminado no está establecido. Por favor, registre un daemon de despliegue predeterminado en los ajustes para poder instalar Apps Externas (Ex-Apps)", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "No se puede acceder a el daemon de despliegue AppAPI \"%s\". Por favor, chequee la configuración del mismo.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "El daemon de despliegue AppAPI predeterminado no está utilizando HaRP. Por favor, considere actualizarlo para obtener un mejor rendimiento.", "Nextcloud AppAPI" : "AppAPI de Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", @@ -39,11 +48,12 @@ OC.L10N.register( "Cancel" : "Cancelar", "Delete" : "Eliminar", "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", - "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", + "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Verifique los registros", "Password confirmation failed" : "Fallo la confirmación de la contraseña", - "Default" : "Por defecto", + "Default" : "Predeterminado", "Set as default" : "Establecer como predeterminado", "Test deploy" : "Probar despliegue", + "Docker registries" : "Registros Docker", "Edit" : "Editar", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", @@ -53,6 +63,7 @@ OC.L10N.register( "Name" : "Nombre", "Protocol" : "Protocolo", "Host" : "Servidor", + "ExApp direct communication (FRP disabled)" : "Comunicación directa con ExApp (FRP deshabilitado)", "Deploy config" : "Configuración de despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", @@ -75,7 +86,7 @@ OC.L10N.register( "Check for the heartbeat is finished and healthy" : "Chequear si el heartbeat finalizó y se encuentra saludable", "Init step" : "Paso de inicialización", "Wait for initialization step to finish" : "Esperar a que el paso de inicialización termine", - "Enabled" : "Activado", + "Enabled" : "Habilitado", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Verificar si la ExApp se habilitó correctamente y registró todo apropiadamente", "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", @@ -88,19 +99,42 @@ OC.L10N.register( "Start Deploy test" : "Iniciar pruebas de despliegue", "Stop Deploy test" : "Detener pruebas de despliegue", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Please enter a registry domain" : "Por favor, ingrese un dominio para el registry", + "From cannot be \"local\"" : "De no puede ser \"local\"", + "This registry mapping already exists" : "Este mapeo de registry ya existe", + "From and To cannot be the same" : "De y para no pueden ser lo mismo", + "Override Docker registries" : "Anular registries Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de mapeos de registries Docker para el daemon seleccionado.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", + "Image pull will be skipped" : "Se omitirá la obtención de la imagen", "Remove" : "Quitar", + "No custom Docker registries configured" : "No existen registries Docker personalizados configurados", + "Add registry override mapping" : "Añadir anulación a mapeo de registry", + "From" : "De", + "registry URL (e.g. ghcr.io)" : "URL del registry (p.ej. ghcr.io)", "To" : "A", + "registry URL (e.g. docker.io)" : "URL del registry (p.ej. docker.io)", "Add" : "Añadir", - "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", + "Hostname to access ExApps" : "Nombre de servidor para el acceso a ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "El nombre de servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un host público, solo uno que pueda ser accedido por el servidor Nextcloud, p.ej. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "El nombre del servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un servidor público, solo uno que pueda ser accedido por el servidor Nextcloud, Tambien puede ser una ruta al socket de docker. (p.ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "La clave secreta para la comunicación HaRP con los contenedores (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Los cambios serán aplicados solamente para las nuevas ExApps instaladas. Para las ExApps existentes, los contenedores Docker deben ser recreados.", + "The docker network that the deployed ex-apps would use." : "La red docker que las ex-apps desplegadas usarían.", "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para el daemon HTTPS, la URL de Nextcloud debe ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", - "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", + "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Verifique los registros", + "DaemonConfig successfully updated" : "Se actualizó DaemonConfig exitosamente", + "Failed to update DaemonConfig. Check the logs" : "Fallo al actualizar DaemonConfig. Verifique los registros", "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Chequee los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Chequee los registros", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", + "Edit Deploy Daemon" : "Editar Daemon de despliegue", "Register Deploy Daemon" : "Registrar Daemon de despliegue", "Daemon configuration template" : "Plantilla de configuración de daemon", "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", @@ -109,14 +143,24 @@ OC.L10N.register( "Display name" : "Nombre para mostrar", "Deployment method" : "Método de despliegue", "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", - "Daemon host" : "Host del daemon", + "HaRP host" : "Servidor HaRP", + "Daemon host" : "Servidor del Daemon", + "HaRP shared key" : "Clave compartida HaRP", "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "Set daemon as default" : "Establecer daemon como predeterminado", "Set as default daemon" : "Establecer como daemon predeterminado", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuración de despligue", "Hide deploy config" : "Ocultar configuración de despliegue", + "Enable HaRP" : "Habilitar HaRP", + "FRP server address" : "Dirección del servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "La dirección (host:puerto) del servidor FRP que debe ser accesible por la ex-app en la red definida bajo \"Red Docker\".", + "Docker socket proxy port" : "Puerto del proxy para el socket Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "El puerto al que el proxy para el socket Docker se conecta. Este debe estar expuesto, pero para el que está incluído internamente, no se requiere que lo esté o ser cambiado.", + "Disable FRP" : "Deshabilitar FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador para configuraciones avanzadas solamente. Deshabilita el túnel FRP entre las ExApps y HaRP.", "Disabled" : "Deshabilitado", + "Docker network for ex-app deployment must be defined" : "La red Docker para despliegues de ex-app debe ser definida", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", @@ -126,15 +170,16 @@ OC.L10N.register( "Option value is required" : "El valor de la opción es requerido", "Confirm" : "Confirmar", "Save" : "Guardar", - "Register" : "Registrarse", + "Register" : "Registrar", "Check connection" : "Verificar conexión", "External Apps" : "Apps Externas", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n## App incluída\n\n** Desde la versión 30.0.1 de Nextcloud, esta aplicación está incluída en el paquete predeterminado de Nextcloud.**\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar datos al borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", "View in store" : "Ver en la tienda", "Visit website" : "Visite el sitio web", "Report a bug" : "Notificar un error", @@ -149,23 +194,23 @@ OC.L10N.register( "Update to {update}" : "Actualizar a {update}", "All ExApps are up-to-date." : "Todas las ExApps están al día.", "Default Deploy daemon is not accessible" : "No se puede acceder al Daemon de despliegue predeterminado", - "Icon" : "Icono", + "Icon" : "Ícono", "Version" : "Versión", "Daemon" : "Daemon", "Level" : "Nivel", "Actions" : "Acciones", "Results from other categories" : "Resultados de otras categorías", "No apps found" : "No se encontraron apps", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app externa tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], "Type" : "Tipo", - "Display Name" : "Nombre a mostrar", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Display Name" : "Nombre mostrado", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre del servidor o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", "Network" : "Red", "Docker network name" : "Nombre de la red Docker", "by {author}\n{license}" : "por {author}\n{license}", - "Your apps" : "Tus apps", + "Your apps" : "Sus apps", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Registro de cambios", @@ -180,15 +225,15 @@ OC.L10N.register( "Healthchecking" : "Haciendo verificación de ejecución", "Deploy and Enable" : "Desplegar y habilitar", "Enable" : "Habilitar", - "Disable" : "Desactivar", + "Disable" : "Deshabilitar", "Allow untested app" : "Habillitar aplicación no probada", "Default Deploy daemon is not accessible. Please verify configuration" : "No se puede acceder al Daemon de despliegue predeterminado. Por favor, verifique su configuración", - "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "La app será descargada desde el App Store y desplegada en el Daemon de de despliegue predeterminado", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta app no está marcada como compatible con tu versión de Nextcloud. Si continúas podrás instalar la app, pero ten en cuenta que podría no funcionar según lo esperado.", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "La app será descargada desde el App Store y desplegada con el Daemon de despliegue predeterminado", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta app no está marcada como compatible con su versión de Nextcloud. Si continúa podrá instalar la app, pero tenga en cuenta que podría no funcionar según lo esperado.", "Your ExApps" : "Sus ExApps", "An error occurred during the request. Unable to proceed." : "Ha ocurrido un error durante la solicitud. No se puede continuar.", "The app has been enabled but needs to be updated." : "Esta app ha sido habilitada pero requiere ser actualizada.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque hace inestable al servidor", + "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede habilitar porque hace inestable al servidor", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud diseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n\n### Lista de aplicaciones que requieren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o una solicitud para una característica nueva\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es.json b/l10n/es.json index 0a485d64..897c5aa8 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -3,6 +3,9 @@ "Error starting install of ExApp" : "Error iniciando la instalación de ExApp", "ExApp failed to register, check the NC logs" : "La ExApp falló al registrarse, revise los registros de NC", "ExApp not found, failed to get status" : "No se encontró ExApp, fallo al obtener el estado", + "Error adding Docker registry" : "Error al añadir registry de Docker", + "Error removing Docker registry" : "Error al quitar registry de Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta app no se ha instalado desde el AppStore. No hay información extra disponible. Solo están permitidas las acciones de habilitar/deshabilitar", "Could not perform installation of ExApp" : "No se pudo ejecutar la instalación de ExApp", "Failed to enable ExApp" : "Fallo al habilitar ExApp", "Failed to disable ExApp" : "Fallo al deshabilitar ExApp", @@ -11,12 +14,18 @@ "Could not perform update of ExApp" : "No se pudo ejecutar la actualización de la ExApp", "ExApp not found, failed to get logs" : "No se consiguió la ExApp, fallo al obtener los registros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Fallo al obtener los registros del contenedor. Nota: La descarga del contenedor Docker funciona solamente para contenedores que tengan el controlador json-file o journald. Error: %s", + "ExApp not found, failed to get deploy options" : "No se consiguió la ExApp, fallo al obtener las opciones de despliegue", "AppAPI authentication failed" : "Fallo de autenticación AppAPI", - "AppAPI ExApp notifier" : "Notificador AppAPI", + "AppAPI ExApp notifier" : "Notificador ExAPP de AppAPI ", "AppAPI" : "AppAPI", "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Ajustes de las ExApps", + "AppAPI deploy daemon" : "Daemon de despliegue AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "El daemon de despliegue AppAPI predeterminado no está establecido. Por favor, registre un daemon de despliegue predeterminado en los ajustes para poder instalar Apps Externas (Ex-Apps)", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "No se puede acceder a el daemon de despliegue AppAPI \"%s\". Por favor, chequee la configuración del mismo.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "El daemon de despliegue AppAPI predeterminado no está utilizando HaRP. Por favor, considere actualizarlo para obtener un mejor rendimiento.", "Nextcloud AppAPI" : "AppAPI de Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", @@ -37,11 +46,12 @@ "Cancel" : "Cancelar", "Delete" : "Eliminar", "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", - "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Chequee los registros", + "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Verifique los registros", "Password confirmation failed" : "Fallo la confirmación de la contraseña", - "Default" : "Por defecto", + "Default" : "Predeterminado", "Set as default" : "Establecer como predeterminado", "Test deploy" : "Probar despliegue", + "Docker registries" : "Registros Docker", "Edit" : "Editar", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", @@ -51,6 +61,7 @@ "Name" : "Nombre", "Protocol" : "Protocolo", "Host" : "Servidor", + "ExApp direct communication (FRP disabled)" : "Comunicación directa con ExApp (FRP deshabilitado)", "Deploy config" : "Configuración de despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", @@ -73,7 +84,7 @@ "Check for the heartbeat is finished and healthy" : "Chequear si el heartbeat finalizó y se encuentra saludable", "Init step" : "Paso de inicialización", "Wait for initialization step to finish" : "Esperar a que el paso de inicialización termine", - "Enabled" : "Activado", + "Enabled" : "Habilitado", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Verificar si la ExApp se habilitó correctamente y registró todo apropiadamente", "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", @@ -86,19 +97,42 @@ "Start Deploy test" : "Iniciar pruebas de despliegue", "Stop Deploy test" : "Detener pruebas de despliegue", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Please enter a registry domain" : "Por favor, ingrese un dominio para el registry", + "From cannot be \"local\"" : "De no puede ser \"local\"", + "This registry mapping already exists" : "Este mapeo de registry ya existe", + "From and To cannot be the same" : "De y para no pueden ser lo mismo", + "Override Docker registries" : "Anular registries Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de mapeos de registries Docker para el daemon seleccionado.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", + "Image pull will be skipped" : "Se omitirá la obtención de la imagen", "Remove" : "Quitar", + "No custom Docker registries configured" : "No existen registries Docker personalizados configurados", + "Add registry override mapping" : "Añadir anulación a mapeo de registry", + "From" : "De", + "registry URL (e.g. ghcr.io)" : "URL del registry (p.ej. ghcr.io)", "To" : "A", + "registry URL (e.g. docker.io)" : "URL del registry (p.ej. docker.io)", "Add" : "Añadir", - "Hostname to access ExApps" : "Nombre de host para el acceso a ExApps", + "Hostname to access ExApps" : "Nombre de servidor para el acceso a ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "El nombre de servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un host público, solo uno que pueda ser accedido por el servidor Nextcloud, p.ej. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "El nombre del servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un servidor público, solo uno que pueda ser accedido por el servidor Nextcloud, Tambien puede ser una ruta al socket de docker. (p.ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Un daemon con este nombre ya existe", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "La clave secreta para la comunicación HaRP con los contenedores (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Los cambios serán aplicados solamente para las nuevas ExApps instaladas. Para las ExApps existentes, los contenedores Docker deben ser recreados.", + "The docker network that the deployed ex-apps would use." : "La red docker que las ex-apps desplegadas usarían.", "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para el daemon HTTPS, la URL de Nextcloud debe ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", - "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Chequee los registros", + "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Verifique los registros", + "DaemonConfig successfully updated" : "Se actualizó DaemonConfig exitosamente", + "Failed to update DaemonConfig. Check the logs" : "Fallo al actualizar DaemonConfig. Verifique los registros", "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Chequee los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Chequee los registros", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", + "Edit Deploy Daemon" : "Editar Daemon de despliegue", "Register Deploy Daemon" : "Registrar Daemon de despliegue", "Daemon configuration template" : "Plantilla de configuración de daemon", "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", @@ -107,14 +141,24 @@ "Display name" : "Nombre para mostrar", "Deployment method" : "Método de despliegue", "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", - "Daemon host" : "Host del daemon", + "HaRP host" : "Servidor HaRP", + "Daemon host" : "Servidor del Daemon", + "HaRP shared key" : "Clave compartida HaRP", "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "Set daemon as default" : "Establecer daemon como predeterminado", "Set as default daemon" : "Establecer como daemon predeterminado", "Enable https" : "Habilitar https", "Show deploy config" : "Mostrar configuración de despligue", "Hide deploy config" : "Ocultar configuración de despliegue", + "Enable HaRP" : "Habilitar HaRP", + "FRP server address" : "Dirección del servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "La dirección (host:puerto) del servidor FRP que debe ser accesible por la ex-app en la red definida bajo \"Red Docker\".", + "Docker socket proxy port" : "Puerto del proxy para el socket Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "El puerto al que el proxy para el socket Docker se conecta. Este debe estar expuesto, pero para el que está incluído internamente, no se requiere que lo esté o ser cambiado.", + "Disable FRP" : "Deshabilitar FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador para configuraciones avanzadas solamente. Deshabilita el túnel FRP entre las ExApps y HaRP.", "Disabled" : "Deshabilitado", + "Docker network for ex-app deployment must be defined" : "La red Docker para despliegues de ex-app debe ser definida", "Additional option" : "Opción adicional", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", @@ -124,15 +168,16 @@ "Option value is required" : "El valor de la opción es requerido", "Confirm" : "Confirmar", "Save" : "Guardar", - "Register" : "Registrarse", + "Register" : "Registrar", "Check connection" : "Verificar conexión", "External Apps" : "Apps Externas", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n## App incluída\n\n** Desde la versión 30.0.1 de Nextcloud, esta aplicación está incluída en el paquete predeterminado de Nextcloud.**\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar datos al borrar", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", "View in store" : "Ver en la tienda", "Visit website" : "Visite el sitio web", "Report a bug" : "Notificar un error", @@ -147,23 +192,23 @@ "Update to {update}" : "Actualizar a {update}", "All ExApps are up-to-date." : "Todas las ExApps están al día.", "Default Deploy daemon is not accessible" : "No se puede acceder al Daemon de despliegue predeterminado", - "Icon" : "Icono", + "Icon" : "Ícono", "Version" : "Versión", "Daemon" : "Daemon", "Level" : "Nivel", "Actions" : "Acciones", "Results from other categories" : "Resultados de otras categorías", "No apps found" : "No se encontraron apps", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app externa tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], "Type" : "Tipo", - "Display Name" : "Nombre a mostrar", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre de host o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Display Name" : "Nombre mostrado", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre del servidor o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", "Network" : "Red", "Docker network name" : "Nombre de la red Docker", "by {author}\n{license}" : "por {author}\n{license}", - "Your apps" : "Tus apps", + "Your apps" : "Sus apps", "Documentation" : "Documentación", "Details" : "Detalles", "Changelog" : "Registro de cambios", @@ -178,15 +223,15 @@ "Healthchecking" : "Haciendo verificación de ejecución", "Deploy and Enable" : "Desplegar y habilitar", "Enable" : "Habilitar", - "Disable" : "Desactivar", + "Disable" : "Deshabilitar", "Allow untested app" : "Habillitar aplicación no probada", "Default Deploy daemon is not accessible. Please verify configuration" : "No se puede acceder al Daemon de despliegue predeterminado. Por favor, verifique su configuración", - "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "La app será descargada desde el App Store y desplegada en el Daemon de de despliegue predeterminado", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta app no está marcada como compatible con tu versión de Nextcloud. Si continúas podrás instalar la app, pero ten en cuenta que podría no funcionar según lo esperado.", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "La app será descargada desde el App Store y desplegada con el Daemon de despliegue predeterminado", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta app no está marcada como compatible con su versión de Nextcloud. Si continúa podrá instalar la app, pero tenga en cuenta que podría no funcionar según lo esperado.", "Your ExApps" : "Sus ExApps", "An error occurred during the request. Unable to proceed." : "Ha ocurrido un error durante la solicitud. No se puede continuar.", "The app has been enabled but needs to be updated." : "Esta app ha sido habilitada pero requiere ser actualizada.", - "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque hace inestable al servidor", + "Error: This app cannot be enabled because it makes the server unstable" : "Error: Esta app no se puede habilitar porque hace inestable al servidor", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud diseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n\n### Lista de aplicaciones que requieren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o una solicitud para una característica nueva\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 48e457e4..96458319 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -1,6 +1,8 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Taustateenuse seadistusi ei leidu", + "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Cancel" : "Tühista", "Delete" : "Kustuta", "Edit" : "Redigeeri", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 1c579929..c4483680 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -1,4 +1,6 @@ { "translations": { + "Daemon config not found" : "Taustateenuse seadistusi ei leidu", + "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Cancel" : "Tühista", "Delete" : "Kustuta", "Edit" : "Redigeeri", diff --git a/l10n/ja.js b/l10n/ja.js index 77928614..3d10df50 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -1,15 +1,83 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "デーモンの設定が見つかりません", + "Error starting install of ExApp" : "ExAppのインストール開始エラー", + "ExApp failed to register, check the NC logs" : "ExAppの登録に失敗しました。NCログを確認してください", + "ExApp not found, failed to get status" : "ExAppが見つかりません、ステータスの取得に失敗しました", + "Error adding Docker registry" : "Dockerレジストリの追加エラー", + "Error removing Docker registry" : "Dockerレジストリの削除エラー", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "このアプリはAppStoreからインストールされていません。余分な情報はありません。有効/無効と削除の操作のみ可能です。", + "Could not perform installation of ExApp" : "ExAppのインストールを実行できませんでした", + "Failed to enable ExApp" : "ExAppの有効化に失敗しました", + "Failed to disable ExApp" : "ExAppの無効化に失敗しました", + "Could not update ExApp" : "ExAppをアップデートできませんでした", + "Error starting update of ExApp" : "ExAppのアップデート開始エラー", + "Could not perform update of ExApp" : "ExAppのアップデートを実行できませんでした", + "ExApp not found, failed to get logs" : "ExAppが見つかりません、ログの取得に失敗しました", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "コンテナ・ログの取得に失敗しました。注:Dockerコンテナのダウンロードは、json-fileまたはjournaldロギングドライバを持つコンテナに対してのみ機能します。エラーが発生しました: %s", + "ExApp not found, failed to get deploy options" : "ExAppが見つかりません。デプロイオプションの取得に失敗しました", + "AppAPI authentication failed" : "AppAPI 認証に失敗しました", + "AppAPI ExApp notifier" : "AppAPI ExApp通知", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI統合チーム", + "ExApps Settings" : "ExAppsの設定", + "AppAPI deploy daemon" : "AppAPIデプロイデーモン", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPIデフォルトのデプロイデーモンが設定されていません。外部アプリ(Ex-Apps)をインストールするための設定で、デフォルトのデプロイデーモンを登録してください。", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPIデフォルトのデプロイデーモン\"%s\"にアクセスできません。デーモンの設定を確認してください。", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPIデフォルトのデプロイデーモンはHaRPを使用していません。パフォーマンス向上のため、アップグレードをご検討ください。", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIとその特別に設計されたアプリケーションでNextcloudを強化しましょう。\n\n\nAppAPIは、アプリケーション開発、デプロイ、管理のプロセスを合理化し、強化するために設計された\nNextcloudエコシステム内のプロジェクトです。\n\n従来Nextcloudの開発で使われてきたPHPに限らず、さまざまなプログラミング言語を使って\nアプリケーションを開発できるようにする新しい手法を導入しています。\n\n_アプリケーションを開発したい場合は、喜んでお手伝いします。_\n\n### サポート\n\n本プロジェクトへのご支援をお願いいたします:\n\n- GitHubにスターをつける\n- ❗ 課題または機能要求を作成する\n- 💁 Issueの解決とPull Requestの作成\n- 🧑‍💻 AppAPIを使用した独自のアプリケーションの開発\n\n私たちは、AppAPIプロジェクトの将来と、Nextcloud内でアプリケーションを開発し体験する方法を\n変革する可能性に心から期待しています。\n\nこの旅に乗り出すにあたり、開発者、思想家、創造者、先見者である皆さんに、より多機能で、安定した、\n安全なアプリの環境を形作るために、私たちに加わっていただくことを温かく歓迎します。\n\n*あなたの洞察、提案、貢献は、私たちにとってかけがえのないものです。*", + "External Apps management" : "外部アプリの管理", + "Admin options saved" : "管理者オプションの保存", + "Failed to save admin options" : "管理者オプションの保存に失敗しました", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "デフォルトのDeploy Daemonにアクセスできません。 設定を確認してください。", + "ExApp init timeout (minutes)" : "ExApp initタイムアウト(分)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "AppAPIが失敗とマークするExApp初期化プロセスのタイムアウト", + "ExApp init timeout" : "ExApp initタイムアウト", + "ExApp container restart policy" : "ExAppコンテナ再起動ポリシー", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "コンテナの再起動ポリシーを指定します。たとえば、デーモンサーバーの再起動後にExAppが確実に実行されるようにするには 'always' を指定します。", + "This settings changes are reflected only for newly created containers" : "この設定の変更は新しく作成されたコンテナにのみ反映されます", + "Are you sure you want delete Deploy Daemon" : "本当にDeploy Daemonを削除しますか?", + "All ExApps on this daemon will be removed" : "このデーモン上のすべてのExAppsが削除されます", + "All ExApps installed on this daemon will be removed" : "このデーモンにインストールされているすべてのExAppsが削除されます", "Cancel" : "キャンセル", "Delete" : "削除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemonをデフォルトとして設定できません", + "Failed to save admin options. Check the logs" : "管理者オプションを保存できませんでした。ログを確認する", + "Password confirmation failed" : "パスワードの確認に失敗しました", + "Default" : "デフォルト", + "Set as default" : "デフォルトとして設定", + "Test deploy" : "テストデプロイ", + "Docker registries" : "Dockerレジストリ", "Edit" : "編集", + "Deploy daemon config details" : "デプロイデーモンの設定詳細", "Deploy Daemon" : "デーモンのデプロイ", + "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "開発に通常使用される手動インストールデーモン。デフォルトデーモンとして設定できません。", + "ExApps installed" : "ExAppsがインストールされました", "Name" : "名前", + "Protocol" : "プロトコル", "Host" : "ホスト", + "ExApp direct communication (FRP disabled)" : "ExAppダイレクト通信(FRP無効)", + "Deploy config" : "デプロイ設定", + "Docker network" : "Dockerネットワーク", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxyパスワード", "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", + "Additional options" : "追加オプション", + "Verify connection" : "接続の確認", + "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", + "No Deploy daemons configured" : "デプロイデーモンが設定されていません", + "Register a custom one or setup from available templates" : "カスタムのものを登録するか利用可能なテンプレートから設定する", + "Register Daemon" : "デーモンを登録", + "Register ExApp in Nextcloud" : "ExAppをNextcloudに登録する", + "Check if the ExApp is registered in Nextcloud before deployment" : "デプロイ前にExAppがNextcloudに登録されているか確認する", "Enabled" : "有効", "Remove" : "削除", "From" : "開始", diff --git a/l10n/ja.json b/l10n/ja.json index a288873d..605c8d0e 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -1,13 +1,81 @@ { "translations": { + "Daemon config not found" : "デーモンの設定が見つかりません", + "Error starting install of ExApp" : "ExAppのインストール開始エラー", + "ExApp failed to register, check the NC logs" : "ExAppの登録に失敗しました。NCログを確認してください", + "ExApp not found, failed to get status" : "ExAppが見つかりません、ステータスの取得に失敗しました", + "Error adding Docker registry" : "Dockerレジストリの追加エラー", + "Error removing Docker registry" : "Dockerレジストリの削除エラー", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "このアプリはAppStoreからインストールされていません。余分な情報はありません。有効/無効と削除の操作のみ可能です。", + "Could not perform installation of ExApp" : "ExAppのインストールを実行できませんでした", + "Failed to enable ExApp" : "ExAppの有効化に失敗しました", + "Failed to disable ExApp" : "ExAppの無効化に失敗しました", + "Could not update ExApp" : "ExAppをアップデートできませんでした", + "Error starting update of ExApp" : "ExAppのアップデート開始エラー", + "Could not perform update of ExApp" : "ExAppのアップデートを実行できませんでした", + "ExApp not found, failed to get logs" : "ExAppが見つかりません、ログの取得に失敗しました", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "コンテナ・ログの取得に失敗しました。注:Dockerコンテナのダウンロードは、json-fileまたはjournaldロギングドライバを持つコンテナに対してのみ機能します。エラーが発生しました: %s", + "ExApp not found, failed to get deploy options" : "ExAppが見つかりません。デプロイオプションの取得に失敗しました", + "AppAPI authentication failed" : "AppAPI 認証に失敗しました", + "AppAPI ExApp notifier" : "AppAPI ExApp通知", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI統合チーム", + "ExApps Settings" : "ExAppsの設定", + "AppAPI deploy daemon" : "AppAPIデプロイデーモン", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPIデフォルトのデプロイデーモンが設定されていません。外部アプリ(Ex-Apps)をインストールするための設定で、デフォルトのデプロイデーモンを登録してください。", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPIデフォルトのデプロイデーモン\"%s\"にアクセスできません。デーモンの設定を確認してください。", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPIデフォルトのデプロイデーモンはHaRPを使用していません。パフォーマンス向上のため、アップグレードをご検討ください。", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIとその特別に設計されたアプリケーションでNextcloudを強化しましょう。\n\n\nAppAPIは、アプリケーション開発、デプロイ、管理のプロセスを合理化し、強化するために設計された\nNextcloudエコシステム内のプロジェクトです。\n\n従来Nextcloudの開発で使われてきたPHPに限らず、さまざまなプログラミング言語を使って\nアプリケーションを開発できるようにする新しい手法を導入しています。\n\n_アプリケーションを開発したい場合は、喜んでお手伝いします。_\n\n### サポート\n\n本プロジェクトへのご支援をお願いいたします:\n\n- GitHubにスターをつける\n- ❗ 課題または機能要求を作成する\n- 💁 Issueの解決とPull Requestの作成\n- 🧑‍💻 AppAPIを使用した独自のアプリケーションの開発\n\n私たちは、AppAPIプロジェクトの将来と、Nextcloud内でアプリケーションを開発し体験する方法を\n変革する可能性に心から期待しています。\n\nこの旅に乗り出すにあたり、開発者、思想家、創造者、先見者である皆さんに、より多機能で、安定した、\n安全なアプリの環境を形作るために、私たちに加わっていただくことを温かく歓迎します。\n\n*あなたの洞察、提案、貢献は、私たちにとってかけがえのないものです。*", + "External Apps management" : "外部アプリの管理", + "Admin options saved" : "管理者オプションの保存", + "Failed to save admin options" : "管理者オプションの保存に失敗しました", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "デフォルトのDeploy Daemonにアクセスできません。 設定を確認してください。", + "ExApp init timeout (minutes)" : "ExApp initタイムアウト(分)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "AppAPIが失敗とマークするExApp初期化プロセスのタイムアウト", + "ExApp init timeout" : "ExApp initタイムアウト", + "ExApp container restart policy" : "ExAppコンテナ再起動ポリシー", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "コンテナの再起動ポリシーを指定します。たとえば、デーモンサーバーの再起動後にExAppが確実に実行されるようにするには 'always' を指定します。", + "This settings changes are reflected only for newly created containers" : "この設定の変更は新しく作成されたコンテナにのみ反映されます", + "Are you sure you want delete Deploy Daemon" : "本当にDeploy Daemonを削除しますか?", + "All ExApps on this daemon will be removed" : "このデーモン上のすべてのExAppsが削除されます", + "All ExApps installed on this daemon will be removed" : "このデーモンにインストールされているすべてのExAppsが削除されます", "Cancel" : "キャンセル", "Delete" : "削除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemonをデフォルトとして設定できません", + "Failed to save admin options. Check the logs" : "管理者オプションを保存できませんでした。ログを確認する", + "Password confirmation failed" : "パスワードの確認に失敗しました", + "Default" : "デフォルト", + "Set as default" : "デフォルトとして設定", + "Test deploy" : "テストデプロイ", + "Docker registries" : "Dockerレジストリ", "Edit" : "編集", + "Deploy daemon config details" : "デプロイデーモンの設定詳細", "Deploy Daemon" : "デーモンのデプロイ", + "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "開発に通常使用される手動インストールデーモン。デフォルトデーモンとして設定できません。", + "ExApps installed" : "ExAppsがインストールされました", "Name" : "名前", + "Protocol" : "プロトコル", "Host" : "ホスト", + "ExApp direct communication (FRP disabled)" : "ExAppダイレクト通信(FRP無効)", + "Deploy config" : "デプロイ設定", + "Docker network" : "Dockerネットワーク", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxyパスワード", "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", + "Additional options" : "追加オプション", + "Verify connection" : "接続の確認", + "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", + "No Deploy daemons configured" : "デプロイデーモンが設定されていません", + "Register a custom one or setup from available templates" : "カスタムのものを登録するか利用可能なテンプレートから設定する", + "Register Daemon" : "デーモンを登録", + "Register ExApp in Nextcloud" : "ExAppをNextcloudに登録する", + "Check if the ExApp is registered in Nextcloud before deployment" : "デプロイ前にExAppがNextcloudに登録されているか確認する", "Enabled" : "有効", "Remove" : "削除", "From" : "開始", diff --git a/l10n/si.js b/l10n/si.js new file mode 100644 index 00000000..7e0e34c8 --- /dev/null +++ b/l10n/si.js @@ -0,0 +1,17 @@ +OC.L10N.register( + "app_api", + { + "Cancel" : "අවලංගු", + "Edit" : "සංස්කරණය", + "Name" : "නම", + "Host" : " ධාරකය", + "Enabled" : "සබල කර ඇත", + "Remove" : "ඉවත් කරන්න", + "Add" : "එකතු කරන්න", + "Disabled" : "අබල කර ඇත", + "Confirm" : "තහවුරු කරන්න", + "Version" : "අනුවාදය", + "Actions" : "ක්‍රියාමාර්ග", + "Disable" : "අබල කරන්න" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json new file mode 100644 index 00000000..c82159b8 --- /dev/null +++ b/l10n/si.json @@ -0,0 +1,15 @@ +{ "translations": { + "Cancel" : "අවලංගු", + "Edit" : "සංස්කරණය", + "Name" : "නම", + "Host" : " ධාරකය", + "Enabled" : "සබල කර ඇත", + "Remove" : "ඉවත් කරන්න", + "Add" : "එකතු කරන්න", + "Disabled" : "අබල කර ඇත", + "Confirm" : "තහවුරු කරන්න", + "Version" : "අනුවාදය", + "Actions" : "ක්‍රියාමාර්ග", + "Disable" : "අබල කරන්න" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/l10n/sr.js b/l10n/sr.js index d9bf81f9..f78409b3 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Грешка приликом покретања инсталације ExApp", "ExApp failed to register, check the NC logs" : "Није успела регистрација ExApp, погледајте NC дневнике", "ExApp not found, failed to get status" : "ExApp није пронађена, није успело добављање статуса", + "Error adding Docker registry" : "Грешка приликом додавања Docker регистратора", + "Error removing Docker registry" : "Грешка приликом уклањања Docker регистратора", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није инсталирана из Продавнице апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", "Could not perform installation of ExApp" : "Није могла да се изврши инсталација ExApp", "Failed to enable ExApp" : "Није успело укључивање ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Подразумевано", "Set as default" : "Постави као подразумевано", "Test deploy" : "Тестирај постављање", + "Docker registries" : "Docker регистратори", "Edit" : "Измени", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", @@ -96,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Покрени тест постављања", "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Please enter a registry domain" : "Молимо вас да унесете домен регистратора", + "From cannot be \"local\"" : "Од не може да буде „local”", + "This registry mapping already exists" : "Ово мапирање регистратора већ постоји", + "From and To cannot be the same" : "Од и На не могу да буду исто", + "Override Docker registries" : "Преиначи Docker регистраторе", + "Configure Docker registry override mappings for selected daemon." : "Конфигуришите мапирања преиначења Docker регистратора за изабрани даемон.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Одговарајући изворни регистратор у ExApp info.xml ће се преписати током постављања (у кораку повлачења слике).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Ово је корисни ако желите да користите произвољни Docker регистратор, на пример, да користите приватни Docker регистратор, или да за тестирање користите неки различити Docker регистратор.", + "Image pull will be skipped" : "Прескочиће се повлачење слике", "Remove" : "Уклони", + "No custom Docker registries configured" : "Није конфигурисан ниједан произвољни Docker регистратор", + "Add registry override mapping" : "Додај мапирање премошћавања регистратора", "From" : "Од", + "registry URL (e.g. ghcr.io)" : "URL регистратора (нпр. ghcr.io)", "To" : "За", + "registry URL (e.g. docker.io)" : "URL регистратора (нпр. docker.io)", "Add" : "Додај", "Hostname to access ExApps" : "Име хоста за приступ ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", diff --git a/l10n/sr.json b/l10n/sr.json index a425bc18..b109aa3e 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Грешка приликом покретања инсталације ExApp", "ExApp failed to register, check the NC logs" : "Није успела регистрација ExApp, погледајте NC дневнике", "ExApp not found, failed to get status" : "ExApp није пронађена, није успело добављање статуса", + "Error adding Docker registry" : "Грешка приликом додавања Docker регистратора", + "Error removing Docker registry" : "Грешка приликом уклањања Docker регистратора", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ова апликација није инсталирана из Продавнице апликација. Нема доступних додатних информација. Дозвољене су само акције укључи/искључи и уклони.", "Could not perform installation of ExApp" : "Није могла да се изврши инсталација ExApp", "Failed to enable ExApp" : "Није успело укључивање ExApp", @@ -49,6 +51,7 @@ "Default" : "Подразумевано", "Set as default" : "Постави као подразумевано", "Test deploy" : "Тестирај постављање", + "Docker registries" : "Docker регистратори", "Edit" : "Измени", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", @@ -94,9 +97,22 @@ "Start Deploy test" : "Покрени тест постављања", "Stop Deploy test" : "Заустави тест постављања", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Please enter a registry domain" : "Молимо вас да унесете домен регистратора", + "From cannot be \"local\"" : "Од не може да буде „local”", + "This registry mapping already exists" : "Ово мапирање регистратора већ постоји", + "From and To cannot be the same" : "Од и На не могу да буду исто", + "Override Docker registries" : "Преиначи Docker регистраторе", + "Configure Docker registry override mappings for selected daemon." : "Конфигуришите мапирања преиначења Docker регистратора за изабрани даемон.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Одговарајући изворни регистратор у ExApp info.xml ће се преписати током постављања (у кораку повлачења слике).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Ово је корисни ако желите да користите произвољни Docker регистратор, на пример, да користите приватни Docker регистратор, или да за тестирање користите неки различити Docker регистратор.", + "Image pull will be skipped" : "Прескочиће се повлачење слике", "Remove" : "Уклони", + "No custom Docker registries configured" : "Није конфигурисан ниједан произвољни Docker регистратор", + "Add registry override mapping" : "Додај мапирање премошћавања регистратора", "From" : "Од", + "registry URL (e.g. ghcr.io)" : "URL регистратора (нпр. ghcr.io)", "To" : "За", + "registry URL (e.g. docker.io)" : "URL регистратора (нпр. docker.io)", "Add" : "Додај", "Hostname to access ExApps" : "Име хоста за приступ ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 8fc1b2d6..93153248 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "開始安裝 ExApp 時發生錯誤", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp,無法取得狀態", + "Error adding Docker registry" : "新增 Docker registry 時發生錯誤", + "Error removing Docker registry" : "移除 Docker registry 時發生錯誤", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。未提供額外資訊。僅允許啟用/停用與移除動作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝", "Failed to enable ExApp" : "啟用 ExApp 失敗", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "預設", "Set as default" : "設定為預設值", "Test deploy" : "測試部署", + "Docker registries" : "Docker registry", "Edit" : "編輯", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", @@ -96,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Please enter a registry domain" : "請輸入 registry 網域", + "From cannot be \"local\"" : "來源不能是「local」", + "This registry mapping already exists" : "已存在此 registry 對映", + "From and To cannot be the same" : "來源與目的地不能相同", + "Override Docker registries" : "覆寫 Docker registry", + "Configure Docker registry override mappings for selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂的 Docker registry,例如使用私人 Docker registry,或使用不同的 Docker registry 進行測試,這將非常有用。", + "Image pull will be skipped" : "將會略過映像檔拉取", "Remove" : "移除", + "No custom Docker registries configured" : "未設定自訂的 Docker registry", + "Add registry override mapping" : "新增 registry 覆寫對映", "From" : "從", + "registry URL (e.g. ghcr.io)" : "registry URL(例如 ghcr.io)", "To" : "至", + "registry URL (e.g. docker.io)" : "registry URL(例如 docker.io)", "Add" : "新增", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index b2d22fd0..e3a82ffb 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "開始安裝 ExApp 時發生錯誤", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp,無法取得狀態", + "Error adding Docker registry" : "新增 Docker registry 時發生錯誤", + "Error removing Docker registry" : "移除 Docker registry 時發生錯誤", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。未提供額外資訊。僅允許啟用/停用與移除動作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝", "Failed to enable ExApp" : "啟用 ExApp 失敗", @@ -49,6 +51,7 @@ "Default" : "預設", "Set as default" : "設定為預設值", "Test deploy" : "測試部署", + "Docker registries" : "Docker registry", "Edit" : "編輯", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", @@ -94,9 +97,22 @@ "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Please enter a registry domain" : "請輸入 registry 網域", + "From cannot be \"local\"" : "來源不能是「local」", + "This registry mapping already exists" : "已存在此 registry 對映", + "From and To cannot be the same" : "來源與目的地不能相同", + "Override Docker registries" : "覆寫 Docker registry", + "Configure Docker registry override mappings for selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂的 Docker registry,例如使用私人 Docker registry,或使用不同的 Docker registry 進行測試,這將非常有用。", + "Image pull will be skipped" : "將會略過映像檔拉取", "Remove" : "移除", + "No custom Docker registries configured" : "未設定自訂的 Docker registry", + "Add registry override mapping" : "新增 registry 覆寫對映", "From" : "從", + "registry URL (e.g. ghcr.io)" : "registry URL(例如 ghcr.io)", "To" : "至", + "registry URL (e.g. docker.io)" : "registry URL(例如 docker.io)", "Add" : "新增", "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", From 395e1412c3fb96523b9c70087e8dce95c2e101d9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 20 Apr 2025 00:30:43 +0000 Subject: [PATCH 118/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 16 ++++++++++++++++ l10n/cs.json | 16 ++++++++++++++++ l10n/ga.js | 19 +++++++++++++++++++ l10n/ga.json | 19 +++++++++++++++++++ l10n/pt_BR.js | 21 ++++++++++++++++++++- l10n/pt_BR.json | 21 ++++++++++++++++++++- 6 files changed, 110 insertions(+), 2 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index 4273e2fe..ae77d41e 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", "ExApp not found, failed to get status" : "ExApp nenalezena, nepodařilo se získat stav", + "Error adding Docker registry" : "Chyba při přidávání Docker registru", + "Error removing Docker registry" : "Chyba při odebírání Docker registru", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace nebyla nainstalována z katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", "Could not perform installation of ExApp" : "Nebylo možné provést instalaci ExApp", "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", @@ -50,6 +52,7 @@ OC.L10N.register( "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", "Test deploy" : "Vyzkoušet nasazení", + "Docker registries" : "Docker registry", "Edit" : "Upravit", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", @@ -95,9 +98,22 @@ OC.L10N.register( "Start Deploy test" : "Spustit zkoušku nasazení", "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Please enter a registry domain" : "Zadejte doménu registru", + "From cannot be \"local\"" : "Od nemůže být „local“", + "This registry mapping already exists" : "Toto mapování registru už existuje", + "From and To cannot be the same" : "Od a Pro nemůže být totéž", + "Override Docker registries" : "Přebít Docker registry", + "Configure Docker registry override mappings for selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", + "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", + "No custom Docker registries configured" : "Nenastaveny žádné uživatelsky určené Docker registry", + "Add registry override mapping" : "Přidat mapování přebití registru", "From" : "Od", + "registry URL (e.g. ghcr.io)" : "URL registru (např. ghcr.io)", "To" : "Pro", + "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", diff --git a/l10n/cs.json b/l10n/cs.json index 05b3951c..13d1a9d0 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Chyba při zahajování instalace ExApp", "ExApp failed to register, check the NC logs" : "ExApp se nepodařilo zaregistrovat – nahlédněte do záznamů událostí v Nextcloud", "ExApp not found, failed to get status" : "ExApp nenalezena, nepodařilo se získat stav", + "Error adding Docker registry" : "Chyba při přidávání Docker registru", + "Error removing Docker registry" : "Chyba při odebírání Docker registru", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Tato aplikace nebyla nainstalována z katalogu aplikací. Tím nejsou k dispozici žádné další informace. Je možné pouze zapnout/vypnout a odebrat.", "Could not perform installation of ExApp" : "Nebylo možné provést instalaci ExApp", "Failed to enable ExApp" : "Nepodařilo se zapnout ExApp", @@ -48,6 +50,7 @@ "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", "Test deploy" : "Vyzkoušet nasazení", + "Docker registries" : "Docker registry", "Edit" : "Upravit", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", @@ -93,9 +96,22 @@ "Start Deploy test" : "Spustit zkoušku nasazení", "Stop Deploy test" : "Zastavit zkoušku nasazení", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Please enter a registry domain" : "Zadejte doménu registru", + "From cannot be \"local\"" : "Od nemůže být „local“", + "This registry mapping already exists" : "Toto mapování registru už existuje", + "From and To cannot be the same" : "Od a Pro nemůže být totéž", + "Override Docker registries" : "Přebít Docker registry", + "Configure Docker registry override mappings for selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", + "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", + "No custom Docker registries configured" : "Nenastaveny žádné uživatelsky určené Docker registry", + "Add registry override mapping" : "Přidat mapování přebití registru", "From" : "Od", + "registry URL (e.g. ghcr.io)" : "URL registru (např. ghcr.io)", "To" : "Pro", + "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", diff --git a/l10n/ga.js b/l10n/ga.js index 3f8ec1e3..f8fa6a93 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Earráid agus suiteáil ExApp á thosú", "ExApp failed to register, check the NC logs" : "Theip ar ExApp clárú, seiceáil na logaí NC", "ExApp not found, failed to get status" : "ExApp gan aimsiú, níor éirigh leis an stádas a fháil", + "Error adding Docker registry" : "Earráid agus clárlann Docker á cur leis", + "Error removing Docker registry" : "Earráid agus clárlann Docker á baint", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo suiteáilte ón AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", "Could not perform installation of ExApp" : "Níorbh fhéidir ExApp a shuiteáil", "Failed to enable ExApp" : "Theip ar chumasú ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", "Test deploy" : "Imscaradh tástála", + "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", @@ -60,6 +63,7 @@ OC.L10N.register( "Name" : "Ainm", "Protocol" : "Prótacal", "Host" : "Óstach", + "ExApp direct communication (FRP disabled)" : "Cumarsáid dhíreach ExApp (FRP díchumasaithe)", "Deploy config" : "Imscaradh config", "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", @@ -95,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Tosaigh Imscaradh tástála", "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Please enter a registry domain" : "Cuir isteach fearann ​​clárlainne", + "From cannot be \"local\"" : "Ní féidir ó bheith \"áitiúil\"", + "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", + "From and To cannot be the same" : "Ní féidir le Ó agus Chun a bheith mar an gcéanna", + "Override Docker registries" : "Sáraigh clárlanna Docker", + "Configure Docker registry override mappings for selected daemon." : "Cumraigh mapálacha sáraithe clárlainne Docker don deamhan roghnaithe.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Déanfar an chlár foinse meaitseála in ExApp info.xml a fhorscríobh le linn an imscartha (céim tarraingthe íomhá).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Tá sé seo úsáideach más mian leat clárlann saincheaptha Docker a úsáid, mar shampla, chun clár Docker príobháideach a úsáid, nó chun clár Docker eile a úsáid le haghaidh tástála.", + "Image pull will be skipped" : "Léireofar tarraingt íomhá", "Remove" : "Bain", + "No custom Docker registries configured" : "Níl aon chlárlanna saincheaptha Docker cumraithe", + "Add registry override mapping" : "Cuir léarscáiliú sáraithe na clárlainne leis", "From" : "Ó", + "registry URL (e.g. ghcr.io)" : "URL na clárlainne (m.sh. ghcr.io)", "To" : "Chun", + "registry URL (e.g. docker.io)" : "URL na clárlainne (m.sh. docker.io)", "Add" : "Cuir", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", @@ -140,6 +157,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", + "Disable FRP" : "Díchumasaigh FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach do na hardsocruithe amháin. Díchumasaítear an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Additional option" : "Rogha breise", diff --git a/l10n/ga.json b/l10n/ga.json index 336d7090..6241dbd1 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Earráid agus suiteáil ExApp á thosú", "ExApp failed to register, check the NC logs" : "Theip ar ExApp clárú, seiceáil na logaí NC", "ExApp not found, failed to get status" : "ExApp gan aimsiú, níor éirigh leis an stádas a fháil", + "Error adding Docker registry" : "Earráid agus clárlann Docker á cur leis", + "Error removing Docker registry" : "Earráid agus clárlann Docker á baint", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Níl an aip seo suiteáilte ón AppStore. Níl aon eolas breise ar fáil. Ní cheadaítear ach gníomhartha a chumasú/a dhíchumasú agus a bhaint.", "Could not perform installation of ExApp" : "Níorbh fhéidir ExApp a shuiteáil", "Failed to enable ExApp" : "Theip ar chumasú ExApp", @@ -49,6 +51,7 @@ "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", "Test deploy" : "Imscaradh tástála", + "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", @@ -58,6 +61,7 @@ "Name" : "Ainm", "Protocol" : "Prótacal", "Host" : "Óstach", + "ExApp direct communication (FRP disabled)" : "Cumarsáid dhíreach ExApp (FRP díchumasaithe)", "Deploy config" : "Imscaradh config", "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", @@ -93,9 +97,22 @@ "Start Deploy test" : "Tosaigh Imscaradh tástála", "Stop Deploy test" : "Stop an tástáil Imscaradh", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Please enter a registry domain" : "Cuir isteach fearann ​​clárlainne", + "From cannot be \"local\"" : "Ní féidir ó bheith \"áitiúil\"", + "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", + "From and To cannot be the same" : "Ní féidir le Ó agus Chun a bheith mar an gcéanna", + "Override Docker registries" : "Sáraigh clárlanna Docker", + "Configure Docker registry override mappings for selected daemon." : "Cumraigh mapálacha sáraithe clárlainne Docker don deamhan roghnaithe.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Déanfar an chlár foinse meaitseála in ExApp info.xml a fhorscríobh le linn an imscartha (céim tarraingthe íomhá).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Tá sé seo úsáideach más mian leat clárlann saincheaptha Docker a úsáid, mar shampla, chun clár Docker príobháideach a úsáid, nó chun clár Docker eile a úsáid le haghaidh tástála.", + "Image pull will be skipped" : "Léireofar tarraingt íomhá", "Remove" : "Bain", + "No custom Docker registries configured" : "Níl aon chlárlanna saincheaptha Docker cumraithe", + "Add registry override mapping" : "Cuir léarscáiliú sáraithe na clárlainne leis", "From" : "Ó", + "registry URL (e.g. ghcr.io)" : "URL na clárlainne (m.sh. ghcr.io)", "To" : "Chun", + "registry URL (e.g. docker.io)" : "URL na clárlainne (m.sh. docker.io)", "Add" : "Cuir", "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", @@ -138,6 +155,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", + "Disable FRP" : "Díchumasaigh FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach do na hardsocruithe amháin. Díchumasaítear an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Additional option" : "Rogha breise", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index c8aa1576..5a0ce21e 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", + "Error adding Docker registry" : "Erro ao adicionar o registro do Docker", + "Error removing Docker registry" : "Erro ao remover o registro do Docker", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado na AppStore. Sem informações extras disponíveis. Somente ativar/desativar e remover ações são permitidas.", "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Padrão", "Set as default" : "Definir como padrão", "Test deploy" : "Implantação de teste", + "Docker registries" : "Registros do Docker", "Edit" : "Editar", "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", "Deploy Daemon" : "Deploy Daemon", @@ -60,7 +63,8 @@ OC.L10N.register( "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", - "Deploy config" : "Configuração de Deploy", + "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", + "Deploy config" : "Configuração de Implantação", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha HaProxy", @@ -95,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Iniciar teste de implantação", "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "Please enter a registry domain" : "Por favor, digite um domínio de registro", + "From cannot be \"local\"" : "De não pode ser \"local\"", + "This registry mapping already exists" : "Esse mapeamento de registro já existe", + "From and To cannot be the same" : "De e Para não podem ser iguais", + "Override Docker registries" : "Substituir os registros do Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar mapeamentos de substituição de registro do Docker para o daemon selecionado.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O registro de origem correspondente no info.xml do ExApp será substituído durante a implantação (etapa de image pull).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isso é útil se você quiser usar um registro personalizado do Docker, por exemplo, para usar um registro privado do Docker ou para usar um registro diferente do Docker para testes.", + "Image pull will be skipped" : "O image pull será pulado", "Remove" : "Remover", + "No custom Docker registries configured" : "Nenhum registro personalizado do Docker configurado", + "Add registry override mapping" : "Adicionar mapeamento de substituição de registro", "From" : "De", + "registry URL (e.g. ghcr.io)" : "URL do registro (p. ex., ghcr.io)", "To" : "Para", + "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", "Hostname to access ExApps" : "Nome do host para acessar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", @@ -140,6 +157,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", + "Disable FRP" : "Desativar FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", "Additional option" : "Opção adicional", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index d1127117..3fa25e8e 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", + "Error adding Docker registry" : "Erro ao adicionar o registro do Docker", + "Error removing Docker registry" : "Erro ao remover o registro do Docker", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado na AppStore. Sem informações extras disponíveis. Somente ativar/desativar e remover ações são permitidas.", "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", @@ -49,6 +51,7 @@ "Default" : "Padrão", "Set as default" : "Definir como padrão", "Test deploy" : "Implantação de teste", + "Docker registries" : "Registros do Docker", "Edit" : "Editar", "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", "Deploy Daemon" : "Deploy Daemon", @@ -58,7 +61,8 @@ "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", - "Deploy config" : "Configuração de Deploy", + "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", + "Deploy config" : "Configuração de Implantação", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha HaProxy", @@ -93,9 +97,22 @@ "Start Deploy test" : "Iniciar teste de implantação", "Stop Deploy test" : "Parar o teste de implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "Please enter a registry domain" : "Por favor, digite um domínio de registro", + "From cannot be \"local\"" : "De não pode ser \"local\"", + "This registry mapping already exists" : "Esse mapeamento de registro já existe", + "From and To cannot be the same" : "De e Para não podem ser iguais", + "Override Docker registries" : "Substituir os registros do Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar mapeamentos de substituição de registro do Docker para o daemon selecionado.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O registro de origem correspondente no info.xml do ExApp será substituído durante a implantação (etapa de image pull).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isso é útil se você quiser usar um registro personalizado do Docker, por exemplo, para usar um registro privado do Docker ou para usar um registro diferente do Docker para testes.", + "Image pull will be skipped" : "O image pull será pulado", "Remove" : "Remover", + "No custom Docker registries configured" : "Nenhum registro personalizado do Docker configurado", + "Add registry override mapping" : "Adicionar mapeamento de substituição de registro", "From" : "De", + "registry URL (e.g. ghcr.io)" : "URL do registro (p. ex., ghcr.io)", "To" : "Para", + "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", "Hostname to access ExApps" : "Nome do host para acessar ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", @@ -138,6 +155,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", + "Disable FRP" : "Desativar FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", "Additional option" : "Opção adicional", From 04616a9f16f8314cab4bfce7df668a8594ac08ac Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 22 Apr 2025 00:30:44 +0000 Subject: [PATCH 119/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 19 +++++++++++++++++++ l10n/da.json | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/l10n/da.js b/l10n/da.js index 2b54a9a3..dabe079c 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Fejl under opstart af installation af ExApp", "ExApp failed to register, check the NC logs" : "ExApp kunne ikke registrere. kontroller NC logs'ene", "ExApp not found, failed to get status" : "ExApp ikke fundet. Kunne ikke hente status", + "Error adding Docker registry" : "Fejl ved tilføjelse af Docker registre", + "Error removing Docker registry" : "Error removing Docker registre", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke installeret fra AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", "Could not perform installation of ExApp" : "Kunne ikke udføre installation af ExApp", "Failed to enable ExApp" : "Kunne ikke aktivere ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Standard", "Set as default" : "Angiv som standard", "Test deploy" : "Test udgivelse", + "Docker registries" : "Dokker registre", "Edit" : "Rediger", "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", @@ -60,6 +63,7 @@ OC.L10N.register( "Name" : "Navn", "Protocol" : "Protokol", "Host" : "Vært", + "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", "Deploy config" : "Udgivelses config", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", @@ -95,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Start udgivelsestest", "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Please enter a registry domain" : "Indtast venligst et registre domæne", + "From cannot be \"local\"" : "Fra kan ikke være \"local\"", + "This registry mapping already exists" : "Denne registre mapping findes allerede", + "From and To cannot be the same" : "Fra og til kan ikke være det samme", + "Override Docker registries" : "Tilsidesæt Docker registre", + "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under implementering (billede træk trin).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", + "Image pull will be skipped" : "Billede træk vil blive sprunget over", "Remove" : "Fjern", + "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", + "Add registry override mapping" : "Tilføj mapping af registre", "From" : "Fra", + "registry URL (e.g. ghcr.io)" : "registre URL (f.eks. ghcr.io)", "To" : "Til", + "registry URL (e.g. docker.io)" : "registre URL (f.eks. docker.io)", "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", @@ -140,6 +157,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", "Docker socket proxy port" : "Docker sokkel proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", + "Disable FRP" : "Deaktiver FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", "Additional option" : "Yderligere mulighed", diff --git a/l10n/da.json b/l10n/da.json index 61291263..c74d6e86 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Fejl under opstart af installation af ExApp", "ExApp failed to register, check the NC logs" : "ExApp kunne ikke registrere. kontroller NC logs'ene", "ExApp not found, failed to get status" : "ExApp ikke fundet. Kunne ikke hente status", + "Error adding Docker registry" : "Fejl ved tilføjelse af Docker registre", + "Error removing Docker registry" : "Error removing Docker registre", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke installeret fra AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", "Could not perform installation of ExApp" : "Kunne ikke udføre installation af ExApp", "Failed to enable ExApp" : "Kunne ikke aktivere ExApp", @@ -49,6 +51,7 @@ "Default" : "Standard", "Set as default" : "Angiv som standard", "Test deploy" : "Test udgivelse", + "Docker registries" : "Dokker registre", "Edit" : "Rediger", "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", @@ -58,6 +61,7 @@ "Name" : "Navn", "Protocol" : "Protokol", "Host" : "Vært", + "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", "Deploy config" : "Udgivelses config", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", @@ -93,9 +97,22 @@ "Start Deploy test" : "Start udgivelsestest", "Stop Deploy test" : "Stop udgivelsestest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Please enter a registry domain" : "Indtast venligst et registre domæne", + "From cannot be \"local\"" : "Fra kan ikke være \"local\"", + "This registry mapping already exists" : "Denne registre mapping findes allerede", + "From and To cannot be the same" : "Fra og til kan ikke være det samme", + "Override Docker registries" : "Tilsidesæt Docker registre", + "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under implementering (billede træk trin).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", + "Image pull will be skipped" : "Billede træk vil blive sprunget over", "Remove" : "Fjern", + "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", + "Add registry override mapping" : "Tilføj mapping af registre", "From" : "Fra", + "registry URL (e.g. ghcr.io)" : "registre URL (f.eks. ghcr.io)", "To" : "Til", + "registry URL (e.g. docker.io)" : "registre URL (f.eks. docker.io)", "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", @@ -138,6 +155,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", "Docker socket proxy port" : "Docker sokkel proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", + "Disable FRP" : "Deaktiver FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", "Additional option" : "Yderligere mulighed", From b5945da33d52cd92bac1caad8563888ce1d15e6f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 23 Apr 2025 00:30:41 +0000 Subject: [PATCH 120/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/uz.js | 4 ++++ l10n/uz.json | 4 ++++ 4 files changed, 10 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 96458319..ae33e6a7 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Cancel" : "Tühista", "Delete" : "Kustuta", + "Default" : "Vaikimisi", "Edit" : "Redigeeri", "Name" : "Nimi", "Host" : "Host", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index c4483680..313cf39a 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Cancel" : "Tühista", "Delete" : "Kustuta", + "Default" : "Vaikimisi", "Edit" : "Redigeeri", "Name" : "Nimi", "Host" : "Host", diff --git a/l10n/uz.js b/l10n/uz.js index 9ca4a052..53ddc843 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -3,14 +3,18 @@ OC.L10N.register( { "Cancel" : "Cancel", "Delete" : "Delete", + "Password confirmation failed" : "Parol tasdiqlanmadi", "Edit" : "Tahrirlash", "Name" : "Name", "Remove" : "Remove", "From" : "Dan", "To" : "Gacha", "Add" : "Qo'shish", + "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", "Confirm" : "Confirm", "Save" : "Saqlash", + "Register" : "Roʻyxatdan oʻtish", + "Check connection" : "Ulanishni tekshiring", "Update to {version}" : "Update to {version}", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", diff --git a/l10n/uz.json b/l10n/uz.json index 6c9835af..8740fbe1 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -1,14 +1,18 @@ { "translations": { "Cancel" : "Cancel", "Delete" : "Delete", + "Password confirmation failed" : "Parol tasdiqlanmadi", "Edit" : "Tahrirlash", "Name" : "Name", "Remove" : "Remove", "From" : "Dan", "To" : "Gacha", "Add" : "Qo'shish", + "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", "Confirm" : "Confirm", "Save" : "Saqlash", + "Register" : "Roʻyxatdan oʻtish", + "Check connection" : "Ulanishni tekshiring", "Update to {version}" : "Update to {version}", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", From 0edd8297df1015c6ee5f053c9c0a10d32fe90f75 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 25 Apr 2025 00:30:30 +0000 Subject: [PATCH 121/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 10 +++++----- l10n/da.json | 10 +++++----- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index dabe079c..d425ebc0 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -5,8 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Fejl under opstart af installation af ExApp", "ExApp failed to register, check the NC logs" : "ExApp kunne ikke registrere. kontroller NC logs'ene", "ExApp not found, failed to get status" : "ExApp ikke fundet. Kunne ikke hente status", - "Error adding Docker registry" : "Fejl ved tilføjelse af Docker registre", - "Error removing Docker registry" : "Error removing Docker registre", + "Error adding Docker registry" : "Fejl ved tilføjelse af Docker register", + "Error removing Docker registry" : "Fejl ved fjernelse af Docker register", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke installeret fra AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", "Could not perform installation of ExApp" : "Kunne ikke udføre installation af ExApp", "Failed to enable ExApp" : "Kunne ikke aktivere ExApp", @@ -53,7 +53,7 @@ OC.L10N.register( "Default" : "Standard", "Set as default" : "Angiv som standard", "Test deploy" : "Test udgivelse", - "Docker registries" : "Dokker registre", + "Docker registries" : "Docker registre", "Edit" : "Rediger", "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", @@ -102,7 +102,7 @@ OC.L10N.register( "Please enter a registry domain" : "Indtast venligst et registre domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registre mapping findes allerede", - "From and To cannot be the same" : "Fra og til kan ikke være det samme", + "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under implementering (billede træk trin).", @@ -157,7 +157,7 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", "Docker socket proxy port" : "Docker sokkel proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", - "Disable FRP" : "Deaktiver FRP", + "Disable FRP" : "Deaktivér FRP", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", diff --git a/l10n/da.json b/l10n/da.json index c74d6e86..355aaba4 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -3,8 +3,8 @@ "Error starting install of ExApp" : "Fejl under opstart af installation af ExApp", "ExApp failed to register, check the NC logs" : "ExApp kunne ikke registrere. kontroller NC logs'ene", "ExApp not found, failed to get status" : "ExApp ikke fundet. Kunne ikke hente status", - "Error adding Docker registry" : "Fejl ved tilføjelse af Docker registre", - "Error removing Docker registry" : "Error removing Docker registre", + "Error adding Docker registry" : "Fejl ved tilføjelse af Docker register", + "Error removing Docker registry" : "Fejl ved fjernelse af Docker register", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Denne app er ikke installeret fra AppStore. Ingen ekstra information er tilgængelig. Kun handlingerne aktiver/deaktiver og fjern er tilladte.", "Could not perform installation of ExApp" : "Kunne ikke udføre installation af ExApp", "Failed to enable ExApp" : "Kunne ikke aktivere ExApp", @@ -51,7 +51,7 @@ "Default" : "Standard", "Set as default" : "Angiv som standard", "Test deploy" : "Test udgivelse", - "Docker registries" : "Dokker registre", + "Docker registries" : "Docker registre", "Edit" : "Rediger", "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", @@ -100,7 +100,7 @@ "Please enter a registry domain" : "Indtast venligst et registre domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registre mapping findes allerede", - "From and To cannot be the same" : "Fra og til kan ikke være det samme", + "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under implementering (billede træk trin).", @@ -155,7 +155,7 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", "Docker socket proxy port" : "Docker sokkel proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", - "Disable FRP" : "Deaktiver FRP", + "Disable FRP" : "Deaktivér FRP", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index ae33e6a7..ddcd5538 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -30,6 +30,7 @@ OC.L10N.register( "User documentation" : "Kasutaja dokumentatsioon", "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", + "Supported" : "Toetatud", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", "Version" : "Versioon", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 313cf39a..1e787755 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -28,6 +28,7 @@ "User documentation" : "Kasutaja dokumentatsioon", "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", + "Supported" : "Toetatud", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", "Version" : "Versioon", From b764636d0863f715c969efdd53dd3597f451076f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 28 Apr 2025 00:31:06 +0000 Subject: [PATCH 122/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/tr.js | 51 +++++++++++++++++++++++++++++++++++++++++-------- l10n/tr.json | 51 +++++++++++++++++++++++++++++++++++++++++-------- 4 files changed, 88 insertions(+), 16 deletions(-) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index ddcd5538..b154b21f 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -44,6 +44,7 @@ OC.L10N.register( "Documentation" : "Dokumentatsioon", "Details" : "Üksikasjad", "Changelog" : "Muudatuste logi", + "Active apps" : "Aktiivsed rakendused", "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 1e787755..b57dfc5b 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -42,6 +42,7 @@ "Documentation" : "Dokumentatsioon", "Details" : "Üksikasjad", "Changelog" : "Muudatuste logi", + "Active apps" : "Aktiivsed rakendused", "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", diff --git a/l10n/tr.js b/l10n/tr.js index de87b81d..53c58f65 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "ExApp kurulumu başlatılırken sorun çıktı", "ExApp failed to register, check the NC logs" : "ExApp kaydedilemedi. NC günlüklerine bakın", "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", + "Error adding Docker registry" : "Docker kaydı eklenirken sorun çıktı", + "Error removing Docker registry" : "Docker kaydı kaldırılırken sorun çıktı", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", "Failed to enable ExApp" : "ExApp kullanıma alınamadı", @@ -19,7 +21,11 @@ OC.L10N.register( "AppAPI ExApp notifier" : "AppAPI ExApp bildirimi", "AppAPI" : "AppAPI", "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", - "ExApps Settings" : "ExApps ayarları", + "ExApps Settings" : "ExApp ayarları", + "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlardan bir varsayılan dağıtım işlemi kaydedin.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım için yükseltmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", @@ -28,7 +34,7 @@ OC.L10N.register( "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir ExApp yönetim arka plan işlemidir.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmasını denetleyin", "ExApp init timeout (minutes)" : "ExApp hazırlanma süresi (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp başlatma işlemi zaman aşımından sonra AppAPI bunu başarısız olarak işaretler", @@ -47,15 +53,17 @@ OC.L10N.register( "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", "Test deploy" : "Dağıtımı sına", + "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", - "ExApps installed" : "ExApps kuruldu", + "ExApps installed" : "ExApp kuruldu", "Name" : "Ad", "Protocol" : "İletişim kuralı", "Host" : "Sunucu", + "ExApp direct communication (FRP disabled)" : "ExApp doğrudan iletişim (FRP kapalı)", "Deploy config" : "Yapılandırmayı dağıt", "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", @@ -91,14 +99,31 @@ OC.L10N.register( "Start Deploy test" : "Dağıtım sınamasını başlat", "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Please enter a registry domain" : "Lütfen bir kayıt etki alanı yazın", + "From cannot be \"local\"" : "Nereden \"local\" olamaz", + "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", + "From and To cannot be the same" : "Nerede ve Nereye aynı olamaz", + "Override Docker registries" : "Docker kayıtlarını değiştir", + "Configure Docker registry override mappings for selected daemon." : "Seçilmiş işlem için Docket kaydı değişikliğini yapılandırın", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya deneme için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", + "Image pull will be skipped" : "Kalıp çekme atlanacak", "Remove" : "Kaldır", - "From" : "Başlangıç", - "To" : "Bitiş", + "No custom Docker registries configured" : "Özel bir Docker kaydı yapılandırılmamış", + "Add registry override mapping" : "Kayıt değiştirme eşleştirmesi ekle", + "From" : "Nereden", + "registry URL (e.g. ghcr.io)" : "kayıt adresi (ghcr.io gibi)", + "To" : "Nereye", + "registry URL (e.g. docker.io)" : "kayıt adresi (docker.io gibi)", "Add" : "Ekle", "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası). Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Örnek: {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası) veya yol. Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Ayrıca Docker soketine giden bir yol da olabilir. (Örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP kapsayıcısı iletişimi için gizli anahtar (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", @@ -118,14 +143,24 @@ OC.L10N.register( "Display name" : "Görüntülenecek ad", "Deployment method" : "Dağıtım yöntemi", "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", + "HaRP host" : "HaRP sunucusu", "Daemon host" : "Arka plan işlemi sunucusu", + "HaRP shared key" : "HaRP paylaşılan anahtarı", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", "Enable https" : "https kullanılsın", "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", "Hide deploy config" : "Dağıtım yapılandırmasını gizle", + "Enable HaRP" : "HaRP kullanılsın", + "FRP server address" : "FRP sunucusu adresi", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "'Docker ağı' üzerinde tanımlanmış ağdaki ExApp bileşeni tarafından ulaşılması gereken FRP sunucusunun adresi (Sunucu:BağlantıNoktası).", + "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", + "Disable FRP" : "FRP kullanılmasın", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Disabled" : "Kullanımdan kaldırılmış", + "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", @@ -157,7 +192,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", "Featured" : "Öne çıkarılmış", "Update to {update}" : "{update} sürümüne güncelle", - "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", + "All ExApps are up-to-date." : "Tüm ExApp bileşenleri güncel", "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", "Icon" : "Simge", "Version" : "Sürüm", @@ -195,7 +230,7 @@ OC.L10N.register( "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Uygulama mağazadan indirilecek ve varsayılan dağıtım arka plan işlemi üzerine dağıtılacak", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", - "Your ExApps" : "ExApp uygulamalarınız", + "Your ExApps" : "ExApp bileşenleriniz", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", diff --git a/l10n/tr.json b/l10n/tr.json index e6130dcf..71f20f92 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "ExApp kurulumu başlatılırken sorun çıktı", "ExApp failed to register, check the NC logs" : "ExApp kaydedilemedi. NC günlüklerine bakın", "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", + "Error adding Docker registry" : "Docker kaydı eklenirken sorun çıktı", + "Error removing Docker registry" : "Docker kaydı kaldırılırken sorun çıktı", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", "Failed to enable ExApp" : "ExApp kullanıma alınamadı", @@ -17,7 +19,11 @@ "AppAPI ExApp notifier" : "AppAPI ExApp bildirimi", "AppAPI" : "AppAPI", "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", - "ExApps Settings" : "ExApps ayarları", + "ExApps Settings" : "ExApp ayarları", + "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlardan bir varsayılan dağıtım işlemi kaydedin.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım için yükseltmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", @@ -26,7 +32,7 @@ "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir ExApp yönetim arka plan işlemidir.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmasını denetleyin", "ExApp init timeout (minutes)" : "ExApp hazırlanma süresi (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp başlatma işlemi zaman aşımından sonra AppAPI bunu başarısız olarak işaretler", @@ -45,15 +51,17 @@ "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", "Test deploy" : "Dağıtımı sına", + "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", - "ExApps installed" : "ExApps kuruldu", + "ExApps installed" : "ExApp kuruldu", "Name" : "Ad", "Protocol" : "İletişim kuralı", "Host" : "Sunucu", + "ExApp direct communication (FRP disabled)" : "ExApp doğrudan iletişim (FRP kapalı)", "Deploy config" : "Yapılandırmayı dağıt", "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", @@ -89,14 +97,31 @@ "Start Deploy test" : "Dağıtım sınamasını başlat", "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Please enter a registry domain" : "Lütfen bir kayıt etki alanı yazın", + "From cannot be \"local\"" : "Nereden \"local\" olamaz", + "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", + "From and To cannot be the same" : "Nerede ve Nereye aynı olamaz", + "Override Docker registries" : "Docker kayıtlarını değiştir", + "Configure Docker registry override mappings for selected daemon." : "Seçilmiş işlem için Docket kaydı değişikliğini yapılandırın", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya deneme için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", + "Image pull will be skipped" : "Kalıp çekme atlanacak", "Remove" : "Kaldır", - "From" : "Başlangıç", - "To" : "Bitiş", + "No custom Docker registries configured" : "Özel bir Docker kaydı yapılandırılmamış", + "Add registry override mapping" : "Kayıt değiştirme eşleştirmesi ekle", + "From" : "Nereden", + "registry URL (e.g. ghcr.io)" : "kayıt adresi (ghcr.io gibi)", + "To" : "Nereye", + "registry URL (e.g. docker.io)" : "kayıt adresi (docker.io gibi)", "Add" : "Ekle", "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası). Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Örnek: {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası) veya yol. Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Ayrıca Docker soketine giden bir yol da olabilir. (Örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP kapsayıcısı iletişimi için gizli anahtar (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", @@ -116,14 +141,24 @@ "Display name" : "Görüntülenecek ad", "Deployment method" : "Dağıtım yöntemi", "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", + "HaRP host" : "HaRP sunucusu", "Daemon host" : "Arka plan işlemi sunucusu", + "HaRP shared key" : "HaRP paylaşılan anahtarı", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", "Enable https" : "https kullanılsın", "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", "Hide deploy config" : "Dağıtım yapılandırmasını gizle", + "Enable HaRP" : "HaRP kullanılsın", + "FRP server address" : "FRP sunucusu adresi", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "'Docker ağı' üzerinde tanımlanmış ağdaki ExApp bileşeni tarafından ulaşılması gereken FRP sunucusunun adresi (Sunucu:BağlantıNoktası).", + "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", + "Disable FRP" : "FRP kullanılmasın", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Disabled" : "Kullanımdan kaldırılmış", + "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", @@ -155,7 +190,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", "Featured" : "Öne çıkarılmış", "Update to {update}" : "{update} sürümüne güncelle", - "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", + "All ExApps are up-to-date." : "Tüm ExApp bileşenleri güncel", "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", "Icon" : "Simge", "Version" : "Sürüm", @@ -193,7 +228,7 @@ "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Uygulama mağazadan indirilecek ve varsayılan dağıtım arka plan işlemi üzerine dağıtılacak", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", - "Your ExApps" : "ExApp uygulamalarınız", + "Your ExApps" : "ExApp bileşenleriniz", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", From e3abbae2010aafcc9ba5d4d047c647d5463aa35d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 29 Apr 2025 00:30:48 +0000 Subject: [PATCH 123/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 10 +++++----- l10n/de.json | 10 +++++----- l10n/de_DE.js | 18 +++++++++--------- l10n/de_DE.json | 18 +++++++++--------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index 9669eb92..dd981061 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -30,7 +30,7 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", + "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -48,7 +48,7 @@ OC.L10N.register( "Cancel" : "Abbrechen", "Delete" : "Löschen", "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -128,12 +128,12 @@ OC.L10N.register( "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", + "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfe die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfe die Protokolle.", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/de.json b/l10n/de.json index 05b1e43c..aa39f05e 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -28,7 +28,7 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", + "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -46,7 +46,7 @@ "Cancel" : "Abbrechen", "Delete" : "Löschen", "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfe die Protokolle.", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -126,12 +126,12 @@ "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfe die Protokolle", + "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfe die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfe die Protokolle.", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 8cc0547f..e5b3f7fb 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -9,8 +9,8 @@ OC.L10N.register( "Error removing Docker registry" : "Fehler beim Entfernen der Docker-Registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", - "Failed to enable ExApp" : "Fehler beim Aktivieren von ExApp", - "Failed to disable ExApp" : "Fehler beim Deaktivieren von ExApp", + "Failed to enable ExApp" : "ExApp konnte nicht aktiviert werden", + "Failed to disable ExApp" : "ExApp konnte nicht deaktiviert werden", "Could not update ExApp" : "Konnte ExApp nicht aktualisieren.", "Error starting update of ExApp" : "Fehler beim Starten des Updates von ExApp", "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", @@ -30,7 +30,7 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", + "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -48,7 +48,7 @@ OC.L10N.register( "Cancel" : "Abbrechen", "Delete" : "Löschen", "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -104,9 +104,9 @@ OC.L10N.register( "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Override Docker registries" : "Docker-Registries überschreiben", - "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "Configure Docker registry override mappings for selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise eine benutzerdefinierte Docker-Registry, eine private Docker-Registry oder eine andere Docker-Registry zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", @@ -128,12 +128,12 @@ OC.L10N.register( "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", + "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfen Sie die Protokolle.", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index bde57647..1f11dffd 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -7,8 +7,8 @@ "Error removing Docker registry" : "Fehler beim Entfernen der Docker-Registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Diese App ist nicht aus dem App-Store installiert. Keine weiteren Informationen verfügbar. Nur die Aktionen Aktivieren/Deaktivieren und Entfernen sind zulässig.", "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", - "Failed to enable ExApp" : "Fehler beim Aktivieren von ExApp", - "Failed to disable ExApp" : "Fehler beim Deaktivieren von ExApp", + "Failed to enable ExApp" : "ExApp konnte nicht aktiviert werden", + "Failed to disable ExApp" : "ExApp konnte nicht deaktiviert werden", "Could not update ExApp" : "Konnte ExApp nicht aktualisieren.", "Error starting update of ExApp" : "Fehler beim Starten des Updates von ExApp", "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", @@ -28,7 +28,7 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", - "Failed to save admin options" : "Fehler beim Speichern der-Administrationseinstellungen", + "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -46,7 +46,7 @@ "Cancel" : "Abbrechen", "Delete" : "Löschen", "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Fehler beim Speichern der Administrationsoptionen. Prüfen Sie die Protokolle.", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -102,9 +102,9 @@ "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Override Docker registries" : "Docker-Registries überschreiben", - "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "Configure Docker registry override mappings for selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise eine benutzerdefinierte Docker-Registry, eine private Docker-Registry oder eine andere Docker-Registry zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", @@ -126,12 +126,12 @@ "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", - "Failed to register DaemonConfig. Check the logs" : "Fehler beim Registrieren der Daemonkonfiguration. Prüfen Sie die Protokolle", + "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Fehler beim Verbinden mit dem Daemon. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Fehler beim Prüfen der Verbindung zum Daemon. Prüfen Sie die Protokolle.", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", From d1a38021f5c2c1aa34c149ed77031c765cce0e89 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 30 Apr 2025 00:31:24 +0000 Subject: [PATCH 124/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 3 +++ l10n/et_EE.json | 3 +++ l10n/pt_BR.js | 46 +++++++++++++++++++++++----------------------- l10n/pt_BR.json | 46 +++++++++++++++++++++++----------------------- 4 files changed, 52 insertions(+), 46 deletions(-) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index b154b21f..57cbb031 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -30,12 +30,15 @@ OC.L10N.register( "User documentation" : "Kasutaja dokumentatsioon", "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", + "This app is supported via your current Nextcloud subscription." : "See rakendus on toetatud sinu praeguses Nextcloudi tellimuses. ", "Supported" : "Toetatud", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esiletõstetud rakendusi arendatakse kogukonna poolt. Nad pakuvad võimalust kasutada olulist funktsionaalsust ning on sobilikud igapäevaseks kasutuseks.", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", "Version" : "Versioon", "Level" : "Tase", "Actions" : "Tegevused", + "Results from other categories" : "Tulemused muudest kategooriatest", "_Update_::_Update all_" : ["Uuenda","Uuenda kõik"], "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index b57dfc5b..5ff4247d 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -28,12 +28,15 @@ "User documentation" : "Kasutaja dokumentatsioon", "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", + "This app is supported via your current Nextcloud subscription." : "See rakendus on toetatud sinu praeguses Nextcloudi tellimuses. ", "Supported" : "Toetatud", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esiletõstetud rakendusi arendatakse kogukonna poolt. Nad pakuvad võimalust kasutada olulist funktsionaalsust ning on sobilikud igapäevaseks kasutuseks.", "Featured" : "Esile tõstetud", "Icon" : "Ikoon", "Version" : "Versioon", "Level" : "Tase", "Actions" : "Tegevused", + "Results from other categories" : "Tulemused muudest kategooriatest", "_Update_::_Update all_" : ["Uuenda","Uuenda kõik"], "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 5a0ce21e..39ea695a 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -1,9 +1,9 @@ OC.L10N.register( "app_api", { - "Daemon config not found" : "Configuração do Daemon não encontrada", + "Daemon config not found" : "Configuração do daemon não encontrada", "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", - "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", + "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs do NC", "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", "Error adding Docker registry" : "Erro ao adicionar o registro do Docker", "Error removing Docker registry" : "Erro ao remover o registro do Docker", @@ -11,10 +11,10 @@ OC.L10N.register( "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", "Failed to disable ExApp" : "Falha ao desativar ExApp", - "Could not update ExApp" : "Não foi possível atualizar o ExApp", + "Could not update ExApp" : "Não foi possível atualizar ExApp", "Error starting update of ExApp" : "Erro ao iniciar a atualização do ExApp", "Could not perform update of ExApp" : "Não foi possível realizar a atualização do ExApp", - "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter registros", + "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: o download do contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro:%s", "ExApp not found, failed to get deploy options" : "ExApp não encontrado, falha ao obter opções de implantação", "AppAPI authentication failed" : "Falha na autenticação AppAPI", @@ -82,7 +82,7 @@ OC.L10N.register( "Check if the image is successfully pulled" : "Verifique se a imagem foi extraída com sucesso", "Container started" : "Contêiner iniciado", "Check if the image successfully pulled and container is created and started" : "Verifique se a imagem extraída com sucesso e o contêiner foi criado e iniciado", - "Heartbeat" : "Batimento cardiaco", + "Heartbeat" : "Heartbeat", "Check for the heartbeat is finished and healthy" : "Verifique se o batimento cardíaco está finalizado e saudável", "Init step" : "Etapa inicial", "Wait for initialization step to finish" : "Aguarde a conclusão da etapa de inicialização", @@ -94,10 +94,10 @@ OC.L10N.register( "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", "More info" : "Mais informações", - "Download ExApp logs" : "Baixar registros do ExApp", + "Download ExApp logs" : "Baixar logs do ExApp", "Remove test ExApp" : "Remover ExApp de teste", - "Start Deploy test" : "Iniciar teste de implantação", - "Stop Deploy test" : "Parar o teste de implantação", + "Start Deploy test" : "Iniciar teste de Implantação", + "Stop Deploy test" : "Parar teste de Implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Please enter a registry domain" : "Por favor, digite um domínio de registro", "From cannot be \"local\"" : "De não pode ser \"local\"", @@ -124,7 +124,7 @@ OC.L10N.register( "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", - "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", + "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", @@ -149,7 +149,7 @@ OC.L10N.register( "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", "Set as default daemon" : "Definir como daemon padrão", - "Enable https" : "Habilitar https", + "Enable https" : "Ativar https", "Show deploy config" : "Mostrar configuração de deploy", "Hide deploy config" : "Ocultar configuração de deploy", "Enable HaRP" : "Ativar HaRP", @@ -171,8 +171,8 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Salvar", "Register" : "Registro ", - "Check connection" : "Verifique a conexão", - "External Apps" : "Apps Externos", + "Check connection" : "Verificar conexão", + "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", @@ -181,8 +181,8 @@ OC.L10N.register( "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", "View in store" : "Ver na loja", - "Visit website" : "Visitar website", - "Report a bug" : "Reportar um erro", + "Visit website" : "Visitar site", + "Report a bug" : "Relatar um problema", "User documentation" : "Documentação do usuário", "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", @@ -192,7 +192,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", "Featured" : "Destaques", "Update to {update}" : "Atualizar para {update}", - "All ExApps are up-to-date." : "Todos os ExApps estão atualizados.", + "All ExApps are up-to-date." : "Todos os ExApps estão na versão mais recente.", "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", "Icon" : "Ícone", "Version" : "Versão", @@ -200,9 +200,9 @@ OC.L10N.register( "Level" : "Nível", "Actions" : "Ações", "Results from other categories" : "Resultados de outras categorias", - "No apps found" : "Nenhum app encontrado", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n apps têm uma atualização disponível","%n apps têm uma atualização disponível"], - "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], + "No apps found" : "Nenhum aplicativo encontrado", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n aplicativos têm uma atualização disponível","%n aplicativos têm uma atualização disponível"], + "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", "Display Name" : "Nome", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -213,22 +213,22 @@ OC.L10N.register( "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", - "Changelog" : "Log de alterações", + "Changelog" : "Registro de alterações", "Active apps" : "Aplicativos ativados", "Disabled apps" : "Aplicativos desativados", "Updates" : "Atualizações", "Featured apps" : "Aplicativos em destaque", "Supported apps" : "Aplicativos compatíveis", "manual-install apps cannot be updated" : "aplicativos de instalação manual não podem ser atualizados", - "{progress}% Deploying" : "{progress}% Implantação", + "{progress}% Deploying" : "{progress}% Implantando", "{progress}% Initializing" : "{progress}% Inicializando", "Healthchecking" : "Verificação de saúde", - "Deploy and Enable" : "Implantar e Habilitar", + "Deploy and Enable" : "Implantar e Ativar", "Enable" : "Ativar", "Disable" : "Desativar", - "Allow untested app" : "Permitir app não testado", + "Allow untested app" : "Permitir aplicativo não testado", "Default Deploy daemon is not accessible. Please verify configuration" : "O daemon de deploy padrão não está acessível. Por favor, verifique a configuração.", - "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "O aplicativo será baixado da App Store e implantado no Deploy Daemon padrão.", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "O aplicativo será baixado da Loja de Aplicativos e implantado no Deploy Daemon padrão.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Este aplicativo não está marcado como compatível com sua versão do Nextcloud. Se você continuar, ainda poderá instalar o aplicativo mas poderá não funcionar como esperado.", "Your ExApps" : "Seus ExApps", "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 3fa25e8e..1f71fc6a 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -1,7 +1,7 @@ { "translations": { - "Daemon config not found" : "Configuração do Daemon não encontrada", + "Daemon config not found" : "Configuração do daemon não encontrada", "Error starting install of ExApp" : "Erro ao iniciar a instalação do ExApp", - "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs NC", + "ExApp failed to register, check the NC logs" : "ExApp falhou ao registrar, verifique os logs do NC", "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", "Error adding Docker registry" : "Erro ao adicionar o registro do Docker", "Error removing Docker registry" : "Erro ao remover o registro do Docker", @@ -9,10 +9,10 @@ "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", "Failed to disable ExApp" : "Falha ao desativar ExApp", - "Could not update ExApp" : "Não foi possível atualizar o ExApp", + "Could not update ExApp" : "Não foi possível atualizar ExApp", "Error starting update of ExApp" : "Erro ao iniciar a atualização do ExApp", "Could not perform update of ExApp" : "Não foi possível realizar a atualização do ExApp", - "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter registros", + "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: o download do contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro:%s", "ExApp not found, failed to get deploy options" : "ExApp não encontrado, falha ao obter opções de implantação", "AppAPI authentication failed" : "Falha na autenticação AppAPI", @@ -80,7 +80,7 @@ "Check if the image is successfully pulled" : "Verifique se a imagem foi extraída com sucesso", "Container started" : "Contêiner iniciado", "Check if the image successfully pulled and container is created and started" : "Verifique se a imagem extraída com sucesso e o contêiner foi criado e iniciado", - "Heartbeat" : "Batimento cardiaco", + "Heartbeat" : "Heartbeat", "Check for the heartbeat is finished and healthy" : "Verifique se o batimento cardíaco está finalizado e saudável", "Init step" : "Etapa inicial", "Wait for initialization step to finish" : "Aguarde a conclusão da etapa de inicialização", @@ -92,10 +92,10 @@ "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", "More info" : "Mais informações", - "Download ExApp logs" : "Baixar registros do ExApp", + "Download ExApp logs" : "Baixar logs do ExApp", "Remove test ExApp" : "Remover ExApp de teste", - "Start Deploy test" : "Iniciar teste de implantação", - "Stop Deploy test" : "Parar o teste de implantação", + "Start Deploy test" : "Iniciar teste de Implantação", + "Stop Deploy test" : "Parar teste de Implantação", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", "Please enter a registry domain" : "Por favor, digite um domínio de registro", "From cannot be \"local\"" : "De não pode ser \"local\"", @@ -122,7 +122,7 @@ "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", - "URL should start with http:// or https://" : "A URL deve começar com http:// ou https://", + "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", @@ -147,7 +147,7 @@ "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", "Set as default daemon" : "Definir como daemon padrão", - "Enable https" : "Habilitar https", + "Enable https" : "Ativar https", "Show deploy config" : "Mostrar configuração de deploy", "Hide deploy config" : "Ocultar configuração de deploy", "Enable HaRP" : "Ativar HaRP", @@ -169,8 +169,8 @@ "Confirm" : "Confirmar", "Save" : "Salvar", "Register" : "Registro ", - "Check connection" : "Verifique a conexão", - "External Apps" : "Apps Externos", + "Check connection" : "Verificar conexão", + "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "{license}-licensed" : "{license}-licenciado", "Update to {version}" : "Atualizar para {version}", @@ -179,8 +179,8 @@ "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", "View in store" : "Ver na loja", - "Visit website" : "Visitar website", - "Report a bug" : "Reportar um erro", + "Visit website" : "Visitar site", + "Report a bug" : "Relatar um problema", "User documentation" : "Documentação do usuário", "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", @@ -190,7 +190,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", "Featured" : "Destaques", "Update to {update}" : "Atualizar para {update}", - "All ExApps are up-to-date." : "Todos os ExApps estão atualizados.", + "All ExApps are up-to-date." : "Todos os ExApps estão na versão mais recente.", "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", "Icon" : "Ícone", "Version" : "Versão", @@ -198,9 +198,9 @@ "Level" : "Nível", "Actions" : "Ações", "Results from other categories" : "Resultados de outras categorias", - "No apps found" : "Nenhum app encontrado", - "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n apps têm uma atualização disponível","%n apps têm uma atualização disponível"], - "_Update_::_Update all_" : ["Atualizar","Atualize tudo","Atualize tudo"], + "No apps found" : "Nenhum aplicativo encontrado", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n aplicativos têm uma atualização disponível","%n aplicativos têm uma atualização disponível"], + "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", "Display Name" : "Nome", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", @@ -211,22 +211,22 @@ "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", "Details" : "Detalhes", - "Changelog" : "Log de alterações", + "Changelog" : "Registro de alterações", "Active apps" : "Aplicativos ativados", "Disabled apps" : "Aplicativos desativados", "Updates" : "Atualizações", "Featured apps" : "Aplicativos em destaque", "Supported apps" : "Aplicativos compatíveis", "manual-install apps cannot be updated" : "aplicativos de instalação manual não podem ser atualizados", - "{progress}% Deploying" : "{progress}% Implantação", + "{progress}% Deploying" : "{progress}% Implantando", "{progress}% Initializing" : "{progress}% Inicializando", "Healthchecking" : "Verificação de saúde", - "Deploy and Enable" : "Implantar e Habilitar", + "Deploy and Enable" : "Implantar e Ativar", "Enable" : "Ativar", "Disable" : "Desativar", - "Allow untested app" : "Permitir app não testado", + "Allow untested app" : "Permitir aplicativo não testado", "Default Deploy daemon is not accessible. Please verify configuration" : "O daemon de deploy padrão não está acessível. Por favor, verifique a configuração.", - "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "O aplicativo será baixado da App Store e implantado no Deploy Daemon padrão.", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "O aplicativo será baixado da Loja de Aplicativos e implantado no Deploy Daemon padrão.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Este aplicativo não está marcado como compatível com sua versão do Nextcloud. Se você continuar, ainda poderá instalar o aplicativo mas poderá não funcionar como esperado.", "Your ExApps" : "Seus ExApps", "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", From f3fbb48bee284618984f8a6d7b0a836175219e1f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 3 May 2025 00:30:22 +0000 Subject: [PATCH 125/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/id.js | 1 + l10n/id.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/id.js b/l10n/id.js index 1aca21e5..45b0c03b 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -35,6 +35,7 @@ OC.L10N.register( "Results from other categories" : "Hasil dari kategori lainnya", "_Update_::_Update all_" : ["Perbarui semua"], "Type" : "tipe", + "Display Name" : "Nama Tampilan", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", diff --git a/l10n/id.json b/l10n/id.json index 1d947309..8a2ec82f 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -33,6 +33,7 @@ "Results from other categories" : "Hasil dari kategori lainnya", "_Update_::_Update all_" : ["Perbarui semua"], "Type" : "tipe", + "Display Name" : "Nama Tampilan", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", From 135bea85e2c0d07cec0576847bfdd09ca25752ab Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 4 May 2025 00:30:18 +0000 Subject: [PATCH 126/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uk.js | 1 + l10n/uk.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/uk.js b/l10n/uk.js index 44049a08..75f6dc47 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Скасувати", "Delete" : "Вилучати", + "Default" : "Типово", "Edit" : "Редагувати", "Name" : "Назва", "Host" : "Хост", diff --git a/l10n/uk.json b/l10n/uk.json index 89e2c284..9b265bd1 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Скасувати", "Delete" : "Вилучати", + "Default" : "Типово", "Edit" : "Редагувати", "Name" : "Назва", "Host" : "Хост", From b3f7dec0cd97e12371b49ee987efa4016c2f9691 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 9 May 2025 00:32:02 +0000 Subject: [PATCH 127/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/eo.js | 1 + l10n/eo.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 2a69b9d4..1d9845d0 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -96,6 +96,7 @@ OC.L10N.register( "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Remove" : "Remove", + "From" : "From", "To" : "To", "Add" : "Add", "Hostname to access ExApps" : "Hostname to access ExApps", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 67bd556a..fdf12bad 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -94,6 +94,7 @@ "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Remove" : "Remove", + "From" : "From", "To" : "To", "Add" : "Add", "Hostname to access ExApps" : "Hostname to access ExApps", diff --git a/l10n/eo.js b/l10n/eo.js index 988e609d..f0a54e87 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -5,6 +5,7 @@ OC.L10N.register( "Edit" : "Modifi", "Name" : "Nomo", "Host" : "Gastigo", + "From" : "De", "To" : "Al", "Display name" : "Vidiga nomo", "Disabled" : "Malkapabligita", diff --git a/l10n/eo.json b/l10n/eo.json index 978e04ea..790c38c7 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -3,6 +3,7 @@ "Edit" : "Modifi", "Name" : "Nomo", "Host" : "Gastigo", + "From" : "De", "To" : "Al", "Display name" : "Vidiga nomo", "Disabled" : "Malkapabligita", From b39d47e5856b2e4befdcf476adc522fd10ec90e1 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 10 May 2025 00:30:45 +0000 Subject: [PATCH 128/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 10 +++++----- l10n/de.json | 10 +++++----- l10n/de_DE.js | 12 ++++++------ l10n/de_DE.json | 12 ++++++------ 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index dd981061..a7571d4d 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -79,17 +79,17 @@ OC.L10N.register( "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", - "Check if the image is successfully pulled" : "Überprüfe, ob das Image erfolgreich abgerufen wurde", + "Check if the image is successfully pulled" : "Überprüfe, ob das Image abgerufen wurde", "Container started" : "Container gestartet", - "Check if the image successfully pulled and container is created and started" : "Überprüfe, ob das Image erfolgreich abgerufen und der Container erstellt und gestartet wurde", + "Check if the image successfully pulled and container is created and started" : "Überprüfe, ob das Image abgerufen und der Container erstellt und gestartet wurde", "Heartbeat" : "Herzschlag", "Check for the heartbeat is finished and healthy" : "Überprüfe, ob der Herzschlag vollendet und gesund ist", "Init step" : "Initialisierungsphase", "Wait for initialization step to finish" : "Warte bis die Initialisierungsphase abgeschlossen ist", "Enabled" : "Aktiviert", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis erfolgreich verarbeitet und alles ordnungsgemäß registriert hat", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis verarbeitet und alles ordnungsgemäß registriert hat", "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", - "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", + "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", @@ -127,7 +127,7 @@ OC.L10N.register( "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", diff --git a/l10n/de.json b/l10n/de.json index aa39f05e..da939e8b 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -77,17 +77,17 @@ "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", - "Check if the image is successfully pulled" : "Überprüfe, ob das Image erfolgreich abgerufen wurde", + "Check if the image is successfully pulled" : "Überprüfe, ob das Image abgerufen wurde", "Container started" : "Container gestartet", - "Check if the image successfully pulled and container is created and started" : "Überprüfe, ob das Image erfolgreich abgerufen und der Container erstellt und gestartet wurde", + "Check if the image successfully pulled and container is created and started" : "Überprüfe, ob das Image abgerufen und der Container erstellt und gestartet wurde", "Heartbeat" : "Herzschlag", "Check for the heartbeat is finished and healthy" : "Überprüfe, ob der Herzschlag vollendet und gesund ist", "Init step" : "Initialisierungsphase", "Wait for initialization step to finish" : "Warte bis die Initialisierungsphase abgeschlossen ist", "Enabled" : "Aktiviert", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis erfolgreich verarbeitet und alles ordnungsgemäß registriert hat", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis verarbeitet und alles ordnungsgemäß registriert hat", "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", - "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", + "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", @@ -125,7 +125,7 @@ "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index e5b3f7fb..bf4942f4 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -11,7 +11,7 @@ OC.L10N.register( "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", "Failed to enable ExApp" : "ExApp konnte nicht aktiviert werden", "Failed to disable ExApp" : "ExApp konnte nicht deaktiviert werden", - "Could not update ExApp" : "Konnte ExApp nicht aktualisieren.", + "Could not update ExApp" : "ExApp konnte nicht aktualisiert werden", "Error starting update of ExApp" : "Fehler beim Starten des Updates von ExApp", "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", "ExApp not found, failed to get logs" : "ExApp nicht gefunden, Protokolle konnten nicht abgerufen werden", @@ -79,17 +79,17 @@ OC.L10N.register( "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", - "Check if the image is successfully pulled" : "Überprüfen, ob das Image erfolgreich abgerufen wurde", + "Check if the image is successfully pulled" : "Überprüfen, ob das Image abgerufen wurde", "Container started" : "Container gestartet", - "Check if the image successfully pulled and container is created and started" : "Überprüfen, ob das Image erfolgreich abgerufen und der Container erstellt und gestartet wurde", + "Check if the image successfully pulled and container is created and started" : "Überprüfen, ob das Image abgerufen und der Container erstellt und gestartet wurde", "Heartbeat" : "Herzschlag", "Check for the heartbeat is finished and healthy" : "Überprüfen, ob der Herzschlag vollendet und gesund ist", "Init step" : "Initialisierungsphase", "Wait for initialization step to finish" : "Warten Sie, bis die Initialisierungsphase abgeschlossen ist", "Enabled" : "Aktiviert", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis erfolgreich verarbeitet und alles ordnungsgemäß registriert hat", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis verarbeitet und alles ordnungsgemäß registriert hat", "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", - "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", + "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", @@ -127,7 +127,7 @@ OC.L10N.register( "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 1f11dffd..6e61fdc4 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -9,7 +9,7 @@ "Could not perform installation of ExApp" : "Installation von ExApp konnte nicht durchgeführt werden", "Failed to enable ExApp" : "ExApp konnte nicht aktiviert werden", "Failed to disable ExApp" : "ExApp konnte nicht deaktiviert werden", - "Could not update ExApp" : "Konnte ExApp nicht aktualisieren.", + "Could not update ExApp" : "ExApp konnte nicht aktualisiert werden", "Error starting update of ExApp" : "Fehler beim Starten des Updates von ExApp", "Could not perform update of ExApp" : "Update von ExApp konnte nicht durchgeführt werden", "ExApp not found, failed to get logs" : "ExApp nicht gefunden, Protokolle konnten nicht abgerufen werden", @@ -77,17 +77,17 @@ "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", - "Check if the image is successfully pulled" : "Überprüfen, ob das Image erfolgreich abgerufen wurde", + "Check if the image is successfully pulled" : "Überprüfen, ob das Image abgerufen wurde", "Container started" : "Container gestartet", - "Check if the image successfully pulled and container is created and started" : "Überprüfen, ob das Image erfolgreich abgerufen und der Container erstellt und gestartet wurde", + "Check if the image successfully pulled and container is created and started" : "Überprüfen, ob das Image abgerufen und der Container erstellt und gestartet wurde", "Heartbeat" : "Herzschlag", "Check for the heartbeat is finished and healthy" : "Überprüfen, ob der Herzschlag vollendet und gesund ist", "Init step" : "Initialisierungsphase", "Wait for initialization step to finish" : "Warten Sie, bis die Initialisierungsphase abgeschlossen ist", "Enabled" : "Aktiviert", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis erfolgreich verarbeitet und alles ordnungsgemäß registriert hat", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Überprüfen, ob ExApp das aktivierte Ereignis verarbeitet und alles ordnungsgemäß registriert hat", "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", - "Deploy test passed successfully!" : "Bereitstellungstest erfolgreich bestanden!", + "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", @@ -125,7 +125,7 @@ "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", - "DaemonConfig successfully registered" : "Daemonkonfiguration erfolgreich registriert", + "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", From 984233b302246e98a35253d1a24d071d4426597e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 11 May 2025 00:30:22 +0000 Subject: [PATCH 129/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/en_GB.js | 19 +++++++++++++++++++ l10n/en_GB.json | 19 +++++++++++++++++++ l10n/zh_HK.js | 19 +++++++++++++++++++ l10n/zh_HK.json | 19 +++++++++++++++++++ 4 files changed, 76 insertions(+) diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 1d9845d0..cb7da6ce 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Error starting install of ExApp", "ExApp failed to register, check the NC logs" : "ExApp failed to register, check the NC logs", "ExApp not found, failed to get status" : "ExApp not found, failed to get status", + "Error adding Docker registry" : "Error adding Docker registry", + "Error removing Docker registry" : "Error removing Docker registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed.", "Could not perform installation of ExApp" : "Could not perform installation of ExApp", "Failed to enable ExApp" : "Failed to enable ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "Default", "Set as default" : "Set as default", "Test deploy" : "Test deploy", + "Docker registries" : "Docker registries", "Edit" : "Edit", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", @@ -60,6 +63,7 @@ OC.L10N.register( "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "ExApp direct communication (FRP disabled)", "Deploy config" : "Deploy config", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", @@ -95,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "Start Deploy test", "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Please enter a registry domain" : "Please enter a registry domain", + "From cannot be \"local\"" : "From cannot be \"local\"", + "This registry mapping already exists" : "This registry mapping already exists", + "From and To cannot be the same" : "From and To cannot be the same", + "Override Docker registries" : "Override Docker registries", + "Configure Docker registry override mappings for selected daemon." : "Configure Docker registry override mappings for selected daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing.", + "Image pull will be skipped" : "Image pull will be skipped", "Remove" : "Remove", + "No custom Docker registries configured" : "No custom Docker registries configured", + "Add registry override mapping" : "Add registry override mapping", "From" : "From", + "registry URL (e.g. ghcr.io)" : "registry URL (e.g. ghcr.io)", "To" : "To", + "registry URL (e.g. docker.io)" : "registry URL (e.g. docker.io)", "Add" : "Add", "Hostname to access ExApps" : "Hostname to access ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", @@ -140,6 +157,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", + "Disable FRP" : "Disable FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Additional option" : "Additional option", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index fdf12bad..f1c0066a 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Error starting install of ExApp", "ExApp failed to register, check the NC logs" : "ExApp failed to register, check the NC logs", "ExApp not found, failed to get status" : "ExApp not found, failed to get status", + "Error adding Docker registry" : "Error adding Docker registry", + "Error removing Docker registry" : "Error removing Docker registry", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed.", "Could not perform installation of ExApp" : "Could not perform installation of ExApp", "Failed to enable ExApp" : "Failed to enable ExApp", @@ -49,6 +51,7 @@ "Default" : "Default", "Set as default" : "Set as default", "Test deploy" : "Test deploy", + "Docker registries" : "Docker registries", "Edit" : "Edit", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", @@ -58,6 +61,7 @@ "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "ExApp direct communication (FRP disabled)", "Deploy config" : "Deploy config", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", @@ -93,9 +97,22 @@ "Start Deploy test" : "Start Deploy test", "Stop Deploy test" : "Stop Deploy test", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Please enter a registry domain" : "Please enter a registry domain", + "From cannot be \"local\"" : "From cannot be \"local\"", + "This registry mapping already exists" : "This registry mapping already exists", + "From and To cannot be the same" : "From and To cannot be the same", + "Override Docker registries" : "Override Docker registries", + "Configure Docker registry override mappings for selected daemon." : "Configure Docker registry override mappings for selected daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing.", + "Image pull will be skipped" : "Image pull will be skipped", "Remove" : "Remove", + "No custom Docker registries configured" : "No custom Docker registries configured", + "Add registry override mapping" : "Add registry override mapping", "From" : "From", + "registry URL (e.g. ghcr.io)" : "registry URL (e.g. ghcr.io)", "To" : "To", + "registry URL (e.g. docker.io)" : "registry URL (e.g. docker.io)", "Add" : "Add", "Hostname to access ExApps" : "Hostname to access ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", @@ -138,6 +155,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", + "Disable FRP" : "Disable FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Additional option" : "Additional option", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index a0d4e921..e2e5f92d 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "錯誤開始安裝 ExApp", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp, 無法獲取狀態", + "Error adding Docker registry" : "添加 Docker 註冊表時出錯", + "Error removing Docker registry" : "刪除 Docker 註冊表時出錯", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。無法提供額外信息。僅允許啟用/禁用和移除操作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝。", "Failed to enable ExApp" : "無法啟用 ExApp", @@ -51,6 +53,7 @@ OC.L10N.register( "Default" : "默認", "Set as default" : "設定為默認值", "Test deploy" : "測試部署", + "Docker registries" : "Docker 註冊表", "Edit" : "編輯", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", @@ -60,6 +63,7 @@ OC.L10N.register( "Name" : "名字", "Protocol" : "協定", "Host" : "主機", + "ExApp direct communication (FRP disabled)" : "ExApp 直接通信(FRP 已禁用)", "Deploy config" : "部署設定", "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", @@ -95,9 +99,22 @@ OC.L10N.register( "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Please enter a registry domain" : "請輸入註冊表域名", + "From cannot be \"local\"" : "來源不能是「本地」", + "This registry mapping already exists" : "此註冊表映射已存在", + "From and To cannot be the same" : "來源和目標不能相同", + "Override Docker registries" : "覆蓋 Docker 註冊表", + "Configure Docker registry override mappings for selected daemon." : "為選定的守護進程配置 Docker 註冊表覆蓋映射。", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "在部署過程中(映像拉取步驟),ExApp info.xml 中的匹配源註冊表將被覆蓋。", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", + "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", + "No custom Docker registries configured" : "未配置自定義 Docker 註冊表", + "Add registry override mapping" : "添加註冊表覆蓋映射", "From" : "從", + "registry URL (e.g. ghcr.io)" : "註冊表 URL(例如 ghcr.io)", "To" : "至", + "registry URL (e.g. docker.io)" : "註冊表 URL(例如 docker.io)", "Add" : "添加", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", @@ -140,6 +157,8 @@ OC.L10N.register( "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disable FRP" : "禁用 FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於高級設置的標誌。禁用 ExApps 和 HaRP 之間的 FRP 隧道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "附加選項", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 54d29163..2c24106b 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "錯誤開始安裝 ExApp", "ExApp failed to register, check the NC logs" : "ExApp 註冊失敗,請檢查 Nextcloud 紀錄檔", "ExApp not found, failed to get status" : "找不到 ExApp, 無法獲取狀態", + "Error adding Docker registry" : "添加 Docker 註冊表時出錯", + "Error removing Docker registry" : "刪除 Docker 註冊表時出錯", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "此應用程式未從 AppStore 安裝。無法提供額外信息。僅允許啟用/禁用和移除操作。", "Could not perform installation of ExApp" : "無法執行 ExApp 的安裝。", "Failed to enable ExApp" : "無法啟用 ExApp", @@ -49,6 +51,7 @@ "Default" : "默認", "Set as default" : "設定為默認值", "Test deploy" : "測試部署", + "Docker registries" : "Docker 註冊表", "Edit" : "編輯", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", @@ -58,6 +61,7 @@ "Name" : "名字", "Protocol" : "協定", "Host" : "主機", + "ExApp direct communication (FRP disabled)" : "ExApp 直接通信(FRP 已禁用)", "Deploy config" : "部署設定", "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", @@ -93,9 +97,22 @@ "Start Deploy test" : "開始部署測試", "Stop Deploy test" : "停止部署測試", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Please enter a registry domain" : "請輸入註冊表域名", + "From cannot be \"local\"" : "來源不能是「本地」", + "This registry mapping already exists" : "此註冊表映射已存在", + "From and To cannot be the same" : "來源和目標不能相同", + "Override Docker registries" : "覆蓋 Docker 註冊表", + "Configure Docker registry override mappings for selected daemon." : "為選定的守護進程配置 Docker 註冊表覆蓋映射。", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "在部署過程中(映像拉取步驟),ExApp info.xml 中的匹配源註冊表將被覆蓋。", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", + "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", + "No custom Docker registries configured" : "未配置自定義 Docker 註冊表", + "Add registry override mapping" : "添加註冊表覆蓋映射", "From" : "從", + "registry URL (e.g. ghcr.io)" : "註冊表 URL(例如 ghcr.io)", "To" : "至", + "registry URL (e.g. docker.io)" : "註冊表 URL(例如 docker.io)", "Add" : "添加", "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", @@ -138,6 +155,8 @@ "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", + "Disable FRP" : "禁用 FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於高級設置的標誌。禁用 ExApps 和 HaRP 之間的 FRP 隧道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Additional option" : "附加選項", From bee8bc5ede7ab377e0aad09d87bfc366d87f9839 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 13 May 2025 00:30:42 +0000 Subject: [PATCH 130/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 57cbb031..13188b8b 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -9,6 +9,7 @@ OC.L10N.register( "Edit" : "Redigeeri", "Name" : "Nimi", "Host" : "Host", + "Nextcloud URL" : "Nextcloudi võrguaadress", "Enabled" : "Sisse lülitatud", "Remove" : "Eemalda", "From" : "Saatja", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 5ff4247d..5ee538d1 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -7,6 +7,7 @@ "Edit" : "Redigeeri", "Name" : "Nimi", "Host" : "Host", + "Nextcloud URL" : "Nextcloudi võrguaadress", "Enabled" : "Sisse lülitatud", "Remove" : "Eemalda", "From" : "Saatja", From 0e5ab3e81f026000ed1a129f28ca4592850b5da5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 17 May 2025 00:31:08 +0000 Subject: [PATCH 131/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 76 ++++++++++++++++++++++++------------------------- l10n/pt_BR.json | 76 ++++++++++++++++++++++++------------------------- 2 files changed, 76 insertions(+), 76 deletions(-) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 39ea695a..5d15824b 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -7,7 +7,7 @@ OC.L10N.register( "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", "Error adding Docker registry" : "Erro ao adicionar o registro do Docker", "Error removing Docker registry" : "Erro ao remover o registro do Docker", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado na AppStore. Sem informações extras disponíveis. Somente ativar/desativar e remover ações são permitidas.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado da Loja de Aplicativos. Sem informações extras disponíveis. Somente ações de ativar/desativar e remover são permitidas.", "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", "Failed to disable ExApp" : "Falha ao desativar ExApp", @@ -15,27 +15,27 @@ OC.L10N.register( "Error starting update of ExApp" : "Erro ao iniciar a atualização do ExApp", "Could not perform update of ExApp" : "Não foi possível realizar a atualização do ExApp", "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter logs", - "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: o download do contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro:%s", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: O download de um contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro: %s", "ExApp not found, failed to get deploy options" : "ExApp não encontrado, falha ao obter opções de implantação", "AppAPI authentication failed" : "Falha na autenticação AppAPI", "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", - "AI Integration Team" : "Equipe de integração de IA", + "AI Integration Team" : "Equipe de Integração de IA", "ExApps Settings" : "Configurações de ExApps", - "AppAPI deploy daemon" : "Daemon de implantação de AppAPI", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O daemon de implantação padrão de AppAPI não está definido. Por favor, registre um daemon de implantação padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", - "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O daemon de implantação padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O daemon de implantação padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", + "AppAPI deploy daemon" : "Deploy daemon de AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O deploy daemon padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", - "External Apps management" : "Gestão de Aplicativos Externos", + "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", - "Deploy Daemons" : "Deploy de Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon orquestrador de ExApps", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Implante Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Daemon de Deploy Padrão não está acessível. Por favor, verifique sua configuração.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "empo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", @@ -47,7 +47,7 @@ OC.L10N.register( "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", "Cancel" : "Cancelar", "Delete" : "Excluir", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O Daemon de Implantação \"manual-install\" não pode ser definido como padrão", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O Deploy Daemon \"manual-install\" (instalação manual) não pode ser definido como padrão", "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", @@ -55,25 +55,25 @@ OC.L10N.register( "Test deploy" : "Implantação de teste", "Docker registries" : "Registros do Docker", "Edit" : "Editar", - "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", + "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Instalação manual do daemon geralmente usada para desenvolvimento. Não pode ser definido como daemon padrão.", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "O daemon de instalação manual é geralmente usado para desenvolvimento. Não pode ser definido como daemon padrão.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", - "Deploy config" : "Configuração de Implantação", + "Deploy config" : "Configuração de implantação", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", - "HaProxy password" : "Senha HaProxy", + "HaProxy password" : "Senha do HaProxy", "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", - "Registered Deploy daemons list" : "Lista de daemons de implantação registrados", - "No Deploy daemons configured" : "Nenhum daemon de implantação configurado", + "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", + "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registre ExApp no ​​Nextcloud", @@ -91,7 +91,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "Teste de implantação aprovado com sucesso!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", "More info" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", @@ -125,7 +125,7 @@ OC.L10N.register( "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", @@ -135,11 +135,11 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Edit Deploy Daemon" : "Editar Deploy Daemon", - "Register Deploy Daemon" : "Registrar Daemon de Deploy", + "Register Deploy Daemon" : "Registrar Deploy Daemon", "Daemon configuration template" : "Modelo de configuração do daemon", "Select daemon configuration template" : "Selecione o modelo de configuração do daemon", "Daemon registration form" : "Formulário de registro do Daemon", - "Unique Deploy Daemon Name" : "Nome exclusivo do Daemon de Deploy", + "Unique Deploy Daemon Name" : "Nome Exclusivo do Deploy Daemon", "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", @@ -160,21 +160,21 @@ OC.L10N.register( "Disable FRP" : "Desativar FRP", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", - "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", + "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", - "Option key (unique)" : "Chave de opção (exclusiva)", - "Option key (unique, e.g. my_key)" : "Chave de opção (exclusiva, por exemplo, my_key)", - "Option key is required" : "A chave de opção é necessária", + "Option key (unique)" : "Chave da opção (exclusiva)", + "Option key (unique, e.g. my_key)" : "Chave da opção (exclusiva, p. ex., my_key)", + "Option key is required" : "A chave da opção é obrigatória", "Option value" : "Valor da opção", "Option value is required" : "O valor da opção é obrigatório", "Confirm" : "Confirmar", "Save" : "Salvar", - "Register" : "Registro ", + "Register" : "Registrar", "Check connection" : "Verificar conexão", "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", - "{license}-licensed" : "{license}-licenciado", + "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", @@ -186,14 +186,14 @@ OC.L10N.register( "User documentation" : "Documentação do usuário", "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", - "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na Loja de Aplicativos. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", + "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado por sua assinatura atual do Nextcloud.", "Supported" : "Suportado", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", "Featured" : "Destaques", "Update to {update}" : "Atualizar para {update}", "All ExApps are up-to-date." : "Todos os ExApps estão na versão mais recente.", - "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", + "Default Deploy daemon is not accessible" : "O Deploy daemon padrão não está acessível", "Icon" : "Ícone", "Version" : "Versão", "Daemon" : "Daemon", @@ -204,8 +204,8 @@ OC.L10N.register( "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n aplicativos têm uma atualização disponível","%n aplicativos têm uma atualização disponível"], "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", - "Display Name" : "Nome", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Display Name" : "Nome de Exibição", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon do Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", @@ -227,13 +227,13 @@ OC.L10N.register( "Enable" : "Ativar", "Disable" : "Desativar", "Allow untested app" : "Permitir aplicativo não testado", - "Default Deploy daemon is not accessible. Please verify configuration" : "O daemon de deploy padrão não está acessível. Por favor, verifique a configuração.", + "Default Deploy daemon is not accessible. Please verify configuration" : "O Deploy daemon padrão não está acessível. Por favor, verifique a configuração.", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "O aplicativo será baixado da Loja de Aplicativos e implantado no Deploy Daemon padrão.", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Este aplicativo não está marcado como compatível com sua versão do Nextcloud. Se você continuar, ainda poderá instalar o aplicativo mas poderá não funcionar como esperado.", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Este aplicativo não está marcado como compatível com sua versão do Nextcloud. Se você continuar, ainda poderá instalar o aplicativo. Observe que o aplicativo poderá não funcionar como esperado.", "Your ExApps" : "Seus ExApps", "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", - "The app has been enabled but needs to be updated." : "O aplicativo foi habilitado, mas precisa ser atualizado.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável.", + "The app has been enabled but needs to be updated." : "O aplicativo foi ativado, mas precisa ser atualizado.", + "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser ativado porque torna o servidor instável.", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem o AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*" }, "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 1f71fc6a..666d8480 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -5,7 +5,7 @@ "ExApp not found, failed to get status" : "ExApp não encontrado, falha ao obter status", "Error adding Docker registry" : "Erro ao adicionar o registro do Docker", "Error removing Docker registry" : "Erro ao remover o registro do Docker", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado na AppStore. Sem informações extras disponíveis. Somente ativar/desativar e remover ações são permitidas.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está instalado da Loja de Aplicativos. Sem informações extras disponíveis. Somente ações de ativar/desativar e remover são permitidas.", "Could not perform installation of ExApp" : "Não foi possível realizar a instalação do ExApp", "Failed to enable ExApp" : "Falha ao habilitar ExApp", "Failed to disable ExApp" : "Falha ao desativar ExApp", @@ -13,27 +13,27 @@ "Error starting update of ExApp" : "Erro ao iniciar a atualização do ExApp", "Could not perform update of ExApp" : "Não foi possível realizar a atualização do ExApp", "ExApp not found, failed to get logs" : "ExApp não encontrado, falha ao obter logs", - "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: o download do contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro:%s", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Falha ao obter logs de contêiner. Observação: O download de um contêiner do Docker funciona apenas para contêineres com arquivo json ou driver de registro do journald. Erro: %s", "ExApp not found, failed to get deploy options" : "ExApp não encontrado, falha ao obter opções de implantação", "AppAPI authentication failed" : "Falha na autenticação AppAPI", "AppAPI ExApp notifier" : "Notificador AppAPI ExApp", "AppAPI" : "AppAPI", - "AI Integration Team" : "Equipe de integração de IA", + "AI Integration Team" : "Equipe de Integração de IA", "ExApps Settings" : "Configurações de ExApps", - "AppAPI deploy daemon" : "Daemon de implantação de AppAPI", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O daemon de implantação padrão de AppAPI não está definido. Por favor, registre um daemon de implantação padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", - "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O daemon de implantação padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O daemon de implantação padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", + "AppAPI deploy daemon" : "Deploy daemon de AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O deploy daemon padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", - "External Apps management" : "Gestão de Aplicativos Externos", + "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", - "Deploy Daemons" : "Deploy de Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon orquestrador de ExApps", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Implante Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Daemon de Deploy Padrão não está acessível. Por favor, verifique sua configuração.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "empo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", @@ -45,7 +45,7 @@ "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", "Cancel" : "Cancelar", "Delete" : "Excluir", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O Daemon de Implantação \"manual-install\" não pode ser definido como padrão", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O Deploy Daemon \"manual-install\" (instalação manual) não pode ser definido como padrão", "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", @@ -53,25 +53,25 @@ "Test deploy" : "Implantação de teste", "Docker registries" : "Registros do Docker", "Edit" : "Editar", - "Deploy daemon config details" : "Implantar detalhes de configuração do daemon", + "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Instalação manual do daemon geralmente usada para desenvolvimento. Não pode ser definido como daemon padrão.", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "O daemon de instalação manual é geralmente usado para desenvolvimento. Não pode ser definido como daemon padrão.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", - "Deploy config" : "Configuração de Implantação", + "Deploy config" : "Configuração de implantação", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", - "HaProxy password" : "Senha HaProxy", + "HaProxy password" : "Senha do HaProxy", "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", - "Registered Deploy daemons list" : "Lista de daemons de implantação registrados", - "No Deploy daemons configured" : "Nenhum daemon de implantação configurado", + "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", + "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registre ExApp no ​​Nextcloud", @@ -89,7 +89,7 @@ "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "Teste de implantação aprovado com sucesso!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão sendo aprovadas.", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", "More info" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", @@ -123,7 +123,7 @@ "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, a URL do Nextcloud deve ser HTTPS", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", @@ -133,11 +133,11 @@ "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Edit Deploy Daemon" : "Editar Deploy Daemon", - "Register Deploy Daemon" : "Registrar Daemon de Deploy", + "Register Deploy Daemon" : "Registrar Deploy Daemon", "Daemon configuration template" : "Modelo de configuração do daemon", "Select daemon configuration template" : "Selecione o modelo de configuração do daemon", "Daemon registration form" : "Formulário de registro do Daemon", - "Unique Deploy Daemon Name" : "Nome exclusivo do Daemon de Deploy", + "Unique Deploy Daemon Name" : "Nome Exclusivo do Deploy Daemon", "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", @@ -158,21 +158,21 @@ "Disable FRP" : "Desativar FRP", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", - "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de \"ex-app\" deve ser definida", + "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", - "Option key (unique)" : "Chave de opção (exclusiva)", - "Option key (unique, e.g. my_key)" : "Chave de opção (exclusiva, por exemplo, my_key)", - "Option key is required" : "A chave de opção é necessária", + "Option key (unique)" : "Chave da opção (exclusiva)", + "Option key (unique, e.g. my_key)" : "Chave da opção (exclusiva, p. ex., my_key)", + "Option key is required" : "A chave da opção é obrigatória", "Option value" : "Valor da opção", "Option value is required" : "O valor da opção é obrigatório", "Confirm" : "Confirmar", "Save" : "Salvar", - "Register" : "Registro ", + "Register" : "Registrar", "Check connection" : "Verificar conexão", "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", - "{license}-licensed" : "{license}-licenciado", + "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", @@ -184,14 +184,14 @@ "User documentation" : "Documentação do usuário", "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na AppStore. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", - "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado pela sua assinatura atual do Nextcloud.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Este aplicativo não está registrado na Loja de Aplicativos. Nenhuma informação extra disponível. Somente ações de ativar/desativar e remover são permitidas.", + "This app is supported via your current Nextcloud subscription." : "Este aplicativo é suportado por sua assinatura atual do Nextcloud.", "Supported" : "Suportado", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos em destaque são desenvolvidos pela comunidade. Eles oferecem funcionalidade central e estão prontos para uso em produção.", "Featured" : "Destaques", "Update to {update}" : "Atualizar para {update}", "All ExApps are up-to-date." : "Todos os ExApps estão na versão mais recente.", - "Default Deploy daemon is not accessible" : "O Daemon de Deploy padrão não está acessível.", + "Default Deploy daemon is not accessible" : "O Deploy daemon padrão não está acessível", "Icon" : "Ícone", "Version" : "Versão", "Daemon" : "Daemon", @@ -202,8 +202,8 @@ "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n aplicativos têm uma atualização disponível","%n aplicativos têm uma atualização disponível"], "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], "Type" : "Tipo", - "Display Name" : "Nome", - "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon Docker (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Display Name" : "Nome de Exibição", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon do Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", @@ -225,13 +225,13 @@ "Enable" : "Ativar", "Disable" : "Desativar", "Allow untested app" : "Permitir aplicativo não testado", - "Default Deploy daemon is not accessible. Please verify configuration" : "O daemon de deploy padrão não está acessível. Por favor, verifique a configuração.", + "Default Deploy daemon is not accessible. Please verify configuration" : "O Deploy daemon padrão não está acessível. Por favor, verifique a configuração.", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "O aplicativo será baixado da Loja de Aplicativos e implantado no Deploy Daemon padrão.", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Este aplicativo não está marcado como compatível com sua versão do Nextcloud. Se você continuar, ainda poderá instalar o aplicativo mas poderá não funcionar como esperado.", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Este aplicativo não está marcado como compatível com sua versão do Nextcloud. Se você continuar, ainda poderá instalar o aplicativo. Observe que o aplicativo poderá não funcionar como esperado.", "Your ExApps" : "Seus ExApps", "An error occurred during the request. Unable to proceed." : "Ocorreu um erro durante a solicitação. Não foi possível prosseguir.", - "The app has been enabled but needs to be updated." : "O aplicativo foi habilitado, mas precisa ser atualizado.", - "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser habilitado pois torna o servidor instável.", + "The app has been enabled but needs to be updated." : "O aplicativo foi ativado, mas precisa ser atualizado.", + "Error: This app cannot be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser ativado porque torna o servidor instável.", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n\n### Lista de aplicativos que requerem o AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Se você deseja desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file From b7c6e7534b7895be5f95cb6c0c53563f2cc3fa20 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 18 May 2025 00:30:22 +0000 Subject: [PATCH 132/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 13188b8b..59b05775 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -22,6 +22,7 @@ OC.L10N.register( "Register" : "Registreeru", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", + "Delete data on remove" : "Eemaldamisel kustuta andmed", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 5ee538d1..9285d796 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -20,6 +20,7 @@ "Register" : "Registreeru", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", + "Delete data on remove" : "Eemaldamisel kustuta andmed", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud minimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Sellel rakendusel pole määratud maksimaalset Nextcloudi versiooni. See põhjustab tulevikus veateateid.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Seda rakendust ei saa paigaldada, sest järgmised sõltuvusel ei ole täidetud:", From 6560cd6b333d1c69c84fbbdc782b84a1794ecec3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 20 May 2025 00:30:08 +0000 Subject: [PATCH 133/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 3 +++ l10n/et_EE.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 59b05775..d9590f3f 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Cancel" : "Tühista", "Delete" : "Kustuta", + "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", "Edit" : "Redigeeri", "Name" : "Nimi", @@ -15,11 +16,13 @@ OC.L10N.register( "From" : "Saatja", "To" : "Saaja", "Add" : "Lisa", + "URL should start with http:// or https://" : "Võrguaadressi alguses peab olema kas http:// või https://", "Display name" : "Kuvatav nimi", "Disabled" : "Välja lülitatud", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", + "Check connection" : "Kontrolli ühenduse toimimist", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", "Delete data on remove" : "Eemaldamisel kustuta andmed", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 9285d796..6e87e7fd 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Cancel" : "Tühista", "Delete" : "Kustuta", + "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", "Edit" : "Redigeeri", "Name" : "Nimi", @@ -13,11 +14,13 @@ "From" : "Saatja", "To" : "Saaja", "Add" : "Lisa", + "URL should start with http:// or https://" : "Võrguaadressi alguses peab olema kas http:// või https://", "Display name" : "Kuvatav nimi", "Disabled" : "Välja lülitatud", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", + "Check connection" : "Kontrolli ühenduse toimimist", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", "Delete data on remove" : "Eemaldamisel kustuta andmed", From fd50868f2936deb747c1567bf94a3c05a140cf20 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 24 May 2025 00:29:46 +0000 Subject: [PATCH 134/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 3 +++ l10n/et_EE.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index d9590f3f..6ad07573 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -8,6 +8,7 @@ OC.L10N.register( "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", "Edit" : "Redigeeri", + "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Name" : "Nimi", "Host" : "Host", "Nextcloud URL" : "Nextcloudi võrguaadress", @@ -39,6 +40,7 @@ OC.L10N.register( "Supported" : "Toetatud", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esiletõstetud rakendusi arendatakse kogukonna poolt. Nad pakuvad võimalust kasutada olulist funktsionaalsust ning on sobilikud igapäevaseks kasutuseks.", "Featured" : "Esile tõstetud", + "Default Deploy daemon is not accessible" : "Kasutuselevõtmise taustateenus pole leitav", "Icon" : "Ikoon", "Version" : "Versioon", "Level" : "Tase", @@ -57,6 +59,7 @@ OC.L10N.register( "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", "Supported apps" : "Toetatud rakendused", + "Deploy and Enable" : "Võta kasutusele ja lülita sisse", "Enable" : "Lülita sisse", "Disable" : "Lülita välja", "Allow untested app" : "Luba testimata rakenduse kasutamine", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 6e87e7fd..a4a79fcc 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -6,6 +6,7 @@ "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", "Edit" : "Redigeeri", + "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Name" : "Nimi", "Host" : "Host", "Nextcloud URL" : "Nextcloudi võrguaadress", @@ -37,6 +38,7 @@ "Supported" : "Toetatud", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esiletõstetud rakendusi arendatakse kogukonna poolt. Nad pakuvad võimalust kasutada olulist funktsionaalsust ning on sobilikud igapäevaseks kasutuseks.", "Featured" : "Esile tõstetud", + "Default Deploy daemon is not accessible" : "Kasutuselevõtmise taustateenus pole leitav", "Icon" : "Ikoon", "Version" : "Versioon", "Level" : "Tase", @@ -55,6 +57,7 @@ "Updates" : "Uuendused", "Featured apps" : "Esiletõstetud rakendused", "Supported apps" : "Toetatud rakendused", + "Deploy and Enable" : "Võta kasutusele ja lülita sisse", "Enable" : "Lülita sisse", "Disable" : "Lülita välja", "Allow untested app" : "Luba testimata rakenduse kasutamine", From 558ce5e55b8a0d3739854698170807bb9bb63d29 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 25 May 2025 00:29:33 +0000 Subject: [PATCH 135/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 3 ++- l10n/et_EE.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 6ad07573..e9ee4a3f 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -63,6 +63,7 @@ OC.L10N.register( "Enable" : "Lülita sisse", "Disable" : "Lülita välja", "Allow untested app" : "Luba testimata rakenduse kasutamine", - "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik." + "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik.", + "Error: This app cannot be enabled because it makes the server unstable" : "Viga: Kuna ta muudaks selle serveri mittetöökindlaks, siis seda rakendust ei saa sisse lülitada" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index a4a79fcc..82a3c739 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -61,6 +61,7 @@ "Enable" : "Lülita sisse", "Disable" : "Lülita välja", "Allow untested app" : "Luba testimata rakenduse kasutamine", - "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik." + "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik.", + "Error: This app cannot be enabled because it makes the server unstable" : "Viga: Kuna ta muudaks selle serveri mittetöökindlaks, siis seda rakendust ei saa sisse lülitada" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From ebf277e5e42bbdd8b2b9a016f5c8078f0df0ba93 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 30 May 2025 00:29:39 +0000 Subject: [PATCH 136/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 6 +++--- l10n/pt_BR.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 5d15824b..dad1b955 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -76,8 +76,8 @@ OC.L10N.register( "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", "Register Daemon" : "Registrar Daemon", - "Register ExApp in Nextcloud" : "Registre ExApp no ​​Nextcloud", - "Check if the ExApp is registered in Nextcloud before deployment" : "Verifique se o ExApp está registrado no Nextcloud antes da implantação", + "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Extração de imagem", "Check if the image is successfully pulled" : "Verifique se a imagem foi extraída com sucesso", "Container started" : "Contêiner iniciado", @@ -144,7 +144,7 @@ OC.L10N.register( "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", "HaRP host" : "Host HaRP", - "Daemon host" : "Daemon host", + "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 666d8480..0f15d116 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -74,8 +74,8 @@ "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", "Register Daemon" : "Registrar Daemon", - "Register ExApp in Nextcloud" : "Registre ExApp no ​​Nextcloud", - "Check if the ExApp is registered in Nextcloud before deployment" : "Verifique se o ExApp está registrado no Nextcloud antes da implantação", + "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Extração de imagem", "Check if the image is successfully pulled" : "Verifique se a imagem foi extraída com sucesso", "Container started" : "Contêiner iniciado", @@ -142,7 +142,7 @@ "Deployment method" : "Método de implantação", "Select daemon deploy method" : "Selecione o método de implantação do daemon", "HaRP host" : "Host HaRP", - "Daemon host" : "Daemon host", + "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "Set daemon as default" : "Definir daemon como padrão", From 88717ae560881d4270261806d33bd8d9506f13b3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 31 May 2025 00:29:48 +0000 Subject: [PATCH 137/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 48 ++++++++++++++++++++++++------------------------ l10n/pt_BR.json | 48 ++++++++++++++++++++++++------------------------ 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index dad1b955..d3e27e2e 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -37,11 +37,11 @@ OC.L10N.register( "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", - "ExApp initialization process timeout after which AppAPI will mark it as failed" : "empo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, por exemplo. 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", - "This settings changes are reflected only for newly created containers" : "Essas alterações nas configurações são refletidas apenas para contêineres recém-criados", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", + "This settings changes are reflected only for newly created containers" : "Estas alterações nas configurações são refletidas apenas para contêineres recém-criados", "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", @@ -62,7 +62,7 @@ OC.L10N.register( "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", - "Host" : "Servidor", + "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", "Deploy config" : "Configuração de implantação", "Docker network" : "Rede Docker", @@ -78,27 +78,27 @@ OC.L10N.register( "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", - "Image pull" : "Extração de imagem", - "Check if the image is successfully pulled" : "Verifique se a imagem foi extraída com sucesso", + "Image pull" : "Image pull", + "Check if the image is successfully pulled" : "Verifique se o pull da imagem terminou com sucesso", "Container started" : "Contêiner iniciado", - "Check if the image successfully pulled and container is created and started" : "Verifique se a imagem extraída com sucesso e o contêiner foi criado e iniciado", + "Check if the image successfully pulled and container is created and started" : "Verifique se o pull da imagem terminou com sucesso e o contêiner foi criado e iniciado", "Heartbeat" : "Heartbeat", - "Check for the heartbeat is finished and healthy" : "Verifique se o batimento cardíaco está finalizado e saudável", - "Init step" : "Etapa inicial", - "Wait for initialization step to finish" : "Aguarde a conclusão da etapa de inicialização", - "Enabled" : "Habilitada", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Verifique se o ExApp tratou com sucesso o evento habilitado e registrou tudo corretamente", + "Check for the heartbeat is finished and healthy" : "Verifique se o heartbeat está finalizado e saudável", + "Init step" : "Etapa de inicialização", + "Wait for initialization step to finish" : "Aguardar a conclusão da etapa de inicialização", + "Enabled" : "Ativado", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Verifique se o ExApp tratou com sucesso o evento ativado e registrou tudo corretamente", "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", - "Deploy test passed successfully!" : "Teste de implantação aprovado com sucesso!", + "Deploy test passed successfully!" : "O teste de implantação foi concluído com êxito!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", + "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser concluídas para sucesso:", "More info" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", "Remove test ExApp" : "Remover ExApp de teste", "Start Deploy test" : "Iniciar teste de Implantação", "Stop Deploy test" : "Parar teste de Implantação", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp está desregistrado e o contêiner é removido em \"Parar teste de implantação\"", "Please enter a registry domain" : "Por favor, digite um domínio de registro", "From cannot be \"local\"" : "De não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", @@ -117,8 +117,8 @@ OC.L10N.register( "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, p. ex., {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", @@ -126,7 +126,7 @@ OC.L10N.register( "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", @@ -154,11 +154,11 @@ OC.L10N.register( "Hide deploy config" : "Ocultar configuração de deploy", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", "Disable FRP" : "Desativar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Additional option" : "Opção adicional", @@ -177,9 +177,9 @@ OC.L10N.register( "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não tem uma versão mínima do Nextcloud atribuída. Isso será um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não tem uma versão máxima do Nextcloud atribuída. Isso será um erro no futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado porque as seguintes dependências não foram atendidas:", "View in store" : "Ver na loja", "Visit website" : "Visitar site", "Report a bug" : "Relatar um problema", @@ -206,7 +206,7 @@ OC.L10N.register( "Type" : "Tipo", "Display Name" : "Nome de Exibição", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon do Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", + "With https enabled network is set to host" : "Com https habilitado, a rede é definida como host", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", "by {author}\n{license}" : "por {author}\n{license}", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 0f15d116..f387dada 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -35,11 +35,11 @@ "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", - "ExApp initialization process timeout after which AppAPI will mark it as failed" : "empo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, por exemplo. 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", - "This settings changes are reflected only for newly created containers" : "Essas alterações nas configurações são refletidas apenas para contêineres recém-criados", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", + "This settings changes are reflected only for newly created containers" : "Estas alterações nas configurações são refletidas apenas para contêineres recém-criados", "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", @@ -60,7 +60,7 @@ "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", - "Host" : "Servidor", + "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", "Deploy config" : "Configuração de implantação", "Docker network" : "Rede Docker", @@ -76,27 +76,27 @@ "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", - "Image pull" : "Extração de imagem", - "Check if the image is successfully pulled" : "Verifique se a imagem foi extraída com sucesso", + "Image pull" : "Image pull", + "Check if the image is successfully pulled" : "Verifique se o pull da imagem terminou com sucesso", "Container started" : "Contêiner iniciado", - "Check if the image successfully pulled and container is created and started" : "Verifique se a imagem extraída com sucesso e o contêiner foi criado e iniciado", + "Check if the image successfully pulled and container is created and started" : "Verifique se o pull da imagem terminou com sucesso e o contêiner foi criado e iniciado", "Heartbeat" : "Heartbeat", - "Check for the heartbeat is finished and healthy" : "Verifique se o batimento cardíaco está finalizado e saudável", - "Init step" : "Etapa inicial", - "Wait for initialization step to finish" : "Aguarde a conclusão da etapa de inicialização", - "Enabled" : "Habilitada", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Verifique se o ExApp tratou com sucesso o evento habilitado e registrou tudo corretamente", + "Check for the heartbeat is finished and healthy" : "Verifique se o heartbeat está finalizado e saudável", + "Init step" : "Etapa de inicialização", + "Wait for initialization step to finish" : "Aguardar a conclusão da etapa de inicialização", + "Enabled" : "Ativado", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Verifique se o ExApp tratou com sucesso o evento ativado e registrou tudo corretamente", "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", - "Deploy test passed successfully!" : "Teste de implantação aprovado com sucesso!", + "Deploy test passed successfully!" : "O teste de implantação foi concluído com êxito!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser aprovadas para serem bem-sucedidas:", + "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser concluídas para sucesso:", "More info" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", "Remove test ExApp" : "Remover ExApp de teste", "Start Deploy test" : "Iniciar teste de Implantação", "Stop Deploy test" : "Parar teste de Implantação", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp não está registrado e o contêiner é removido em \"Parar teste de implantação\"", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp está desregistrado e o contêiner é removido em \"Parar teste de implantação\"", "Please enter a registry domain" : "Por favor, digite um domínio de registro", "From cannot be \"local\"" : "De não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", @@ -115,8 +115,8 @@ "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, por exemplo, {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (por exemplo, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, p. ex., {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Daemon com este nome já existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", @@ -124,7 +124,7 @@ "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", @@ -152,11 +152,11 @@ "Hide deploy config" : "Ocultar configuração de deploy", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede de Docker'.", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", "Disable FRP" : "Desativar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Additional option" : "Opção adicional", @@ -175,9 +175,9 @@ "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", - "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não tem uma versão mínima do Nextcloud atribuída. Isso será um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não tem uma versão máxima do Nextcloud atribuída. Isso será um erro no futuro.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado porque as seguintes dependências não foram atendidas:", "View in store" : "Ver na loja", "Visit website" : "Visitar site", "Report a bug" : "Relatar um problema", @@ -204,7 +204,7 @@ "Type" : "Tipo", "Display Name" : "Nome de Exibição", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon do Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "With https enabled network is set to host" : "Com https habilitado, a rede está configurada para hospedar", + "With https enabled network is set to host" : "Com https habilitado, a rede é definida como host", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", "by {author}\n{license}" : "por {author}\n{license}", From 4eb72933a5979e3cfc9f43142d0cd535e5b70626 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 5 Jun 2025 00:30:12 +0000 Subject: [PATCH 138/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/af.js | 1 + l10n/af.json | 1 + l10n/az.js | 1 + l10n/az.json | 1 + l10n/cy_GB.js | 1 + l10n/cy_GB.json | 1 + l10n/eo.js | 1 + l10n/eo.json | 1 + l10n/es_419.js | 1 + l10n/es_419.json | 1 + l10n/es_AR.js | 1 + l10n/es_AR.json | 1 + l10n/es_CL.js | 1 + l10n/es_CL.json | 1 + l10n/es_CO.js | 1 + l10n/es_CO.json | 1 + l10n/es_CR.js | 1 + l10n/es_CR.json | 1 + l10n/es_DO.js | 1 + l10n/es_DO.json | 1 + l10n/es_GT.js | 1 + l10n/es_GT.json | 1 + l10n/es_HN.js | 1 + l10n/es_HN.json | 1 + l10n/es_NI.js | 1 + l10n/es_NI.json | 1 + l10n/es_PA.js | 1 + l10n/es_PA.json | 1 + l10n/es_PE.js | 1 + l10n/es_PE.json | 1 + l10n/es_PR.js | 1 + l10n/es_PR.json | 1 + l10n/es_PY.js | 1 + l10n/es_PY.json | 1 + l10n/es_SV.js | 1 + l10n/es_SV.json | 1 + l10n/es_UY.js | 1 + l10n/es_UY.json | 1 + l10n/ia.js | 1 + l10n/ia.json | 1 + l10n/kab.js | 1 + l10n/kab.json | 1 + l10n/lb.js | 1 + l10n/lb.json | 1 + l10n/nn_NO.js | 1 + l10n/nn_NO.json | 1 + l10n/tr.js | 24 ++++++++++++------------ l10n/tr.json | 24 ++++++++++++------------ 48 files changed, 70 insertions(+), 24 deletions(-) diff --git a/l10n/af.js b/l10n/af.js index 95e49af9..4527cf25 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Skrap", "Host" : "Gasheer", "From" : "Van", diff --git a/l10n/af.json b/l10n/af.json index c7680a0e..3456ab55 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Skrap", "Host" : "Gasheer", "From" : "Van", diff --git a/l10n/az.js b/l10n/az.js index 3ffbf572..0bfd60b3 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Sil", "Edit" : "Dəyişiklik et", "Name" : "Ad", diff --git a/l10n/az.json b/l10n/az.json index ec38f3c1..31e95e66 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Sil", "Edit" : "Dəyişiklik et", "Name" : "Ad", diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js index becdbe28..e6d3f681 100644 --- a/l10n/cy_GB.js +++ b/l10n/cy_GB.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Dileu", "Edit" : "Golygu", "Name" : "Enw", diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json index 3f120e3c..53b5290c 100644 --- a/l10n/cy_GB.json +++ b/l10n/cy_GB.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Dileu", "Edit" : "Golygu", "Name" : "Enw", diff --git a/l10n/eo.js b/l10n/eo.js index f0a54e87..8a141d68 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Forigi", "Edit" : "Modifi", "Name" : "Nomo", diff --git a/l10n/eo.json b/l10n/eo.json index 790c38c7..bcfaf42f 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Forigi", "Edit" : "Modifi", "Name" : "Nomo", diff --git a/l10n/es_419.js b/l10n/es_419.js index 535970ec..52e7a5b5 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_419.json b/l10n/es_419.json index 777dcfb9..ce63fee5 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index d122c007..44bf53b7 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Eliminar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index 4b7ee3c1..859b23e3 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Eliminar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_CL.js b/l10n/es_CL.js index 044bc75e..997c2261 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 6c741d7e..8fbf65e6 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_CO.js b/l10n/es_CO.js index b842ba0b..4a65f6f5 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 6c2d5a7a..6b206653 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_CR.js b/l10n/es_CR.js index b80b9c39..3c9e5e11 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_CR.json b/l10n/es_CR.json index c4bc6c04..5a2f6cd1 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_DO.js b/l10n/es_DO.js index a283a96f..dcbfc7bf 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_DO.json b/l10n/es_DO.json index caab66f5..4412119c 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index 24ab8be0..e1c36d93 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_GT.json b/l10n/es_GT.json index ed205c7b..843e78cd 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_HN.js b/l10n/es_HN.js index b842ba0b..4a65f6f5 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_HN.json b/l10n/es_HN.json index 6c2d5a7a..6b206653 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_NI.js b/l10n/es_NI.js index fc8e09b3..5feeb2fd 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_NI.json b/l10n/es_NI.json index b51f513c..c258e1ad 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PA.js b/l10n/es_PA.js index fc8e09b3..5feeb2fd 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PA.json b/l10n/es_PA.json index b51f513c..c258e1ad 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PE.js b/l10n/es_PE.js index fc8e09b3..5feeb2fd 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PE.json b/l10n/es_PE.json index b51f513c..c258e1ad 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PR.js b/l10n/es_PR.js index fc8e09b3..5feeb2fd 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PR.json b/l10n/es_PR.json index b51f513c..c258e1ad 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PY.js b/l10n/es_PY.js index fc8e09b3..5feeb2fd 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_PY.json b/l10n/es_PY.json index b51f513c..c258e1ad 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_SV.js b/l10n/es_SV.js index b842ba0b..4a65f6f5 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_SV.json b/l10n/es_SV.json index 6c2d5a7a..6b206653 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_UY.js b/l10n/es_UY.js index fc8e09b3..5feeb2fd 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/es_UY.json b/l10n/es_UY.json index b51f513c..c258e1ad 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", "Name" : "Nombre", diff --git a/l10n/ia.js b/l10n/ia.js index d0141e96..199d7dfe 100644 --- a/l10n/ia.js +++ b/l10n/ia.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Deler", "Edit" : "Modificar", "Host" : "Hospite", diff --git a/l10n/ia.json b/l10n/ia.json index 6275d553..8db87f58 100644 --- a/l10n/ia.json +++ b/l10n/ia.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Deler", "Edit" : "Modificar", "Host" : "Hospite", diff --git a/l10n/kab.js b/l10n/kab.js index 6bfdb6ee..5f9500ec 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Kkes", "Default" : "Prédéfini(e)", "Edit" : "Ẓreg", diff --git a/l10n/kab.json b/l10n/kab.json index c057e7a8..ba4bfb99 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Kkes", "Default" : "Prédéfini(e)", "Edit" : "Ẓreg", diff --git a/l10n/lb.js b/l10n/lb.js index ec2a039d..647c5800 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Läschen", "Edit" : "Änneren", "Name" : "Numm", diff --git a/l10n/lb.json b/l10n/lb.json index 28c239be..33b3990a 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Läschen", "Edit" : "Änneren", "Name" : "Numm", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index 8629905a..73692f78 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -1,6 +1,7 @@ OC.L10N.register( "app_api", { + "Cancel" : "Cancel", "Delete" : "Slett", "Edit" : "Rediger", "Name" : "Namn", diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index 28b8064b..7b601cc7 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -1,4 +1,5 @@ { "translations": { + "Cancel" : "Cancel", "Delete" : "Slett", "Edit" : "Rediger", "Name" : "Namn", diff --git a/l10n/tr.js b/l10n/tr.js index 53c58f65..5a8524ef 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -7,10 +7,10 @@ OC.L10N.register( "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", "Error adding Docker registry" : "Docker kaydı eklenirken sorun çıktı", "Error removing Docker registry" : "Docker kaydı kaldırılırken sorun çıktı", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", - "Failed to enable ExApp" : "ExApp kullanıma alınamadı", - "Failed to disable ExApp" : "ExApp kullanımdan kaldırılamadı", + "Failed to enable ExApp" : "ExApp etkinleştirilemedi", + "Failed to disable ExApp" : "ExApp devre dışı bırakılamadı", "Could not update ExApp" : "ExApp güncellenemedi", "Error starting update of ExApp" : "ExApp güncellemesi başlatılırken sorun çıktı", "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", @@ -87,7 +87,7 @@ OC.L10N.register( "Init step" : "Başlatma adımı", "Wait for initialization step to finish" : "Tamamlamak için başlatma adımını bekler", "Enabled" : "Kullanılıyor", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Kullanıma alınmış olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Etkinleştirilmiş olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", @@ -126,7 +126,7 @@ OC.L10N.register( "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", @@ -159,7 +159,7 @@ OC.L10N.register( "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", - "Disabled" : "Kullanımdan kaldırılmış", + "Disabled" : "Devre Dışı", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", @@ -186,7 +186,7 @@ OC.L10N.register( "User documentation" : "Kullanıcı belgeleri", "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", @@ -215,7 +215,7 @@ OC.L10N.register( "Details" : "Ayrıntılar", "Changelog" : "Değişiklik günlüğü", "Active apps" : "Etkin uygulamalar", - "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", + "Disabled apps" : "Devre dışı uygulamalar", "Updates" : "Güncellemeler", "Featured apps" : "Öne çıkarılmış uygulamalar", "Supported apps" : "Desteklenen uygulamalar", @@ -223,8 +223,8 @@ OC.L10N.register( "{progress}% Deploying" : "Hazırlanıyor %{progress}", "{progress}% Initializing" : "%{progress} hazırlandı", "Healthchecking" : "Sağlık denetleniyor", - "Deploy and Enable" : "Dağıt ve kullanıma al", - "Enable" : "Kullanıma al", + "Deploy and Enable" : "Dağıt ve Etkinleştir", + "Enable" : "Etkinleştir", "Disable" : "Kullanımdan kaldır", "Allow untested app" : "Denenmemiş uygulamalar kullanılabilsin", "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", @@ -232,8 +232,8 @@ OC.L10N.register( "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", "Your ExApps" : "ExApp bileşenleriniz", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", + "The app has been enabled but needs to be updated." : "Uygulama etkinleştirilmiş ancak güncellenmesi gerekiyor.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 71f20f92..2f3be5c3 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -5,10 +5,10 @@ "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", "Error adding Docker registry" : "Docker kaydı eklenirken sorun çıktı", "Error removing Docker registry" : "Docker kaydı kaldırılırken sorun çıktı", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", - "Failed to enable ExApp" : "ExApp kullanıma alınamadı", - "Failed to disable ExApp" : "ExApp kullanımdan kaldırılamadı", + "Failed to enable ExApp" : "ExApp etkinleştirilemedi", + "Failed to disable ExApp" : "ExApp devre dışı bırakılamadı", "Could not update ExApp" : "ExApp güncellenemedi", "Error starting update of ExApp" : "ExApp güncellemesi başlatılırken sorun çıktı", "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", @@ -85,7 +85,7 @@ "Init step" : "Başlatma adımı", "Wait for initialization step to finish" : "Tamamlamak için başlatma adımını bekler", "Enabled" : "Kullanılıyor", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Kullanıma alınmış olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Etkinleştirilmiş olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", @@ -124,7 +124,7 @@ "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", @@ -157,7 +157,7 @@ "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", - "Disabled" : "Kullanımdan kaldırılmış", + "Disabled" : "Devre Dışı", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", @@ -184,7 +184,7 @@ "User documentation" : "Kullanıcı belgeleri", "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", @@ -213,7 +213,7 @@ "Details" : "Ayrıntılar", "Changelog" : "Değişiklik günlüğü", "Active apps" : "Etkin uygulamalar", - "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", + "Disabled apps" : "Devre dışı uygulamalar", "Updates" : "Güncellemeler", "Featured apps" : "Öne çıkarılmış uygulamalar", "Supported apps" : "Desteklenen uygulamalar", @@ -221,8 +221,8 @@ "{progress}% Deploying" : "Hazırlanıyor %{progress}", "{progress}% Initializing" : "%{progress} hazırlandı", "Healthchecking" : "Sağlık denetleniyor", - "Deploy and Enable" : "Dağıt ve kullanıma al", - "Enable" : "Kullanıma al", + "Deploy and Enable" : "Dağıt ve Etkinleştir", + "Enable" : "Etkinleştir", "Disable" : "Kullanımdan kaldır", "Allow untested app" : "Denenmemiş uygulamalar kullanılabilsin", "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", @@ -230,8 +230,8 @@ "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", "Your ExApps" : "ExApp bileşenleriniz", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated." : "Uygulama kullanıma alınmış ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", + "The app has been enabled but needs to be updated." : "Uygulama etkinleştirilmiş ancak güncellenmesi gerekiyor.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file From ce4ac78d1f18c2f13705a01fac4040d88f242346 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 6 Jun 2025 00:31:06 +0000 Subject: [PATCH 139/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pl.js | 2 +- l10n/pl.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/pl.js b/l10n/pl.js index 6db986ad..80d910e8 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -101,7 +101,7 @@ OC.L10N.register( "Deploy and Enable" : "Wdróż i włącz", "Enable" : "Włącz", "Disable" : "Wyłącz", - "Allow untested app" : "Zezwól na nietestowane aplikacje", + "Allow untested app" : "Zezwalaj na nietestowane aplikacje", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ta aplikacja jest niezgodna z wersją Nextcloud. Przy dalszej kontynuacji, możesz pozwolić na zainstalowanie tej aplikacji. Pamiętaj, że aplikacja może nie działać zgodnie z oczekiwaniami.", "Your ExApps" : "Twoje ExApps", "An error occurred during the request. Unable to proceed." : "Wystąpił błąd podczas żądania. Nie można kontynuować.", diff --git a/l10n/pl.json b/l10n/pl.json index 43b48264..60e8a5eb 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -99,7 +99,7 @@ "Deploy and Enable" : "Wdróż i włącz", "Enable" : "Włącz", "Disable" : "Wyłącz", - "Allow untested app" : "Zezwól na nietestowane aplikacje", + "Allow untested app" : "Zezwalaj na nietestowane aplikacje", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ta aplikacja jest niezgodna z wersją Nextcloud. Przy dalszej kontynuacji, możesz pozwolić na zainstalowanie tej aplikacji. Pamiętaj, że aplikacja może nie działać zgodnie z oczekiwaniami.", "Your ExApps" : "Twoje ExApps", "An error occurred during the request. Unable to proceed." : "Wystąpił błąd podczas żądania. Nie można kontynuować.", From 46b131d39696a5021cf152eefe721f6699a70c9e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 15 Jun 2025 00:29:16 +0000 Subject: [PATCH 140/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 1 + l10n/fr.json | 1 + l10n/sw.js | 17 +++++++++++++++++ l10n/sw.json | 15 +++++++++++++++ 4 files changed, 34 insertions(+) create mode 100644 l10n/sw.js create mode 100644 l10n/sw.json diff --git a/l10n/fr.js b/l10n/fr.js index 2c1e277d..c3615965 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -88,6 +88,7 @@ OC.L10N.register( "Start Deploy test" : "Démarrer le test de déploiement", "Stop Deploy test" : "Arrêt du test de déploiement", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Please enter a registry domain" : "Veuillez saisir un domaine de registre", "Remove" : "Retirer", "From" : "De", "To" : "À", diff --git a/l10n/fr.json b/l10n/fr.json index 4c67e84f..1e9bffbd 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -86,6 +86,7 @@ "Start Deploy test" : "Démarrer le test de déploiement", "Stop Deploy test" : "Arrêt du test de déploiement", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Please enter a registry domain" : "Veuillez saisir un domaine de registre", "Remove" : "Retirer", "From" : "De", "To" : "À", diff --git a/l10n/sw.js b/l10n/sw.js new file mode 100644 index 00000000..c64cd4c3 --- /dev/null +++ b/l10n/sw.js @@ -0,0 +1,17 @@ +OC.L10N.register( + "app_api", + { + "Cancel" : "Cancel", + "Delete" : "Futa", + "Edit" : "Hariri", + "Name" : "Jina", + "From" : "Tangu/ kutoka", + "To" : "Mpaka/ hadi", + "Add" : "Ongeza", + "Confirm" : "Thibitisha", + "Save" : "Hifadhi", + "Actions" : "Utendekaji", + "Type" : "Aina", + "Details" : "Maelezo ya kina" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/l10n/sw.json b/l10n/sw.json new file mode 100644 index 00000000..85c0686c --- /dev/null +++ b/l10n/sw.json @@ -0,0 +1,15 @@ +{ "translations": { + "Cancel" : "Cancel", + "Delete" : "Futa", + "Edit" : "Hariri", + "Name" : "Jina", + "From" : "Tangu/ kutoka", + "To" : "Mpaka/ hadi", + "Add" : "Ongeza", + "Confirm" : "Thibitisha", + "Save" : "Hifadhi", + "Actions" : "Utendekaji", + "Type" : "Aina", + "Details" : "Maelezo ya kina" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file From 3a1255d018a54a15b5c33f21b62edf44c648f103 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 21 Jun 2025 00:32:27 +0000 Subject: [PATCH 141/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sw.js | 2 ++ l10n/sw.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/sw.js b/l10n/sw.js index c64cd4c3..d6f478e2 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -10,6 +10,8 @@ OC.L10N.register( "Add" : "Ongeza", "Confirm" : "Thibitisha", "Save" : "Hifadhi", + "Update to {version}" : "Sasisha kwenda {version}", + "Update to {update}" : "Sasisha kwenda {update}", "Actions" : "Utendekaji", "Type" : "Aina", "Details" : "Maelezo ya kina" diff --git a/l10n/sw.json b/l10n/sw.json index 85c0686c..d6ce15c9 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -8,6 +8,8 @@ "Add" : "Ongeza", "Confirm" : "Thibitisha", "Save" : "Hifadhi", + "Update to {version}" : "Sasisha kwenda {version}", + "Update to {update}" : "Sasisha kwenda {update}", "Actions" : "Utendekaji", "Type" : "Aina", "Details" : "Maelezo ya kina" From fae856bb01b1b1b0a6216e6675deca81b71d028f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 22 Jun 2025 00:32:11 +0000 Subject: [PATCH 142/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 4 ++++ l10n/fr.json | 4 ++++ l10n/sw.js | 2 ++ l10n/sw.json | 2 ++ 4 files changed, 12 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index c3615965..7871a5ca 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -44,6 +44,7 @@ OC.L10N.register( "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", "Test deploy" : "Tester le déploiement", + "Docker registries" : "Registres Docker", "Edit" : "Modifier", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", @@ -116,6 +117,7 @@ OC.L10N.register( "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", + "HaRP host" : "Hôte HaRP", "Daemon host" : "Hôte du Deamon", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Set daemon as default" : "Définir comme service par défaut", @@ -123,6 +125,8 @@ OC.L10N.register( "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", + "Enable HaRP" : "Activer HaRP", + "Disable FRP" : "Désactiver FRP", "Disabled" : "Désactivé", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", diff --git a/l10n/fr.json b/l10n/fr.json index 1e9bffbd..b1b05829 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -42,6 +42,7 @@ "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", "Test deploy" : "Tester le déploiement", + "Docker registries" : "Registres Docker", "Edit" : "Modifier", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", @@ -114,6 +115,7 @@ "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", + "HaRP host" : "Hôte HaRP", "Daemon host" : "Hôte du Deamon", "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "Set daemon as default" : "Définir comme service par défaut", @@ -121,6 +123,8 @@ "Enable https" : "Activer https", "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", + "Enable HaRP" : "Activer HaRP", + "Disable FRP" : "Désactiver FRP", "Disabled" : "Désactivé", "Additional option" : "Option supplémentaire", "Add additional option" : "Ajouter une option supplémentaire", diff --git a/l10n/sw.js b/l10n/sw.js index d6f478e2..9f39b225 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -11,7 +11,9 @@ OC.L10N.register( "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Update to {version}" : "Sasisha kwenda {version}", + "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", + "Version" : "Toleo", "Actions" : "Utendekaji", "Type" : "Aina", "Details" : "Maelezo ya kina" diff --git a/l10n/sw.json b/l10n/sw.json index d6ce15c9..67e61841 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -9,7 +9,9 @@ "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Update to {version}" : "Sasisha kwenda {version}", + "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", + "Version" : "Toleo", "Actions" : "Utendekaji", "Type" : "Aina", "Details" : "Maelezo ya kina" From 1910574999722c4a6ae7e2744610710ac8cf92a2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 23 Jun 2025 00:31:28 +0000 Subject: [PATCH 143/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fr.js | 1 + l10n/fr.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/fr.js b/l10n/fr.js index 7871a5ca..6a22a3c8 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -126,6 +126,7 @@ OC.L10N.register( "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", "Enable HaRP" : "Activer HaRP", + "FRP server address" : "Adresse du serveur FRP", "Disable FRP" : "Désactiver FRP", "Disabled" : "Désactivé", "Additional option" : "Option supplémentaire", diff --git a/l10n/fr.json b/l10n/fr.json index b1b05829..ac6a063c 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -124,6 +124,7 @@ "Show deploy config" : "Afficher la configuration de déploiement", "Hide deploy config" : "Masquer la configuration de déploiement", "Enable HaRP" : "Activer HaRP", + "FRP server address" : "Adresse du serveur FRP", "Disable FRP" : "Désactiver FRP", "Disabled" : "Désactivé", "Additional option" : "Option supplémentaire", From 042608d4d97f53345900cc31b809a8449885c268 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 25 Jun 2025 00:32:45 +0000 Subject: [PATCH 144/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/nl.js | 167 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/nl.json | 167 ++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 330 insertions(+), 4 deletions(-) diff --git a/l10n/nl.js b/l10n/nl.js index ed98403a..ee17dc37 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -3,29 +3,179 @@ OC.L10N.register( { "Daemon config not found" : "Daemon configuratie niet gevonden", "Error starting install of ExApp" : "Fout bij starten installatie van ExApp", + "ExApp failed to register, check the NC logs" : "Registratie van ExApp niet gelukt. Controleer de NC logs.", + "ExApp not found, failed to get status" : "ExApp niet gevonden. Kan status niet ophalen.", + "Error adding Docker registry" : "Fout bij het toevoegen van Docker registry", + "Error removing Docker registry" : "Fout bij verwijderen Docker registry", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Deze app komt niet uit de AppStore. Geen verdere informatie beschikbaar. Alleen inschakelen/uitschakelen en verwijderen zijn als actie beschikbaar.", + "Could not perform installation of ExApp" : "ExApp kon niet geinstalleerd worden", + "Failed to enable ExApp" : "Inschakelen van ExApp niet gelukt.", + "Failed to disable ExApp" : "Uitschakelen van ExApp niet gelukt", + "Could not update ExApp" : "ExApp kon niet bijgewerkt worden", + "Error starting update of ExApp" : "Fout tijdens het bijwerken van ExApp", + "Could not perform update of ExApp" : "ExApp kon niet bijgewerkt worden", + "ExApp not found, failed to get logs" : "ExApp niet gevonden. Log kon niet worden opgehaald.", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kon container log niet ophalen. Let op: het downloaden van Docker containers werkt alleen voor containers met json- of journald-gebaseerde logging driver. Foutmelding: %s", + "ExApp not found, failed to get deploy options" : "ExApp niet gevonden. Kan deploy opties niet ophalen.", + "AppAPI authentication failed" : "AppAPI authenticatie niet gelukt", + "AppAPI ExApp notifier" : "AppAPI ExApp notifier", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI Integratie Team", + "ExApps Settings" : "ExApp Instellingen", + "AppAPI deploy daemon" : "AppAPI deploy daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Standaard AppAPI deploy daemon niet ingesteld. Registreer een standaard deploy daemon bij de instellingen om externe applicaties (ExApps) te installeren.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standaard deploy daemon \"%s\" is niet toegankelijk. Controleer de daemon configuratie.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standaard deploy daemon gebruikt geen HaRP. Overweeg een upgrade van de deploy daemon voor betere prestaties.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbeter jouw Nextcloud met AppAPI en haar speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud ecosysteem bedoeld om het proces voor applicatie ontwikkeling, deployment en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie dat ontwikkelaars de mogelijkheid geeft applicaties te bouwen met andere programmeertalen dan het voor Nextcloud traditioneel gebruikte PHP.\n\n_We helpen je graag bij het ontwikkelen van een applicatie_\n\n### Ondersteuning\n\nElke ondersteuning van dit project wordt zeer op prijs gesteld:\n\n- ⭐ Star onze repository op GitHub\n- ❗ Meld een issue of maak een feature request aan\n- 💁 Los een issue op en maak een pull request aan\n- 🧑‍💻 Bouw je eigen applicatie met behulp van AppAPI.\n\nWe zijn heel opgetogen over de toekomst van het AppAPI project en haar potentie om de manier van applicatie ontwikkeling voor NextCloud te verbeteren. \n\nNu we beginnen aan deze uitdaging nodigen we jou - ontwikkelaar, denker, bouwer of visionair - graag uit om met ons een meer veelzijdig, stabiel en veilig app landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn van onschatbare waarde voor ons*", + "External Apps management" : "External Apps beheer", + "Admin options saved" : "Admin opties opgeslagen", + "Failed to save admin options" : "Kon admin opties niet opslaan", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuraie.", + "ExApp init timeout (minutes)" : "ExApp init timeout (minuten).", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialisatieproces timeout waarna AppAPI het proces zal markeren als gefaald.", + "ExApp init timeout" : "ExApp init timeout", + "ExApp container restart policy" : "ExApp container beleid voor herstart", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geef container herstart beleid op, bijv. 'altijd' om er zeker van te zijn dat ExApp draait na een reboot van de daemon server.", + "This settings changes are reflected only for newly created containers" : "Verandering van deze instellingen hebben alleen betrekking op nieuw aangemaakte containers", + "Are you sure you want delete Deploy Daemon" : "Weet je zeker dat je Deploy Daemon wilt verwijderen", + "All ExApps on this daemon will be removed" : "Alle ExApps van deze daemon worden verwijderd", + "All ExApps installed on this daemon will be removed" : "Alle ExApps geinstalleerd bij deze daemon zullen worden verwijderd", "Cancel" : "Annuleren", "Delete" : "Verwijder", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon kan niet als standaard worden ingesteld", + "Failed to save admin options. Check the logs" : "Kon admin opties niet opslaan. Check de logs", + "Password confirmation failed" : "Wachtwoordbevestiging niet gelukt", "Default" : "Standaard", - "Set as default" : "Zet as standaard", + "Set as default" : "Stel in als standaard", + "Test deploy" : "Test deploy", + "Docker registries" : "Docker registries", "Edit" : "Bewerken", - "Deploy Daemon" : "Daemon implementeren", + "Deploy daemon config details" : "Deploy Daemon configuratie details", + "Deploy Daemon" : "Deploy Daemon", + "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon wordt voornamelijk gebruikt voor ontwikkelwerkzaamheden. Het kan niet worden ingesteld als standaard daemon.", + "ExApps installed" : "ExApps geinstalleerd", "Name" : "Naam", + "Protocol" : "Protocol", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "ExApp directie communicatie (FRP uitgeschakeld)", + "Deploy config" : "Deploy configuratie", + "Docker network" : "Docker netwerk", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxy wachtwoord", "GPUs support" : "GPUs support", + "Compute device" : "Compute apparaat", + "Additional options" : "Additionele opties", + "Verify connection" : "Verifieer verbinding", + "Registered Deploy daemons list" : "Lijst van geregistreerde Deploy Daemons", + "No Deploy daemons configured" : "Geen Deploy Daemons geconfigureerd", + "Register a custom one or setup from available templates" : "Registreer met de hand of gebruik een van de beschikbare templates", + "Register Daemon" : "Registreer Daemon", + "Register ExApp in Nextcloud" : "Registreer ExApp in Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Controleer of de ExApp is geregistreerd bij Nextcloud voor deployment", + "Image pull" : "Image pull", + "Check if the image is successfully pulled" : "Controleer of de image pull is gelukt", + "Container started" : "Container gestart", + "Check if the image successfully pulled and container is created and started" : "Controleer of de image pull is gelukt en of de container is aangemaakt en gestart", + "Heartbeat" : "Hartslag", + "Check for the heartbeat is finished and healthy" : "Hartslag controle gereed, uitslag gezond", + "Init step" : "Init stap", + "Wait for initialization step to finish" : "Wacht tot de initialisatiestap is afgerond", "Enabled" : "Ingeschakeld", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Controleer of ExApp het ingeschakelde event goed heeft afgehandeld en de hele spullenboel goed is geregistreerd", + "Only if ExApp container is preset" : "Alleen als de ExApp container vooraf is ingesteld", + "Deploy test passed successfully!" : "Deploy test geslaagd!", + "Deploy test failed at step \"{step}\"" : "Deploy test niet geslaagd. Fout bij stap \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI zal proberen een klein ExApp-je te installeren om te controleren of de Daemon goed is geconfigureerd en de deployment stappen goed worden doorlopen.", + "The following Deploy test checks must be passed to succeed:" : "De volgende Deploy test checks moeten slagen: ", "More info" : "Meer info", + "Download ExApp logs" : "Download ExApp logs", + "Remove test ExApp" : "Verwijder test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp registratie en container zijn verwijderd bij \"Stop deploy test\"", + "Please enter a registry domain" : "Vul een registry domain in", + "From cannot be \"local\"" : "\"Van\" mag niet \"local\" zijn", + "This registry mapping already exists" : "Deze registry mapping bestaat al", + "From and To cannot be the same" : "Van en Naar mogen niet hetzelfde zijn", + "Override Docker registries" : "Override Docker registries", + "Configure Docker registry override mappings for selected daemon." : "Configureer Docker registry override mappings voor de geselecteerde daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "De overeenkomende source registry in ExApp info.xml zal worden overschreven tijdens deploy (image pull stap).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dit is handig wanneer je een aangepaste Docker registry wilt gebruiken, zoals een private Docker registry of om een andere Docker registry te gebruiken voor (acceptatie)tests.", + "Image pull will be skipped" : "Image pull zal worden overgeslagen", "Remove" : "Verwijderen", + "No custom Docker registries configured" : "Geen aangepaste Docker registries geconfigureerd", + "Add registry override mapping" : "Voeg registry override mapping toe", "From" : "Van", + "registry URL (e.g. ghcr.io)" : "registry URL (bijv. ghcr.io)", "To" : "Naar", + "registry URL (e.g. docker.io)" : "registry URL (bijv. docker.io)", "Add" : "Toevoegen", + "Hostname to access ExApps" : "Hostname voor toegang tot ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "De hostname (en poortnummer) waarop {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server, bijv. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "De hostname (en poortnummer) of het pad waar {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server. Het kan ook het pad naar de docker socket zijn (bijv. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon met deze naam bestaat al", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "De geheime sleutel voor de HaRP container communicatie (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authenticatie wachtwoord", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Veranderingen zijn alleen van toepassing op nieuw geinstalleerde ExApps. Voor bestaande ExApps zullen de containers opnieuw moeten worden aangemaakt.", + "The docker network that the deployed ex-apps would use." : "Het docker netwerk dat de deployed ExApps zouden gebruiken", + "URL should start with http:// or https://" : "URL moet beginnen met http:// of https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Voor een HTTPS daemon moet de Nextcloud URL HTTPS gebaseerd zijn", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle beschikbare GPUs op de daemon host zullen door Docker worden opgevraagd om ingeschakeld te kunnen worden in ExApps.", + "DaemonConfig successfully registered" : "DaemonConfig registratie gelukt", + "Failed to register DaemonConfig. Check the logs" : "Registratie van DaemonConfig niet gelukt. Controleer de logs", + "DaemonConfig successfully updated" : "Bijwerken van DaemonConfig gelukt ", + "Failed to update DaemonConfig. Check the logs" : "Bijwerken van DaemonConfig niet gelukt. Controleer de logs", + "Daemon connection successful" : "Verbinding maken met Daemon gelukt", + "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", + "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", + "Edit Deploy Daemon" : "Deploy Demon aanpassen", + "Register Deploy Daemon" : "Deploy Daemon registreren", + "Daemon configuration template" : "Daemon configuratie template", + "Select daemon configuration template" : "Selecteer daemon configuratie template", + "Daemon registration form" : "Daemon registratie formulier", + "Unique Deploy Daemon Name" : "Unieke naam voor Deploy Daemon", + "Display name" : "Weergave naam", + "Deployment method" : "Deployment methode", + "Select daemon deploy method" : "Selecteer daemon deployment methode", + "HaRP host" : "HaRP host", + "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP gedeelde sleutel (shared key)", + "Password must be at least 12 characters long" : "Wachtwoord moet ten minste 12 tekens lang zijn", + "Set daemon as default" : "Stel daemon in als standaard", + "Set as default daemon" : "Stel in als standaard daemon", + "Enable https" : "HTTPS inschakelen", + "Show deploy config" : "Toon deploy configuratie", + "Hide deploy config" : "Verberg deploy configuratie", + "Enable HaRP" : "HaRP inschakelen", + "FRP server address" : "FRP server adres", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Het adres (host:poort) van de FRP server die bereikbaar zou moeten zijn voor de ExApp via het netwerk gedefinieerd in 'Docker network'.", + "Docker socket proxy port" : "Docker socket proxy poort", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Het poortnummer in HaRP waar de docker socket proxy mee verbindt. Deze poort moet open staan. Alleen de ingebouwde poort hoeft niet open te staan of aangepast te worden.", + "Disable FRP" : "FRB uitschakelen", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Vlag alleen voor geavanceerde installaties. Schakelt de FRP tunnel tussen ExApps en HaRP uit.", "Disabled" : "Uitgeschakeld", + "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", + "Additional option" : "Additionele optie", + "Add additional option" : "Voeg additionele optie toe", + "Option key (unique)" : "Optie key (uniek)", + "Option key (unique, e.g. my_key)" : "Optie key (uniek, bijv. mijn_key)", + "Option key is required" : "Optie key is verplicht", + "Option value" : "Optie waarde", + "Option value is required" : "Optie waarde is verplicht", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", + "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", + "Delete data on remove" : "Bij verwijderen ook data verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd, omdat de volgende afhankelijkheden niet zijn ingevuld:", @@ -35,21 +185,27 @@ OC.L10N.register( "User documentation" : "Gebruikersdocumentatie", "Admin documentation" : "Beheerdersdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Deze app is niet geregistreerd in de AppStore. Geen verdere informatie beschikbaar. Alleen inschakelen/uitschakelen en verwijderen zijn als actie beschikbaar.", "This app is supported via your current Nextcloud subscription." : "Deze app wordt ondersteund via je huidige Nextcloud abonnement.", "Supported" : "Ondersteund", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aanbevolen apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", "Featured" : "Aanbevolen", "Update to {update}" : "Update naar {update}", + "All ExApps are up-to-date." : "Alle ExApps zijn bijgewerkt.", + "Default Deploy daemon is not accessible" : "Standaard Deploy Daemon niet toegankelijk", "Icon" : "Pictogram", "Version" : "Versie", "Daemon" : "Daemon", "Level" : "Niveau", "Actions" : "Acties", "Results from other categories" : "Resultaten van andere categorieën", + "No apps found" : "Geen apps gevonden", "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname of pad naar Docker daemon socket (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Network" : "Netwerk", + "Docker network name" : "Docker netwerk naam", "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", @@ -60,11 +216,18 @@ OC.L10N.register( "Updates" : "Updates", "Featured apps" : "Aanbevolen apps", "Supported apps" : "Ondersteunde apps", + "manual-install apps cannot be updated" : "manual-install apps kunnen niet worden bijgewerkt", + "{progress}% Deploying" : "{progress}% Deploying", + "{progress}% Initializing" : "{progress}% Initialisatie", + "Healthchecking" : "Healthchecking", "Deploy and Enable" : "Implementeren en inschakelen", "Enable" : "Inschakelen", "Disable" : "Uitschakelen", "Allow untested app" : "Niet-geteste apps toestaan", + "Default Deploy daemon is not accessible. Please verify configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuratie", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "De app zal worden gedownload uit de AppStore en worden gedeployed op de standaard Deploy Daemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Deze is niet aangeduid als compatibel met jouw versie van Nextcloud. Als je verdergaat, zal je de app kunnen installeren. Let op dat de app misschien niet werkt zoals verwacht.", + "Your ExApps" : "Jouw ExApps", "An error occurred during the request. Unable to proceed." : "Er is een fout opgetreden tijdens het verzoek. Kan niet doorgaan.", "The app has been enabled but needs to be updated." : "De app is ingeschakeld maar moet geüpdated worden.", "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt" diff --git a/l10n/nl.json b/l10n/nl.json index 2ff27ce8..fa5714f6 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -1,29 +1,179 @@ { "translations": { "Daemon config not found" : "Daemon configuratie niet gevonden", "Error starting install of ExApp" : "Fout bij starten installatie van ExApp", + "ExApp failed to register, check the NC logs" : "Registratie van ExApp niet gelukt. Controleer de NC logs.", + "ExApp not found, failed to get status" : "ExApp niet gevonden. Kan status niet ophalen.", + "Error adding Docker registry" : "Fout bij het toevoegen van Docker registry", + "Error removing Docker registry" : "Fout bij verwijderen Docker registry", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Deze app komt niet uit de AppStore. Geen verdere informatie beschikbaar. Alleen inschakelen/uitschakelen en verwijderen zijn als actie beschikbaar.", + "Could not perform installation of ExApp" : "ExApp kon niet geinstalleerd worden", + "Failed to enable ExApp" : "Inschakelen van ExApp niet gelukt.", + "Failed to disable ExApp" : "Uitschakelen van ExApp niet gelukt", + "Could not update ExApp" : "ExApp kon niet bijgewerkt worden", + "Error starting update of ExApp" : "Fout tijdens het bijwerken van ExApp", + "Could not perform update of ExApp" : "ExApp kon niet bijgewerkt worden", + "ExApp not found, failed to get logs" : "ExApp niet gevonden. Log kon niet worden opgehaald.", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kon container log niet ophalen. Let op: het downloaden van Docker containers werkt alleen voor containers met json- of journald-gebaseerde logging driver. Foutmelding: %s", + "ExApp not found, failed to get deploy options" : "ExApp niet gevonden. Kan deploy opties niet ophalen.", + "AppAPI authentication failed" : "AppAPI authenticatie niet gelukt", + "AppAPI ExApp notifier" : "AppAPI ExApp notifier", + "AppAPI" : "AppAPI", + "AI Integration Team" : "AI Integratie Team", + "ExApps Settings" : "ExApp Instellingen", + "AppAPI deploy daemon" : "AppAPI deploy daemon", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Standaard AppAPI deploy daemon niet ingesteld. Registreer een standaard deploy daemon bij de instellingen om externe applicaties (ExApps) te installeren.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standaard deploy daemon \"%s\" is niet toegankelijk. Controleer de daemon configuratie.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standaard deploy daemon gebruikt geen HaRP. Overweeg een upgrade van de deploy daemon voor betere prestaties.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbeter jouw Nextcloud met AppAPI en haar speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud ecosysteem bedoeld om het proces voor applicatie ontwikkeling, deployment en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie dat ontwikkelaars de mogelijkheid geeft applicaties te bouwen met andere programmeertalen dan het voor Nextcloud traditioneel gebruikte PHP.\n\n_We helpen je graag bij het ontwikkelen van een applicatie_\n\n### Ondersteuning\n\nElke ondersteuning van dit project wordt zeer op prijs gesteld:\n\n- ⭐ Star onze repository op GitHub\n- ❗ Meld een issue of maak een feature request aan\n- 💁 Los een issue op en maak een pull request aan\n- 🧑‍💻 Bouw je eigen applicatie met behulp van AppAPI.\n\nWe zijn heel opgetogen over de toekomst van het AppAPI project en haar potentie om de manier van applicatie ontwikkeling voor NextCloud te verbeteren. \n\nNu we beginnen aan deze uitdaging nodigen we jou - ontwikkelaar, denker, bouwer of visionair - graag uit om met ons een meer veelzijdig, stabiel en veilig app landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn van onschatbare waarde voor ons*", + "External Apps management" : "External Apps beheer", + "Admin options saved" : "Admin opties opgeslagen", + "Failed to save admin options" : "Kon admin opties niet opslaan", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuraie.", + "ExApp init timeout (minutes)" : "ExApp init timeout (minuten).", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialisatieproces timeout waarna AppAPI het proces zal markeren als gefaald.", + "ExApp init timeout" : "ExApp init timeout", + "ExApp container restart policy" : "ExApp container beleid voor herstart", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geef container herstart beleid op, bijv. 'altijd' om er zeker van te zijn dat ExApp draait na een reboot van de daemon server.", + "This settings changes are reflected only for newly created containers" : "Verandering van deze instellingen hebben alleen betrekking op nieuw aangemaakte containers", + "Are you sure you want delete Deploy Daemon" : "Weet je zeker dat je Deploy Daemon wilt verwijderen", + "All ExApps on this daemon will be removed" : "Alle ExApps van deze daemon worden verwijderd", + "All ExApps installed on this daemon will be removed" : "Alle ExApps geinstalleerd bij deze daemon zullen worden verwijderd", "Cancel" : "Annuleren", "Delete" : "Verwijder", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon kan niet als standaard worden ingesteld", + "Failed to save admin options. Check the logs" : "Kon admin opties niet opslaan. Check de logs", + "Password confirmation failed" : "Wachtwoordbevestiging niet gelukt", "Default" : "Standaard", - "Set as default" : "Zet as standaard", + "Set as default" : "Stel in als standaard", + "Test deploy" : "Test deploy", + "Docker registries" : "Docker registries", "Edit" : "Bewerken", - "Deploy Daemon" : "Daemon implementeren", + "Deploy daemon config details" : "Deploy Daemon configuratie details", + "Deploy Daemon" : "Deploy Daemon", + "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon wordt voornamelijk gebruikt voor ontwikkelwerkzaamheden. Het kan niet worden ingesteld als standaard daemon.", + "ExApps installed" : "ExApps geinstalleerd", "Name" : "Naam", + "Protocol" : "Protocol", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "ExApp directie communicatie (FRP uitgeschakeld)", + "Deploy config" : "Deploy configuratie", + "Docker network" : "Docker netwerk", "Nextcloud URL" : "Nextcloud URL", + "HaProxy password" : "HaProxy wachtwoord", "GPUs support" : "GPUs support", + "Compute device" : "Compute apparaat", + "Additional options" : "Additionele opties", + "Verify connection" : "Verifieer verbinding", + "Registered Deploy daemons list" : "Lijst van geregistreerde Deploy Daemons", + "No Deploy daemons configured" : "Geen Deploy Daemons geconfigureerd", + "Register a custom one or setup from available templates" : "Registreer met de hand of gebruik een van de beschikbare templates", + "Register Daemon" : "Registreer Daemon", + "Register ExApp in Nextcloud" : "Registreer ExApp in Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Controleer of de ExApp is geregistreerd bij Nextcloud voor deployment", + "Image pull" : "Image pull", + "Check if the image is successfully pulled" : "Controleer of de image pull is gelukt", + "Container started" : "Container gestart", + "Check if the image successfully pulled and container is created and started" : "Controleer of de image pull is gelukt en of de container is aangemaakt en gestart", + "Heartbeat" : "Hartslag", + "Check for the heartbeat is finished and healthy" : "Hartslag controle gereed, uitslag gezond", + "Init step" : "Init stap", + "Wait for initialization step to finish" : "Wacht tot de initialisatiestap is afgerond", "Enabled" : "Ingeschakeld", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Controleer of ExApp het ingeschakelde event goed heeft afgehandeld en de hele spullenboel goed is geregistreerd", + "Only if ExApp container is preset" : "Alleen als de ExApp container vooraf is ingesteld", + "Deploy test passed successfully!" : "Deploy test geslaagd!", + "Deploy test failed at step \"{step}\"" : "Deploy test niet geslaagd. Fout bij stap \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI zal proberen een klein ExApp-je te installeren om te controleren of de Daemon goed is geconfigureerd en de deployment stappen goed worden doorlopen.", + "The following Deploy test checks must be passed to succeed:" : "De volgende Deploy test checks moeten slagen: ", "More info" : "Meer info", + "Download ExApp logs" : "Download ExApp logs", + "Remove test ExApp" : "Verwijder test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp registratie en container zijn verwijderd bij \"Stop deploy test\"", + "Please enter a registry domain" : "Vul een registry domain in", + "From cannot be \"local\"" : "\"Van\" mag niet \"local\" zijn", + "This registry mapping already exists" : "Deze registry mapping bestaat al", + "From and To cannot be the same" : "Van en Naar mogen niet hetzelfde zijn", + "Override Docker registries" : "Override Docker registries", + "Configure Docker registry override mappings for selected daemon." : "Configureer Docker registry override mappings voor de geselecteerde daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "De overeenkomende source registry in ExApp info.xml zal worden overschreven tijdens deploy (image pull stap).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dit is handig wanneer je een aangepaste Docker registry wilt gebruiken, zoals een private Docker registry of om een andere Docker registry te gebruiken voor (acceptatie)tests.", + "Image pull will be skipped" : "Image pull zal worden overgeslagen", "Remove" : "Verwijderen", + "No custom Docker registries configured" : "Geen aangepaste Docker registries geconfigureerd", + "Add registry override mapping" : "Voeg registry override mapping toe", "From" : "Van", + "registry URL (e.g. ghcr.io)" : "registry URL (bijv. ghcr.io)", "To" : "Naar", + "registry URL (e.g. docker.io)" : "registry URL (bijv. docker.io)", "Add" : "Toevoegen", + "Hostname to access ExApps" : "Hostname voor toegang tot ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "De hostname (en poortnummer) waarop {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server, bijv. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "De hostname (en poortnummer) of het pad waar {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server. Het kan ook het pad naar de docker socket zijn (bijv. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon met deze naam bestaat al", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "De geheime sleutel voor de HaRP container communicatie (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authenticatie wachtwoord", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Veranderingen zijn alleen van toepassing op nieuw geinstalleerde ExApps. Voor bestaande ExApps zullen de containers opnieuw moeten worden aangemaakt.", + "The docker network that the deployed ex-apps would use." : "Het docker netwerk dat de deployed ExApps zouden gebruiken", + "URL should start with http:// or https://" : "URL moet beginnen met http:// of https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Voor een HTTPS daemon moet de Nextcloud URL HTTPS gebaseerd zijn", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle beschikbare GPUs op de daemon host zullen door Docker worden opgevraagd om ingeschakeld te kunnen worden in ExApps.", + "DaemonConfig successfully registered" : "DaemonConfig registratie gelukt", + "Failed to register DaemonConfig. Check the logs" : "Registratie van DaemonConfig niet gelukt. Controleer de logs", + "DaemonConfig successfully updated" : "Bijwerken van DaemonConfig gelukt ", + "Failed to update DaemonConfig. Check the logs" : "Bijwerken van DaemonConfig niet gelukt. Controleer de logs", + "Daemon connection successful" : "Verbinding maken met Daemon gelukt", + "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", + "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", + "Edit Deploy Daemon" : "Deploy Demon aanpassen", + "Register Deploy Daemon" : "Deploy Daemon registreren", + "Daemon configuration template" : "Daemon configuratie template", + "Select daemon configuration template" : "Selecteer daemon configuratie template", + "Daemon registration form" : "Daemon registratie formulier", + "Unique Deploy Daemon Name" : "Unieke naam voor Deploy Daemon", + "Display name" : "Weergave naam", + "Deployment method" : "Deployment methode", + "Select daemon deploy method" : "Selecteer daemon deployment methode", + "HaRP host" : "HaRP host", + "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP gedeelde sleutel (shared key)", + "Password must be at least 12 characters long" : "Wachtwoord moet ten minste 12 tekens lang zijn", + "Set daemon as default" : "Stel daemon in als standaard", + "Set as default daemon" : "Stel in als standaard daemon", + "Enable https" : "HTTPS inschakelen", + "Show deploy config" : "Toon deploy configuratie", + "Hide deploy config" : "Verberg deploy configuratie", + "Enable HaRP" : "HaRP inschakelen", + "FRP server address" : "FRP server adres", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Het adres (host:poort) van de FRP server die bereikbaar zou moeten zijn voor de ExApp via het netwerk gedefinieerd in 'Docker network'.", + "Docker socket proxy port" : "Docker socket proxy poort", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Het poortnummer in HaRP waar de docker socket proxy mee verbindt. Deze poort moet open staan. Alleen de ingebouwde poort hoeft niet open te staan of aangepast te worden.", + "Disable FRP" : "FRB uitschakelen", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Vlag alleen voor geavanceerde installaties. Schakelt de FRP tunnel tussen ExApps en HaRP uit.", "Disabled" : "Uitgeschakeld", + "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", + "Additional option" : "Additionele optie", + "Add additional option" : "Voeg additionele optie toe", + "Option key (unique)" : "Optie key (uniek)", + "Option key (unique, e.g. my_key)" : "Optie key (uniek, bijv. mijn_key)", + "Option key is required" : "Optie key is verplicht", + "Option value" : "Optie waarde", + "Option value is required" : "Optie waarde is verplicht", "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", + "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", + "Delete data on remove" : "Bij verwijderen ook data verwijderen", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd, omdat de volgende afhankelijkheden niet zijn ingevuld:", @@ -33,21 +183,27 @@ "User documentation" : "Gebruikersdocumentatie", "Admin documentation" : "Beheerdersdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Deze app is niet geregistreerd in de AppStore. Geen verdere informatie beschikbaar. Alleen inschakelen/uitschakelen en verwijderen zijn als actie beschikbaar.", "This app is supported via your current Nextcloud subscription." : "Deze app wordt ondersteund via je huidige Nextcloud abonnement.", "Supported" : "Ondersteund", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aanbevolen apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", "Featured" : "Aanbevolen", "Update to {update}" : "Update naar {update}", + "All ExApps are up-to-date." : "Alle ExApps zijn bijgewerkt.", + "Default Deploy daemon is not accessible" : "Standaard Deploy Daemon niet toegankelijk", "Icon" : "Pictogram", "Version" : "Versie", "Daemon" : "Daemon", "Level" : "Niveau", "Actions" : "Acties", "Results from other categories" : "Resultaten van andere categorieën", + "No apps found" : "Geen apps gevonden", "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname of pad naar Docker daemon socket (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Network" : "Netwerk", + "Docker network name" : "Docker netwerk naam", "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", @@ -58,11 +214,18 @@ "Updates" : "Updates", "Featured apps" : "Aanbevolen apps", "Supported apps" : "Ondersteunde apps", + "manual-install apps cannot be updated" : "manual-install apps kunnen niet worden bijgewerkt", + "{progress}% Deploying" : "{progress}% Deploying", + "{progress}% Initializing" : "{progress}% Initialisatie", + "Healthchecking" : "Healthchecking", "Deploy and Enable" : "Implementeren en inschakelen", "Enable" : "Inschakelen", "Disable" : "Uitschakelen", "Allow untested app" : "Niet-geteste apps toestaan", + "Default Deploy daemon is not accessible. Please verify configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuratie", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "De app zal worden gedownload uit de AppStore en worden gedeployed op de standaard Deploy Daemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Deze is niet aangeduid als compatibel met jouw versie van Nextcloud. Als je verdergaat, zal je de app kunnen installeren. Let op dat de app misschien niet werkt zoals verwacht.", + "Your ExApps" : "Jouw ExApps", "An error occurred during the request. Unable to proceed." : "Er is een fout opgetreden tijdens het verzoek. Kan niet doorgaan.", "The app has been enabled but needs to be updated." : "De app is ingeschakeld maar moet geüpdated worden.", "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt" From 71c6fbc439d01900e0b6a2075824db5e642f0785 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 26 Jun 2025 00:32:31 +0000 Subject: [PATCH 145/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sw.js | 1 + l10n/sw.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/sw.js b/l10n/sw.js index 9f39b225..d29d5263 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -10,6 +10,7 @@ OC.L10N.register( "Add" : "Ongeza", "Confirm" : "Thibitisha", "Save" : "Hifadhi", + "Register" : "Sajiri", "Update to {version}" : "Sasisha kwenda {version}", "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", diff --git a/l10n/sw.json b/l10n/sw.json index 67e61841..0dca97f8 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -8,6 +8,7 @@ "Add" : "Ongeza", "Confirm" : "Thibitisha", "Save" : "Hifadhi", + "Register" : "Sajiri", "Update to {version}" : "Sasisha kwenda {version}", "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", From b7c65254af09c59cf29d1cf69fa40e207f081e82 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 27 Jun 2025 00:33:00 +0000 Subject: [PATCH 146/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/nl.js | 6 +++++- l10n/nl.json | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/l10n/nl.js b/l10n/nl.js index ee17dc37..db0c09b2 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -173,6 +173,7 @@ OC.L10N.register( "Register" : "Aanmelden", "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef je Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n### Gebundelde App\n\n**Vanaf Nextcloud 30.0.1 is deze applicatie opgenomen in het standaard Nextcloud-pakket.**\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werkeen ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak een Pull Request aan\n- 🧑‍💻 Ontwikkel een eigen applicatie met AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Delete data on remove" : "Bij verwijderen ook data verwijderen", @@ -200,10 +201,12 @@ OC.L10N.register( "Actions" : "Acties", "Results from other categories" : "Resultaten van andere categorieën", "No apps found" : "Geen apps gevonden", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp heeft een update beschikbaar","%n apps hebben een update beschikbaar"], "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname of pad naar Docker daemon socket (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "Met https ingeschakeld netwerk is ingesteld op host", "Network" : "Netwerk", "Docker network name" : "Docker netwerk naam", "by {author}\n{license}" : "door {author}\n{license}", @@ -230,6 +233,7 @@ OC.L10N.register( "Your ExApps" : "Jouw ExApps", "An error occurred during the request. Unable to proceed." : "Er is een fout opgetreden tijdens het verzoek. Kan niet doorgaan.", "The app has been enabled but needs to be updated." : "De app is ingeschakeld maar moet geüpdated worden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt" + "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef jouw Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n\n### Lijst met applicaties waarvoor AppAPI vereist is:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Als je een applicatie wilt ontwikkelen, dan helpen en assisteren wij jou graag._\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werk een ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak Pull Request aan\n- 🧑‍💻 Ontwikkel je eigen applicatie met behulp van AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nl.json b/l10n/nl.json index fa5714f6..c55ba8b7 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -171,6 +171,7 @@ "Register" : "Aanmelden", "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef je Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n### Gebundelde App\n\n**Vanaf Nextcloud 30.0.1 is deze applicatie opgenomen in het standaard Nextcloud-pakket.**\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werkeen ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak een Pull Request aan\n- 🧑‍💻 Ontwikkel een eigen applicatie met AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Delete data on remove" : "Bij verwijderen ook data verwijderen", @@ -198,10 +199,12 @@ "Actions" : "Acties", "Results from other categories" : "Resultaten van andere categorieën", "No apps found" : "Geen apps gevonden", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp heeft een update beschikbaar","%n apps hebben een update beschikbaar"], "_Update_::_Update all_" : ["Update","Update alles"], "Type" : "Type", "Display Name" : "Weergavenaam", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname of pad naar Docker daemon socket (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "Met https ingeschakeld netwerk is ingesteld op host", "Network" : "Netwerk", "Docker network name" : "Docker netwerk naam", "by {author}\n{license}" : "door {author}\n{license}", @@ -228,6 +231,7 @@ "Your ExApps" : "Jouw ExApps", "An error occurred during the request. Unable to proceed." : "Er is een fout opgetreden tijdens het verzoek. Kan niet doorgaan.", "The app has been enabled but needs to be updated." : "De app is ingeschakeld maar moet geüpdated worden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt" + "Error: This app cannot be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef jouw Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n\n### Lijst met applicaties waarvoor AppAPI vereist is:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Als je een applicatie wilt ontwikkelen, dan helpen en assisteren wij jou graag._\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werk een ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak Pull Request aan\n- 🧑‍💻 Ontwikkel je eigen applicatie met behulp van AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From c2767305653b88b79310261f9ec6fdd2446c524f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 28 Jun 2025 00:13:06 +0000 Subject: [PATCH 147/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 6 +++--- l10n/ar.json | 6 +++--- l10n/ast.js | 2 +- l10n/ast.json | 2 +- l10n/ca.js | 6 +++--- l10n/ca.json | 6 +++--- l10n/cs.js | 6 +++--- l10n/cs.json | 6 +++--- l10n/da.js | 6 +++--- l10n/da.json | 6 +++--- l10n/de.js | 6 +++--- l10n/de.json | 6 +++--- l10n/de_DE.js | 6 +++--- l10n/de_DE.json | 6 +++--- l10n/en_GB.js | 6 +++--- l10n/en_GB.json | 6 +++--- l10n/es.js | 6 +++--- l10n/es.json | 6 +++--- l10n/fr.js | 6 +++--- l10n/fr.json | 6 +++--- l10n/ga.js | 6 +++--- l10n/ga.json | 6 +++--- l10n/gl.js | 6 +++--- l10n/gl.json | 6 +++--- l10n/ko.js | 6 +++--- l10n/ko.json | 6 +++--- l10n/nb.js | 6 +++--- l10n/nb.json | 6 +++--- l10n/nl.js | 6 +++--- l10n/nl.json | 6 +++--- l10n/pt_BR.js | 6 +++--- l10n/pt_BR.json | 6 +++--- l10n/ru.js | 6 +++--- l10n/ru.json | 6 +++--- l10n/sk.js | 6 +++--- l10n/sk.json | 6 +++--- l10n/sr.js | 6 +++--- l10n/sr.json | 6 +++--- l10n/tr.js | 6 +++--- l10n/tr.json | 6 +++--- l10n/ug.js | 6 +++--- l10n/ug.json | 6 +++--- l10n/zh_HK.js | 6 +++--- l10n/zh_HK.json | 6 +++--- l10n/zh_TW.js | 6 +++--- l10n/zh_TW.json | 6 +++--- 46 files changed, 134 insertions(+), 134 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 31832d08..2c484f6e 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -52,6 +52,9 @@ OC.L10N.register( "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", + "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", + "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", + "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", @@ -114,9 +117,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", - "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", - "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", - "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", "Daemon configuration template" : "قالب تهيئة برنامج خفي", diff --git a/l10n/ar.json b/l10n/ar.json index 10771feb..b1329324 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -50,6 +50,9 @@ "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", + "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", + "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", + "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", @@ -112,9 +115,6 @@ "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", - "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", - "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", - "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", "Daemon configuration template" : "قالب تهيئة برنامج خفي", diff --git a/l10n/ast.js b/l10n/ast.js index 82a65064..c16b286b 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -16,6 +16,7 @@ OC.L10N.register( "Default" : "Por defeutu", "Set as default" : "Predeterminar", "Edit" : "Editar", + "Daemon connection successful" : "La conexón del degorriu foi correuta", "Name" : "Nome", "Protocol" : "Protocolu", "Host" : "Agospiador", @@ -31,7 +32,6 @@ OC.L10N.register( "To" : "Pa", "Add" : "Amestar", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", - "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", "Set daemon as default" : "Predeterminar el degorriu", diff --git a/l10n/ast.json b/l10n/ast.json index 68eed4b4..dbdde6a2 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -14,6 +14,7 @@ "Default" : "Por defeutu", "Set as default" : "Predeterminar", "Edit" : "Editar", + "Daemon connection successful" : "La conexón del degorriu foi correuta", "Name" : "Nome", "Protocol" : "Protocolu", "Host" : "Agospiador", @@ -29,7 +30,6 @@ "To" : "Pa", "Add" : "Amestar", "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", - "Daemon connection successful" : "La conexón del degorriu foi correuta", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", "Set daemon as default" : "Predeterminar el degorriu", diff --git a/l10n/ca.js b/l10n/ca.js index c2918d3f..80d37519 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -48,6 +48,9 @@ OC.L10N.register( "Set as default" : "Estableix com a predeterminat", "Test deploy" : "Prova de desplegament", "Edit" : "Edició", + "Daemon connection successful" : "La connexió del dimoni ha estat correcta", + "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", + "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", "Deploy Daemon" : "Desplega Dimoni", "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", @@ -106,9 +109,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "No s'ha pogut registrar DaemonConfig. Comproveu els registres", "DaemonConfig successfully updated" : "DaemonConfig s'ha actualitzat correctament", "Failed to update DaemonConfig. Check the logs" : "No s'ha pogut actualitzar DaemonConfig. Comproveu els registres", - "Daemon connection successful" : "La connexió del dimoni ha estat correcta", - "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", - "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Edit Deploy Daemon" : "Edita Deploy Daemon", "Register Deploy Daemon" : "Registre Deploy Daemon", "Daemon configuration template" : "Plantilla de configuració del dimoni", diff --git a/l10n/ca.json b/l10n/ca.json index af330532..cf5530bf 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -46,6 +46,9 @@ "Set as default" : "Estableix com a predeterminat", "Test deploy" : "Prova de desplegament", "Edit" : "Edició", + "Daemon connection successful" : "La connexió del dimoni ha estat correcta", + "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", + "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", "Deploy Daemon" : "Desplega Dimoni", "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", @@ -104,9 +107,6 @@ "Failed to register DaemonConfig. Check the logs" : "No s'ha pogut registrar DaemonConfig. Comproveu els registres", "DaemonConfig successfully updated" : "DaemonConfig s'ha actualitzat correctament", "Failed to update DaemonConfig. Check the logs" : "No s'ha pogut actualitzar DaemonConfig. Comproveu els registres", - "Daemon connection successful" : "La connexió del dimoni ha estat correcta", - "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", - "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Edit Deploy Daemon" : "Edita Deploy Daemon", "Register Deploy Daemon" : "Registre Deploy Daemon", "Daemon configuration template" : "Plantilla de configuració del dimoni", diff --git a/l10n/cs.js b/l10n/cs.js index ae77d41e..86248069 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -54,6 +54,9 @@ OC.L10N.register( "Test deploy" : "Vyzkoušet nasazení", "Docker registries" : "Docker registry", "Edit" : "Upravit", + "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -130,9 +133,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", - "Daemon connection successful" : "Připojení ke službě úspěšné", - "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", - "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", diff --git a/l10n/cs.json b/l10n/cs.json index 13d1a9d0..bb1abc0f 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -52,6 +52,9 @@ "Test deploy" : "Vyzkoušet nasazení", "Docker registries" : "Docker registry", "Edit" : "Upravit", + "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -128,9 +131,6 @@ "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", - "Daemon connection successful" : "Připojení ke službě úspěšné", - "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", - "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Edit Deploy Daemon" : "Upravit proces služby nasazován", "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", diff --git a/l10n/da.js b/l10n/da.js index d425ebc0..f20e081c 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Test udgivelse", "Docker registries" : "Docker registre", "Edit" : "Rediger", + "Daemon connection successful" : "Daemon forbundet", + "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", + "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", "DaemonConfig successfully updated" : "DaemonConfig opdateret", "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", - "Daemon connection successful" : "Daemon forbundet", - "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", - "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Edit Deploy Daemon" : "Rediger udgivelsesdaemon", "Register Deploy Daemon" : "Registrer udgivelsesdaemon", "Daemon configuration template" : "Daemon konfigurationsskabelon", diff --git a/l10n/da.json b/l10n/da.json index 355aaba4..fb0af6d7 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -53,6 +53,9 @@ "Test deploy" : "Test udgivelse", "Docker registries" : "Docker registre", "Edit" : "Rediger", + "Daemon connection successful" : "Daemon forbundet", + "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", + "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", "Deploy Daemon" : "Implementer Daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", "DaemonConfig successfully updated" : "DaemonConfig opdateret", "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", - "Daemon connection successful" : "Daemon forbundet", - "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", - "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Edit Deploy Daemon" : "Rediger udgivelsesdaemon", "Register Deploy Daemon" : "Registrer udgivelsesdaemon", "Daemon configuration template" : "Daemon konfigurationsskabelon", diff --git a/l10n/de.js b/l10n/de.js index a7571d4d..eaa63522 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Bereitstellung testen", "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/de.json b/l10n/de.json index da939e8b..81418977 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -53,6 +53,9 @@ "Test deploy" : "Bereitstellung testen", "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index bf4942f4..dca608b5 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Bereitstellung testen", "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 6e61fdc4..a43dc85f 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -53,6 +53,9 @@ "Test deploy" : "Bereitstellung testen", "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", + "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", - "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index cb7da6ce..1c0ad3a3 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Test deploy", "Docker registries" : "Docker registries", "Edit" : "Edit", + "Daemon connection successful" : "Daemon connection successful", + "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", + "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", - "Daemon connection successful" : "Daemon connection successful", - "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", - "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Edit Deploy Daemon" : "Edit Deploy Daemon", "Register Deploy Daemon" : "Register Deploy Daemon", "Daemon configuration template" : "Daemon configuration template", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index f1c0066a..938e47d6 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -53,6 +53,9 @@ "Test deploy" : "Test deploy", "Docker registries" : "Docker registries", "Edit" : "Edit", + "Daemon connection successful" : "Daemon connection successful", + "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", + "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", - "Daemon connection successful" : "Daemon connection successful", - "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", - "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Edit Deploy Daemon" : "Edit Deploy Daemon", "Register Deploy Daemon" : "Register Deploy Daemon", "Daemon configuration template" : "Daemon configuration template", diff --git a/l10n/es.js b/l10n/es.js index 5f7cba56..7a08c1a1 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Probar despliegue", "Docker registries" : "Registros Docker", "Edit" : "Editar", + "Daemon connection successful" : "Conexión a daemon exitosa", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Verifique los registros", "DaemonConfig successfully updated" : "Se actualizó DaemonConfig exitosamente", "Failed to update DaemonConfig. Check the logs" : "Fallo al actualizar DaemonConfig. Verifique los registros", - "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Edit Deploy Daemon" : "Editar Daemon de despliegue", "Register Deploy Daemon" : "Registrar Daemon de despliegue", "Daemon configuration template" : "Plantilla de configuración de daemon", diff --git a/l10n/es.json b/l10n/es.json index 897c5aa8..685ade86 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -53,6 +53,9 @@ "Test deploy" : "Probar despliegue", "Docker registries" : "Registros Docker", "Edit" : "Editar", + "Daemon connection successful" : "Conexión a daemon exitosa", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Verifique los registros", "DaemonConfig successfully updated" : "Se actualizó DaemonConfig exitosamente", "Failed to update DaemonConfig. Check the logs" : "Fallo al actualizar DaemonConfig. Verifique los registros", - "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Edit Deploy Daemon" : "Editar Daemon de despliegue", "Register Deploy Daemon" : "Registrar Daemon de despliegue", "Daemon configuration template" : "Plantilla de configuración de daemon", diff --git a/l10n/fr.js b/l10n/fr.js index 6a22a3c8..61c670dd 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -46,6 +46,9 @@ OC.L10N.register( "Test deploy" : "Tester le déploiement", "Docker registries" : "Registres Docker", "Edit" : "Modifier", + "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", @@ -105,9 +108,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", - "Daemon connection successful" : "Connexion au Deamon réussie", - "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", - "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Edit Deploy Daemon" : "Modifier le déploiement Daemon", "Register Deploy Daemon" : "Enregistrer le service de déploiement", "Daemon configuration template" : "Modèle de configuration de Daemon", diff --git a/l10n/fr.json b/l10n/fr.json index ac6a063c..fb6a17d0 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -44,6 +44,9 @@ "Test deploy" : "Tester le déploiement", "Docker registries" : "Registres Docker", "Edit" : "Modifier", + "Daemon connection successful" : "Connexion au Deamon réussie", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", @@ -103,9 +106,6 @@ "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", - "Daemon connection successful" : "Connexion au Deamon réussie", - "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", - "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Edit Deploy Daemon" : "Modifier le déploiement Daemon", "Register Deploy Daemon" : "Enregistrer le service de déploiement", "Daemon configuration template" : "Modèle de configuration de Daemon", diff --git a/l10n/ga.js b/l10n/ga.js index f8fa6a93..d181303a 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Imscaradh tástála", "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", + "Daemon connection successful" : "D'éirigh le nasc deamhan", + "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", + "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", - "Daemon connection successful" : "D'éirigh le nasc deamhan", - "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", - "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", "Register Deploy Daemon" : "Clár Imscaradh Deamhan", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", diff --git a/l10n/ga.json b/l10n/ga.json index 6241dbd1..de2de7bd 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -53,6 +53,9 @@ "Test deploy" : "Imscaradh tástála", "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", + "Daemon connection successful" : "D'éirigh le nasc deamhan", + "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", + "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", - "Daemon connection successful" : "D'éirigh le nasc deamhan", - "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", - "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", "Register Deploy Daemon" : "Clár Imscaradh Deamhan", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", diff --git a/l10n/gl.js b/l10n/gl.js index 7840ff6c..0944c7ad 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -48,6 +48,9 @@ OC.L10N.register( "Set as default" : "Definir como predeterminado", "Test deploy" : "Proba da despregadura", "Edit" : "Editar", + "Daemon connection successful" : "Conexión satisfactoria do servizo", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", @@ -106,9 +109,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", - "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Edit Deploy Daemon" : "Editar os servizos de despregadura", "Register Deploy Daemon" : "Servizos de despregadura rexistrados", "Daemon configuration template" : "Modelo de configuración do servizo", diff --git a/l10n/gl.json b/l10n/gl.json index bc042bc1..28f21c1a 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -46,6 +46,9 @@ "Set as default" : "Definir como predeterminado", "Test deploy" : "Proba da despregadura", "Edit" : "Editar", + "Daemon connection successful" : "Conexión satisfactoria do servizo", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", @@ -104,9 +107,6 @@ "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", - "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Edit Deploy Daemon" : "Editar os servizos de despregadura", "Register Deploy Daemon" : "Servizos de despregadura rexistrados", "Daemon configuration template" : "Modelo de configuración do servizo", diff --git a/l10n/ko.js b/l10n/ko.js index e7d31884..1d1f3083 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -45,6 +45,9 @@ OC.L10N.register( "Set as default" : "디폴트로 설정", "Test deploy" : "테스트 배포", "Edit" : "편집", + "Daemon connection successful" : "데몬 연결 성공", + "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", + "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", @@ -99,9 +102,6 @@ OC.L10N.register( "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", - "Daemon connection successful" : "데몬 연결 성공", - "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", - "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Register Deploy Daemon" : "배포 데몬 등록", "Daemon configuration template" : "데몬 구성 템플릿", "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", diff --git a/l10n/ko.json b/l10n/ko.json index 7eb538f4..581d2e71 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -43,6 +43,9 @@ "Set as default" : "디폴트로 설정", "Test deploy" : "테스트 배포", "Edit" : "편집", + "Daemon connection successful" : "데몬 연결 성공", + "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", + "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Deploy daemon config details" : "데몬 구성 세부 정보 배포", "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", @@ -97,9 +100,6 @@ "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", - "Daemon connection successful" : "데몬 연결 성공", - "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", - "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Register Deploy Daemon" : "배포 데몬 등록", "Daemon configuration template" : "데몬 구성 템플릿", "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", diff --git a/l10n/nb.js b/l10n/nb.js index d121eb45..a41cffb8 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -45,6 +45,9 @@ OC.L10N.register( "Set as default" : "Angi som standard", "Test deploy" : "Test distribuering", "Edit" : "Rediger", + "Daemon connection successful" : "Vellykket daemon-forbindelse", + "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", + "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", @@ -103,9 +106,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", - "Daemon connection successful" : "Vellykket daemon-forbindelse", - "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", - "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Edit Deploy Daemon" : "Rediger distribuerings-daemon", "Register Deploy Daemon" : "Registrer distribuerings-daemon", "Daemon configuration template" : "Mal for konfigurasjon av daemon", diff --git a/l10n/nb.json b/l10n/nb.json index 625a214f..68a8f612 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -43,6 +43,9 @@ "Set as default" : "Angi som standard", "Test deploy" : "Test distribuering", "Edit" : "Rediger", + "Daemon connection successful" : "Vellykket daemon-forbindelse", + "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", + "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", @@ -101,9 +104,6 @@ "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", - "Daemon connection successful" : "Vellykket daemon-forbindelse", - "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", - "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Edit Deploy Daemon" : "Rediger distribuerings-daemon", "Register Deploy Daemon" : "Registrer distribuerings-daemon", "Daemon configuration template" : "Mal for konfigurasjon av daemon", diff --git a/l10n/nl.js b/l10n/nl.js index db0c09b2..a73d117e 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Test deploy", "Docker registries" : "Docker registries", "Edit" : "Bewerken", + "Daemon connection successful" : "Verbinding maken met Daemon gelukt", + "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", + "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Deploy daemon config details" : "Deploy Daemon configuratie details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Registratie van DaemonConfig niet gelukt. Controleer de logs", "DaemonConfig successfully updated" : "Bijwerken van DaemonConfig gelukt ", "Failed to update DaemonConfig. Check the logs" : "Bijwerken van DaemonConfig niet gelukt. Controleer de logs", - "Daemon connection successful" : "Verbinding maken met Daemon gelukt", - "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", - "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Edit Deploy Daemon" : "Deploy Demon aanpassen", "Register Deploy Daemon" : "Deploy Daemon registreren", "Daemon configuration template" : "Daemon configuratie template", diff --git a/l10n/nl.json b/l10n/nl.json index c55ba8b7..89282be9 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -53,6 +53,9 @@ "Test deploy" : "Test deploy", "Docker registries" : "Docker registries", "Edit" : "Bewerken", + "Daemon connection successful" : "Verbinding maken met Daemon gelukt", + "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", + "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Deploy daemon config details" : "Deploy Daemon configuratie details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Registratie van DaemonConfig niet gelukt. Controleer de logs", "DaemonConfig successfully updated" : "Bijwerken van DaemonConfig gelukt ", "Failed to update DaemonConfig. Check the logs" : "Bijwerken van DaemonConfig niet gelukt. Controleer de logs", - "Daemon connection successful" : "Verbinding maken met Daemon gelukt", - "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", - "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Edit Deploy Daemon" : "Deploy Demon aanpassen", "Register Deploy Daemon" : "Deploy Daemon registreren", "Daemon configuration template" : "Daemon configuratie template", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index d3e27e2e..b65cee2a 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Implantação de teste", "Docker registries" : "Registros do Docker", "Edit" : "Editar", + "Daemon connection successful" : "Conexão do daemon bem-sucedida", + "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", + "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", - "Daemon connection successful" : "Conexão do daemon bem-sucedida", - "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", - "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Edit Deploy Daemon" : "Editar Deploy Daemon", "Register Deploy Daemon" : "Registrar Deploy Daemon", "Daemon configuration template" : "Modelo de configuração do daemon", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index f387dada..8aa9eaf3 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -53,6 +53,9 @@ "Test deploy" : "Implantação de teste", "Docker registries" : "Registros do Docker", "Edit" : "Editar", + "Daemon connection successful" : "Conexão do daemon bem-sucedida", + "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", + "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", - "Daemon connection successful" : "Conexão do daemon bem-sucedida", - "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", - "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Edit Deploy Daemon" : "Editar Deploy Daemon", "Register Deploy Daemon" : "Registrar Deploy Daemon", "Daemon configuration template" : "Modelo de configuração do daemon", diff --git a/l10n/ru.js b/l10n/ru.js index 8d795def..07be71bf 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -46,6 +46,9 @@ OC.L10N.register( "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", "Edit" : "Редактирование", + "Daemon connection successful" : "Служба успешно установлена", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", @@ -104,9 +107,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", - "Daemon connection successful" : "Служба успешно установлена", - "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", - "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Edit Deploy Daemon" : "Изменить службу развертывания", "Register Deploy Daemon" : "Регистрация службы развертывания", "Daemon configuration template" : "Шаблон конфигурации службы", diff --git a/l10n/ru.json b/l10n/ru.json index c5d4aa23..a89a4489 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -44,6 +44,9 @@ "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", "Edit" : "Редактирование", + "Daemon connection successful" : "Служба успешно установлена", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", @@ -102,9 +105,6 @@ "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", - "Daemon connection successful" : "Служба успешно установлена", - "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", - "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Edit Deploy Daemon" : "Изменить службу развертывания", "Register Deploy Daemon" : "Регистрация службы развертывания", "Daemon configuration template" : "Шаблон конфигурации службы", diff --git a/l10n/sk.js b/l10n/sk.js index e7e66a1f..177c50d6 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -52,6 +52,9 @@ OC.L10N.register( "Set as default" : "Nastaviť ako predvolené", "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", + "Daemon connection successful" : "Pripojenie démona bolo úspešné", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", @@ -114,9 +117,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", - "Daemon connection successful" : "Pripojenie démona bolo úspešné", - "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", - "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Edit Deploy Daemon" : "Upraviť Démona nasadenia", "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", "Daemon configuration template" : "Šablóna konfigurácie démona", diff --git a/l10n/sk.json b/l10n/sk.json index 35738501..245a0e88 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -50,6 +50,9 @@ "Set as default" : "Nastaviť ako predvolené", "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", + "Daemon connection successful" : "Pripojenie démona bolo úspešné", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", @@ -112,9 +115,6 @@ "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", - "Daemon connection successful" : "Pripojenie démona bolo úspešné", - "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", - "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Edit Deploy Daemon" : "Upraviť Démona nasadenia", "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", "Daemon configuration template" : "Šablóna konfigurácie démona", diff --git a/l10n/sr.js b/l10n/sr.js index f78409b3..b5d516c4 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Тестирај постављање", "Docker registries" : "Docker регистратори", "Edit" : "Измени", + "Daemon connection successful" : "Веза са даемоном је успела", + "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", + "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", - "Daemon connection successful" : "Веза са даемоном је успела", - "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", - "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Edit Deploy Daemon" : "Уреди Даемона за постављање", "Register Deploy Daemon" : "Региструје Даемон за постављање", "Daemon configuration template" : "Шаблон подешавања Даемона", diff --git a/l10n/sr.json b/l10n/sr.json index b109aa3e..63c786ed 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -53,6 +53,9 @@ "Test deploy" : "Тестирај постављање", "Docker registries" : "Docker регистратори", "Edit" : "Измени", + "Daemon connection successful" : "Веза са даемоном је успела", + "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", + "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", - "Daemon connection successful" : "Веза са даемоном је успела", - "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", - "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Edit Deploy Daemon" : "Уреди Даемона за постављање", "Register Deploy Daemon" : "Региструје Даемон за постављање", "Daemon configuration template" : "Шаблон подешавања Даемона", diff --git a/l10n/tr.js b/l10n/tr.js index 5a8524ef..c33bb074 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "Dağıtımı sına", "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", + "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", + "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", - "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", - "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", - "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", diff --git a/l10n/tr.json b/l10n/tr.json index 2f3be5c3..552fb550 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -53,6 +53,9 @@ "Test deploy" : "Dağıtımı sına", "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", + "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", + "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", - "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", - "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", - "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", diff --git a/l10n/ug.js b/l10n/ug.js index ce2230aa..ff09ad68 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -46,6 +46,9 @@ OC.L10N.register( "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", "Edit" : "تەھرىر", + "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", @@ -104,9 +107,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", - "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", diff --git a/l10n/ug.json b/l10n/ug.json index b3dda862..18ed95da 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -44,6 +44,9 @@ "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", "Edit" : "تەھرىر", + "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", @@ -102,9 +105,6 @@ "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", - "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index e2e5f92d..5f5738be 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "測試部署", "Docker registries" : "Docker 註冊表", "Edit" : "編輯", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 2c24106b..b36a440e 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -53,6 +53,9 @@ "Test deploy" : "測試部署", "Docker registries" : "Docker 註冊表", "Edit" : "編輯", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 93153248..53ff1221 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -55,6 +55,9 @@ OC.L10N.register( "Test deploy" : "測試部署", "Docker registries" : "Docker registry", "Edit" : "編輯", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", @@ -131,9 +134,6 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index e3a82ffb..57e24ed2 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -53,6 +53,9 @@ "Test deploy" : "測試部署", "Docker registries" : "Docker registry", "Edit" : "編輯", + "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", @@ -129,9 +132,6 @@ "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Edit Deploy Daemon" : "編輯部署幕後程式", "Register Deploy Daemon" : "註冊部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", From 9cb4e9fcd38341de1d62b836266ee1d209e6af28 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 29 Jun 2025 00:12:53 +0000 Subject: [PATCH 148/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 4 ++++ l10n/cs.json | 4 ++++ l10n/de.js | 4 ++++ l10n/de.json | 4 ++++ l10n/de_DE.js | 4 ++++ l10n/de_DE.json | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index 86248069..58d29577 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -105,6 +105,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Od nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", "From and To cannot be the same" : "Od a Pro nemůže být totéž", + "Docker registry mapping added" : "Mapování na docker registry přidáno", + "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", + "Docker registry mapping removed" : "Mapování na docker registry odebráno", + "Error removing Docker registry mapping" : "Chyba při odebírání mapování na Docker registry", "Override Docker registries" : "Přebít Docker registry", "Configure Docker registry override mappings for selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", diff --git a/l10n/cs.json b/l10n/cs.json index bb1abc0f..5677d2d9 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -103,6 +103,10 @@ "From cannot be \"local\"" : "Od nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", "From and To cannot be the same" : "Od a Pro nemůže být totéž", + "Docker registry mapping added" : "Mapování na docker registry přidáno", + "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", + "Docker registry mapping removed" : "Mapování na docker registry odebráno", + "Error removing Docker registry mapping" : "Chyba při odebírání mapování na Docker registry", "Override Docker registries" : "Přebít Docker registry", "Configure Docker registry override mappings for selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", diff --git a/l10n/de.js b/l10n/de.js index eaa63522..43cae7f0 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", + "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", + "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", + "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", + "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", diff --git a/l10n/de.json b/l10n/de.json index 81418977..9d9d964e 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", + "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", + "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", + "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", + "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index dca608b5..f55f1a6c 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", + "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", + "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", + "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", + "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", "Configure Docker registry override mappings for selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index a43dc85f..40bc54fb 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", + "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", + "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", + "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", + "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", "Configure Docker registry override mappings for selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", From 0498d4b53ee349d4b14a9a898fddd19e21c745a5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 30 Jun 2025 00:12:55 +0000 Subject: [PATCH 149/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/en_GB.js | 4 ++++ l10n/en_GB.json | 4 ++++ l10n/nl.js | 4 ++++ l10n/nl.json | 4 ++++ l10n/sw.js | 1 + l10n/sw.json | 1 + l10n/tr.js | 24 ++++++++++++------------ l10n/tr.json | 24 ++++++++++++------------ l10n/zh_HK.js | 4 ++++ l10n/zh_HK.json | 4 ++++ 10 files changed, 50 insertions(+), 24 deletions(-) diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 1c0ad3a3..0847660a 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "From cannot be \"local\"", "This registry mapping already exists" : "This registry mapping already exists", "From and To cannot be the same" : "From and To cannot be the same", + "Docker registry mapping added" : "Docker registry mapping added", + "Error adding Docker registry mapping" : "Error adding Docker registry mapping", + "Docker registry mapping removed" : "Docker registry mapping removed", + "Error removing Docker registry mapping" : "Error removing Docker registry mapping", "Override Docker registries" : "Override Docker registries", "Configure Docker registry override mappings for selected daemon." : "Configure Docker registry override mappings for selected daemon.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step).", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 938e47d6..4500bc97 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "From cannot be \"local\"", "This registry mapping already exists" : "This registry mapping already exists", "From and To cannot be the same" : "From and To cannot be the same", + "Docker registry mapping added" : "Docker registry mapping added", + "Error adding Docker registry mapping" : "Error adding Docker registry mapping", + "Docker registry mapping removed" : "Docker registry mapping removed", + "Error removing Docker registry mapping" : "Error removing Docker registry mapping", "Override Docker registries" : "Override Docker registries", "Configure Docker registry override mappings for selected daemon." : "Configure Docker registry override mappings for selected daemon.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step).", diff --git a/l10n/nl.js b/l10n/nl.js index a73d117e..b7efd766 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "\"Van\" mag niet \"local\" zijn", "This registry mapping already exists" : "Deze registry mapping bestaat al", "From and To cannot be the same" : "Van en Naar mogen niet hetzelfde zijn", + "Docker registry mapping added" : "Docker-registertoewijzing toegevoegd", + "Error adding Docker registry mapping" : "Fout bij het toevoegen van Docker-registertoewijzing", + "Docker registry mapping removed" : "Docker-registertoewijzing verwijderd", + "Error removing Docker registry mapping" : "Fout bij het verwijderen van Docker-registertoewijzing", "Override Docker registries" : "Override Docker registries", "Configure Docker registry override mappings for selected daemon." : "Configureer Docker registry override mappings voor de geselecteerde daemon.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "De overeenkomende source registry in ExApp info.xml zal worden overschreven tijdens deploy (image pull stap).", diff --git a/l10n/nl.json b/l10n/nl.json index 89282be9..c0bde06e 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "\"Van\" mag niet \"local\" zijn", "This registry mapping already exists" : "Deze registry mapping bestaat al", "From and To cannot be the same" : "Van en Naar mogen niet hetzelfde zijn", + "Docker registry mapping added" : "Docker-registertoewijzing toegevoegd", + "Error adding Docker registry mapping" : "Fout bij het toevoegen van Docker-registertoewijzing", + "Docker registry mapping removed" : "Docker-registertoewijzing verwijderd", + "Error removing Docker registry mapping" : "Fout bij het verwijderen van Docker-registertoewijzing", "Override Docker registries" : "Override Docker registries", "Configure Docker registry override mappings for selected daemon." : "Configureer Docker registry override mappings voor de geselecteerde daemon.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "De overeenkomende source registry in ExApp info.xml zal worden overschreven tijdens deploy (image pull stap).", diff --git a/l10n/sw.js b/l10n/sw.js index d29d5263..7116d69a 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -8,6 +8,7 @@ OC.L10N.register( "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", "Add" : "Ongeza", + "Disabled" : "Zima", "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", diff --git a/l10n/sw.json b/l10n/sw.json index 0dca97f8..a6884e9b 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -6,6 +6,7 @@ "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", "Add" : "Ongeza", + "Disabled" : "Zima", "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", diff --git a/l10n/tr.js b/l10n/tr.js index c33bb074..7ec710cf 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -7,10 +7,10 @@ OC.L10N.register( "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", "Error adding Docker registry" : "Docker kaydı eklenirken sorun çıktı", "Error removing Docker registry" : "Docker kaydı kaldırılırken sorun çıktı", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", - "Failed to enable ExApp" : "ExApp etkinleştirilemedi", - "Failed to disable ExApp" : "ExApp devre dışı bırakılamadı", + "Failed to enable ExApp" : "ExApp kullanıma alınamadı", + "Failed to disable ExApp" : "ExApp kullanımdan kaldırılamadı", "Could not update ExApp" : "ExApp güncellenemedi", "Error starting update of ExApp" : "ExApp güncellemesi başlatılırken sorun çıktı", "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", @@ -90,7 +90,7 @@ OC.L10N.register( "Init step" : "Başlatma adımı", "Wait for initialization step to finish" : "Tamamlamak için başlatma adımını bekler", "Enabled" : "Kullanılıyor", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Etkinleştirilmiş olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Kullanıma alınmış olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", @@ -129,7 +129,7 @@ OC.L10N.register( "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi istenecek.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", @@ -159,7 +159,7 @@ OC.L10N.register( "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", - "Disabled" : "Devre Dışı", + "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", @@ -186,7 +186,7 @@ OC.L10N.register( "User documentation" : "Kullanıcı belgeleri", "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", @@ -215,7 +215,7 @@ OC.L10N.register( "Details" : "Ayrıntılar", "Changelog" : "Değişiklik günlüğü", "Active apps" : "Etkin uygulamalar", - "Disabled apps" : "Devre dışı uygulamalar", + "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", "Updates" : "Güncellemeler", "Featured apps" : "Öne çıkarılmış uygulamalar", "Supported apps" : "Desteklenen uygulamalar", @@ -223,8 +223,8 @@ OC.L10N.register( "{progress}% Deploying" : "Hazırlanıyor %{progress}", "{progress}% Initializing" : "%{progress} hazırlandı", "Healthchecking" : "Sağlık denetleniyor", - "Deploy and Enable" : "Dağıt ve Etkinleştir", - "Enable" : "Etkinleştir", + "Deploy and Enable" : "Dağıt ve kullanıma al", + "Enable" : "Kullanıma al", "Disable" : "Kullanımdan kaldır", "Allow untested app" : "Denenmemiş uygulamalar kullanılabilsin", "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", @@ -232,8 +232,8 @@ OC.L10N.register( "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", "Your ExApps" : "ExApp bileşenleriniz", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated." : "Uygulama etkinleştirilmiş ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", + "The app has been enabled but needs to be updated." : "Uygulama kullanıma alındı ancak güncellenmesi gerekiyor.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 552fb550..fb8effe7 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -5,10 +5,10 @@ "ExApp not found, failed to get status" : "ExApp bulunamadı. Durum alınamadı", "Error adding Docker registry" : "Docker kaydı eklenirken sorun çıktı", "Error removing Docker registry" : "Docker kaydı kaldırılırken sorun çıktı", - "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinden kurulmamış. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "Could not perform installation of ExApp" : "ExApp kurulumu yapılamadı", - "Failed to enable ExApp" : "ExApp etkinleştirilemedi", - "Failed to disable ExApp" : "ExApp devre dışı bırakılamadı", + "Failed to enable ExApp" : "ExApp kullanıma alınamadı", + "Failed to disable ExApp" : "ExApp kullanımdan kaldırılamadı", "Could not update ExApp" : "ExApp güncellenemedi", "Error starting update of ExApp" : "ExApp güncellemesi başlatılırken sorun çıktı", "Could not perform update of ExApp" : "ExApp güncellemesi yapılamadı", @@ -88,7 +88,7 @@ "Init step" : "Başlatma adımı", "Wait for initialization step to finish" : "Tamamlamak için başlatma adımını bekler", "Enabled" : "Kullanılıyor", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Etkinleştirilmiş olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Kullanıma alınmış olayın ExApp tarafından işlenip işlenmediğini ve her şeyin düzgün kaydedilip edilmediğini sınar", "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", @@ -127,7 +127,7 @@ "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi istenecek.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", @@ -157,7 +157,7 @@ "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", - "Disabled" : "Devre Dışı", + "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", @@ -184,7 +184,7 @@ "User documentation" : "Kullanıcı belgeleri", "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", - "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca etkinleştirme, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Bu uygulama AppStore üzerinde kayıtlı değil. Başka bir bilgi bulunamadı. Yalnızca kullanıma alma, kullanımdan kaldırma ve uygulamayı kaldırma işlemleri yapılabilir.", "This app is supported via your current Nextcloud subscription." : "Bu uygulamanın desteği geçerli Nextcloud aboneliğiniz ile sağlanır.", "Supported" : "Destekleniyor", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", @@ -213,7 +213,7 @@ "Details" : "Ayrıntılar", "Changelog" : "Değişiklik günlüğü", "Active apps" : "Etkin uygulamalar", - "Disabled apps" : "Devre dışı uygulamalar", + "Disabled apps" : "Kullanımdan kaldırılmış uygulamalar", "Updates" : "Güncellemeler", "Featured apps" : "Öne çıkarılmış uygulamalar", "Supported apps" : "Desteklenen uygulamalar", @@ -221,8 +221,8 @@ "{progress}% Deploying" : "Hazırlanıyor %{progress}", "{progress}% Initializing" : "%{progress} hazırlandı", "Healthchecking" : "Sağlık denetleniyor", - "Deploy and Enable" : "Dağıt ve Etkinleştir", - "Enable" : "Etkinleştir", + "Deploy and Enable" : "Dağıt ve kullanıma al", + "Enable" : "Kullanıma al", "Disable" : "Kullanımdan kaldır", "Allow untested app" : "Denenmemiş uygulamalar kullanılabilsin", "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", @@ -230,8 +230,8 @@ "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", "Your ExApps" : "ExApp bileşenleriniz", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated." : "Uygulama etkinleştirilmiş ancak güncellenmesi gerekiyor.", - "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", + "The app has been enabled but needs to be updated." : "Uygulama kullanıma alındı ancak güncellenmesi gerekiyor.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n\n### AppAPI gerektiren uygulamaların listesi:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Bir uygulama geliştirmek istiyorsanız size memnuniyetle yardımcı oluruz._\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 5f5738be..cefe5b98 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "來源不能是「本地」", "This registry mapping already exists" : "此註冊表映射已存在", "From and To cannot be the same" : "來源和目標不能相同", + "Docker registry mapping added" : "已添加 Docker 註冊表映射", + "Error adding Docker registry mapping" : "添加 Docker 註冊表映射時出錯", + "Docker registry mapping removed" : "已移除了 Docker 註冊表映射", + "Error removing Docker registry mapping" : "移除 Docker 註冊表映射時出錯", "Override Docker registries" : "覆蓋 Docker 註冊表", "Configure Docker registry override mappings for selected daemon." : "為選定的守護進程配置 Docker 註冊表覆蓋映射。", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "在部署過程中(映像拉取步驟),ExApp info.xml 中的匹配源註冊表將被覆蓋。", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index b36a440e..d38619c0 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "來源不能是「本地」", "This registry mapping already exists" : "此註冊表映射已存在", "From and To cannot be the same" : "來源和目標不能相同", + "Docker registry mapping added" : "已添加 Docker 註冊表映射", + "Error adding Docker registry mapping" : "添加 Docker 註冊表映射時出錯", + "Docker registry mapping removed" : "已移除了 Docker 註冊表映射", + "Error removing Docker registry mapping" : "移除 Docker 註冊表映射時出錯", "Override Docker registries" : "覆蓋 Docker 註冊表", "Configure Docker registry override mappings for selected daemon." : "為選定的守護進程配置 Docker 註冊表覆蓋映射。", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "在部署過程中(映像拉取步驟),ExApp info.xml 中的匹配源註冊表將被覆蓋。", From 7870567907ad27b5ec335f3923ae430be91634aa Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 1 Jul 2025 00:18:20 +0000 Subject: [PATCH 150/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/pt_BR.js | 4 ++++ l10n/pt_BR.json | 4 ++++ l10n/sw.js | 1 + l10n/sw.json | 1 + l10n/tr.js | 4 ++++ l10n/tr.json | 4 ++++ l10n/zh_TW.js | 4 ++++ l10n/zh_TW.json | 4 ++++ 10 files changed, 28 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index e9ee4a3f..30c726f7 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -40,6 +40,7 @@ OC.L10N.register( "Supported" : "Toetatud", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esiletõstetud rakendusi arendatakse kogukonna poolt. Nad pakuvad võimalust kasutada olulist funktsionaalsust ning on sobilikud igapäevaseks kasutuseks.", "Featured" : "Esile tõstetud", + "Update to {update}" : "Uuenda versioonini {update}", "Default Deploy daemon is not accessible" : "Kasutuselevõtmise taustateenus pole leitav", "Icon" : "Ikoon", "Version" : "Versioon", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 82a3c739..64019050 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -38,6 +38,7 @@ "Supported" : "Toetatud", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Esiletõstetud rakendusi arendatakse kogukonna poolt. Nad pakuvad võimalust kasutada olulist funktsionaalsust ning on sobilikud igapäevaseks kasutuseks.", "Featured" : "Esile tõstetud", + "Update to {update}" : "Uuenda versioonini {update}", "Default Deploy daemon is not accessible" : "Kasutuselevõtmise taustateenus pole leitav", "Icon" : "Ikoon", "Version" : "Versioon", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index b65cee2a..a1d81804 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "De não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", "From and To cannot be the same" : "De e Para não podem ser iguais", + "Docker registry mapping added" : "Adicionado o mapeamento do registro do Docker", + "Error adding Docker registry mapping" : "Erro ao adicionar o mapeamento do registro do Docker", + "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", + "Error removing Docker registry mapping" : "Erro ao remover o mapeamento do registro do Docker", "Override Docker registries" : "Substituir os registros do Docker", "Configure Docker registry override mappings for selected daemon." : "Configurar mapeamentos de substituição de registro do Docker para o daemon selecionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O registro de origem correspondente no info.xml do ExApp será substituído durante a implantação (etapa de image pull).", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 8aa9eaf3..e4235e4f 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "De não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", "From and To cannot be the same" : "De e Para não podem ser iguais", + "Docker registry mapping added" : "Adicionado o mapeamento do registro do Docker", + "Error adding Docker registry mapping" : "Erro ao adicionar o mapeamento do registro do Docker", + "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", + "Error removing Docker registry mapping" : "Erro ao remover o mapeamento do registro do Docker", "Override Docker registries" : "Substituir os registros do Docker", "Configure Docker registry override mappings for selected daemon." : "Configurar mapeamentos de substituição de registro do Docker para o daemon selecionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O registro de origem correspondente no info.xml do ExApp será substituído durante a implantação (etapa de image pull).", diff --git a/l10n/sw.js b/l10n/sw.js index 7116d69a..239148bd 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Futa", "Edit" : "Hariri", "Name" : "Jina", + "Remove" : "Ondoa", "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", "Add" : "Ongeza", diff --git a/l10n/sw.json b/l10n/sw.json index a6884e9b..96e882de 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -3,6 +3,7 @@ "Delete" : "Futa", "Edit" : "Hariri", "Name" : "Jina", + "Remove" : "Ondoa", "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", "Add" : "Ongeza", diff --git a/l10n/tr.js b/l10n/tr.js index 7ec710cf..084a7e50 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Nereden \"local\" olamaz", "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", "From and To cannot be the same" : "Nerede ve Nereye aynı olamaz", + "Docker registry mapping added" : "Docker kayıt eşleştirmesi eklendi", + "Error adding Docker registry mapping" : "Docker kayıt eşleştirmesi eklenirken sorun çıktı", + "Docker registry mapping removed" : "Docker kayıt eşleştirmesi kaldırıldı", + "Error removing Docker registry mapping" : "Docker kayıt eşleştirmesi kaldırılırken sorun çıktı", "Override Docker registries" : "Docker kayıtlarını değiştir", "Configure Docker registry override mappings for selected daemon." : "Seçilmiş işlem için Docket kaydı değişikliğini yapılandırın", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", diff --git a/l10n/tr.json b/l10n/tr.json index fb8effe7..a9e5463d 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "Nereden \"local\" olamaz", "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", "From and To cannot be the same" : "Nerede ve Nereye aynı olamaz", + "Docker registry mapping added" : "Docker kayıt eşleştirmesi eklendi", + "Error adding Docker registry mapping" : "Docker kayıt eşleştirmesi eklenirken sorun çıktı", + "Docker registry mapping removed" : "Docker kayıt eşleştirmesi kaldırıldı", + "Error removing Docker registry mapping" : "Docker kayıt eşleştirmesi kaldırılırken sorun çıktı", "Override Docker registries" : "Docker kayıtlarını değiştir", "Configure Docker registry override mappings for selected daemon." : "Seçilmiş işlem için Docket kaydı değişikliğini yapılandırın", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 53ff1221..d9783398 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "來源不能是「local」", "This registry mapping already exists" : "已存在此 registry 對映", "From and To cannot be the same" : "來源與目的地不能相同", + "Docker registry mapping added" : "已新增 Docker registry 對映", + "Error adding Docker registry mapping" : "新增 Docker registry 對映時發生錯誤", + "Docker registry mapping removed" : "已移除 Docker registry 對映", + "Error removing Docker registry mapping" : "移除 Docker registry 對映時發生錯誤", "Override Docker registries" : "覆寫 Docker registry", "Configure Docker registry override mappings for selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 57e24ed2..755219ba 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "來源不能是「local」", "This registry mapping already exists" : "已存在此 registry 對映", "From and To cannot be the same" : "來源與目的地不能相同", + "Docker registry mapping added" : "已新增 Docker registry 對映", + "Error adding Docker registry mapping" : "新增 Docker registry 對映時發生錯誤", + "Docker registry mapping removed" : "已移除 Docker registry 對映", + "Error removing Docker registry mapping" : "移除 Docker registry 對映時發生錯誤", "Override Docker registries" : "覆寫 Docker registry", "Configure Docker registry override mappings for selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", From abe86569a24c9edd4df66be8baf73efab366ed82 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 2 Jul 2025 00:18:28 +0000 Subject: [PATCH 151/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 5 +++++ l10n/et_EE.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 30c726f7..52fcc9af 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -12,6 +12,8 @@ OC.L10N.register( "Name" : "Nimi", "Host" : "Host", "Nextcloud URL" : "Nextcloudi võrguaadress", + "GPUs support" : "Graafikaprotsessori tugi", + "Compute device" : "Arvutusseade", "Enabled" : "Sisse lülitatud", "Remove" : "Eemalda", "From" : "Saatja", @@ -44,6 +46,7 @@ OC.L10N.register( "Default Deploy daemon is not accessible" : "Kasutuselevõtmise taustateenus pole leitav", "Icon" : "Ikoon", "Version" : "Versioon", + "Daemon" : "Taustateenus", "Level" : "Tase", "Actions" : "Tegevused", "Results from other categories" : "Tulemused muudest kategooriatest", @@ -64,7 +67,9 @@ OC.L10N.register( "Enable" : "Lülita sisse", "Disable" : "Lülita välja", "Allow untested app" : "Luba testimata rakenduse kasutamine", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "See rakendus pole märgitud ühilduvaks sinu Nextcloudi serveri versiooniga. Kui jätkad, siis saad ta ikkagi paigaldada, aga palun arvesta, et ta ei pruugi toimida ootuspäraselt.", "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik.", + "The app has been enabled but needs to be updated." : "See rakendus on kasutusel, aga vajab uuendamist.", "Error: This app cannot be enabled because it makes the server unstable" : "Viga: Kuna ta muudaks selle serveri mittetöökindlaks, siis seda rakendust ei saa sisse lülitada" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 64019050..13c6acae 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -10,6 +10,8 @@ "Name" : "Nimi", "Host" : "Host", "Nextcloud URL" : "Nextcloudi võrguaadress", + "GPUs support" : "Graafikaprotsessori tugi", + "Compute device" : "Arvutusseade", "Enabled" : "Sisse lülitatud", "Remove" : "Eemalda", "From" : "Saatja", @@ -42,6 +44,7 @@ "Default Deploy daemon is not accessible" : "Kasutuselevõtmise taustateenus pole leitav", "Icon" : "Ikoon", "Version" : "Versioon", + "Daemon" : "Taustateenus", "Level" : "Tase", "Actions" : "Tegevused", "Results from other categories" : "Tulemused muudest kategooriatest", @@ -62,7 +65,9 @@ "Enable" : "Lülita sisse", "Disable" : "Lülita välja", "Allow untested app" : "Luba testimata rakenduse kasutamine", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "See rakendus pole märgitud ühilduvaks sinu Nextcloudi serveri versiooniga. Kui jätkad, siis saad ta ikkagi paigaldada, aga palun arvesta, et ta ei pruugi toimida ootuspäraselt.", "An error occurred during the request. Unable to proceed." : "Päringu ajal tekkis viga. Jätkamine pole võimalik.", + "The app has been enabled but needs to be updated." : "See rakendus on kasutusel, aga vajab uuendamist.", "Error: This app cannot be enabled because it makes the server unstable" : "Viga: Kuna ta muudaks selle serveri mittetöökindlaks, siis seda rakendust ei saa sisse lülitada" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From 31e7522ddd6de7e6d8ecee9d57d5a5b24864d3f6 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 3 Jul 2025 00:18:39 +0000 Subject: [PATCH 152/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ga.js | 4 ++++ l10n/ga.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/ga.js b/l10n/ga.js index d181303a..1186bf3a 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Ní féidir ó bheith \"áitiúil\"", "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", "From and To cannot be the same" : "Ní féidir le Ó agus Chun a bheith mar an gcéanna", + "Docker registry mapping added" : "Mapáil chlárlainne Docker curtha leis", + "Error adding Docker registry mapping" : "Earráid ag cur mapáil chlárlainne Docker leis", + "Docker registry mapping removed" : "Baineadh mapáil chlárlainne Docker", + "Error removing Docker registry mapping" : "Earráid agus mapáil chlárlainne Docker á baint", "Override Docker registries" : "Sáraigh clárlanna Docker", "Configure Docker registry override mappings for selected daemon." : "Cumraigh mapálacha sáraithe clárlainne Docker don deamhan roghnaithe.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Déanfar an chlár foinse meaitseála in ExApp info.xml a fhorscríobh le linn an imscartha (céim tarraingthe íomhá).", diff --git a/l10n/ga.json b/l10n/ga.json index de2de7bd..7490aa37 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "Ní féidir ó bheith \"áitiúil\"", "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", "From and To cannot be the same" : "Ní féidir le Ó agus Chun a bheith mar an gcéanna", + "Docker registry mapping added" : "Mapáil chlárlainne Docker curtha leis", + "Error adding Docker registry mapping" : "Earráid ag cur mapáil chlárlainne Docker leis", + "Docker registry mapping removed" : "Baineadh mapáil chlárlainne Docker", + "Error removing Docker registry mapping" : "Earráid agus mapáil chlárlainne Docker á baint", "Override Docker registries" : "Sáraigh clárlanna Docker", "Configure Docker registry override mappings for selected daemon." : "Cumraigh mapálacha sáraithe clárlainne Docker don deamhan roghnaithe.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Déanfar an chlár foinse meaitseála in ExApp info.xml a fhorscríobh le linn an imscartha (céim tarraingthe íomhá).", From 058a3d76c9335398c97e6215cb196059cf327469 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 4 Jul 2025 00:18:18 +0000 Subject: [PATCH 153/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pl.js | 1 + l10n/pl.json | 1 + l10n/sw.js | 1 + l10n/sw.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/pl.js b/l10n/pl.js index 80d910e8..d18d50d4 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -18,6 +18,7 @@ OC.L10N.register( "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", "Edit" : "Edycja", + "Deploy Daemon" : "Uruchom demona", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", diff --git a/l10n/pl.json b/l10n/pl.json index 60e8a5eb..bb1161bd 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -16,6 +16,7 @@ "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", "Edit" : "Edycja", + "Deploy Daemon" : "Uruchom demona", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", diff --git a/l10n/sw.js b/l10n/sw.js index 239148bd..c549312a 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -19,6 +19,7 @@ OC.L10N.register( "Version" : "Toleo", "Actions" : "Utendekaji", "Type" : "Aina", + "Documentation" : "Uhifadhi wa nyaraka", "Details" : "Maelezo ya kina" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sw.json b/l10n/sw.json index 96e882de..8040fa97 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -17,6 +17,7 @@ "Version" : "Toleo", "Actions" : "Utendekaji", "Type" : "Aina", + "Documentation" : "Uhifadhi wa nyaraka", "Details" : "Maelezo ya kina" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From c0ecb0af23d3e671754c0661fc9a2a29750df7fb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 5 Jul 2025 00:18:16 +0000 Subject: [PATCH 154/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sw.js | 3 +++ l10n/sw.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/sw.js b/l10n/sw.js index c549312a..184a8009 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -3,8 +3,10 @@ OC.L10N.register( { "Cancel" : "Cancel", "Delete" : "Futa", + "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Edit" : "Hariri", "Name" : "Jina", + "Enabled" : "Washwa", "Remove" : "Ondoa", "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", @@ -16,6 +18,7 @@ OC.L10N.register( "Update to {version}" : "Sasisha kwenda {version}", "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", + "Icon" : "Aikoni", "Version" : "Toleo", "Actions" : "Utendekaji", "Type" : "Aina", diff --git a/l10n/sw.json b/l10n/sw.json index 8040fa97..a841b7dc 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -1,8 +1,10 @@ { "translations": { "Cancel" : "Cancel", "Delete" : "Futa", + "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Edit" : "Hariri", "Name" : "Jina", + "Enabled" : "Washwa", "Remove" : "Ondoa", "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", @@ -14,6 +16,7 @@ "Update to {version}" : "Sasisha kwenda {version}", "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", + "Icon" : "Aikoni", "Version" : "Toleo", "Actions" : "Utendekaji", "Type" : "Aina", From d1afbc990f20b8ba7487162599e3c733f9d23f68 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 8 Jul 2025 00:18:32 +0000 Subject: [PATCH 155/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sw.js | 1 + l10n/sw.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/sw.js b/l10n/sw.js index 184a8009..ce74260c 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -6,6 +6,7 @@ OC.L10N.register( "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Edit" : "Hariri", "Name" : "Jina", + "Host" : "Host", "Enabled" : "Washwa", "Remove" : "Ondoa", "From" : "Tangu/ kutoka", diff --git a/l10n/sw.json b/l10n/sw.json index a841b7dc..c58899a3 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -4,6 +4,7 @@ "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Edit" : "Hariri", "Name" : "Jina", + "Host" : "Host", "Enabled" : "Washwa", "Remove" : "Ondoa", "From" : "Tangu/ kutoka", From 797f495e15bac3bb055f48518779a882067e2aa7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 9 Jul 2025 00:18:56 +0000 Subject: [PATCH 156/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lv.js | 10 ++++++++-- l10n/lv.json | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/l10n/lv.js b/l10n/lv.js index 7d8bef4e..91647887 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -8,7 +8,7 @@ OC.L10N.register( "Host" : "Resursdators", "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", - "Remove" : "Izņemt", + "Remove" : "Noņemt", "From" : "No", "To" : "Līdz", "Add" : "Pievienot", @@ -22,6 +22,8 @@ OC.L10N.register( "User documentation" : "Lietotāja dokumentācija", "Admin documentation" : "Pārvaldītāja dokumentācija", "Developer documentation" : "Izstrādātāja dokumentācija", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Izceltās lietotnes ir kopienas izstrādātas. Tās sniedz centrālu funkcionalitāte un ir gatavas izmantošanai produkcijā.", + "Featured" : "Izcelta", "Update to {update}" : "Atjaunināt uz {update}", "Icon" : "Ikona", "Version" : "Versija", @@ -31,10 +33,14 @@ OC.L10N.register( "Type" : "Veids", "Display Name" : "Attēlojamais vārds", "Network" : "Tīkls", + "Your apps" : "Tavas lietotnes", "Documentation" : "Dokumentācija", - "Details" : "Detaļas", + "Details" : "Informācija", "Changelog" : "Izmaiņu žurnāls", + "Active apps" : "Izmantotās lietotnes", + "Disabled apps" : "Atspējotās lietotnes", "Updates" : "Atjauninājumi", + "Featured apps" : "Izceltās lietotnes", "Enable" : "Iespējot", "Disable" : "Deaktivēt" }, diff --git a/l10n/lv.json b/l10n/lv.json index fc4f08a0..48951d32 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -6,7 +6,7 @@ "Host" : "Resursdators", "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", - "Remove" : "Izņemt", + "Remove" : "Noņemt", "From" : "No", "To" : "Līdz", "Add" : "Pievienot", @@ -20,6 +20,8 @@ "User documentation" : "Lietotāja dokumentācija", "Admin documentation" : "Pārvaldītāja dokumentācija", "Developer documentation" : "Izstrādātāja dokumentācija", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Izceltās lietotnes ir kopienas izstrādātas. Tās sniedz centrālu funkcionalitāte un ir gatavas izmantošanai produkcijā.", + "Featured" : "Izcelta", "Update to {update}" : "Atjaunināt uz {update}", "Icon" : "Ikona", "Version" : "Versija", @@ -29,10 +31,14 @@ "Type" : "Veids", "Display Name" : "Attēlojamais vārds", "Network" : "Tīkls", + "Your apps" : "Tavas lietotnes", "Documentation" : "Dokumentācija", - "Details" : "Detaļas", + "Details" : "Informācija", "Changelog" : "Izmaiņu žurnāls", + "Active apps" : "Izmantotās lietotnes", + "Disabled apps" : "Atspējotās lietotnes", "Updates" : "Atjauninājumi", + "Featured apps" : "Izceltās lietotnes", "Enable" : "Iespējot", "Disable" : "Deaktivēt" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" From 6d53993e2784266b12ad1215370980df56e0aec2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 12 Jul 2025 00:17:59 +0000 Subject: [PATCH 157/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sr.js | 4 ++++ l10n/sr.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/sr.js b/l10n/sr.js index b5d516c4..801f79d0 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Од не може да буде „local”", "This registry mapping already exists" : "Ово мапирање регистратора већ постоји", "From and To cannot be the same" : "Од и На не могу да буду исто", + "Docker registry mapping added" : "Додато је мапирање Docker регистратора", + "Error adding Docker registry mapping" : "Грешка приликом додавања мапирања Docker регистратора", + "Docker registry mapping removed" : "Уклоњено је мапирање Docker регистратора", + "Error removing Docker registry mapping" : "Грешка приликом уклањања мапирања Docker регистратора", "Override Docker registries" : "Преиначи Docker регистраторе", "Configure Docker registry override mappings for selected daemon." : "Конфигуришите мапирања преиначења Docker регистратора за изабрани даемон.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Одговарајући изворни регистратор у ExApp info.xml ће се преписати током постављања (у кораку повлачења слике).", diff --git a/l10n/sr.json b/l10n/sr.json index 63c786ed..75836b3b 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "Од не може да буде „local”", "This registry mapping already exists" : "Ово мапирање регистратора већ постоји", "From and To cannot be the same" : "Од и На не могу да буду исто", + "Docker registry mapping added" : "Додато је мапирање Docker регистратора", + "Error adding Docker registry mapping" : "Грешка приликом додавања мапирања Docker регистратора", + "Docker registry mapping removed" : "Уклоњено је мапирање Docker регистратора", + "Error removing Docker registry mapping" : "Грешка приликом уклањања мапирања Docker регистратора", "Override Docker registries" : "Преиначи Docker регистраторе", "Configure Docker registry override mappings for selected daemon." : "Конфигуришите мапирања преиначења Docker регистратора за изабрани даемон.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Одговарајући изворни регистратор у ExApp info.xml ће се преписати током постављања (у кораку повлачења слике).", From cca48fa25f3232a7d1b3a0a7beeb1292e95a5966 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 19 Jul 2025 00:18:42 +0000 Subject: [PATCH 158/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sw.js | 4 +++- l10n/sw.json | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/l10n/sw.js b/l10n/sw.js index ce74260c..864fe217 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -24,6 +24,8 @@ OC.L10N.register( "Actions" : "Utendekaji", "Type" : "Aina", "Documentation" : "Uhifadhi wa nyaraka", - "Details" : "Maelezo ya kina" + "Details" : "Maelezo ya kina", + "Enable" : "Wezesha", + "Disable" : "Zima" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sw.json b/l10n/sw.json index c58899a3..f42c9ae4 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -22,6 +22,8 @@ "Actions" : "Utendekaji", "Type" : "Aina", "Documentation" : "Uhifadhi wa nyaraka", - "Details" : "Maelezo ya kina" + "Details" : "Maelezo ya kina", + "Enable" : "Wezesha", + "Disable" : "Zima" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From a76d59396ada7c5fb818c5966cedfcd6504bc64b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 22 Jul 2025 00:18:45 +0000 Subject: [PATCH 159/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es.js | 4 ++++ l10n/es.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index 7a08c1a1..3fdae5bb 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -106,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "De no puede ser \"local\"", "This registry mapping already exists" : "Este mapeo de registry ya existe", "From and To cannot be the same" : "De y para no pueden ser lo mismo", + "Docker registry mapping added" : "Se ha añadido la asignación del registro Docker", + "Error adding Docker registry mapping" : "Error al añadir la asignación del registro de Docker", + "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", + "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", "Override Docker registries" : "Anular registries Docker", "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de mapeos de registries Docker para el daemon seleccionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", diff --git a/l10n/es.json b/l10n/es.json index 685ade86..117cbe71 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -104,6 +104,10 @@ "From cannot be \"local\"" : "De no puede ser \"local\"", "This registry mapping already exists" : "Este mapeo de registry ya existe", "From and To cannot be the same" : "De y para no pueden ser lo mismo", + "Docker registry mapping added" : "Se ha añadido la asignación del registro Docker", + "Error adding Docker registry mapping" : "Error al añadir la asignación del registro de Docker", + "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", + "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", "Override Docker registries" : "Anular registries Docker", "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de mapeos de registries Docker para el daemon seleccionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", From f33562993521d39b8047ede116e97d78988f2aae Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 25 Jul 2025 00:19:00 +0000 Subject: [PATCH 160/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 17 +++++++++++++++++ l10n/be.json | 15 +++++++++++++++ l10n/uz.js | 6 +++--- l10n/uz.json | 6 +++--- 4 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 l10n/be.js create mode 100644 l10n/be.json diff --git a/l10n/be.js b/l10n/be.js new file mode 100644 index 00000000..3cec8d8a --- /dev/null +++ b/l10n/be.js @@ -0,0 +1,17 @@ +OC.L10N.register( + "app_api", + { + "Cancel" : "Скасаваць", + "Delete" : "Выдаліць", + "Name" : "Назва", + "Add" : "Дадаць", + "Confirm" : "Пацвердзіць", + "Save" : "Захаваць", + "Update to {version}" : "Абнаўленне да {version}", + "Update to {update}" : "Абнаўленне да {update}", + "Icon" : "Значок", + "Version" : "Версія", + "Actions" : "Дзеянні", + "Type" : "Тып" +}, +"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/be.json b/l10n/be.json new file mode 100644 index 00000000..c6ea354f --- /dev/null +++ b/l10n/be.json @@ -0,0 +1,15 @@ +{ "translations": { + "Cancel" : "Скасаваць", + "Delete" : "Выдаліць", + "Name" : "Назва", + "Add" : "Дадаць", + "Confirm" : "Пацвердзіць", + "Save" : "Захаваць", + "Update to {version}" : "Абнаўленне да {version}", + "Update to {update}" : "Абнаўленне да {update}", + "Icon" : "Значок", + "Version" : "Версія", + "Actions" : "Дзеянні", + "Type" : "Тып" +},"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/uz.js b/l10n/uz.js index 53ddc843..bdb4789e 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -1,12 +1,12 @@ OC.L10N.register( "app_api", { - "Cancel" : "Cancel", - "Delete" : "Delete", + "Cancel" : "Bekor qilish", + "Delete" : "O'chirish", "Password confirmation failed" : "Parol tasdiqlanmadi", "Edit" : "Tahrirlash", "Name" : "Name", - "Remove" : "Remove", + "Remove" : "O'chirish", "From" : "Dan", "To" : "Gacha", "Add" : "Qo'shish", diff --git a/l10n/uz.json b/l10n/uz.json index 8740fbe1..94634008 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -1,10 +1,10 @@ { "translations": { - "Cancel" : "Cancel", - "Delete" : "Delete", + "Cancel" : "Bekor qilish", + "Delete" : "O'chirish", "Password confirmation failed" : "Parol tasdiqlanmadi", "Edit" : "Tahrirlash", "Name" : "Name", - "Remove" : "Remove", + "Remove" : "O'chirish", "From" : "Dan", "To" : "Gacha", "Add" : "Qo'shish", From 0b40a382cf8b538263fd6777e7ede4f616f2af3a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 26 Jul 2025 00:18:41 +0000 Subject: [PATCH 161/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es.js | 2 +- l10n/es.json | 2 +- l10n/sw.js | 1 + l10n/sw.json | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/es.js b/l10n/es.js index 3fdae5bb..bbba04da 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -111,7 +111,7 @@ OC.L10N.register( "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", "Override Docker registries" : "Anular registries Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de mapeos de registries Docker para el daemon seleccionado.", + "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de asignaciones de registries Docker para el daemon seleccionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", "Image pull will be skipped" : "Se omitirá la obtención de la imagen", diff --git a/l10n/es.json b/l10n/es.json index 117cbe71..41888f89 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -109,7 +109,7 @@ "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", "Override Docker registries" : "Anular registries Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de mapeos de registries Docker para el daemon seleccionado.", + "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de asignaciones de registries Docker para el daemon seleccionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", "Image pull will be skipped" : "Se omitirá la obtención de la imagen", diff --git a/l10n/sw.js b/l10n/sw.js index 864fe217..b724d538 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Futa", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", + "Default" : "Chaguo msingi", "Edit" : "Hariri", "Name" : "Jina", "Host" : "Host", diff --git a/l10n/sw.json b/l10n/sw.json index f42c9ae4..175a1fe6 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Futa", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", + "Default" : "Chaguo msingi", "Edit" : "Hariri", "Name" : "Jina", "Host" : "Host", From ff8f84c8157e43e1b06fb3e6d0c5171853a3da0b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 28 Jul 2025 00:18:26 +0000 Subject: [PATCH 162/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uk.js | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/uk.json | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 356 insertions(+), 2 deletions(-) diff --git a/l10n/uk.js b/l10n/uk.js index 75f6dc47..8fca302c 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -1,27 +1,186 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Конфігурацію демона не знайдено", + "Error starting install of ExApp" : "Помилка під час встановлення ExApp", + "ExApp failed to register, check the NC logs" : "ExApp не вдалося зареєструвати, перевірте журнали ЧПК", + "ExApp not found, failed to get status" : "ExApp не знайдено, не вдалося отримати статус", + "Error adding Docker registry" : "Помилка додавання реєстру Docker", + "Error removing Docker registry" : "Помилка видалення реєстру Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ця програма не встановлюється з AppStore. Додаткова інформація відсутня. Дозволено лише вмикати/вимикати та видаляти.", + "Could not perform installation of ExApp" : "Не вдалося виконати інсталяцію ExApp", + "Failed to enable ExApp" : "Не вдалося увімкнути ExApp", + "Failed to disable ExApp" : "Не вдалося вимкнути ExApp", + "Could not update ExApp" : "Не вдалося оновити ExApp", + "Error starting update of ExApp" : "Помилка запуску оновлення ExApp", + "Could not perform update of ExApp" : "Не вдалося виконати оновлення ExApp", + "ExApp not found, failed to get logs" : "ExApp не знайдено, не вдалося отримати журнали", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Не вдалося отримати журнали контейнера. Примітка: Завантаження контейнера Docker працює тільки для контейнерів із драйвером журналювання json-file або journald. Помилка: %s", + "ExApp not found, failed to get deploy options" : "ExApp не знайдено, не вдалося отримати параметри розгортання", + "AppAPI authentication failed" : "Не вдалося пройти автентифікацію AppAPI", + "AppAPI ExApp notifier" : "Сповіщувач AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Команда з інтеграції штучного інтелекту", + "ExApps Settings" : "Налаштування ExApps", + "AppAPI deploy daemon" : "Демон розгортання AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Стандартний демон розгортання AppAPI не встановлено. Будь ласка, зареєструйте стандартний демон розгортання в налаштуваннях, щоб встановити зовнішні програми (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Демон розгортання AppAPI за замовчуванням \"%s\" недоступний. Будь ласка, перевірте конфігурацію демона.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Демон розгортання AppAPI за замовчуванням не використовує HaRP. Будь ласка, подумайте про його оновлення для кращої продуктивності.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проекту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", + "External Apps management" : "Керування зовнішніми програмами", + "Admin options saved" : "Параметри адміністратора збережено", + "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", + "Deploy Daemons" : "Розгортання демонів", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Демон розгортання за замовчуванням недоступний. Будь ласка, перевірте його конфігурацію", + "ExApp init timeout (minutes)" : "Тайм-аут ініціалізації ExApp (хвилини)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Таймаут процесу ініціалізації ExApp, після якого AppAPI позначить його як невдалий", + "ExApp init timeout" : "Тайм-аут ініціалізації ExApp", + "ExApp container restart policy" : "Політика перезапуску контейнера ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Вкажіть політику перезапуску контейнера, наприклад, \"завжди\", щоб забезпечити роботу ExApp після перезавантаження сервера демона", + "This settings changes are reflected only for newly created containers" : "Ці зміни налаштувань відображаються тільки для новостворених контейнерів", + "Are you sure you want delete Deploy Daemon" : "Ви впевнені, що хочете видалити Демон розгортання", + "All ExApps on this daemon will be removed" : "Усі ExApps на цьому демоні буде видалено", + "All ExApps installed on this daemon will be removed" : "Всі ExApps, встановлені на цьому демоні, буде видалено", "Cancel" : "Скасувати", "Delete" : "Вилучати", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Демон розгортання не може бути встановлений за замовчуванням", + "Failed to save admin options. Check the logs" : "Не вдалося зберегти параметри адміністрування. Перевірте логи", + "Password confirmation failed" : "Не вдалося підтвердити пароль", "Default" : "Типово", + "Set as default" : "Встановлено за замовчуванням", + "Test deploy" : "Тестове розгортання", + "Docker registries" : "Реєстри докерів", "Edit" : "Редагувати", + "Daemon connection successful" : "Підключення демона виконано успішно", + "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", + "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", + "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", + "Deploy Daemon" : "Розгортання демона", + "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Демон ручного встановлення, який зазвичай використовується для розробки. Він не може бути встановлений як демон за замовчуванням.", + "ExApps installed" : "Встановлено ExApps", "Name" : "Назва", + "Protocol" : "Протокол", "Host" : "Хост", + "ExApp direct communication (FRP disabled)" : "Прямий зв'язок з ExApp (FRP вимкнено)", + "Deploy config" : "Розгортання конфігурації", + "Docker network" : "Докерна мережа", + "Nextcloud URL" : "URL-адреса наступної хмари", + "HaProxy password" : "Пароль HaProxy", "GPUs support" : "Підтримка GPU", "Compute device" : "Обчислити пристрій", + "Additional options" : "Додаткові опції", + "Verify connection" : "Перевірте з'єднання", + "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", + "No Deploy daemons configured" : "Не налаштовано демонів розгортання", + "Register a custom one or setup from available templates" : "Зареєструвати власний або налаштувати з доступних шаблонів", + "Register Daemon" : "Зареєструвати демона", + "Register ExApp in Nextcloud" : "Зареєструйте ExApp у Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Перед розгортанням перевірте, чи зареєстровано ExApp у Nextcloud", + "Image pull" : "Витягування зображення", + "Check if the image is successfully pulled" : "Перевірте, чи успішно витягнуто зображення", + "Container started" : "Контейнер запущено", + "Check if the image successfully pulled and container is created and started" : "Перевірте, чи успішно витягнуто образ, створено та запущено контейнер", + "Heartbeat" : "Серцебиття", + "Check for the heartbeat is finished and healthy" : "Перевірте, чи серцебиття закінчилося і є здоровим", + "Init step" : "Початковий крок", + "Wait for initialization step to finish" : "Дочекайтеся завершення кроку ініціалізації", "Enabled" : "Увімкнено", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Перевірте, чи успішно ExApp обробив увімкнену подію та зареєстрував усе належним чином", + "Only if ExApp container is preset" : "Тільки якщо попередньо встановлено контейнер ExApp", + "Deploy test passed successfully!" : "Тест на розгортання успішно пройдено!", + "Deploy test failed at step \"{step}\"" : "Не вдалося виконати тест розгортання на кроці \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", + "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", + "More info" : "Більше інформації", + "Download ExApp logs" : "Завантажити журнали ExApp", + "Remove test ExApp" : "Видалити тестовий ExApp", + "Start Deploy test" : "Почніть тест на розгортання", + "Stop Deploy test" : "Тест на зупинку розгортання", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp скасовано, а контейнер видалено на \"Зупинити тест розгортання\"", + "Please enter a registry domain" : "Будь ласка, введіть домен в реєстрі", + "From cannot be \"local\"" : "Від не може бути \"локальним\"", + "This registry mapping already exists" : "Таке відображення реєстру вже існує", + "From and To cannot be the same" : "\"Від\" і \"До\" не можуть бути одним і тим самим", + "Docker registry mapping added" : "Додано відображення реєстру докерів", + "Error adding Docker registry mapping" : "Помилка додавання зіставлення реєстру Docker", + "Docker registry mapping removed" : "Видалено відображення реєстру докерів", + "Error removing Docker registry mapping" : "Помилка видалення зіставлення реєстру Docker", + "Override Docker registries" : "Перевизначення реєстрів Docker", + "Configure Docker registry override mappings for selected daemon." : "Налаштуйте заміщення реєстру Docker для обраного демона.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Відповідний реєстр джерел у файлі ExApp info.xml буде перезаписано під час розгортання (крок витягування образу).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Це корисно, якщо ви хочете використовувати власний реєстр Docker, наприклад, для використання приватного реєстру Docker або для використання іншого реєстру Docker для тестування.", + "Image pull will be skipped" : "Підтягування зображень буде пропущено", "Remove" : "Вилучити", + "No custom Docker registries configured" : "Не налаштовано користувацькі реєстри Docker", + "Add registry override mapping" : "Додати відображення заміщення реєстру", "From" : "Від", + "registry URL (e.g. ghcr.io)" : "URL-адресу реєстру (наприклад, ghcr.io)", "To" : "Кому", + "registry URL (e.g. docker.io)" : "URL-адресу реєстру (наприклад, docker.io)", "Add" : "Додати", + "Hostname to access ExApps" : "Ім'я хоста для доступу до ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Ім'я хоста (та порт), на якому {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud, наприклад {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста (і порт) або шлях, за яким {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud. Це також може бути шлях до сокета Docker. (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Демон з таким ім'ям вже існує", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретний ключ для зв'язку з контейнером HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Пароль автентифікації AppAPI Docker Socket Proxy", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Зміни будуть застосовані лише до нових встановлених ExApps. Для існуючих ExApps слід перестворити контейнери Docker.", + "The docker network that the deployed ex-apps would use." : "Мережа докерів, яку використовуватимуть розгорнуті ex-додатки.", + "URL should start with http:// or https://" : "URL-адреса повинна починатися з http:// або https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS-демона URL-адреса Nextcloud має бути HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker попросить увімкнути всі доступні графічні пристрої на хості демона у контейнерах ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig успішно зареєстровано", + "Failed to register DaemonConfig. Check the logs" : "Не вдалося зареєструвати DaemonConfig. Перевірте логи", + "DaemonConfig successfully updated" : "DaemonConfig успішно оновлено", + "Failed to update DaemonConfig. Check the logs" : "Не вдалося оновити DaemonConfig. Перевірте логи", + "Edit Deploy Daemon" : "Редагування демона розгортання", + "Register Deploy Daemon" : "Реєстрація Розгортання демона", + "Daemon configuration template" : "Шаблон конфігурації демона", + "Select daemon configuration template" : "Виберіть шаблон конфігурації демона", + "Daemon registration form" : "Реєстраційна форма Daemon", + "Unique Deploy Daemon Name" : "Унікальне ім'я демона розгортання", "Display name" : "Ім'я для показу", + "Deployment method" : "Спосіб розгортання", + "Select daemon deploy method" : "Вибір методу розгортання демона", + "HaRP host" : "HaRP хост", + "Daemon host" : "Носій демона", + "HaRP shared key" : "Спільний ключ HaRP", + "Password must be at least 12 characters long" : "Пароль повинен мати довжину не менше 12 символів", + "Set daemon as default" : "Встановити демона за замовчуванням", + "Set as default daemon" : "Встановлюється як демон за замовчуванням", + "Enable https" : "Увімкнути https", + "Show deploy config" : "Показати конфігурацію розгортання", + "Hide deploy config" : "Приховати конфігурацію розгортання", + "Enable HaRP" : "Увімкнути HaRP", + "FRP server address" : "Адреса сервера FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) сервера FRP, який повинен бути доступний для ex-app у мережі, визначеній у «Мережі Docker».", + "Docker socket proxy port" : "Проксі-порт докерного сокета", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт в HaRP, до якого підключається проксі-сервер Docker Socket. Він повинен бути відкритий, але для вбудованого проксі-сервера відкривати або змінювати його не потрібно.", + "Disable FRP" : "Вимкнути FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Прапорець лише для розширених налаштувань. Вимикає тунель FRP між ExApps і HaRP.", "Disabled" : "Вимкнено", + "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", + "Additional option" : "Додаткова опція", + "Add additional option" : "Додати додаткову опцію", + "Option key (unique)" : "Ключ опції (унікальний)", + "Option key (unique, e.g. my_key)" : "Ключ опції (унікальний, наприклад, my_key)", + "Option key is required" : "Потрібен ключ опції", + "Option value" : "Значення опції", + "Option value is required" : "Значення опції обов'язкове", "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", + "Check connection" : "Перевірте з'єднання", "External Apps" : "Зовнішні застосунки", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n### Вбудована програма\n\n**Починаючи з Nextcloud 30.0.1, ця програма входить до стандартного пакету Nextcloud.**\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", + "Delete data on remove" : "Видалення даних при видаленні", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Цей застосунок не має обмежень щодо мінімальної версії Nextcloud. В майбутньому це може викликати певні помилки.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для цього застосунку не визначено найвищу версію Nextcloud. Це може викликати помилку в майбутньому.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Цей застосунок не буде встановлено, оскільки такі залежності неможливо виконати:", @@ -31,21 +190,29 @@ OC.L10N.register( "User documentation" : "Користувацька документація", "Admin documentation" : "Документація адміністратора", "Developer documentation" : "Документація для розробника", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ця програма не зареєстрована в AppStore. Додаткова інформація відсутня. Дозволено лише вмикати/вимикати та видаляти дії.", "This app is supported via your current Nextcloud subscription." : "Підтримка застосунку через вашу поточну передплату Nextcloud.", "Supported" : "Підтримано", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Функціональні застосунки розробляються спільнотою. Вони пропонують основну функціональність і готові до використання у продуктовому середовищі.", "Featured" : "Функціональні", "Update to {update}" : "Оновити до {update}", + "All ExApps are up-to-date." : "Всі ExApps оновлені.", + "Default Deploy daemon is not accessible" : "За замовчуванням демон розгортання недоступний", "Icon" : "Значок", "Version" : "Версія", "Daemon" : "Демон", "Level" : "Рівень", "Actions" : "Дії", "Results from other categories" : "Результати з інших категорій", + "No apps found" : "Не знайдено жодної програми", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp має оновлення","%n додатків мають оновлення","%n додатків мають оновлення","%n додатків мають оновлення"], "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", "Display Name" : "Назва для показу", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста або шлях до демона Docker (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "З увімкненим https мережа налаштована на хост", "Network" : "Мережа", + "Docker network name" : "Ім'я докерної мережі", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", @@ -56,11 +223,21 @@ OC.L10N.register( "Updates" : "Оновлення", "Featured apps" : "Функціональне", "Supported apps" : "Застосунки, що підтримуються", + "manual-install apps cannot be updated" : "програми, встановлені вручну, не можуть бути оновлені", + "{progress}% Deploying" : "{progress}% Розгортання", + "{progress}% Initializing" : "{progress}% Ініціалізація", + "Healthchecking" : "Перевірка здоров'я", + "Deploy and Enable" : "Розгортання та активація", "Enable" : "Увімкнути", "Disable" : "Вимкнути", "Allow untested app" : "Дозволити непротестовані застосунки", + "Default Deploy daemon is not accessible. Please verify configuration" : "За замовчуванням демон розгортання недоступний. Будь ласка, перевірте конфігурацію", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Додаток буде завантажено з App Store і розгорнуто за допомогою демона розгортання за замовчуванням", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Відсутня інформація щодо підтримки цього застосунку вашою версією Nextcloud. Ви зможете встановити цей застосунок, проте він може працювати не так, як ви очікуєте.", + "Your ExApps" : "Ваші колишні програми", "An error occurred during the request. Unable to proceed." : "Під час запиту сталася помилка. Неможливо продовжити.", - "Error: This app cannot be enabled because it makes the server unstable" : "Помилка: цей застосунок неможливо увімкнути, оскільки він робить сервер нестабільним" + "The app has been enabled but needs to be updated." : "Додаток увімкнено, але його потрібно оновити.", + "Error: This app cannot be enabled because it makes the server unstable" : "Помилка: цей застосунок неможливо увімкнути, оскільки він робить сервер нестабільним", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n\n### Список додатків, які вимагають AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*" }, "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 9b265bd1..845ec4d1 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -1,25 +1,184 @@ { "translations": { + "Daemon config not found" : "Конфігурацію демона не знайдено", + "Error starting install of ExApp" : "Помилка під час встановлення ExApp", + "ExApp failed to register, check the NC logs" : "ExApp не вдалося зареєструвати, перевірте журнали ЧПК", + "ExApp not found, failed to get status" : "ExApp не знайдено, не вдалося отримати статус", + "Error adding Docker registry" : "Помилка додавання реєстру Docker", + "Error removing Docker registry" : "Помилка видалення реєстру Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ця програма не встановлюється з AppStore. Додаткова інформація відсутня. Дозволено лише вмикати/вимикати та видаляти.", + "Could not perform installation of ExApp" : "Не вдалося виконати інсталяцію ExApp", + "Failed to enable ExApp" : "Не вдалося увімкнути ExApp", + "Failed to disable ExApp" : "Не вдалося вимкнути ExApp", + "Could not update ExApp" : "Не вдалося оновити ExApp", + "Error starting update of ExApp" : "Помилка запуску оновлення ExApp", + "Could not perform update of ExApp" : "Не вдалося виконати оновлення ExApp", + "ExApp not found, failed to get logs" : "ExApp не знайдено, не вдалося отримати журнали", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Не вдалося отримати журнали контейнера. Примітка: Завантаження контейнера Docker працює тільки для контейнерів із драйвером журналювання json-file або journald. Помилка: %s", + "ExApp not found, failed to get deploy options" : "ExApp не знайдено, не вдалося отримати параметри розгортання", + "AppAPI authentication failed" : "Не вдалося пройти автентифікацію AppAPI", + "AppAPI ExApp notifier" : "Сповіщувач AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Команда з інтеграції штучного інтелекту", + "ExApps Settings" : "Налаштування ExApps", + "AppAPI deploy daemon" : "Демон розгортання AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Стандартний демон розгортання AppAPI не встановлено. Будь ласка, зареєструйте стандартний демон розгортання в налаштуваннях, щоб встановити зовнішні програми (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Демон розгортання AppAPI за замовчуванням \"%s\" недоступний. Будь ласка, перевірте конфігурацію демона.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Демон розгортання AppAPI за замовчуванням не використовує HaRP. Будь ласка, подумайте про його оновлення для кращої продуктивності.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проекту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", + "External Apps management" : "Керування зовнішніми програмами", + "Admin options saved" : "Параметри адміністратора збережено", + "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", + "Deploy Daemons" : "Розгортання демонів", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Демон розгортання за замовчуванням недоступний. Будь ласка, перевірте його конфігурацію", + "ExApp init timeout (minutes)" : "Тайм-аут ініціалізації ExApp (хвилини)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Таймаут процесу ініціалізації ExApp, після якого AppAPI позначить його як невдалий", + "ExApp init timeout" : "Тайм-аут ініціалізації ExApp", + "ExApp container restart policy" : "Політика перезапуску контейнера ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Вкажіть політику перезапуску контейнера, наприклад, \"завжди\", щоб забезпечити роботу ExApp після перезавантаження сервера демона", + "This settings changes are reflected only for newly created containers" : "Ці зміни налаштувань відображаються тільки для новостворених контейнерів", + "Are you sure you want delete Deploy Daemon" : "Ви впевнені, що хочете видалити Демон розгортання", + "All ExApps on this daemon will be removed" : "Усі ExApps на цьому демоні буде видалено", + "All ExApps installed on this daemon will be removed" : "Всі ExApps, встановлені на цьому демоні, буде видалено", "Cancel" : "Скасувати", "Delete" : "Вилучати", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Демон розгортання не може бути встановлений за замовчуванням", + "Failed to save admin options. Check the logs" : "Не вдалося зберегти параметри адміністрування. Перевірте логи", + "Password confirmation failed" : "Не вдалося підтвердити пароль", "Default" : "Типово", + "Set as default" : "Встановлено за замовчуванням", + "Test deploy" : "Тестове розгортання", + "Docker registries" : "Реєстри докерів", "Edit" : "Редагувати", + "Daemon connection successful" : "Підключення демона виконано успішно", + "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", + "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", + "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", + "Deploy Daemon" : "Розгортання демона", + "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Демон ручного встановлення, який зазвичай використовується для розробки. Він не може бути встановлений як демон за замовчуванням.", + "ExApps installed" : "Встановлено ExApps", "Name" : "Назва", + "Protocol" : "Протокол", "Host" : "Хост", + "ExApp direct communication (FRP disabled)" : "Прямий зв'язок з ExApp (FRP вимкнено)", + "Deploy config" : "Розгортання конфігурації", + "Docker network" : "Докерна мережа", + "Nextcloud URL" : "URL-адреса наступної хмари", + "HaProxy password" : "Пароль HaProxy", "GPUs support" : "Підтримка GPU", "Compute device" : "Обчислити пристрій", + "Additional options" : "Додаткові опції", + "Verify connection" : "Перевірте з'єднання", + "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", + "No Deploy daemons configured" : "Не налаштовано демонів розгортання", + "Register a custom one or setup from available templates" : "Зареєструвати власний або налаштувати з доступних шаблонів", + "Register Daemon" : "Зареєструвати демона", + "Register ExApp in Nextcloud" : "Зареєструйте ExApp у Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Перед розгортанням перевірте, чи зареєстровано ExApp у Nextcloud", + "Image pull" : "Витягування зображення", + "Check if the image is successfully pulled" : "Перевірте, чи успішно витягнуто зображення", + "Container started" : "Контейнер запущено", + "Check if the image successfully pulled and container is created and started" : "Перевірте, чи успішно витягнуто образ, створено та запущено контейнер", + "Heartbeat" : "Серцебиття", + "Check for the heartbeat is finished and healthy" : "Перевірте, чи серцебиття закінчилося і є здоровим", + "Init step" : "Початковий крок", + "Wait for initialization step to finish" : "Дочекайтеся завершення кроку ініціалізації", "Enabled" : "Увімкнено", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Перевірте, чи успішно ExApp обробив увімкнену подію та зареєстрував усе належним чином", + "Only if ExApp container is preset" : "Тільки якщо попередньо встановлено контейнер ExApp", + "Deploy test passed successfully!" : "Тест на розгортання успішно пройдено!", + "Deploy test failed at step \"{step}\"" : "Не вдалося виконати тест розгортання на кроці \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", + "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", + "More info" : "Більше інформації", + "Download ExApp logs" : "Завантажити журнали ExApp", + "Remove test ExApp" : "Видалити тестовий ExApp", + "Start Deploy test" : "Почніть тест на розгортання", + "Stop Deploy test" : "Тест на зупинку розгортання", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp скасовано, а контейнер видалено на \"Зупинити тест розгортання\"", + "Please enter a registry domain" : "Будь ласка, введіть домен в реєстрі", + "From cannot be \"local\"" : "Від не може бути \"локальним\"", + "This registry mapping already exists" : "Таке відображення реєстру вже існує", + "From and To cannot be the same" : "\"Від\" і \"До\" не можуть бути одним і тим самим", + "Docker registry mapping added" : "Додано відображення реєстру докерів", + "Error adding Docker registry mapping" : "Помилка додавання зіставлення реєстру Docker", + "Docker registry mapping removed" : "Видалено відображення реєстру докерів", + "Error removing Docker registry mapping" : "Помилка видалення зіставлення реєстру Docker", + "Override Docker registries" : "Перевизначення реєстрів Docker", + "Configure Docker registry override mappings for selected daemon." : "Налаштуйте заміщення реєстру Docker для обраного демона.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Відповідний реєстр джерел у файлі ExApp info.xml буде перезаписано під час розгортання (крок витягування образу).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Це корисно, якщо ви хочете використовувати власний реєстр Docker, наприклад, для використання приватного реєстру Docker або для використання іншого реєстру Docker для тестування.", + "Image pull will be skipped" : "Підтягування зображень буде пропущено", "Remove" : "Вилучити", + "No custom Docker registries configured" : "Не налаштовано користувацькі реєстри Docker", + "Add registry override mapping" : "Додати відображення заміщення реєстру", "From" : "Від", + "registry URL (e.g. ghcr.io)" : "URL-адресу реєстру (наприклад, ghcr.io)", "To" : "Кому", + "registry URL (e.g. docker.io)" : "URL-адресу реєстру (наприклад, docker.io)", "Add" : "Додати", + "Hostname to access ExApps" : "Ім'я хоста для доступу до ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Ім'я хоста (та порт), на якому {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud, наприклад {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста (і порт) або шлях, за яким {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud. Це також може бути шлях до сокета Docker. (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Демон з таким ім'ям вже існує", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретний ключ для зв'язку з контейнером HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Пароль автентифікації AppAPI Docker Socket Proxy", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Зміни будуть застосовані лише до нових встановлених ExApps. Для існуючих ExApps слід перестворити контейнери Docker.", + "The docker network that the deployed ex-apps would use." : "Мережа докерів, яку використовуватимуть розгорнуті ex-додатки.", + "URL should start with http:// or https://" : "URL-адреса повинна починатися з http:// або https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS-демона URL-адреса Nextcloud має бути HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker попросить увімкнути всі доступні графічні пристрої на хості демона у контейнерах ExApp.", + "DaemonConfig successfully registered" : "DaemonConfig успішно зареєстровано", + "Failed to register DaemonConfig. Check the logs" : "Не вдалося зареєструвати DaemonConfig. Перевірте логи", + "DaemonConfig successfully updated" : "DaemonConfig успішно оновлено", + "Failed to update DaemonConfig. Check the logs" : "Не вдалося оновити DaemonConfig. Перевірте логи", + "Edit Deploy Daemon" : "Редагування демона розгортання", + "Register Deploy Daemon" : "Реєстрація Розгортання демона", + "Daemon configuration template" : "Шаблон конфігурації демона", + "Select daemon configuration template" : "Виберіть шаблон конфігурації демона", + "Daemon registration form" : "Реєстраційна форма Daemon", + "Unique Deploy Daemon Name" : "Унікальне ім'я демона розгортання", "Display name" : "Ім'я для показу", + "Deployment method" : "Спосіб розгортання", + "Select daemon deploy method" : "Вибір методу розгортання демона", + "HaRP host" : "HaRP хост", + "Daemon host" : "Носій демона", + "HaRP shared key" : "Спільний ключ HaRP", + "Password must be at least 12 characters long" : "Пароль повинен мати довжину не менше 12 символів", + "Set daemon as default" : "Встановити демона за замовчуванням", + "Set as default daemon" : "Встановлюється як демон за замовчуванням", + "Enable https" : "Увімкнути https", + "Show deploy config" : "Показати конфігурацію розгортання", + "Hide deploy config" : "Приховати конфігурацію розгортання", + "Enable HaRP" : "Увімкнути HaRP", + "FRP server address" : "Адреса сервера FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) сервера FRP, який повинен бути доступний для ex-app у мережі, визначеній у «Мережі Docker».", + "Docker socket proxy port" : "Проксі-порт докерного сокета", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт в HaRP, до якого підключається проксі-сервер Docker Socket. Він повинен бути відкритий, але для вбудованого проксі-сервера відкривати або змінювати його не потрібно.", + "Disable FRP" : "Вимкнути FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Прапорець лише для розширених налаштувань. Вимикає тунель FRP між ExApps і HaRP.", "Disabled" : "Вимкнено", + "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", + "Additional option" : "Додаткова опція", + "Add additional option" : "Додати додаткову опцію", + "Option key (unique)" : "Ключ опції (унікальний)", + "Option key (unique, e.g. my_key)" : "Ключ опції (унікальний, наприклад, my_key)", + "Option key is required" : "Потрібен ключ опції", + "Option value" : "Значення опції", + "Option value is required" : "Значення опції обов'язкове", "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", + "Check connection" : "Перевірте з'єднання", "External Apps" : "Зовнішні застосунки", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n### Вбудована програма\n\n**Починаючи з Nextcloud 30.0.1, ця програма входить до стандартного пакету Nextcloud.**\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", + "Delete data on remove" : "Видалення даних при видаленні", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Цей застосунок не має обмежень щодо мінімальної версії Nextcloud. В майбутньому це може викликати певні помилки.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для цього застосунку не визначено найвищу версію Nextcloud. Це може викликати помилку в майбутньому.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Цей застосунок не буде встановлено, оскільки такі залежності неможливо виконати:", @@ -29,21 +188,29 @@ "User documentation" : "Користувацька документація", "Admin documentation" : "Документація адміністратора", "Developer documentation" : "Документація для розробника", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ця програма не зареєстрована в AppStore. Додаткова інформація відсутня. Дозволено лише вмикати/вимикати та видаляти дії.", "This app is supported via your current Nextcloud subscription." : "Підтримка застосунку через вашу поточну передплату Nextcloud.", "Supported" : "Підтримано", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Функціональні застосунки розробляються спільнотою. Вони пропонують основну функціональність і готові до використання у продуктовому середовищі.", "Featured" : "Функціональні", "Update to {update}" : "Оновити до {update}", + "All ExApps are up-to-date." : "Всі ExApps оновлені.", + "Default Deploy daemon is not accessible" : "За замовчуванням демон розгортання недоступний", "Icon" : "Значок", "Version" : "Версія", "Daemon" : "Демон", "Level" : "Рівень", "Actions" : "Дії", "Results from other categories" : "Результати з інших категорій", + "No apps found" : "Не знайдено жодної програми", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp має оновлення","%n додатків мають оновлення","%n додатків мають оновлення","%n додатків мають оновлення"], "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], "Type" : "Тип", "Display Name" : "Назва для показу", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста або шлях до демона Docker (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "З увімкненим https мережа налаштована на хост", "Network" : "Мережа", + "Docker network name" : "Ім'я докерної мережі", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", @@ -54,11 +221,21 @@ "Updates" : "Оновлення", "Featured apps" : "Функціональне", "Supported apps" : "Застосунки, що підтримуються", + "manual-install apps cannot be updated" : "програми, встановлені вручну, не можуть бути оновлені", + "{progress}% Deploying" : "{progress}% Розгортання", + "{progress}% Initializing" : "{progress}% Ініціалізація", + "Healthchecking" : "Перевірка здоров'я", + "Deploy and Enable" : "Розгортання та активація", "Enable" : "Увімкнути", "Disable" : "Вимкнути", "Allow untested app" : "Дозволити непротестовані застосунки", + "Default Deploy daemon is not accessible. Please verify configuration" : "За замовчуванням демон розгортання недоступний. Будь ласка, перевірте конфігурацію", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Додаток буде завантажено з App Store і розгорнуто за допомогою демона розгортання за замовчуванням", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Відсутня інформація щодо підтримки цього застосунку вашою версією Nextcloud. Ви зможете встановити цей застосунок, проте він може працювати не так, як ви очікуєте.", + "Your ExApps" : "Ваші колишні програми", "An error occurred during the request. Unable to proceed." : "Під час запиту сталася помилка. Неможливо продовжити.", - "Error: This app cannot be enabled because it makes the server unstable" : "Помилка: цей застосунок неможливо увімкнути, оскільки він робить сервер нестабільним" + "The app has been enabled but needs to be updated." : "Додаток увімкнено, але його потрібно оновити.", + "Error: This app cannot be enabled because it makes the server unstable" : "Помилка: цей застосунок неможливо увімкнути, оскільки він робить сервер нестабільним", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n\n### Список додатків, які вимагають AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*" },"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 From 3d678b00817ace9bda08294dc13d3030fd36a708 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 30 Jul 2025 00:18:39 +0000 Subject: [PATCH 163/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 1 + l10n/be.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index 3cec8d8a..30635834 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Скасаваць", "Delete" : "Выдаліць", + "Edit" : "Рэдагаваць", "Name" : "Назва", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", diff --git a/l10n/be.json b/l10n/be.json index c6ea354f..db3cd53c 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Скасаваць", "Delete" : "Выдаліць", + "Edit" : "Рэдагаваць", "Name" : "Назва", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", From 4b8f97f8b2e57150ae3325518531f5358c49472c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 1 Aug 2025 00:18:24 +0000 Subject: [PATCH 164/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sv.js | 2 +- l10n/sv.json | 2 +- l10n/uk.js | 2 +- l10n/uk.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/sv.js b/l10n/sv.js index 20d507f6..4fa44bb7 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -24,7 +24,7 @@ OC.L10N.register( "Update to {version}" : "Uppdatera till {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda:", "View in store" : "Visa i butik", "Visit website" : "Besök webbplats", "Report a bug" : "Rapportera ett problem", diff --git a/l10n/sv.json b/l10n/sv.json index d90ac609..2044d0bc 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -22,7 +22,7 @@ "Update to {version}" : "Uppdatera till {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda:", "View in store" : "Visa i butik", "Visit website" : "Besök webbplats", "Report a bug" : "Rapportera ett problem", diff --git a/l10n/uk.js b/l10n/uk.js index 8fca302c..30089633 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -97,7 +97,7 @@ OC.L10N.register( "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", "More info" : "Більше інформації", - "Download ExApp logs" : "Завантажити журнали ExApp", + "Download ExApp logs" : "Звантажити журнали ExApp", "Remove test ExApp" : "Видалити тестовий ExApp", "Start Deploy test" : "Почніть тест на розгортання", "Stop Deploy test" : "Тест на зупинку розгортання", diff --git a/l10n/uk.json b/l10n/uk.json index 845ec4d1..1b614b4c 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -95,7 +95,7 @@ "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", "More info" : "Більше інформації", - "Download ExApp logs" : "Завантажити журнали ExApp", + "Download ExApp logs" : "Звантажити журнали ExApp", "Remove test ExApp" : "Видалити тестовий ExApp", "Start Deploy test" : "Почніть тест на розгортання", "Stop Deploy test" : "Тест на зупинку розгортання", From 92bac9dcce9336928967797b51e1e7b3c00cd5ea Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 2 Aug 2025 00:18:37 +0000 Subject: [PATCH 165/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/mk.js | 1 + l10n/mk.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/mk.js b/l10n/mk.js index 6a7759d3..2383447b 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -52,6 +52,7 @@ OC.L10N.register( "Updates" : "Ажурирања", "Featured apps" : "Истакнати апликации", "Supported apps" : "Поддржани апликации", + "Deploy and Enable" : "Распореди и овозможи", "Enable" : "Овозможи", "Disable" : "Оневозможи", "Allow untested app" : "Дозволи не тестирана апликација", diff --git a/l10n/mk.json b/l10n/mk.json index c4c83382..b4445c96 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -50,6 +50,7 @@ "Updates" : "Ажурирања", "Featured apps" : "Истакнати апликации", "Supported apps" : "Поддржани апликации", + "Deploy and Enable" : "Распореди и овозможи", "Enable" : "Овозможи", "Disable" : "Оневозможи", "Allow untested app" : "Дозволи не тестирана апликација", From 63288dd84221d0eda292c43e5e866933fa2410ca Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 5 Aug 2025 00:19:05 +0000 Subject: [PATCH 166/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lv.js | 3 ++- l10n/lv.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/lv.js b/l10n/lv.js index 91647887..1f7220eb 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -42,6 +42,7 @@ OC.L10N.register( "Updates" : "Atjauninājumi", "Featured apps" : "Izceltās lietotnes", "Enable" : "Iespējot", - "Disable" : "Deaktivēt" + "Disable" : "Deaktivēt", + "Allow untested app" : "Atļaut nepārbaudītu lietotni" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/l10n/lv.json b/l10n/lv.json index 48951d32..ba3c88ee 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -40,6 +40,7 @@ "Updates" : "Atjauninājumi", "Featured apps" : "Izceltās lietotnes", "Enable" : "Iespējot", - "Disable" : "Deaktivēt" + "Disable" : "Deaktivēt", + "Allow untested app" : "Atļaut nepārbaudītu lietotni" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file From 5ecaee32d3abba9664b3a2a0b86bd18e46a16286 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 8 Aug 2025 00:18:43 +0000 Subject: [PATCH 167/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es.js | 6 +++--- l10n/es.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/es.js b/l10n/es.js index bbba04da..663e287f 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -110,14 +110,14 @@ OC.L10N.register( "Error adding Docker registry mapping" : "Error al añadir la asignación del registro de Docker", "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", - "Override Docker registries" : "Anular registries Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de asignaciones de registries Docker para el daemon seleccionado.", + "Override Docker registries" : "Reemplazar registries de Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar reemplazos de asignación de registries de Docker para el daemon seleccionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", "Image pull will be skipped" : "Se omitirá la obtención de la imagen", "Remove" : "Quitar", "No custom Docker registries configured" : "No existen registries Docker personalizados configurados", - "Add registry override mapping" : "Añadir anulación a mapeo de registry", + "Add registry override mapping" : "Añadir reemplazo a mapeo de registry", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL del registry (p.ej. ghcr.io)", "To" : "A", diff --git a/l10n/es.json b/l10n/es.json index 41888f89..5d078ddf 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -108,14 +108,14 @@ "Error adding Docker registry mapping" : "Error al añadir la asignación del registro de Docker", "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", - "Override Docker registries" : "Anular registries Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar anulaciones de asignaciones de registries Docker para el daemon seleccionado.", + "Override Docker registries" : "Reemplazar registries de Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar reemplazos de asignación de registries de Docker para el daemon seleccionado.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", "Image pull will be skipped" : "Se omitirá la obtención de la imagen", "Remove" : "Quitar", "No custom Docker registries configured" : "No existen registries Docker personalizados configurados", - "Add registry override mapping" : "Añadir anulación a mapeo de registry", + "Add registry override mapping" : "Añadir reemplazo a mapeo de registry", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL del registry (p.ej. ghcr.io)", "To" : "A", From 4573d2cc90cce61a323bde8cb188a5aa24c7ef91 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 9 Aug 2025 00:18:31 +0000 Subject: [PATCH 168/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 +- l10n/ar.json | 2 +- l10n/ast.js | 2 +- l10n/ast.json | 2 +- l10n/ca.js | 2 +- l10n/ca.json | 2 +- l10n/cs.js | 2 +- l10n/cs.json | 2 +- l10n/da.js | 2 +- l10n/da.json | 2 +- l10n/de.js | 2 +- l10n/de.json | 2 +- l10n/de_DE.js | 2 +- l10n/de_DE.json | 2 +- l10n/en_GB.js | 2 +- l10n/en_GB.json | 2 +- l10n/es.js | 2 +- l10n/es.json | 2 +- l10n/eu.js | 2 +- l10n/eu.json | 2 +- l10n/fr.js | 2 +- l10n/fr.json | 2 +- l10n/ga.js | 2 +- l10n/ga.json | 2 +- l10n/gl.js | 2 +- l10n/gl.json | 2 +- l10n/ja.js | 2 +- l10n/ja.json | 2 +- l10n/ko.js | 2 +- l10n/ko.json | 2 +- l10n/nb.js | 2 +- l10n/nb.json | 2 +- l10n/nl.js | 2 +- l10n/nl.json | 2 +- l10n/pl.js | 2 +- l10n/pl.json | 2 +- l10n/pt_BR.js | 2 +- l10n/pt_BR.json | 2 +- l10n/ru.js | 2 +- l10n/ru.json | 2 +- l10n/sk.js | 2 +- l10n/sk.json | 2 +- l10n/sr.js | 2 +- l10n/sr.json | 2 +- l10n/tr.js | 2 +- l10n/tr.json | 2 +- l10n/ug.js | 2 +- l10n/ug.json | 2 +- l10n/uk.js | 2 +- l10n/uk.json | 2 +- l10n/zh_CN.js | 2 +- l10n/zh_CN.json | 2 +- l10n/zh_HK.js | 2 +- l10n/zh_HK.json | 2 +- l10n/zh_TW.js | 2 +- l10n/zh_TW.json | 2 +- 56 files changed, 56 insertions(+), 56 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 2c484f6e..d69bd7c6 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -29,7 +29,6 @@ OC.L10N.register( "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "نشر البرامج الخفيّة Daemons. البرنامج Deploy Daemon (DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية.", @@ -155,6 +154,7 @@ OC.L10N.register( "Check connection" : "تحقَّق من الاتصال", "External Apps" : "تطبيقات خارجية", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", "Delete data on remove" : "إحذف البيانات عند الإزالة", diff --git a/l10n/ar.json b/l10n/ar.json index b1329324..d938496e 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -27,7 +27,6 @@ "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "نشر البرامج الخفيّة Daemons. البرنامج Deploy Daemon (DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية.", @@ -153,6 +152,7 @@ "Check connection" : "تحقَّق من الاتصال", "External Apps" : "تطبيقات خارجية", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", "Delete data on remove" : "إحذف البيانات عند الإزالة", diff --git a/l10n/ast.js b/l10n/ast.js index c16b286b..ffa2154d 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -8,7 +8,6 @@ OC.L10N.register( "Could not perform update of ExApp" : "Nun se pudo facer l'anovamientu de l'aplicación esterna", "Nextcloud AppAPI" : "AppAPI de Nextcloud", "External Apps management" : "Xestión d'aplicaciones esternes", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", @@ -43,6 +42,7 @@ OC.L10N.register( "Register" : "Rexistrase", "Check connection" : "Comprobar la conexón", "External Apps" : "Aplicaciones esternes", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "{license}-licensed" : "Con llicencia {license}", "Update to {version}" : "Anovar a la versión {version}", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", diff --git a/l10n/ast.json b/l10n/ast.json index dbdde6a2..81efad87 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -6,7 +6,6 @@ "Could not perform update of ExApp" : "Nun se pudo facer l'anovamientu de l'aplicación esterna", "Nextcloud AppAPI" : "AppAPI de Nextcloud", "External Apps management" : "Xestión d'aplicaciones esternes", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", @@ -41,6 +40,7 @@ "Register" : "Rexistrase", "Check connection" : "Comprobar la conexón", "External Apps" : "Aplicaciones esternes", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "{license}-licensed" : "Con llicencia {license}", "Update to {version}" : "Anovar a la versión {version}", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación nun se pue instalar porque nun se cumplen les dependencies siguientes:", diff --git a/l10n/ca.js b/l10n/ca.js index 80d37519..4f644517 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -25,7 +25,6 @@ OC.L10N.register( "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "Deploy Daemons" : "Desplega els dimonis", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", @@ -139,6 +138,7 @@ OC.L10N.register( "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Delete data on remove" : "Suprimir dades en eliminar", diff --git a/l10n/ca.json b/l10n/ca.json index cf5530bf..59a874e5 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -23,7 +23,6 @@ "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "Deploy Daemons" : "Desplega els dimonis", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", @@ -137,6 +136,7 @@ "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Delete data on remove" : "Suprimir dades en eliminar", diff --git a/l10n/cs.js b/l10n/cs.js index 58d29577..fa7d9061 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -30,7 +30,6 @@ OC.L10N.register( "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "Deploy Daemons" : "Nasadit procesy služeb", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", @@ -176,6 +175,7 @@ OC.L10N.register( "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", "External Apps" : "Externí aplikace", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", "Delete data on remove" : "Při odebrání smazat data", diff --git a/l10n/cs.json b/l10n/cs.json index 5677d2d9..bcd10b6b 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -28,7 +28,6 @@ "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "Deploy Daemons" : "Nasadit procesy služeb", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", @@ -174,6 +173,7 @@ "Register" : "Registrovat", "Check connection" : "Zkontrolovat připojení", "External Apps" : "Externí aplikace", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", "Delete data on remove" : "Při odebrání smazat data", diff --git a/l10n/da.js b/l10n/da.js index f20e081c..6254cc1f 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", "Deploy Daemons" : "Udgivelses daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemoner. Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", @@ -174,6 +173,7 @@ OC.L10N.register( "Check connection" : "Kontroller forbindelsen", "External Apps" : "Eksterne apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Delete data on remove" : "Slet data ved fjernelse", diff --git a/l10n/da.json b/l10n/da.json index fb0af6d7..0bff97ec 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -29,7 +29,6 @@ "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", "Deploy Daemons" : "Udgivelses daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemoner. Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", @@ -172,6 +171,7 @@ "Check connection" : "Kontroller forbindelsen", "External Apps" : "Eksterne apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Delete data on remove" : "Slet data ved fjernelse", diff --git a/l10n/de.js b/l10n/de.js index 43cae7f0..4d13a577 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/de.json b/l10n/de.json index 9d9d964e..85409838 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -29,7 +29,6 @@ "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -176,6 +175,7 @@ "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index f55f1a6c..21a708d3 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 40bc54fb..1d4b25c4 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -29,7 +29,6 @@ "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", @@ -176,6 +175,7 @@ "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 0847660a..98d41a6a 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Check connection", "External Apps" : "External Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Delete data on remove" : "Delete data on remove", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 4500bc97..bf792df5 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -29,7 +29,6 @@ "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", @@ -176,6 +175,7 @@ "Check connection" : "Check connection", "External Apps" : "External Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Delete data on remove" : "Delete data on remove", diff --git a/l10n/es.js b/l10n/es.js index 663e287f..06963a90 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Verificar conexión", "External Apps" : "Apps Externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n## App incluída\n\n** Desde la versión 30.0.1 de Nextcloud, esta aplicación está incluída en el paquete predeterminado de Nextcloud.**\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar datos al borrar", diff --git a/l10n/es.json b/l10n/es.json index 5d078ddf..5187d4cc 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -29,7 +29,6 @@ "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", @@ -176,6 +175,7 @@ "Check connection" : "Verificar conexión", "External Apps" : "Apps Externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n## App incluída\n\n** Desde la versión 30.0.1 de Nextcloud, esta aplicación está incluída en el paquete predeterminado de Nextcloud.**\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar datos al borrar", diff --git a/l10n/eu.js b/l10n/eu.js index b36762d0..a9100c38 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -16,7 +16,6 @@ OC.L10N.register( "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", @@ -56,6 +55,7 @@ OC.L10N.register( "Register" : "Erregistratu", "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", "Delete data on remove" : "Ezabatu datuak kentzean", diff --git a/l10n/eu.json b/l10n/eu.json index 42d59721..b46c8fe7 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -14,7 +14,6 @@ "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", @@ -54,6 +53,7 @@ "Register" : "Erregistratu", "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", "Delete data on remove" : "Ezabatu datuak kentzean", diff --git a/l10n/fr.js b/l10n/fr.js index 61c670dd..c1e2f6f8 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -22,7 +22,6 @@ OC.L10N.register( "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -141,6 +140,7 @@ OC.L10N.register( "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", "External Apps" : "Applications externes", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", "Delete data on remove" : "Supprimer les données lors de la désinstallation", diff --git a/l10n/fr.json b/l10n/fr.json index fb6a17d0..0c5f5ea3 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -20,7 +20,6 @@ "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "Deploy Daemons" : "Déployer Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", @@ -139,6 +138,7 @@ "Register" : "S’inscrire", "Check connection" : "Vérifier la connexion", "External Apps" : "Applications externes", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", "Delete data on remove" : "Supprimer les données lors de la désinstallation", diff --git a/l10n/ga.js b/l10n/ga.js index 1186bf3a..09605ee2 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Seiceáil an nasc", "External Apps" : "Aipeanna Seachtrach", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", "Delete data on remove" : "Scrios sonraí ar bhaint", diff --git a/l10n/ga.json b/l10n/ga.json index 7490aa37..0f5c7387 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -29,7 +29,6 @@ "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", @@ -176,6 +175,7 @@ "Check connection" : "Seiceáil an nasc", "External Apps" : "Aipeanna Seachtrach", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", "Delete data on remove" : "Scrios sonraí ar bhaint", diff --git a/l10n/gl.js b/l10n/gl.js index 0944c7ad..fc8544d8 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -25,7 +25,6 @@ OC.L10N.register( "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -139,6 +138,7 @@ OC.L10N.register( "Check connection" : "Comprobar a conexión", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar os datos ao retirar", diff --git a/l10n/gl.json b/l10n/gl.json index 28f21c1a..bb2c2ba8 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -23,7 +23,6 @@ "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", @@ -137,6 +136,7 @@ "Check connection" : "Comprobar a conexión", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar os datos ao retirar", diff --git a/l10n/ja.js b/l10n/ja.js index 3d10df50..bdcdfd7c 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", @@ -88,6 +87,7 @@ OC.L10N.register( "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", "Delete data on remove" : "削除時にデータを消去する", diff --git a/l10n/ja.json b/l10n/ja.json index 605c8d0e..1d1cae9b 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -29,7 +29,6 @@ "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", @@ -86,6 +85,7 @@ "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", "Delete data on remove" : "削除時にデータを消去する", diff --git a/l10n/ko.js b/l10n/ko.js index 1d1f3083..c442861a 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -22,7 +22,6 @@ OC.L10N.register( "External Apps management" : "외부 응용 프로그램 관리", "Admin options saved" : "관리자 옵션이 저장됨", "Failed to save admin options" : "관리자 옵션 저장 실패", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "Deploy Daemons" : "배포 데몬", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬. 배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", @@ -130,6 +129,7 @@ OC.L10N.register( "Register" : "등록", "Check connection" : "연결 확인", "External Apps" : "외부 응용 프로그램", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", "Delete data on remove" : "제거 시 데이터 삭제", diff --git a/l10n/ko.json b/l10n/ko.json index 581d2e71..395fad0c 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -20,7 +20,6 @@ "External Apps management" : "외부 응용 프로그램 관리", "Admin options saved" : "관리자 옵션이 저장됨", "Failed to save admin options" : "관리자 옵션 저장 실패", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "Deploy Daemons" : "배포 데몬", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬. 배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", @@ -128,6 +127,7 @@ "Register" : "등록", "Check connection" : "연결 확인", "External Apps" : "외부 응용 프로그램", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", "Delete data on remove" : "제거 시 데이터 삭제", diff --git a/l10n/nb.js b/l10n/nb.js index a41cffb8..3834248d 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -22,7 +22,6 @@ OC.L10N.register( "External Apps management" : "Administrasjon av eksterne apper", "Admin options saved" : "Administrasjonsalternativer lagret", "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "Deploy Daemons" : "Distribuer daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemons. Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdemon.", @@ -135,6 +134,7 @@ OC.L10N.register( "Register" : "Registrer", "Check connection" : "Sjekk forbindelsen", "External Apps" : "Eksterne apper", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", "Delete data on remove" : "Slett data ved fjerning", diff --git a/l10n/nb.json b/l10n/nb.json index 68a8f612..1d849885 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -20,7 +20,6 @@ "External Apps management" : "Administrasjon av eksterne apper", "Admin options saved" : "Administrasjonsalternativer lagret", "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "Deploy Daemons" : "Distribuer daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemons. Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdemon.", @@ -133,6 +132,7 @@ "Register" : "Registrer", "Check connection" : "Sjekk forbindelsen", "External Apps" : "Eksterne apper", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", "Delete data on remove" : "Slett data ved fjerning", diff --git a/l10n/nl.js b/l10n/nl.js index b7efd766..c8d78673 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "External Apps beheer", "Admin options saved" : "Admin opties opgeslagen", "Failed to save admin options" : "Kon admin opties niet opslaan", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef je Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n### Gebundelde App\n\n**Vanaf Nextcloud 30.0.1 is deze applicatie opgenomen in het standaard Nextcloud-pakket.**\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werkeen ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak een Pull Request aan\n- 🧑‍💻 Ontwikkel een eigen applicatie met AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Delete data on remove" : "Bij verwijderen ook data verwijderen", diff --git a/l10n/nl.json b/l10n/nl.json index c0bde06e..4c29ef1f 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -29,7 +29,6 @@ "External Apps management" : "External Apps beheer", "Admin options saved" : "Admin opties opgeslagen", "Failed to save admin options" : "Kon admin opties niet opslaan", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", @@ -176,6 +175,7 @@ "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef je Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n### Gebundelde App\n\n**Vanaf Nextcloud 30.0.1 is deze applicatie opgenomen in het standaard Nextcloud-pakket.**\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werkeen ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak een Pull Request aan\n- 🧑‍💻 Ontwikkel een eigen applicatie met AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Delete data on remove" : "Bij verwijderen ook data verwijderen", diff --git a/l10n/pl.js b/l10n/pl.js index d18d50d4..aa1eac0d 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -8,7 +8,6 @@ OC.L10N.register( "Nextcloud AppAPI" : "AppAPI Nextcloud", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Cancel" : "Anuluj", @@ -53,6 +52,7 @@ OC.L10N.register( "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", "External Apps" : "Aplikacje zewnętrzne", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", "Delete data on remove" : "Usuń dane przy usuwaniu", diff --git a/l10n/pl.json b/l10n/pl.json index bb1161bd..1baa9332 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -6,7 +6,6 @@ "Nextcloud AppAPI" : "AppAPI Nextcloud", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "Cancel" : "Anuluj", @@ -51,6 +50,7 @@ "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", "External Apps" : "Aplikacje zewnętrzne", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", "Delete data on remove" : "Usuń dane przy usuwaniu", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index a1d81804..c2366e58 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Verificar conexão", "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index e4235e4f..32fd0b62 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -29,7 +29,6 @@ "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", @@ -176,6 +175,7 @@ "Check connection" : "Verificar conexão", "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", diff --git a/l10n/ru.js b/l10n/ru.js index 07be71bf..54263c4e 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -23,7 +23,6 @@ OC.L10N.register( "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", @@ -136,6 +135,7 @@ OC.L10N.register( "Register" : "Регистрация", "Check connection" : "Проверить подключение", "External Apps" : "Внешние приложения", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", "Delete data on remove" : "Удалить данные при удалении", diff --git a/l10n/ru.json b/l10n/ru.json index a89a4489..ce356b27 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -21,7 +21,6 @@ "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", @@ -134,6 +133,7 @@ "Register" : "Регистрация", "Check connection" : "Проверить подключение", "External Apps" : "Внешние приложения", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", "Delete data on remove" : "Удалить данные при удалении", diff --git a/l10n/sk.js b/l10n/sk.js index 177c50d6..0c9d2900 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -29,7 +29,6 @@ OC.L10N.register( "External Apps management" : "Správa externých aplikácií", "Admin options saved" : "Nastavenia administrátora boli uložené", "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", "Deploy Daemons" : "Nasadenie démonov", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", @@ -155,6 +154,7 @@ OC.L10N.register( "Check connection" : "Skontrolovať pripojenie", "External Apps" : "Externé aplikácie", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", "Delete data on remove" : "Pri odobraní zmazať dáta", diff --git a/l10n/sk.json b/l10n/sk.json index 245a0e88..38fb9b9f 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -27,7 +27,6 @@ "External Apps management" : "Správa externých aplikácií", "Admin options saved" : "Nastavenia administrátora boli uložené", "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", "Deploy Daemons" : "Nasadenie démonov", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", @@ -153,6 +152,7 @@ "Check connection" : "Skontrolovať pripojenie", "External Apps" : "Externé aplikácie", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", "Delete data on remove" : "Pri odobraní zmazať dáta", diff --git a/l10n/sr.js b/l10n/sr.js index 801f79d0..8d41ffbb 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Провера везе", "External Apps" : "Спољне апликације", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", "Delete data on remove" : "Обриши податке приликом уклањања", diff --git a/l10n/sr.json b/l10n/sr.json index 75836b3b..23f6e726 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -29,7 +29,6 @@ "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", @@ -176,6 +175,7 @@ "Check connection" : "Провера везе", "External Apps" : "Спољне апликације", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", "Delete data on remove" : "Обриши податке приликом уклањања", diff --git a/l10n/tr.js b/l10n/tr.js index 084a7e50..586b7330 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Bağlantıyı denetle", "External Apps" : "Dış uygulamalar", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", "Delete data on remove" : "Kaldırıldığında veriler silinsin", diff --git a/l10n/tr.json b/l10n/tr.json index a9e5463d..9a5bbee6 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -29,7 +29,6 @@ "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", @@ -176,6 +175,7 @@ "Check connection" : "Bağlantıyı denetle", "External Apps" : "Dış uygulamalar", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", "Delete data on remove" : "Kaldırıldığında veriler silinsin", diff --git a/l10n/ug.js b/l10n/ug.js index ff09ad68..3ac82f4f 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -23,7 +23,6 @@ OC.L10N.register( "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", @@ -136,6 +135,7 @@ OC.L10N.register( "Register" : "تىزىملىتىڭ", "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", diff --git a/l10n/ug.json b/l10n/ug.json index 18ed95da..644ccb2a 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -21,7 +21,6 @@ "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", @@ -134,6 +133,7 @@ "Register" : "تىزىملىتىڭ", "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", diff --git a/l10n/uk.js b/l10n/uk.js index 30089633..87bd60ad 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", "Deploy Daemons" : "Розгортання демонів", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "Перевірте з'єднання", "External Apps" : "Зовнішні застосунки", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n### Вбудована програма\n\n**Починаючи з Nextcloud 30.0.1, ця програма входить до стандартного пакету Nextcloud.**\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", "Delete data on remove" : "Видалення даних при видаленні", diff --git a/l10n/uk.json b/l10n/uk.json index 1b614b4c..563404bd 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -29,7 +29,6 @@ "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", "Deploy Daemons" : "Розгортання демонів", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", @@ -176,6 +175,7 @@ "Check connection" : "Перевірте з'єднання", "External Apps" : "Зовнішні застосунки", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n### Вбудована програма\n\n**Починаючи з Nextcloud 30.0.1, ця програма входить до стандартного пакету Nextcloud.**\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", "Delete data on remove" : "Видалення даних при видаленні", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 71885173..9b54c307 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -15,7 +15,6 @@ OC.L10N.register( "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", "Deploy Daemons" : "部署守护进程", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", @@ -52,6 +51,7 @@ OC.L10N.register( "Save" : "保存", "Register" : "注册", "External Apps" : "外部应用", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", "Delete data on remove" : "移除时删除数据", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 0d289483..c0c0df60 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -13,7 +13,6 @@ "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", "Deploy Daemons" : "部署守护进程", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", @@ -50,6 +49,7 @@ "Save" : "保存", "Register" : "注册", "External Apps" : "外部应用", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", "Delete data on remove" : "移除时删除数据", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index cefe5b98..bcdd1037 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index d38619c0..d41db6d5 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -29,7 +29,6 @@ "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", @@ -176,6 +175,7 @@ "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index d9783398..32f3aed6 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -31,7 +31,6 @@ OC.L10N.register( "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", @@ -178,6 +177,7 @@ OC.L10N.register( "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 755219ba..8df005c5 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -29,7 +29,6 @@ "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", - "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", @@ -176,6 +175,7 @@ "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", From 78ed9606bfe8e4ab7040c79aed0eb20fb85a9400 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 10 Aug 2025 00:18:09 +0000 Subject: [PATCH 169/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/sw.js | 3 +++ l10n/sw.json | 3 +++ l10n/uk.js | 1 + l10n/uk.json | 1 + l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + 14 files changed, 18 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index 4d13a577..c27a0797 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de.json b/l10n/de.json index 85409838..2f65f944 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -29,6 +29,7 @@ "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 21a708d3..bddff359 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 1d4b25c4..182a3b72 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -29,6 +29,7 @@ "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", "Deploy Daemons" : "Daemons bereitstellen", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 98d41a6a..401d0f2a 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index bf792df5..4bdfcfe0 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -29,6 +29,7 @@ "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", diff --git a/l10n/ga.js b/l10n/ga.js index 09605ee2..24cf1dab 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige réabhlóid a dhéanamh ar an gcaoi a bhforbraítear feidhmchláir do Nextcloud trí úsáid a bhaint as coimeádáin docker. Rud a cheadaíonn rogha níos mó teangacha ríomhchlárúcháin agus a ligeann do thascanna costasacha ó thaobh ríomhaireachta de a dhíluchtú chuig freastalaí difriúil.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", diff --git a/l10n/ga.json b/l10n/ga.json index 0f5c7387..ddb14217 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -29,6 +29,7 @@ "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige réabhlóid a dhéanamh ar an gcaoi a bhforbraítear feidhmchláir do Nextcloud trí úsáid a bhaint as coimeádáin docker. Rud a cheadaíonn rogha níos mó teangacha ríomhchlárúcháin agus a ligeann do thascanna costasacha ó thaobh ríomhaireachta de a dhíluchtú chuig freastalaí difriúil.", "Deploy Daemons" : "Imscaradh Deamhain", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", diff --git a/l10n/sw.js b/l10n/sw.js index b724d538..dd925b41 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -13,11 +13,14 @@ OC.L10N.register( "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", "Add" : "Ongeza", + "URL should start with http:// or https://" : "URL should start with http:// or https://", "Disabled" : "Zima", "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", + "Check connection" : "Angalia muunganisho", "Update to {version}" : "Sasisha kwenda {version}", + "View in store" : "View in store", "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", "Icon" : "Aikoni", diff --git a/l10n/sw.json b/l10n/sw.json index 175a1fe6..cae558a8 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -11,11 +11,14 @@ "From" : "Tangu/ kutoka", "To" : "Mpaka/ hadi", "Add" : "Ongeza", + "URL should start with http:// or https://" : "URL should start with http:// or https://", "Disabled" : "Zima", "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", + "Check connection" : "Angalia muunganisho", "Update to {version}" : "Sasisha kwenda {version}", + "View in store" : "View in store", "Report a bug" : "Report a bug", "Update to {update}" : "Sasisha kwenda {update}", "Icon" : "Aikoni", diff --git a/l10n/uk.js b/l10n/uk.js index 87bd60ad..cf56f087 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проєкт AppAPI — це цікава ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud за допомогою контейнерів Docker. Це розширює вибір мов програмування та дозволяє переносити обчислювально ресурсоємні завдання на інший сервер.", "Deploy Daemons" : "Розгортання демонів", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", diff --git a/l10n/uk.json b/l10n/uk.json index 563404bd..500b77e7 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -29,6 +29,7 @@ "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проєкт AppAPI — це цікава ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud за допомогою контейнерів Docker. Це розширює вибір мов програмування та дозволяє переносити обчислювально ресурсоємні завдання на інший сервер.", "Deploy Daemons" : "Розгортання демонів", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index bcdd1037..62d3256c 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project 是一個令人興奮的計劃,旨在通過使用 Docker 容器來徹底改變 Nextcloud 應用程序的開發方式。這樣可以提供更大的編程語言選擇,並允許將計算密集型任務卸載到不同的伺服器上。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index d41db6d5..e76d40c6 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -29,6 +29,7 @@ "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project 是一個令人興奮的計劃,旨在通過使用 Docker 容器來徹底改變 Nextcloud 應用程序的開發方式。這樣可以提供更大的編程語言選擇,並允許將計算密集型任務卸載到不同的伺服器上。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", From 3d86e012ab25727e82a3b86b08f9accc9869b68d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 12 Aug 2025 00:18:31 +0000 Subject: [PATCH 170/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 32f3aed6..40183f0c 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI 計畫是一項令人振奮的計畫,旨在透過使用 docker 容器,徹底改變 Nextcloud 應用程式的開發方式。允許更多的程式語言選擇,並允許將運算密集型的任務移轉到不同的伺服器。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 8df005c5..16008286 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -29,6 +29,7 @@ "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI 計畫是一項令人振奮的計畫,旨在透過使用 docker 容器,徹底改變 Nextcloud 應用程式的開發方式。允許更多的程式語言選擇,並允許將運算密集型的任務移轉到不同的伺服器。", "Deploy Daemons" : "部署幕後程式", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", From 27ab6800103b148ca2cbb03539a6a2bdf781c5cd Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 13 Aug 2025 00:18:29 +0000 Subject: [PATCH 171/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 1 + l10n/be.json | 1 + l10n/sw.js | 221 +++++++++++++++++++++++++++++++++++++++++++++++++-- l10n/sw.json | 221 +++++++++++++++++++++++++++++++++++++++++++++++++-- 4 files changed, 432 insertions(+), 12 deletions(-) diff --git a/l10n/be.js b/l10n/be.js index 30635834..35966415 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Выдаліць", "Edit" : "Рэдагаваць", "Name" : "Назва", + "Remove" : "Выдаліць", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", diff --git a/l10n/be.json b/l10n/be.json index db3cd53c..cadf54d1 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -3,6 +3,7 @@ "Delete" : "Выдаліць", "Edit" : "Рэдагаваць", "Name" : "Назва", + "Remove" : "Выдаліць", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", diff --git a/l10n/sw.js b/l10n/sw.js index dd925b41..f9886842 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -1,35 +1,244 @@ OC.L10N.register( "app_api", { - "Cancel" : "Cancel", + "Daemon config not found" : "Usanidi wa Daemon haujapatikana", + "Error starting install of ExApp" : "Hitilafu katika kuanzisha usakinishaji wa ExApp", + "ExApp failed to register, check the NC logs" : "ExApp imeshindwa kusajili, angalia kumbukumbu za NC", + "ExApp not found, failed to get status" : "ExApp haikupatikana, imeshindwa kupata hali", + "Error adding Docker registry" : "Hitilafu katika kuongeza Usajili wa Docker", + "Error removing Docker registry" : "Hitilafu katika kuondoa Usajili wa Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Programu hii haijasakinishwa kutoka kwa AppStore. Hakuna maelezo ya ziada yanayopatikana. Wezesha/lemaza na uondoe vitendo pekee ndivyo vinavyoruhusiwa.", + "Could not perform installation of ExApp" : "Haikuweza kusakinisha ExApp", + "Failed to enable ExApp" : "Imeshindwa kuwezesha ExApp", + "Failed to disable ExApp" : "Imeshindwa kuzima ExApp", + "Could not update ExApp" : "Haikuweza kusasisha ExApp", + "Error starting update of ExApp" : "Hitilafu imetokea wakati wa kuanzisha sasisho la ExApp", + "Could not perform update of ExApp" : "Haikuweza kusasisha ExApp", + "ExApp not found, failed to get logs" : "ExApp haikupatikana, imeshindwa kupata kumbukumbu", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Imeshindwa kupata kumbukumbu za kontena. Kumbuka: Kupakua kontena ya Docker hufanya kazi tu kwa kontena zilizo na faili ya json au kiendesha magogo cha kumbukumbu. Hitilafu: %s", + "ExApp not found, failed to get deploy options" : "ExApp haijapatikana, imeshindwa kupata chaguo za kusambaza", + "AppAPI authentication failed" : "Uthibitishaji wa AppAPI umeshindwa", + "AppAPI ExApp notifier" : "Arifa ya AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Timu ya Ujumuishaji ya AI", + "ExApps Settings" : "Mipangilio ya ExApps", + "AppAPI deploy daemon" : "Tumia daemon ya AppAPI ", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuipandisha daraja kwa utendakazi bora.", + "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", + "External Apps management" : "Usimamizi wa Programu za Nje", + "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", + "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Mradi wa AppAPI ni mpango wa kufurahisha ambao unalenga kubadilisha jinsi programu zinavyotengenezwa kwa Nextcloud kupitia utumiaji wa kontena za docker. Kuruhusu chaguo kubwa zaidi la lugha ya upangaji na kuruhusu majukumu ya gharama ya hesabu kupakiwa kwa seva tofauti.", + "Deploy Daemons" : "Tumia Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemons. Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ya Kusambaza Chaguomsingi haipatikani. Tafadhali thibitisha usanidi wake", + "ExApp init timeout (minutes)" : "Muda wa kuanzisha ExApp (dakika)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Muda wa mchakato wa uanzishaji wa ExApp umekwisha ambapo AppAPI itatia alama kuwa imeshindwa", + "ExApp init timeout" : "Muda wa ExApp umekwisha", + "ExApp container restart policy" : "Sera ya kuanzisha upya kontena la ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Bainisha sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApp inaendesha baada ya kuwasha tena seva ya daemon", + "This settings changes are reflected only for newly created containers" : "Mabadiliko haya ya mipangilio yanaonyeshwa kwa vyombo vipya pekee", + "Are you sure you want delete Deploy Daemon" : "Je, una uhakika unataka kufuta Deploy Daemon", + "All ExApps on this daemon will be removed" : "ExApps zote kwenye daemoni hii zitaondolewa", + "All ExApps installed on this daemon will be removed" : "ExApps zote zilizosakinishwa kwenye daemoni hii zitaondolewa", + "Cancel" : "Ghairi", "Delete" : "Futa", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"sakinisha kwa mikono\" Deploy Daemon haiwezi kuwekwa kama chaguo-msingi", + "Failed to save admin options. Check the logs" : "Imeshindwa kuhifadhi chaguo za msimamizi. Angalia kumbukumbu", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Default" : "Chaguo msingi", + "Set as default" : "Weka kama chaguomsingi", + "Test deploy" : "Usambazaji wa majaribio", + "Docker registries" : "Usajili wa Docker", "Edit" : "Hariri", + "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", + "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", + "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", + "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", + "Deploy Daemon" : "Tumia Daemon", + "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ya usakinishaji kwa mikono kawaida hutumika kwa usanidi. Haiwezi kuwekwa kama daemon chaguo-msingi.", + "ExApps installed" : "ExApps imesakinishwa", "Name" : "Jina", - "Host" : "Host", + "Protocol" : "Itifaki", + "Host" : "Mwenyeji", + "ExApp direct communication (FRP disabled)" : "Mawasiliano ya moja kwa moja ya ExApp (FRP imezimwa)", + "Deploy config" : "Weka usanidi", + "Docker network" : "Mtandao wa Docker ", + "Nextcloud URL" : "URL ya Nextcloud ", + "HaProxy password" : "Nenosiri la HaProxy", + "GPUs support" : "Usaidizi wa GPU", + "Compute device" : "Kuhesabu kifaa", + "Additional options" : "Chaguzi za ziada", + "Verify connection" : "Thibitisha muunganisho", + "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", + "No Deploy daemons configured" : "Hakuna damoni za kutumia zilizosanidiwa", + "Register a custom one or setup from available templates" : "Sajili moja maalum au usanidi kutoka kwa violezo vinavyopatikana", + "Register Daemon" : "Sajili Daemon", + "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Angalia ikiwa ExApp imesajiliwa katika Nextcloud kabla ya kupelekwa", + "Image pull" : "Kuvuta picha", + "Check if the image is successfully pulled" : "Angalia ikiwa picha imevutwa kwa ufanisi", + "Container started" : "Chombo kimeanza", + "Check if the image successfully pulled and container is created and started" : "Angalia ikiwa picha imevutwa kwa ufanisi na kontena imeundwa na kuanza", + "Heartbeat" : "Mapigo ya moyo", + "Check for the heartbeat is finished and healthy" : "Angalia mapigo ya moyo yamekamilika na yenye afya", + "Init step" : "Hatua ya awali", + "Wait for initialization step to finish" : "Subiri hadi hatua ya uanzishaji imalizike", "Enabled" : "Washwa", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Angalia ikiwa ExApp ilifanikiwa kushughulikia tukio lililowezeshwa na kusajili vitu vyote vizuri", + "Only if ExApp container is preset" : "Ikiwa tu chombo cha ExApp kimewekwa mapema", + "Deploy test passed successfully!" : "Jaribio la kutuma limefaulu!", + "Deploy test failed at step \"{step}\"" : "Jaribio la kusambaza limeshindwa kwa hatua \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuthibitisha Daemon iliyosanidiwa ipasavyo na hatua za kupeleka zinapita.", + "The following Deploy test checks must be passed to succeed:" : "Ukaguzi ufuatao wa Tumia lazima upitishwe ili kufaulu:", + "More info" : "Maelezo zaidi", + "Download ExApp logs" : "Pakua kumbukumbu za ExApp", + "Remove test ExApp" : "Ondoa jaribio la ExApp", + "Start Deploy test" : "Anza jaribio la Kusambaza", + "Stop Deploy test" : "Acha Kujaribu Kuweka", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp haijasajiliwa na kontena linaondolewa kwenye \"Stop deploy test\"", + "Please enter a registry domain" : "Tafadhali ingiza kikoa cha usajili", + "From cannot be \"local\"" : "Kutoka haiwezi kuwa \"ndani\"", + "This registry mapping already exists" : "Upangaji huu wa usajili tayari upo", + "From and To cannot be the same" : "Kutoka na mpaka haiwezi kuwa sawa", + "Docker registry mapping added" : "Uwekaji ramani wa usajili wa Docker umeongezwa", + "Error adding Docker registry mapping" : "Hitilafu katika kuongeza ramani ya usajili wa Docker", + "Docker registry mapping removed" : "Ramani ya Usajili wa Docker imeondolewa", + "Error removing Docker registry mapping" : "Hitilafu katika kuondoa ramani ya usajili wa Docker", + "Override Docker registries" : "Badilisha rejista za Docker", + "Configure Docker registry override mappings for selected daemon." : "Sanidi Usajili wa Docker kubatilisha upangaji wa daemon iliyochaguliwa.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Sajili ya chanzo inayolingana katika maelezo ya ExApp.xml itafutwa wakati wa kupeleka (hatua ya kuvuta picha).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Hii ni muhimu ikiwa unataka kutumia sajili maalum ya Docker, kwa mfano, kutumia sajili ya kibinafsi ya Docker, au kutumia sajili tofauti ya Docker kwa majaribio.", + "Image pull will be skipped" : "Uvutaji wa picha utarukwa", "Remove" : "Ondoa", + "No custom Docker registries configured" : "Hakuna sajili maalum za Docker zilizosanidiwa", + "Add registry override mapping" : "Ongeza ramani ya ubatilishaji wa usajili", "From" : "Tangu/ kutoka", + "registry URL (e.g. ghcr.io)" : "URL ya usajili (e.g. ghcr.io)", "To" : "Mpaka/ hadi", + "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", - "URL should start with http:// or https://" : "URL should start with http:// or https://", + "Hostname to access ExApps" : "Jina la mpangishaji ili kufikia ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Jina la mpangishaji (na lango) ambalo {name} linapatikana. Hii sio lazima iwe mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud, k.m. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Nenosiri la uthibitishaji la Soketi ya Wakala wa AppAPI Docker", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Mabadiliko yatatumika kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya.", + "The docker network that the deployed ex-apps would use." : "Mtandao wa docker ambao programu za zamani zilizotumwa zingetumia.", + "URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Kwa daemon ya HTTPS, Nextcloud URL inapaswa kuwa HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vitaombwa kuwashwa katika vyombo vya ExApp na Docker.", + "DaemonConfig successfully registered" : "DaemonConfig imesajiliwa", + "Failed to register DaemonConfig. Check the logs" : "Imeshindwa kusajili DaemonConfig. Angalia kumbukumbu", + "DaemonConfig successfully updated" : "DaemonConfig imesasishwa", + "Failed to update DaemonConfig. Check the logs" : "Imeshindwa kusasisha DaemonConfig. Angalia kumbukumbu", + "Edit Deploy Daemon" : "Hariri utumiaji wa Daemon", + "Register Deploy Daemon" : "Sajili utumiaji wa Daemon", + "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", + "Select daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", + "Daemon registration form" : "Fomu ya usajili ya Daemon", + "Unique Deploy Daemon Name" : "Tumia Jina la Daemon la Kipekee", + "Display name" : "Jina la kuonyesha", + "Deployment method" : "Mbinu ya kupeleka", + "Select daemon deploy method" : "Chagua mbinu ya kutumia daemoni", + "HaRP host" : "mwenyeji wa HaRP", + "Daemon host" : "mwenyeji ni Daemon", + "HaRP shared key" : "Ufunguo wa pamoja wa HaRP", + "Password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", + "Set daemon as default" : "Weka daemon kama chaguo-msingi", + "Set as default daemon" : "Weka kama daemoni chaguo-msingi", + "Enable https" : "Wezesha https", + "Show deploy config" : "Onyesha usanidi wa kupeleka", + "Hide deploy config" : "Ficha usanidi wa kupeleka", + "Enable HaRP" : "Washa HaRP", + "FRP server address" : "Anwani ya seva ya FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Anwani (mwenyeji: bandari) ya seva ya FRP ambayo inapaswa kufikiwa na programu ya zamani katika mtandao iliyofafanuliwa katika 'Docker network'.", + "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango lililo katika HaRP ambalo proksi ya tundu la kizimbani inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", + "Disable FRP" : "Zima FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Disabled" : "Zima", + "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", + "Additional option" : "Chaguo la ziada", + "Add additional option" : "Ongeza chaguo la ziada", + "Option key (unique)" : "Ufunguo mbadala (unique)", + "Option key (unique, e.g. my_key)" : "Ufunguo mbadala (unique, e.g. my_key)", + "Option key is required" : "Ufunguo mbadala unahitajika", + "Option value" : "Thamani ya chaguo", + "Option value is required" : "Thamani ya chaguo inahitajika", "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", "Check connection" : "Angalia muunganisho", + "External Apps" : "Programu za Nje", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n### Programu Iliyounganishwa\n\n**Kuanzia na Nextcloud 30.0.1, programu tumizi hii imejumuishwa kwenye kifurushi chaguomsingi cha Nextcloud.**\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Mradi wa AppAPI ni mpango wa kusisimua ambao unalenga kuleta mageuzi katika jinsi programu zinavyoundwa kwa Nextcloud.", + "{license}-licensed" : "{license}-iliyopewa leseni", "Update to {version}" : "Sasisha kwenda {version}", - "View in store" : "View in store", - "Report a bug" : "Report a bug", + "Delete data on remove" : "Futa data juu ya kuondoa", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Programu hii haina toleo la chini kabisa la Nextcloud lililokabidhiwa. Hili litakuwa kosa katika siku zijazo.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Programu hii haina toleo la juu zaidi la Nextcloud lililokabidhiwa. Hili litakuwa kosa katika siku zijazo.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Programu hii haiwezi kusakinishwa kwa sababu tegemezi zifuatazo hazijatimizwa:", + "View in store" : "Tazama kwenye stoo", + "Visit website" : "Tembelea tovuti", + "Report a bug" : "Ripoti hitilafu", + "User documentation" : "Nyaraka za mtumiaji", + "Admin documentation" : "Nyaraka za msimamizi", + "Developer documentation" : "Nyaraka za msanidi", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Programu hii haijasajiliwa katika AppStore. Hakuna maelezo ya ziada yanayopatikana. Wezesha/lemaza na uondoe vitendo pekee ndivyo vinavyoruhusiwa.", + "This app is supported via your current Nextcloud subscription." : "Programu hii inaauniwa kupitia usajili wako wa sasa wa Nextcloud.", + "Supported" : "Imeungwa mkono", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Programu zinazoangaziwa hutengenezwa na ndani ya jumuiya. Wanatoa utendaji wa kati na wako tayari kwa matumizi ya uzalishaji.", + "Featured" : "Iliyoangaziwa", "Update to {update}" : "Sasisha kwenda {update}", + "All ExApps are up-to-date." : "ExApps zote ni za kisasa.", + "Default Deploy daemon is not accessible" : "Daemon chaguomsingi ya Kusambaza haipatikani", "Icon" : "Aikoni", "Version" : "Toleo", + "Daemon" : "Daemon", + "Level" : "Kiwango", "Actions" : "Utendekaji", + "Results from other categories" : "Matokeo kutoka kwa kategoria zingine", + "No apps found" : "Hakuna programu zilizopatikana", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n programu zina sasisho linalopatikana "], + "_Update_::_Update all_" : ["Update","Sasisha zote"], "Type" : "Aina", + "Display Name" : "Jina la Kuonyesha", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji au njia ya kufikia daemon ya Docker (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "Kwa kuwasha https, mtandao umewekwa kuwa mwenyeji", + "Network" : "Mtandao", + "Docker network name" : "Jina la mtandao wa Docker", + "by {author}\n{license}" : "na {author}\n{license}", + "Your apps" : "Programu zako", "Documentation" : "Uhifadhi wa nyaraka", "Details" : "Maelezo ya kina", + "Changelog" : "Changelog", + "Active apps" : "Programu zinazotumika", + "Disabled apps" : "Programu zilizozimwa", + "Updates" : "Masasisho", + "Featured apps" : "Programu zilizoangaziwa", + "Supported apps" : "Programu zinazotumika", + "manual-install apps cannot be updated" : "programu za kusakinisha kwa mikono haziwezi kusasishwa", + "{progress}% Deploying" : "{progress}% Inapeleka", + "{progress}% Initializing" : "{progress}% inaanzisha", + "Healthchecking" : "Uangaliaji wa afya", + "Deploy and Enable" : "Weka na Wezesha", "Enable" : "Wezesha", - "Disable" : "Zima" + "Disable" : "Zima", + "Allow untested app" : "Ruhusu programu ambayo haijajaribiwa", + "Default Deploy daemon is not accessible. Please verify configuration" : "Daemon chaguomsingi ya Kusambaza haipatikani. Tafadhali thibitisha usanidi", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Programu itapakuliwa kutoka kwa Duka la Programu na kutumwa kwa chaguo-msingi ya Deploy Daemon", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Programu hii haijatiwa alama kuwa inatumika na toleo lako la Nextcloud. Ukiendelea bado utaweza kusakinisha programu. Kumbuka kwamba programu inaweza kufanya kazi kama ilivyotarajiwa.", + "Your ExApps" : "ExApps yako", + "An error occurred during the request. Unable to proceed." : "Hitilafu ilitokea wakati wa ombi. Imeshindwa kuendelea.", + "The app has been enabled but needs to be updated." : "Programu imewashwa lakini inahitaji kusasishwa.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hitilafu: Programu hii haiwezi kuwashwa kwa sababu inafanya seva kutokuwa thabiti", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n\n### Orodha ya programu zinazohitaji AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n \nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sw.json b/l10n/sw.json index cae558a8..b12d58c3 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -1,33 +1,242 @@ { "translations": { - "Cancel" : "Cancel", + "Daemon config not found" : "Usanidi wa Daemon haujapatikana", + "Error starting install of ExApp" : "Hitilafu katika kuanzisha usakinishaji wa ExApp", + "ExApp failed to register, check the NC logs" : "ExApp imeshindwa kusajili, angalia kumbukumbu za NC", + "ExApp not found, failed to get status" : "ExApp haikupatikana, imeshindwa kupata hali", + "Error adding Docker registry" : "Hitilafu katika kuongeza Usajili wa Docker", + "Error removing Docker registry" : "Hitilafu katika kuondoa Usajili wa Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Programu hii haijasakinishwa kutoka kwa AppStore. Hakuna maelezo ya ziada yanayopatikana. Wezesha/lemaza na uondoe vitendo pekee ndivyo vinavyoruhusiwa.", + "Could not perform installation of ExApp" : "Haikuweza kusakinisha ExApp", + "Failed to enable ExApp" : "Imeshindwa kuwezesha ExApp", + "Failed to disable ExApp" : "Imeshindwa kuzima ExApp", + "Could not update ExApp" : "Haikuweza kusasisha ExApp", + "Error starting update of ExApp" : "Hitilafu imetokea wakati wa kuanzisha sasisho la ExApp", + "Could not perform update of ExApp" : "Haikuweza kusasisha ExApp", + "ExApp not found, failed to get logs" : "ExApp haikupatikana, imeshindwa kupata kumbukumbu", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Imeshindwa kupata kumbukumbu za kontena. Kumbuka: Kupakua kontena ya Docker hufanya kazi tu kwa kontena zilizo na faili ya json au kiendesha magogo cha kumbukumbu. Hitilafu: %s", + "ExApp not found, failed to get deploy options" : "ExApp haijapatikana, imeshindwa kupata chaguo za kusambaza", + "AppAPI authentication failed" : "Uthibitishaji wa AppAPI umeshindwa", + "AppAPI ExApp notifier" : "Arifa ya AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Timu ya Ujumuishaji ya AI", + "ExApps Settings" : "Mipangilio ya ExApps", + "AppAPI deploy daemon" : "Tumia daemon ya AppAPI ", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuipandisha daraja kwa utendakazi bora.", + "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", + "External Apps management" : "Usimamizi wa Programu za Nje", + "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", + "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Mradi wa AppAPI ni mpango wa kufurahisha ambao unalenga kubadilisha jinsi programu zinavyotengenezwa kwa Nextcloud kupitia utumiaji wa kontena za docker. Kuruhusu chaguo kubwa zaidi la lugha ya upangaji na kuruhusu majukumu ya gharama ya hesabu kupakiwa kwa seva tofauti.", + "Deploy Daemons" : "Tumia Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemons. Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ya Kusambaza Chaguomsingi haipatikani. Tafadhali thibitisha usanidi wake", + "ExApp init timeout (minutes)" : "Muda wa kuanzisha ExApp (dakika)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Muda wa mchakato wa uanzishaji wa ExApp umekwisha ambapo AppAPI itatia alama kuwa imeshindwa", + "ExApp init timeout" : "Muda wa ExApp umekwisha", + "ExApp container restart policy" : "Sera ya kuanzisha upya kontena la ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Bainisha sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApp inaendesha baada ya kuwasha tena seva ya daemon", + "This settings changes are reflected only for newly created containers" : "Mabadiliko haya ya mipangilio yanaonyeshwa kwa vyombo vipya pekee", + "Are you sure you want delete Deploy Daemon" : "Je, una uhakika unataka kufuta Deploy Daemon", + "All ExApps on this daemon will be removed" : "ExApps zote kwenye daemoni hii zitaondolewa", + "All ExApps installed on this daemon will be removed" : "ExApps zote zilizosakinishwa kwenye daemoni hii zitaondolewa", + "Cancel" : "Ghairi", "Delete" : "Futa", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"sakinisha kwa mikono\" Deploy Daemon haiwezi kuwekwa kama chaguo-msingi", + "Failed to save admin options. Check the logs" : "Imeshindwa kuhifadhi chaguo za msimamizi. Angalia kumbukumbu", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Default" : "Chaguo msingi", + "Set as default" : "Weka kama chaguomsingi", + "Test deploy" : "Usambazaji wa majaribio", + "Docker registries" : "Usajili wa Docker", "Edit" : "Hariri", + "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", + "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", + "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", + "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", + "Deploy Daemon" : "Tumia Daemon", + "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ya usakinishaji kwa mikono kawaida hutumika kwa usanidi. Haiwezi kuwekwa kama daemon chaguo-msingi.", + "ExApps installed" : "ExApps imesakinishwa", "Name" : "Jina", - "Host" : "Host", + "Protocol" : "Itifaki", + "Host" : "Mwenyeji", + "ExApp direct communication (FRP disabled)" : "Mawasiliano ya moja kwa moja ya ExApp (FRP imezimwa)", + "Deploy config" : "Weka usanidi", + "Docker network" : "Mtandao wa Docker ", + "Nextcloud URL" : "URL ya Nextcloud ", + "HaProxy password" : "Nenosiri la HaProxy", + "GPUs support" : "Usaidizi wa GPU", + "Compute device" : "Kuhesabu kifaa", + "Additional options" : "Chaguzi za ziada", + "Verify connection" : "Thibitisha muunganisho", + "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", + "No Deploy daemons configured" : "Hakuna damoni za kutumia zilizosanidiwa", + "Register a custom one or setup from available templates" : "Sajili moja maalum au usanidi kutoka kwa violezo vinavyopatikana", + "Register Daemon" : "Sajili Daemon", + "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Angalia ikiwa ExApp imesajiliwa katika Nextcloud kabla ya kupelekwa", + "Image pull" : "Kuvuta picha", + "Check if the image is successfully pulled" : "Angalia ikiwa picha imevutwa kwa ufanisi", + "Container started" : "Chombo kimeanza", + "Check if the image successfully pulled and container is created and started" : "Angalia ikiwa picha imevutwa kwa ufanisi na kontena imeundwa na kuanza", + "Heartbeat" : "Mapigo ya moyo", + "Check for the heartbeat is finished and healthy" : "Angalia mapigo ya moyo yamekamilika na yenye afya", + "Init step" : "Hatua ya awali", + "Wait for initialization step to finish" : "Subiri hadi hatua ya uanzishaji imalizike", "Enabled" : "Washwa", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Angalia ikiwa ExApp ilifanikiwa kushughulikia tukio lililowezeshwa na kusajili vitu vyote vizuri", + "Only if ExApp container is preset" : "Ikiwa tu chombo cha ExApp kimewekwa mapema", + "Deploy test passed successfully!" : "Jaribio la kutuma limefaulu!", + "Deploy test failed at step \"{step}\"" : "Jaribio la kusambaza limeshindwa kwa hatua \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuthibitisha Daemon iliyosanidiwa ipasavyo na hatua za kupeleka zinapita.", + "The following Deploy test checks must be passed to succeed:" : "Ukaguzi ufuatao wa Tumia lazima upitishwe ili kufaulu:", + "More info" : "Maelezo zaidi", + "Download ExApp logs" : "Pakua kumbukumbu za ExApp", + "Remove test ExApp" : "Ondoa jaribio la ExApp", + "Start Deploy test" : "Anza jaribio la Kusambaza", + "Stop Deploy test" : "Acha Kujaribu Kuweka", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp haijasajiliwa na kontena linaondolewa kwenye \"Stop deploy test\"", + "Please enter a registry domain" : "Tafadhali ingiza kikoa cha usajili", + "From cannot be \"local\"" : "Kutoka haiwezi kuwa \"ndani\"", + "This registry mapping already exists" : "Upangaji huu wa usajili tayari upo", + "From and To cannot be the same" : "Kutoka na mpaka haiwezi kuwa sawa", + "Docker registry mapping added" : "Uwekaji ramani wa usajili wa Docker umeongezwa", + "Error adding Docker registry mapping" : "Hitilafu katika kuongeza ramani ya usajili wa Docker", + "Docker registry mapping removed" : "Ramani ya Usajili wa Docker imeondolewa", + "Error removing Docker registry mapping" : "Hitilafu katika kuondoa ramani ya usajili wa Docker", + "Override Docker registries" : "Badilisha rejista za Docker", + "Configure Docker registry override mappings for selected daemon." : "Sanidi Usajili wa Docker kubatilisha upangaji wa daemon iliyochaguliwa.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Sajili ya chanzo inayolingana katika maelezo ya ExApp.xml itafutwa wakati wa kupeleka (hatua ya kuvuta picha).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Hii ni muhimu ikiwa unataka kutumia sajili maalum ya Docker, kwa mfano, kutumia sajili ya kibinafsi ya Docker, au kutumia sajili tofauti ya Docker kwa majaribio.", + "Image pull will be skipped" : "Uvutaji wa picha utarukwa", "Remove" : "Ondoa", + "No custom Docker registries configured" : "Hakuna sajili maalum za Docker zilizosanidiwa", + "Add registry override mapping" : "Ongeza ramani ya ubatilishaji wa usajili", "From" : "Tangu/ kutoka", + "registry URL (e.g. ghcr.io)" : "URL ya usajili (e.g. ghcr.io)", "To" : "Mpaka/ hadi", + "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", - "URL should start with http:// or https://" : "URL should start with http:// or https://", + "Hostname to access ExApps" : "Jina la mpangishaji ili kufikia ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Jina la mpangishaji (na lango) ambalo {name} linapatikana. Hii sio lazima iwe mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud, k.m. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Nenosiri la uthibitishaji la Soketi ya Wakala wa AppAPI Docker", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Mabadiliko yatatumika kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya.", + "The docker network that the deployed ex-apps would use." : "Mtandao wa docker ambao programu za zamani zilizotumwa zingetumia.", + "URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Kwa daemon ya HTTPS, Nextcloud URL inapaswa kuwa HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vitaombwa kuwashwa katika vyombo vya ExApp na Docker.", + "DaemonConfig successfully registered" : "DaemonConfig imesajiliwa", + "Failed to register DaemonConfig. Check the logs" : "Imeshindwa kusajili DaemonConfig. Angalia kumbukumbu", + "DaemonConfig successfully updated" : "DaemonConfig imesasishwa", + "Failed to update DaemonConfig. Check the logs" : "Imeshindwa kusasisha DaemonConfig. Angalia kumbukumbu", + "Edit Deploy Daemon" : "Hariri utumiaji wa Daemon", + "Register Deploy Daemon" : "Sajili utumiaji wa Daemon", + "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", + "Select daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", + "Daemon registration form" : "Fomu ya usajili ya Daemon", + "Unique Deploy Daemon Name" : "Tumia Jina la Daemon la Kipekee", + "Display name" : "Jina la kuonyesha", + "Deployment method" : "Mbinu ya kupeleka", + "Select daemon deploy method" : "Chagua mbinu ya kutumia daemoni", + "HaRP host" : "mwenyeji wa HaRP", + "Daemon host" : "mwenyeji ni Daemon", + "HaRP shared key" : "Ufunguo wa pamoja wa HaRP", + "Password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", + "Set daemon as default" : "Weka daemon kama chaguo-msingi", + "Set as default daemon" : "Weka kama daemoni chaguo-msingi", + "Enable https" : "Wezesha https", + "Show deploy config" : "Onyesha usanidi wa kupeleka", + "Hide deploy config" : "Ficha usanidi wa kupeleka", + "Enable HaRP" : "Washa HaRP", + "FRP server address" : "Anwani ya seva ya FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Anwani (mwenyeji: bandari) ya seva ya FRP ambayo inapaswa kufikiwa na programu ya zamani katika mtandao iliyofafanuliwa katika 'Docker network'.", + "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango lililo katika HaRP ambalo proksi ya tundu la kizimbani inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", + "Disable FRP" : "Zima FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Disabled" : "Zima", + "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", + "Additional option" : "Chaguo la ziada", + "Add additional option" : "Ongeza chaguo la ziada", + "Option key (unique)" : "Ufunguo mbadala (unique)", + "Option key (unique, e.g. my_key)" : "Ufunguo mbadala (unique, e.g. my_key)", + "Option key is required" : "Ufunguo mbadala unahitajika", + "Option value" : "Thamani ya chaguo", + "Option value is required" : "Thamani ya chaguo inahitajika", "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", "Check connection" : "Angalia muunganisho", + "External Apps" : "Programu za Nje", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n### Programu Iliyounganishwa\n\n**Kuanzia na Nextcloud 30.0.1, programu tumizi hii imejumuishwa kwenye kifurushi chaguomsingi cha Nextcloud.**\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Mradi wa AppAPI ni mpango wa kusisimua ambao unalenga kuleta mageuzi katika jinsi programu zinavyoundwa kwa Nextcloud.", + "{license}-licensed" : "{license}-iliyopewa leseni", "Update to {version}" : "Sasisha kwenda {version}", - "View in store" : "View in store", - "Report a bug" : "Report a bug", + "Delete data on remove" : "Futa data juu ya kuondoa", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Programu hii haina toleo la chini kabisa la Nextcloud lililokabidhiwa. Hili litakuwa kosa katika siku zijazo.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Programu hii haina toleo la juu zaidi la Nextcloud lililokabidhiwa. Hili litakuwa kosa katika siku zijazo.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Programu hii haiwezi kusakinishwa kwa sababu tegemezi zifuatazo hazijatimizwa:", + "View in store" : "Tazama kwenye stoo", + "Visit website" : "Tembelea tovuti", + "Report a bug" : "Ripoti hitilafu", + "User documentation" : "Nyaraka za mtumiaji", + "Admin documentation" : "Nyaraka za msimamizi", + "Developer documentation" : "Nyaraka za msanidi", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Programu hii haijasajiliwa katika AppStore. Hakuna maelezo ya ziada yanayopatikana. Wezesha/lemaza na uondoe vitendo pekee ndivyo vinavyoruhusiwa.", + "This app is supported via your current Nextcloud subscription." : "Programu hii inaauniwa kupitia usajili wako wa sasa wa Nextcloud.", + "Supported" : "Imeungwa mkono", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Programu zinazoangaziwa hutengenezwa na ndani ya jumuiya. Wanatoa utendaji wa kati na wako tayari kwa matumizi ya uzalishaji.", + "Featured" : "Iliyoangaziwa", "Update to {update}" : "Sasisha kwenda {update}", + "All ExApps are up-to-date." : "ExApps zote ni za kisasa.", + "Default Deploy daemon is not accessible" : "Daemon chaguomsingi ya Kusambaza haipatikani", "Icon" : "Aikoni", "Version" : "Toleo", + "Daemon" : "Daemon", + "Level" : "Kiwango", "Actions" : "Utendekaji", + "Results from other categories" : "Matokeo kutoka kwa kategoria zingine", + "No apps found" : "Hakuna programu zilizopatikana", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n programu zina sasisho linalopatikana "], + "_Update_::_Update all_" : ["Update","Sasisha zote"], "Type" : "Aina", + "Display Name" : "Jina la Kuonyesha", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji au njia ya kufikia daemon ya Docker (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "Kwa kuwasha https, mtandao umewekwa kuwa mwenyeji", + "Network" : "Mtandao", + "Docker network name" : "Jina la mtandao wa Docker", + "by {author}\n{license}" : "na {author}\n{license}", + "Your apps" : "Programu zako", "Documentation" : "Uhifadhi wa nyaraka", "Details" : "Maelezo ya kina", + "Changelog" : "Changelog", + "Active apps" : "Programu zinazotumika", + "Disabled apps" : "Programu zilizozimwa", + "Updates" : "Masasisho", + "Featured apps" : "Programu zilizoangaziwa", + "Supported apps" : "Programu zinazotumika", + "manual-install apps cannot be updated" : "programu za kusakinisha kwa mikono haziwezi kusasishwa", + "{progress}% Deploying" : "{progress}% Inapeleka", + "{progress}% Initializing" : "{progress}% inaanzisha", + "Healthchecking" : "Uangaliaji wa afya", + "Deploy and Enable" : "Weka na Wezesha", "Enable" : "Wezesha", - "Disable" : "Zima" + "Disable" : "Zima", + "Allow untested app" : "Ruhusu programu ambayo haijajaribiwa", + "Default Deploy daemon is not accessible. Please verify configuration" : "Daemon chaguomsingi ya Kusambaza haipatikani. Tafadhali thibitisha usanidi", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Programu itapakuliwa kutoka kwa Duka la Programu na kutumwa kwa chaguo-msingi ya Deploy Daemon", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Programu hii haijatiwa alama kuwa inatumika na toleo lako la Nextcloud. Ukiendelea bado utaweza kusakinisha programu. Kumbuka kwamba programu inaweza kufanya kazi kama ilivyotarajiwa.", + "Your ExApps" : "ExApps yako", + "An error occurred during the request. Unable to proceed." : "Hitilafu ilitokea wakati wa ombi. Imeshindwa kuendelea.", + "The app has been enabled but needs to be updated." : "Programu imewashwa lakini inahitaji kusasishwa.", + "Error: This app cannot be enabled because it makes the server unstable" : "Hitilafu: Programu hii haiwezi kuwashwa kwa sababu inafanya seva kutokuwa thabiti", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n\n### Orodha ya programu zinazohitaji AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n \nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From 24b8304336566e619d54c832ddbcd431d82d7b3b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 15 Aug 2025 00:18:34 +0000 Subject: [PATCH 172/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pl.js | 3 +++ l10n/pl.json | 3 +++ l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + 4 files changed, 8 insertions(+) diff --git a/l10n/pl.js b/l10n/pl.js index aa1eac0d..1209d39f 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -27,6 +27,9 @@ OC.L10N.register( "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", + "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", + "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", + "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", "Enabled" : "Włączone", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", diff --git a/l10n/pl.json b/l10n/pl.json index 1baa9332..b5956bcb 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -25,6 +25,9 @@ "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", + "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", + "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", + "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", "Enabled" : "Włączone", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", "More info" : "Więcej informacji", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index c2366e58..2d242aa7 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 32fd0b62..2f3223e6 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -29,6 +29,7 @@ "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", From c17705ea7524ff905b9b1b91aa43e1dc1c17f74e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 16 Aug 2025 00:18:06 +0000 Subject: [PATCH 173/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/es.js | 1 + l10n/es.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/es.js b/l10n/es.js index 06963a90..a1392dd3 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "El proyecto AppAPI es una iniciativa excitante que busca revolucionar la forma en que las aplicaciones son desarrolladas para Nextcloud a través del uso de contenedores docker. Permitiendo así una variedad más amplia de opciones de lenguajes de programación y permitiendo que las tareas que son computacionalmente costosas puedan ser ejecutadas en un servidor diferente.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", diff --git a/l10n/es.json b/l10n/es.json index 5187d4cc..927622c7 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -29,6 +29,7 @@ "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "El proyecto AppAPI es una iniciativa excitante que busca revolucionar la forma en que las aplicaciones son desarrolladas para Nextcloud a través del uso de contenedores docker. Permitiendo así una variedad más amplia de opciones de lenguajes de programación y permitiendo que las tareas que son computacionalmente costosas puedan ser ejecutadas en un servidor diferente.", "Deploy Daemons" : "Daemons de despliegue", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", From 1c31d7039662421b106dd56a291da0fb95bae5e6 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 20 Aug 2025 00:18:31 +0000 Subject: [PATCH 174/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pl.js | 131 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/pl.json | 131 ++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 260 insertions(+), 2 deletions(-) diff --git a/l10n/pl.js b/l10n/pl.js index 1209d39f..e2a0d695 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -2,27 +2,75 @@ OC.L10N.register( "app_api", { "Daemon config not found" : "Nie znaleziono konfiguracji demona", + "Error starting install of ExApp" : "Błąd podczas uruchamiania instalacji ExApp", + "ExApp failed to register, check the NC logs" : "Nie udało się zarejestrować ExApp, sprawdź logi NC", + "ExApp not found, failed to get status" : "Nie znaleziono ExApp, nie udało się uzyskać statusu", + "Error adding Docker registry" : "Błąd podczas dodawania rejestru Dockera", + "Error removing Docker registry" : "Błąd podczas usuwania rejestru Dockera", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ta aplikacja nie została zainstalowana ze Sklepu Aplikacji. Brak dodatkowych informacji. Dozwolone są tylko akcje włączania/wyłączania i usuwania.", + "Could not perform installation of ExApp" : "Nie udało się przeprowadzić instalacji ExApp", + "Failed to enable ExApp" : "Nie udało się włączyć ExApp", + "Failed to disable ExApp" : "Nie udało się wyłączyć ExApp", + "Could not update ExApp" : "Nie udało się zaktualizować ExApp", + "Error starting update of ExApp" : "Błąd podczas uruchamiania aktualizacji ExApp", + "Could not perform update of ExApp" : "Nie udało się przeprowadzić aktualizacji ExApp", + "ExApp not found, failed to get logs" : "Nie znaleziono ExApp, nie udało się pobrać logów", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nie udało się pobrać logów kontenera. Uwaga: Pobieranie kontenera Dockera działa tylko dla kontenerów z włączonym sterownikiem logowania json-file lub journald. Błąd: %s", + "ExApp not found, failed to get deploy options" : "Nie znaleziono ExApp, nie udało się pobrać opcji wdrożenia", "AppAPI authentication failed" : "Uwierzytelnienie AppAPI nie powiodło się", "AppAPI ExApp notifier" : "Powiadomienie AppAPI ExApp", "AppAPI" : "AppAPI", + "AI Integration Team" : "Zespół integracji AI", + "ExApps Settings" : "Ustawienia ExApps", + "AppAPI deploy daemon" : "Demon wdrożeniowy AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Domyślny demon wdrożeniowy AppAPI nie jest ustawiony. Zarejestruj domyślny demon wdrożeniowy w ustawieniach, aby zainstalować aplikacje zewnętrzne (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Domyślny demon wdrożeniowy AppAPI \"%s\" jest niedostępny. Sprawdź konfigurację demona.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Domyślny demon wdrożeniowy AppAPI nie używa HaRP. Rozważ uaktualnienie do niego, aby uzyskać lepszą wydajność.", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zwiększ możliwości swojego Nextclouda dzięki AppAPI i specjalnie zaprojektowanym aplikacjom.\n\n\nAppAPI to projekt w ekosystemie Nextcloud, którego celem jest usprawnienie i ulepszenie procesu\ntworzenia, wdrażania i zarządzania aplikacjami.\n\nWprowadza on nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, który tradycyjnie był używany w rozwoju Nextcloud.\n\nJeśli chcesz stworzyć aplikację, chętnie pomożemy i wesprzemy Cię.\n\n### Wsparcie\n\nDoceniamy wszelkie wsparcie dla tego projektu:\n- ⭐Dodaj gwiazdkę naszemu repozytorium na GitHub.\n- ❗Utwórz zgłoszenie lub prośbę o nową funkcję.\n- 💁 Rozwiąż zgłoszenie i wyślij Pull Request.\n- 🧑‍💻 Rozwijaj własną aplikację przy użyciu AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do transformacji sposobu, w jaki aplikacje są rozwijane i używane w Nextcloud.\n\nZapraszamy deweloperów, pomysłodawców, twórców i wizjonerów, aby dołączyli do nas w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego ekosystemu aplikacji.\n\n*Twoje pomysły, sugestie i wkład są dla nas niezwykle cenne.*", + "External Apps management" : "Zarządzanie aplikacjami zewnętrznymi", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu, w jaki aplikacje są rozwijane dla Nextcloud poprzez wykorzystanie kontenerów Dockera.\nPozwala to na większy wybór języków programowania oraz przeniesienie kosztownych obliczeniowo zadań na inny serwer.", + "Deploy Daemons" : "Demony wdrożeniowe", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demony wdrożeniowe. Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Domyślny demon wdrożeniowy jest niedostępny. Sprawdź jego konfigurację.", + "ExApp init timeout (minutes)" : "Limit czasu inicjalizacji ExApp (w minutach)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", + "ExApp init timeout" : "Limit czasu inicjalizacji ExApp", + "ExApp container restart policy" : "Polityka ponownego uruchamiania kontenera ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Określ politykę ponownego uruchamiania kontenera, np. „always”, aby zapewnić działanie ExApp po restarcie serwera demona", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", + "Are you sure you want delete Deploy Daemon" : "Czy na pewno chcesz usunąć demona wdrożeniowego", + "All ExApps on this daemon will be removed" : "Wszystkie ExAppy na tym demonie zostaną usunięte", + "All ExApps installed on this daemon will be removed" : "Wszystkie ExAppy zainstalowane na tym demonie zostaną usunięte", "Cancel" : "Anuluj", "Delete" : "Usuń", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Demon wdrożeniowy „manual-install” nie może być ustawiony jako domyślny", "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", + "Test deploy" : "Testowe wdrożenie", + "Docker registries" : "Rejestry Dockera", "Edit" : "Edycja", + "Daemon connection successful" : "Połączenie z demonem powiodło się", + "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", + "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", + "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", "Deploy Daemon" : "Uruchom demona", + "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Ręczny demon instalacyjny zwykle używany do rozwoju. Nie może być ustawiony jako domyślny demon.", + "ExApps installed" : "ExAppy zainstalowane", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Bezpośrednia komunikacja ExApp (FRP wyłączona)", + "Deploy config" : "Konfiguracja wdrożenia", "Docker network" : "Sieć Dockera", "Nextcloud URL" : "Adres URL Nextcloud", + "HaProxy password" : "Hasło HaProxy", "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", @@ -30,23 +78,97 @@ OC.L10N.register( "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", + "Register Daemon" : "Zarejestruj demona", + "Register ExApp in Nextcloud" : "Zarejestruj ExApp w Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Sprawdź, czy ExApp jest zarejestrowany w Nextcloud przed wdrożeniem", + "Image pull" : "Pobieranie obrazu", + "Check if the image is successfully pulled" : "Sprawdź, czy obraz został pomyślnie pobrany", + "Container started" : "Kontener uruchomiony", + "Check if the image successfully pulled and container is created and started" : "Sprawdź, czy obraz został pomyślnie pobrany oraz czy kontener został utworzony i uruchomiony", + "Heartbeat" : "Sygnał kontrolny (Heartbeat)", + "Check for the heartbeat is finished and healthy" : "Sprawdź, czy sygnał kontrolny został zakończony i jest prawidłowy", + "Init step" : "Krok inicjalizacji", + "Wait for initialization step to finish" : "Czekaj na zakończenie kroku inicjalizacji", "Enabled" : "Włączone", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Sprawdź, czy ExApp pomyślnie obsłużył zdarzenie „enabled” i poprawnie zarejestrował wszystkie elementy", + "Only if ExApp container is preset" : "Tylko jeśli kontener ExApp jest wstępnie ustawiony", + "Deploy test passed successfully!" : "Test wdrożenia zakończony pomyślnie!", + "Deploy test failed at step \"{step}\"" : "Test wdrożenia nie powiódł się na kroku \"{step}\"", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", + "The following Deploy test checks must be passed to succeed:" : "Następujące testy wdrożenia muszą zostać zaliczone, aby zakończyć sukcesem:", "More info" : "Więcej informacji", + "Download ExApp logs" : "Pobierz logi ExApp", + "Remove test ExApp" : "Usuń testowy ExApp", + "Start Deploy test" : "Rozpocznij test wdrożenia", + "Stop Deploy test" : "Zatrzymaj test wdrożenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp zostaje wyrejestrowany, a kontener usunięty przy „Zatrzymaj test wdrożenia”", + "Please enter a registry domain" : "Proszę wprowadzić domenę rejestru", + "From cannot be \"local\"" : "Pole \"From\" nie może być ustawione na „local”", + "This registry mapping already exists" : "To mapowanie rejestru już istnieje", + "From and To cannot be the same" : "\"From\" i \"To\" nie mogą być takie same", + "Docker registry mapping added" : "Mapowanie rejestru Dockera zostało dodane", + "Error adding Docker registry mapping" : "Błąd podczas dodawania mapowania rejestru Dockera", + "Docker registry mapping removed" : "Mapowanie rejestru Dockera zostało usunięte", + "Error removing Docker registry mapping" : "Błąd podczas usuwania mapowania rejestru Dockera", + "Override Docker registries" : "Nadpisz rejestry Dockera", + "Configure Docker registry override mappings for selected daemon." : "Skonfiguruj nadpisanie mapowań rejestru Dockera dla wybranego demona", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Pasujący rejestr źródłowy w pliku info.xml ExApp zostanie nadpisany podczas wdrożenia (krok pobierania obrazu)", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "To jest przydatne, jeśli chcesz użyć własnego rejestru Dockera, np. prywatnego rejestru Dockera lub innego rejestru Dockera do testów.", + "Image pull will be skipped" : "Pobieranie obrazu zostanie pominięte", "Remove" : "Usuń", + "No custom Docker registries configured" : "Brak skonfigurowanych niestandardowych rejestrów Dockera", + "Add registry override mapping" : "Dodaj mapowanie nadpisania rejestru", "From" : "Od", + "registry URL (e.g. ghcr.io)" : "Adres URL rejestru (np. ghcr.io)", "To" : "Do", + "registry URL (e.g. docker.io)" : "Adres URL rejestru (np. docker.io)", "Add" : "Dodaj", "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Nazwa hosta (i port), pod którym dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud, np. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta (i port) lub ścieżka, pod którą dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud. Może to być również ścieżka do gniazda Dockera (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Klucz tajny do komunikacji kontenerów HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmiany zostaną zastosowane tylko do nowo zainstalowanych ExApp. Dla istniejących ExApps kontenery Dockera powinny zostać odtworzone.", + "The docker network that the deployed ex-apps would use." : "Sieć Dockera, której używałyby wdrożone ExApps.", + "URL should start with http:// or https://" : "Adres URL powinien zaczynać się od http:// lub https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Dla demona HTTPS adres URL Nextcloud powinien być HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Wszystkie dostępne urządzenia GPU na hoście demona zostaną poproszone o włączenie w kontenerach ExApp przez Dockera.", + "DaemonConfig successfully registered" : "DaemonConfig został pomyślnie zarejestrowany", + "Failed to register DaemonConfig. Check the logs" : "Nie udało się zarejestrować DaemonConfig. Sprawdź logi", + "DaemonConfig successfully updated" : "DaemonConfig został pomyślnie zaktualizowany", + "Failed to update DaemonConfig. Check the logs" : "Nie udało się zaktualizować DaemonConfig. Sprawdź logi", + "Edit Deploy Daemon" : "Edytuj Deploy Daemon", + "Register Deploy Daemon" : "Zarejestruj Deploy Daemon", + "Daemon configuration template" : "Szablon konfiguracji Daemon", + "Select daemon configuration template" : "Wybierz szablon konfiguracji Daemon", + "Daemon registration form" : "Formularz rejestracji Daemon", + "Unique Deploy Daemon Name" : "Unikalna nazwa Deploy Daemon", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", + "HaRP host" : "Host HaRP", + "Daemon host" : "Host Daemon", + "HaRP shared key" : "Klucz współdzielony HaRP", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", + "Set daemon as default" : "Ustaw demona jako domyślnego", + "Set as default daemon" : "Ustaw jako domyślnego demona", + "Enable https" : "Włącz https", + "Show deploy config" : "Pokaż konfigurację wdrożenia", + "Hide deploy config" : "Ukryj konfigurację wdrożenia", + "Enable HaRP" : "Włącz HaRP", + "FRP server address" : "Adres serwera FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adres (host:port) serwera FRP, który powinien być osiągalny przez ex-app w sieci zdefiniowanej w „Docker network”.", + "Docker socket proxy port" : "Port proxy gniazda Dockera", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port w HaRP, do którego łączy się proxy gniazda Dockera. Powinien być wystawiony, ale dla wbudowanego nie jest to wymagane ani konieczne do zmiany.", + "Disable FRP" : "Wyłącz FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flaga tylko dla zaawansowanych konfiguracji. Wyłącza tunel FRP pomiędzy ExApps a HaRP.", "Disabled" : "Wyłączone", + "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", + "Option key (unique)" : "Klucz opcji (unikalny)", + "Option key (unique, e.g. my_key)" : "Klucz opcji (unikalny, np. my_key)", "Option key is required" : "Wymagany jest klucz opcji", "Option value" : "Wartość opcji", "Option value is required" : "Wymagana jest wartość opcji", @@ -55,6 +177,7 @@ OC.L10N.register( "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", "External Apps" : "Aplikacje zewnętrzne", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Wzmocnij swojego Nextclouda dzięki AppAPI i jego specjalnie zaprojektowanym aplikacjom. \n\n\nProjekt AppAPI w ekosystemie Nextcloud został zaprojektowany, aby usprawnić i ulepszyć proces \ntworzenia, wdrażania i zarządzania aplikacjami. \n\nWprowadza nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, które tradycyjnie było używane w Nextcloudzie.\n\n### Dołączona aplikacja\n\n**Począwszy od Nextcloud 30.0.1, aplikacja ta jest zawarta w domyślnym pakiecie Nextclouda.**\n\n### Wsparcie\n\nDoceniamy każde wsparcie dla tego projektu:\n- ⭐ Oznacz nasze repozytorium na GitHubie \n- ❗Zgłoś problem lub propozycję funkcji \n- 💁 Rozwiąż problem i utwórz Pull Request \n- 🧑‍💻 Rozwijaj własną aplikację używając AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do przekształcenia sposobu, w jaki aplikacje są tworzone i używane w Nextcloudzie. \n\nZapraszamy serdecznie do udziału – deweloperów, myślicieli, twórców i wizjonerów – aby pomóc w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego środowiska aplikacji. \n\n*Twoje pomysły, sugestie i wkład są dla nas bezcenne.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", @@ -83,6 +206,7 @@ OC.L10N.register( "Actions" : "Akcje", "Results from other categories" : "Wyniki z innych kategorii", "No apps found" : "Nie znaleziono aplikacji", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp ma dostępne aktualizacje","%n aplikacje mają dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje"], "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", @@ -101,15 +225,20 @@ OC.L10N.register( "Featured apps" : "Polecane aplikacje", "Supported apps" : "Obsługiwane aplikacje", "manual-install apps cannot be updated" : "aplikacji instalowanych ręcznie nie można aktualizować", + "{progress}% Deploying" : "{progress}% Wdrażanie", + "{progress}% Initializing" : "{progress}% Inicjalizacja", "Healthchecking" : "Sprawdzanie stanu zdrowia", "Deploy and Enable" : "Wdróż i włącz", "Enable" : "Włącz", "Disable" : "Wyłącz", "Allow untested app" : "Zezwalaj na nietestowane aplikacje", + "Default Deploy daemon is not accessible. Please verify configuration" : "Domyślny demon wdrażania nie jest dostępny. Proszę sprawdzić konfigurację", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Aplikacja zostanie pobrana ze Sklepu Aplikacji i wdrożona na domyślnym Demonie Wdrażania", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ta aplikacja jest niezgodna z wersją Nextcloud. Przy dalszej kontynuacji, możesz pozwolić na zainstalowanie tej aplikacji. Pamiętaj, że aplikacja może nie działać zgodnie z oczekiwaniami.", "Your ExApps" : "Twoje ExApps", "An error occurred during the request. Unable to proceed." : "Wystąpił błąd podczas żądania. Nie można kontynuować.", "The app has been enabled but needs to be updated." : "Aplikacja została włączona, ale wymaga aktualizacji.", - "Error: This app cannot be enabled because it makes the server unstable" : "Błąd: Ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera" + "Error: This app cannot be enabled because it makes the server unstable" : "Błąd: Ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Wzmocnij swojego Nextclouda dzięki AppAPI i jego specjalnie zaprojektowanym aplikacjom. \n\n\nProjekt AppAPI w ekosystemie Nextcloud został zaprojektowany, aby usprawnić i ulepszyć proces \ntworzenia, wdrażania i zarządzania aplikacjami. \n\nWprowadza nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, które tradycyjnie było używane w Nextcloudzie.\n\n\n## Lista aplikacji wymagających AppAPI: \n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\nJeśli chcesz stworzyć aplikację, chętnie Ci pomożemy i wesprzemy.\n\n### Wsparcie\n\nDoceniamy każde wsparcie dla tego projektu \n– ⭐ Oznacz nasze repozytorium na GitHubie \n– ❗Zgłoś problem lub propozycję funkcji \n– 🧑‍💻 Rozwiąż problem i utwórz Pull Request \n– 📦 Rozwijaj własną aplikację używając AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do przekształcenia sposobu, w jaki aplikacje są tworzone i używane w Nextcloudzie. \n\nZapraszamy serdecznie do udziału – deweloperów, pomysłodawców, twórców i wizjonerów – aby pomóc w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego środowiska aplikacji. \n\n*Twoje pomysły, sugestie i wkład są dla nas bezcenne.*" }, "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 b5956bcb..742a3310 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -1,26 +1,74 @@ { "translations": { "Daemon config not found" : "Nie znaleziono konfiguracji demona", + "Error starting install of ExApp" : "Błąd podczas uruchamiania instalacji ExApp", + "ExApp failed to register, check the NC logs" : "Nie udało się zarejestrować ExApp, sprawdź logi NC", + "ExApp not found, failed to get status" : "Nie znaleziono ExApp, nie udało się uzyskać statusu", + "Error adding Docker registry" : "Błąd podczas dodawania rejestru Dockera", + "Error removing Docker registry" : "Błąd podczas usuwania rejestru Dockera", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Ta aplikacja nie została zainstalowana ze Sklepu Aplikacji. Brak dodatkowych informacji. Dozwolone są tylko akcje włączania/wyłączania i usuwania.", + "Could not perform installation of ExApp" : "Nie udało się przeprowadzić instalacji ExApp", + "Failed to enable ExApp" : "Nie udało się włączyć ExApp", + "Failed to disable ExApp" : "Nie udało się wyłączyć ExApp", + "Could not update ExApp" : "Nie udało się zaktualizować ExApp", + "Error starting update of ExApp" : "Błąd podczas uruchamiania aktualizacji ExApp", + "Could not perform update of ExApp" : "Nie udało się przeprowadzić aktualizacji ExApp", + "ExApp not found, failed to get logs" : "Nie znaleziono ExApp, nie udało się pobrać logów", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Nie udało się pobrać logów kontenera. Uwaga: Pobieranie kontenera Dockera działa tylko dla kontenerów z włączonym sterownikiem logowania json-file lub journald. Błąd: %s", + "ExApp not found, failed to get deploy options" : "Nie znaleziono ExApp, nie udało się pobrać opcji wdrożenia", "AppAPI authentication failed" : "Uwierzytelnienie AppAPI nie powiodło się", "AppAPI ExApp notifier" : "Powiadomienie AppAPI ExApp", "AppAPI" : "AppAPI", + "AI Integration Team" : "Zespół integracji AI", + "ExApps Settings" : "Ustawienia ExApps", + "AppAPI deploy daemon" : "Demon wdrożeniowy AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Domyślny demon wdrożeniowy AppAPI nie jest ustawiony. Zarejestruj domyślny demon wdrożeniowy w ustawieniach, aby zainstalować aplikacje zewnętrzne (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Domyślny demon wdrożeniowy AppAPI \"%s\" jest niedostępny. Sprawdź konfigurację demona.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Domyślny demon wdrożeniowy AppAPI nie używa HaRP. Rozważ uaktualnienie do niego, aby uzyskać lepszą wydajność.", "Nextcloud AppAPI" : "AppAPI Nextcloud", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zwiększ możliwości swojego Nextclouda dzięki AppAPI i specjalnie zaprojektowanym aplikacjom.\n\n\nAppAPI to projekt w ekosystemie Nextcloud, którego celem jest usprawnienie i ulepszenie procesu\ntworzenia, wdrażania i zarządzania aplikacjami.\n\nWprowadza on nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, który tradycyjnie był używany w rozwoju Nextcloud.\n\nJeśli chcesz stworzyć aplikację, chętnie pomożemy i wesprzemy Cię.\n\n### Wsparcie\n\nDoceniamy wszelkie wsparcie dla tego projektu:\n- ⭐Dodaj gwiazdkę naszemu repozytorium na GitHub.\n- ❗Utwórz zgłoszenie lub prośbę o nową funkcję.\n- 💁 Rozwiąż zgłoszenie i wyślij Pull Request.\n- 🧑‍💻 Rozwijaj własną aplikację przy użyciu AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do transformacji sposobu, w jaki aplikacje są rozwijane i używane w Nextcloud.\n\nZapraszamy deweloperów, pomysłodawców, twórców i wizjonerów, aby dołączyli do nas w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego ekosystemu aplikacji.\n\n*Twoje pomysły, sugestie i wkład są dla nas niezwykle cenne.*", + "External Apps management" : "Zarządzanie aplikacjami zewnętrznymi", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu, w jaki aplikacje są rozwijane dla Nextcloud poprzez wykorzystanie kontenerów Dockera.\nPozwala to na większy wybór języków programowania oraz przeniesienie kosztownych obliczeniowo zadań na inny serwer.", + "Deploy Daemons" : "Demony wdrożeniowe", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demony wdrożeniowe. Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Domyślny demon wdrożeniowy jest niedostępny. Sprawdź jego konfigurację.", + "ExApp init timeout (minutes)" : "Limit czasu inicjalizacji ExApp (w minutach)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", + "ExApp init timeout" : "Limit czasu inicjalizacji ExApp", + "ExApp container restart policy" : "Polityka ponownego uruchamiania kontenera ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Określ politykę ponownego uruchamiania kontenera, np. „always”, aby zapewnić działanie ExApp po restarcie serwera demona", "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", + "Are you sure you want delete Deploy Daemon" : "Czy na pewno chcesz usunąć demona wdrożeniowego", + "All ExApps on this daemon will be removed" : "Wszystkie ExAppy na tym demonie zostaną usunięte", + "All ExApps installed on this daemon will be removed" : "Wszystkie ExAppy zainstalowane na tym demonie zostaną usunięte", "Cancel" : "Anuluj", "Delete" : "Usuń", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Demon wdrożeniowy „manual-install” nie może być ustawiony jako domyślny", "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", + "Test deploy" : "Testowe wdrożenie", + "Docker registries" : "Rejestry Dockera", "Edit" : "Edycja", + "Daemon connection successful" : "Połączenie z demonem powiodło się", + "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", + "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", + "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", "Deploy Daemon" : "Uruchom demona", + "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Ręczny demon instalacyjny zwykle używany do rozwoju. Nie może być ustawiony jako domyślny demon.", + "ExApps installed" : "ExAppy zainstalowane", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Bezpośrednia komunikacja ExApp (FRP wyłączona)", + "Deploy config" : "Konfiguracja wdrożenia", "Docker network" : "Sieć Dockera", "Nextcloud URL" : "Adres URL Nextcloud", + "HaProxy password" : "Hasło HaProxy", "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", "Additional options" : "Dodatkowe opcje", @@ -28,23 +76,97 @@ "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", + "Register Daemon" : "Zarejestruj demona", + "Register ExApp in Nextcloud" : "Zarejestruj ExApp w Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Sprawdź, czy ExApp jest zarejestrowany w Nextcloud przed wdrożeniem", + "Image pull" : "Pobieranie obrazu", + "Check if the image is successfully pulled" : "Sprawdź, czy obraz został pomyślnie pobrany", + "Container started" : "Kontener uruchomiony", + "Check if the image successfully pulled and container is created and started" : "Sprawdź, czy obraz został pomyślnie pobrany oraz czy kontener został utworzony i uruchomiony", + "Heartbeat" : "Sygnał kontrolny (Heartbeat)", + "Check for the heartbeat is finished and healthy" : "Sprawdź, czy sygnał kontrolny został zakończony i jest prawidłowy", + "Init step" : "Krok inicjalizacji", + "Wait for initialization step to finish" : "Czekaj na zakończenie kroku inicjalizacji", "Enabled" : "Włączone", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Sprawdź, czy ExApp pomyślnie obsłużył zdarzenie „enabled” i poprawnie zarejestrował wszystkie elementy", + "Only if ExApp container is preset" : "Tylko jeśli kontener ExApp jest wstępnie ustawiony", + "Deploy test passed successfully!" : "Test wdrożenia zakończony pomyślnie!", + "Deploy test failed at step \"{step}\"" : "Test wdrożenia nie powiódł się na kroku \"{step}\"", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", + "The following Deploy test checks must be passed to succeed:" : "Następujące testy wdrożenia muszą zostać zaliczone, aby zakończyć sukcesem:", "More info" : "Więcej informacji", + "Download ExApp logs" : "Pobierz logi ExApp", + "Remove test ExApp" : "Usuń testowy ExApp", + "Start Deploy test" : "Rozpocznij test wdrożenia", + "Stop Deploy test" : "Zatrzymaj test wdrożenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp zostaje wyrejestrowany, a kontener usunięty przy „Zatrzymaj test wdrożenia”", + "Please enter a registry domain" : "Proszę wprowadzić domenę rejestru", + "From cannot be \"local\"" : "Pole \"From\" nie może być ustawione na „local”", + "This registry mapping already exists" : "To mapowanie rejestru już istnieje", + "From and To cannot be the same" : "\"From\" i \"To\" nie mogą być takie same", + "Docker registry mapping added" : "Mapowanie rejestru Dockera zostało dodane", + "Error adding Docker registry mapping" : "Błąd podczas dodawania mapowania rejestru Dockera", + "Docker registry mapping removed" : "Mapowanie rejestru Dockera zostało usunięte", + "Error removing Docker registry mapping" : "Błąd podczas usuwania mapowania rejestru Dockera", + "Override Docker registries" : "Nadpisz rejestry Dockera", + "Configure Docker registry override mappings for selected daemon." : "Skonfiguruj nadpisanie mapowań rejestru Dockera dla wybranego demona", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Pasujący rejestr źródłowy w pliku info.xml ExApp zostanie nadpisany podczas wdrożenia (krok pobierania obrazu)", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "To jest przydatne, jeśli chcesz użyć własnego rejestru Dockera, np. prywatnego rejestru Dockera lub innego rejestru Dockera do testów.", + "Image pull will be skipped" : "Pobieranie obrazu zostanie pominięte", "Remove" : "Usuń", + "No custom Docker registries configured" : "Brak skonfigurowanych niestandardowych rejestrów Dockera", + "Add registry override mapping" : "Dodaj mapowanie nadpisania rejestru", "From" : "Od", + "registry URL (e.g. ghcr.io)" : "Adres URL rejestru (np. ghcr.io)", "To" : "Do", + "registry URL (e.g. docker.io)" : "Adres URL rejestru (np. docker.io)", "Add" : "Dodaj", "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Nazwa hosta (i port), pod którym dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud, np. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta (i port) lub ścieżka, pod którą dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud. Może to być również ścieżka do gniazda Dockera (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Klucz tajny do komunikacji kontenerów HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmiany zostaną zastosowane tylko do nowo zainstalowanych ExApp. Dla istniejących ExApps kontenery Dockera powinny zostać odtworzone.", + "The docker network that the deployed ex-apps would use." : "Sieć Dockera, której używałyby wdrożone ExApps.", + "URL should start with http:// or https://" : "Adres URL powinien zaczynać się od http:// lub https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Dla demona HTTPS adres URL Nextcloud powinien być HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Wszystkie dostępne urządzenia GPU na hoście demona zostaną poproszone o włączenie w kontenerach ExApp przez Dockera.", + "DaemonConfig successfully registered" : "DaemonConfig został pomyślnie zarejestrowany", + "Failed to register DaemonConfig. Check the logs" : "Nie udało się zarejestrować DaemonConfig. Sprawdź logi", + "DaemonConfig successfully updated" : "DaemonConfig został pomyślnie zaktualizowany", + "Failed to update DaemonConfig. Check the logs" : "Nie udało się zaktualizować DaemonConfig. Sprawdź logi", + "Edit Deploy Daemon" : "Edytuj Deploy Daemon", + "Register Deploy Daemon" : "Zarejestruj Deploy Daemon", + "Daemon configuration template" : "Szablon konfiguracji Daemon", + "Select daemon configuration template" : "Wybierz szablon konfiguracji Daemon", + "Daemon registration form" : "Formularz rejestracji Daemon", + "Unique Deploy Daemon Name" : "Unikalna nazwa Deploy Daemon", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", "Select daemon deploy method" : "Wybierz metodę wdrażania demona", + "HaRP host" : "Host HaRP", + "Daemon host" : "Host Daemon", + "HaRP shared key" : "Klucz współdzielony HaRP", "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", + "Set daemon as default" : "Ustaw demona jako domyślnego", + "Set as default daemon" : "Ustaw jako domyślnego demona", + "Enable https" : "Włącz https", + "Show deploy config" : "Pokaż konfigurację wdrożenia", + "Hide deploy config" : "Ukryj konfigurację wdrożenia", + "Enable HaRP" : "Włącz HaRP", + "FRP server address" : "Adres serwera FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adres (host:port) serwera FRP, który powinien być osiągalny przez ex-app w sieci zdefiniowanej w „Docker network”.", + "Docker socket proxy port" : "Port proxy gniazda Dockera", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port w HaRP, do którego łączy się proxy gniazda Dockera. Powinien być wystawiony, ale dla wbudowanego nie jest to wymagane ani konieczne do zmiany.", + "Disable FRP" : "Wyłącz FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flaga tylko dla zaawansowanych konfiguracji. Wyłącza tunel FRP pomiędzy ExApps a HaRP.", "Disabled" : "Wyłączone", + "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", + "Option key (unique)" : "Klucz opcji (unikalny)", + "Option key (unique, e.g. my_key)" : "Klucz opcji (unikalny, np. my_key)", "Option key is required" : "Wymagany jest klucz opcji", "Option value" : "Wartość opcji", "Option value is required" : "Wymagana jest wartość opcji", @@ -53,6 +175,7 @@ "Register" : "Zarejestruj się", "Check connection" : "Sprawdź połączenie", "External Apps" : "Aplikacje zewnętrzne", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Wzmocnij swojego Nextclouda dzięki AppAPI i jego specjalnie zaprojektowanym aplikacjom. \n\n\nProjekt AppAPI w ekosystemie Nextcloud został zaprojektowany, aby usprawnić i ulepszyć proces \ntworzenia, wdrażania i zarządzania aplikacjami. \n\nWprowadza nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, które tradycyjnie było używane w Nextcloudzie.\n\n### Dołączona aplikacja\n\n**Począwszy od Nextcloud 30.0.1, aplikacja ta jest zawarta w domyślnym pakiecie Nextclouda.**\n\n### Wsparcie\n\nDoceniamy każde wsparcie dla tego projektu:\n- ⭐ Oznacz nasze repozytorium na GitHubie \n- ❗Zgłoś problem lub propozycję funkcji \n- 💁 Rozwiąż problem i utwórz Pull Request \n- 🧑‍💻 Rozwijaj własną aplikację używając AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do przekształcenia sposobu, w jaki aplikacje są tworzone i używane w Nextcloudzie. \n\nZapraszamy serdecznie do udziału – deweloperów, myślicieli, twórców i wizjonerów – aby pomóc w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego środowiska aplikacji. \n\n*Twoje pomysły, sugestie i wkład są dla nas bezcenne.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", @@ -81,6 +204,7 @@ "Actions" : "Akcje", "Results from other categories" : "Wyniki z innych kategorii", "No apps found" : "Nie znaleziono aplikacji", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp ma dostępne aktualizacje","%n aplikacje mają dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje"], "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", @@ -99,15 +223,20 @@ "Featured apps" : "Polecane aplikacje", "Supported apps" : "Obsługiwane aplikacje", "manual-install apps cannot be updated" : "aplikacji instalowanych ręcznie nie można aktualizować", + "{progress}% Deploying" : "{progress}% Wdrażanie", + "{progress}% Initializing" : "{progress}% Inicjalizacja", "Healthchecking" : "Sprawdzanie stanu zdrowia", "Deploy and Enable" : "Wdróż i włącz", "Enable" : "Włącz", "Disable" : "Wyłącz", "Allow untested app" : "Zezwalaj na nietestowane aplikacje", + "Default Deploy daemon is not accessible. Please verify configuration" : "Domyślny demon wdrażania nie jest dostępny. Proszę sprawdzić konfigurację", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Aplikacja zostanie pobrana ze Sklepu Aplikacji i wdrożona na domyślnym Demonie Wdrażania", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Ta aplikacja jest niezgodna z wersją Nextcloud. Przy dalszej kontynuacji, możesz pozwolić na zainstalowanie tej aplikacji. Pamiętaj, że aplikacja może nie działać zgodnie z oczekiwaniami.", "Your ExApps" : "Twoje ExApps", "An error occurred during the request. Unable to proceed." : "Wystąpił błąd podczas żądania. Nie można kontynuować.", "The app has been enabled but needs to be updated." : "Aplikacja została włączona, ale wymaga aktualizacji.", - "Error: This app cannot be enabled because it makes the server unstable" : "Błąd: Ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera" + "Error: This app cannot be enabled because it makes the server unstable" : "Błąd: Ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Wzmocnij swojego Nextclouda dzięki AppAPI i jego specjalnie zaprojektowanym aplikacjom. \n\n\nProjekt AppAPI w ekosystemie Nextcloud został zaprojektowany, aby usprawnić i ulepszyć proces \ntworzenia, wdrażania i zarządzania aplikacjami. \n\nWprowadza nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, które tradycyjnie było używane w Nextcloudzie.\n\n\n## Lista aplikacji wymagających AppAPI: \n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\nJeśli chcesz stworzyć aplikację, chętnie Ci pomożemy i wesprzemy.\n\n### Wsparcie\n\nDoceniamy każde wsparcie dla tego projektu \n– ⭐ Oznacz nasze repozytorium na GitHubie \n– ❗Zgłoś problem lub propozycję funkcji \n– 🧑‍💻 Rozwiąż problem i utwórz Pull Request \n– 📦 Rozwijaj własną aplikację używając AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do przekształcenia sposobu, w jaki aplikacje są tworzone i używane w Nextcloudzie. \n\nZapraszamy serdecznie do udziału – deweloperów, pomysłodawców, twórców i wizjonerów – aby pomóc w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego środowiska aplikacji. \n\n*Twoje pomysły, sugestie i wkład są dla nas bezcenne.*" },"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 From da13f1c1df3bbf1d2cd2cbbfcd694a88eda06e2b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 21 Aug 2025 00:18:43 +0000 Subject: [PATCH 175/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 11 ++++++++++- l10n/be.json | 11 ++++++++++- l10n/lv.js | 2 +- l10n/lv.json | 2 +- l10n/ru.js | 1 + l10n/ru.json | 1 + 6 files changed, 24 insertions(+), 4 deletions(-) diff --git a/l10n/be.js b/l10n/be.js index 35966415..4908bbda 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -14,6 +14,15 @@ OC.L10N.register( "Icon" : "Значок", "Version" : "Версія", "Actions" : "Дзеянні", - "Type" : "Тып" + "Type" : "Тып", + "Your apps" : "Вашы праграмы", + "Active apps" : "Актыўныя праграмы", + "Disabled apps" : "Адключаныя праграмы", + "Updates" : "Абнаўленні", + "Featured apps" : "Папулярныя праграмы", + "Disable" : "Адключыць", + "Allow untested app" : "Дазволіць неправераную праграму", + "An error occurred during the request. Unable to proceed." : "Падчас запыту адбылася памылка. Не ўдалося працягнуць.", + "The app has been enabled but needs to be updated." : "Праграма ўключана, але патрабуе абнаўлення." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/be.json b/l10n/be.json index cadf54d1..3f99d094 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -12,6 +12,15 @@ "Icon" : "Значок", "Version" : "Версія", "Actions" : "Дзеянні", - "Type" : "Тып" + "Type" : "Тып", + "Your apps" : "Вашы праграмы", + "Active apps" : "Актыўныя праграмы", + "Disabled apps" : "Адключаныя праграмы", + "Updates" : "Абнаўленні", + "Featured apps" : "Папулярныя праграмы", + "Disable" : "Адключыць", + "Allow untested app" : "Дазволіць неправераную праграму", + "An error occurred during the request. Unable to proceed." : "Падчас запыту адбылася памылка. Не ўдалося працягнуць.", + "The app has been enabled but needs to be updated." : "Праграма ўключана, але патрабуе абнаўлення." },"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/lv.js b/l10n/lv.js index 1f7220eb..b6a6f15c 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -17,7 +17,7 @@ OC.L10N.register( "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", - "Visit website" : "Apmeklējiet vietni", + "Visit website" : "Apmeklēt tīmekļvietni", "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", "Admin documentation" : "Pārvaldītāja dokumentācija", diff --git a/l10n/lv.json b/l10n/lv.json index ba3c88ee..a80006c7 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -15,7 +15,7 @@ "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", - "Visit website" : "Apmeklējiet vietni", + "Visit website" : "Apmeklēt tīmekļvietni", "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", "Admin documentation" : "Pārvaldītāja dokumentācija", diff --git a/l10n/ru.js b/l10n/ru.js index 54263c4e..fc71f2e7 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -23,6 +23,7 @@ OC.L10N.register( "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проект AppAPI — это многообещающая инициатива, призванная кардинально изменить подход к разработке приложений для Nextcloud посредством использования Docker-контейнеров. Это расширяет выбор языков программирования и позволяет переносить ресурсоёмкие задачи на другой сервер.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", diff --git a/l10n/ru.json b/l10n/ru.json index ce356b27..b5ea1cfb 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -21,6 +21,7 @@ "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проект AppAPI — это многообещающая инициатива, призванная кардинально изменить подход к разработке приложений для Nextcloud посредством использования Docker-контейнеров. Это расширяет выбор языков программирования и позволяет переносить ресурсоёмкие задачи на другой сервер.", "Deploy Daemons" : "Службы публикации", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", From 9138cf6602343f55a9f1d74bc660ae07b232e8b8 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 23 Aug 2025 00:18:41 +0000 Subject: [PATCH 176/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 2 ++ l10n/be.json | 2 ++ l10n/ru.js | 1 + l10n/ru.json | 1 + 4 files changed, 6 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index 4908bbda..ad3ee4f3 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Выдаліць", "Edit" : "Рэдагаваць", "Name" : "Назва", + "Nextcloud URL" : "URL-адрас NextCloud", "Remove" : "Выдаліць", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", @@ -20,6 +21,7 @@ OC.L10N.register( "Disabled apps" : "Адключаныя праграмы", "Updates" : "Абнаўленні", "Featured apps" : "Папулярныя праграмы", + "Supported apps" : "Праграмы, якія падтрымліваюцца", "Disable" : "Адключыць", "Allow untested app" : "Дазволіць неправераную праграму", "An error occurred during the request. Unable to proceed." : "Падчас запыту адбылася памылка. Не ўдалося працягнуць.", diff --git a/l10n/be.json b/l10n/be.json index 3f99d094..e1d875e9 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -3,6 +3,7 @@ "Delete" : "Выдаліць", "Edit" : "Рэдагаваць", "Name" : "Назва", + "Nextcloud URL" : "URL-адрас NextCloud", "Remove" : "Выдаліць", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", @@ -18,6 +19,7 @@ "Disabled apps" : "Адключаныя праграмы", "Updates" : "Абнаўленні", "Featured apps" : "Папулярныя праграмы", + "Supported apps" : "Праграмы, якія падтрымліваюцца", "Disable" : "Адключыць", "Allow untested app" : "Дазволіць неправераную праграму", "An error occurred during the request. Unable to proceed." : "Падчас запыту адбылася памылка. Не ўдалося працягнуць.", diff --git a/l10n/ru.js b/l10n/ru.js index fc71f2e7..c3a5353e 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -19,6 +19,7 @@ OC.L10N.register( "AppAPI" : "AppAPI", "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).пожалуйстаприложения", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", diff --git a/l10n/ru.json b/l10n/ru.json index b5ea1cfb..8049d3df 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -17,6 +17,7 @@ "AppAPI" : "AppAPI", "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).пожалуйстаприложения", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", From 645a3b9fc65128d479af1a6306ca8789b9bdb13a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 25 Aug 2025 00:18:25 +0000 Subject: [PATCH 177/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/tr.js | 1 + l10n/tr.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/tr.js b/l10n/tr.js index 586b7330..74996b85 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI Projesi, docker kapsayıcılarının kullanılması ile Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir. Daha fazla programlama dili seçeneği sunar ve işlem gücü gereken görevlerin farklı bir sunucuya aktarılmasını sağlar.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", diff --git a/l10n/tr.json b/l10n/tr.json index 9a5bbee6..11a87db1 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -29,6 +29,7 @@ "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI Projesi, docker kapsayıcılarının kullanılması ile Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir. Daha fazla programlama dili seçeneği sunar ve işlem gücü gereken görevlerin farklı bir sunucuya aktarılmasını sağlar.", "Deploy Daemons" : "Dağıtım arka plan işlemleri", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", From 247e9c81681797de4c304baa5a9dd4aebae11639 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 26 Aug 2025 00:20:23 +0000 Subject: [PATCH 178/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 2 ++ l10n/be.json | 2 ++ l10n/ru.js | 41 +++++++++++++++++++++++++++++++++++++++++ l10n/ru.json | 41 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 86 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index ad3ee4f3..35c8da89 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -17,11 +17,13 @@ OC.L10N.register( "Actions" : "Дзеянні", "Type" : "Тып", "Your apps" : "Вашы праграмы", + "Documentation" : "Дакументацыя", "Active apps" : "Актыўныя праграмы", "Disabled apps" : "Адключаныя праграмы", "Updates" : "Абнаўленні", "Featured apps" : "Папулярныя праграмы", "Supported apps" : "Праграмы, якія падтрымліваюцца", + "Enable" : "Уключыць", "Disable" : "Адключыць", "Allow untested app" : "Дазволіць неправераную праграму", "An error occurred during the request. Unable to proceed." : "Падчас запыту адбылася памылка. Не ўдалося працягнуць.", diff --git a/l10n/be.json b/l10n/be.json index e1d875e9..250b7afa 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -15,11 +15,13 @@ "Actions" : "Дзеянні", "Type" : "Тып", "Your apps" : "Вашы праграмы", + "Documentation" : "Дакументацыя", "Active apps" : "Актыўныя праграмы", "Disabled apps" : "Адключаныя праграмы", "Updates" : "Абнаўленні", "Featured apps" : "Папулярныя праграмы", "Supported apps" : "Праграмы, якія падтрымліваюцца", + "Enable" : "Уключыць", "Disable" : "Адключыць", "Allow untested app" : "Дазволіць неправераную праграму", "An error occurred during the request. Unable to proceed." : "Падчас запыту адбылася памылка. Не ўдалося працягнуць.", diff --git a/l10n/ru.js b/l10n/ru.js index c3a5353e..c4d29db5 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "Ошибка при запуске установки ExApp", "ExApp failed to register, check the NC logs" : "ExApp не удалось зарегистрироваться, проверьте журналы NC", "ExApp not found, failed to get status" : "ExApp не найден, не удалось получить статус", + "Error adding Docker registry" : "Ошибка добавления регистра Docker", + "Error removing Docker registry" : "Ошибка удаления регистра Docker", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение установлено не из App Store. Дополнительная информация отсутствует. Разрешены только действия по включению/отключению и удалению.", "Could not perform installation of ExApp" : "Не удалось выполнить установку ExApp", "Failed to enable ExApp" : "Не удалось включить ExApp", @@ -14,13 +16,18 @@ OC.L10N.register( "Could not perform update of ExApp" : "Не удалось выполнить обновление ExApp", "ExApp not found, failed to get logs" : "ExApp не найден, не удалось получить логи", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Не удалось получить журналы контейнера. Примечание: Загрузка контейнера Docker работает только для контейнеров с драйвером журналирования json-file или journald. Ошибка: %s", + "ExApp not found, failed to get deploy options" : "ExApp не найдено, не удалось получить настройки развертывания", "AppAPI authentication failed" : "Ошибка аутентификации AppAPI", "AppAPI ExApp notifier" : "AppAPI ExApp уведомить", "AppAPI" : "AppAPI", "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", + "AppAPI deploy daemon" : "Сервис развертывания AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).пожалуйстаприложения", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", @@ -46,6 +53,7 @@ OC.L10N.register( "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", + "Docker registries" : "Регистры Docker", "Edit" : "Редактирование", "Daemon connection successful" : "Служба успешно установлена", "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", @@ -58,6 +66,7 @@ OC.L10N.register( "Name" : "Имя", "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", + "ExApp direct communication (FRP disabled)" : "Прямая связь ExApp (FRP выключено)", "Deploy config" : "Развертывание конфигурации", "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", @@ -93,14 +102,35 @@ OC.L10N.register( "Start Deploy test" : "Начать тест развертывания", "Stop Deploy test" : "Остановить тест развертывания", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Please enter a registry domain" : "Войдите в домен регистра", + "From cannot be \"local\"" : "\"От\" не может быть \"локальным\"", + "This registry mapping already exists" : "Отображение регистра уже существует", + "From and To cannot be the same" : "\"От\" и \"К\" не могут быть одинаковыми", + "Docker registry mapping added" : "Добавлено отображение регистра", + "Error adding Docker registry mapping" : "Ошибка добавления отображения регистра", + "Docker registry mapping removed" : "Удалено отображение регистра", + "Error removing Docker registry mapping" : "Ошибка удаления отображения регистра", + "Override Docker registries" : "Перезаписать регистры Docker", + "Configure Docker registry override mappings for selected daemon." : "Настроить переопределение отображений регистра для выбранного сервиса.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Подходящий регистр-источник в файле ExApp info.xml будет перезаписан во время развертывания (на шаге вызова образа).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Это полезно, если вы хотите использовать пользовательский регистр, например, приватный регистр, или использовать другой регистр для тестирования.", + "Image pull will be skipped" : "Вызов образа будет пропущен", "Remove" : "Удалить", + "No custom Docker registries configured" : "Не настроены пользовательские регистры", + "Add registry override mapping" : "Добавить переопределение отображения регистра", "From" : "От", + "registry URL (e.g. ghcr.io)" : "URL регистра (например, ghcr.io)", "To" : "По", + "registry URL (e.g. docker.io)" : "URL регистра (например, docker.io)", "Add" : "Добавить", "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Хостнейм (и порт), на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud, т е {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Хостнейм (и порт) или путь, на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud. Это также может быть путем к сокету Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретный ключ для связи с контейнером HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "The docker network that the deployed ex-apps would use." : "Сеть Docker, которую будут использовать развернутые ex-apps.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", @@ -117,14 +147,24 @@ OC.L10N.register( "Display name" : "Отображаемое имя", "Deployment method" : "Метод развертывания", "Select daemon deploy method" : "Выберите метод развертывания службы", + "HaRP host" : "Хост HaRP", "Daemon host" : "Хост службы", + "HaRP shared key" : "Общий ключ HaRP", "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "Set daemon as default" : "Использовать службу по умолчанию", "Set as default daemon" : "Использовать службу по умолчанию", "Enable https" : "Использовать HTTPS", "Show deploy config" : "Показать конфигурацию развёртывания", "Hide deploy config" : "Скрыть конфигурацию развёртывания", + "Enable HaRP" : "Включить HaRP", + "FRP server address" : "Адрес сервера FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адрес (хост:порт) FRP сервера, который должен быть доступен для ex-app в сети, определенной в \"сети Docker\".", + "Docker socket proxy port" : "Порт прокси-сокета Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт HaRP, к которому подключится прокси-сокет Docker. Он должен быть открыт, но не для внутренних служб, не требуется, чтобы он был открыт или изменен.", + "Disable FRP" : "Отключить FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Переключатель только для расширенных настроек. Отключает FRP-туннель между ExApps и HaRP.", "Disabled" : "Отключено", + "Docker network for ex-app deployment must be defined" : "Сеть Docker для развертывания ex-app должна быть определена", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", @@ -137,6 +177,7 @@ OC.L10N.register( "Register" : "Регистрация", "Check connection" : "Проверить подключение", "External Apps" : "Внешние приложения", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Приложения в комплекте\n\n**Начиная с Nextcloud 30.0.1, это приложение включено в поставку Nextcloud  по-умолчанию.**\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", diff --git a/l10n/ru.json b/l10n/ru.json index 8049d3df..12238ed8 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "Ошибка при запуске установки ExApp", "ExApp failed to register, check the NC logs" : "ExApp не удалось зарегистрироваться, проверьте журналы NC", "ExApp not found, failed to get status" : "ExApp не найден, не удалось получить статус", + "Error adding Docker registry" : "Ошибка добавления регистра Docker", + "Error removing Docker registry" : "Ошибка удаления регистра Docker", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Это приложение установлено не из App Store. Дополнительная информация отсутствует. Разрешены только действия по включению/отключению и удалению.", "Could not perform installation of ExApp" : "Не удалось выполнить установку ExApp", "Failed to enable ExApp" : "Не удалось включить ExApp", @@ -12,13 +14,18 @@ "Could not perform update of ExApp" : "Не удалось выполнить обновление ExApp", "ExApp not found, failed to get logs" : "ExApp не найден, не удалось получить логи", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Не удалось получить журналы контейнера. Примечание: Загрузка контейнера Docker работает только для контейнеров с драйвером журналирования json-file или journald. Ошибка: %s", + "ExApp not found, failed to get deploy options" : "ExApp не найдено, не удалось получить настройки развертывания", "AppAPI authentication failed" : "Ошибка аутентификации AppAPI", "AppAPI ExApp notifier" : "AppAPI ExApp уведомить", "AppAPI" : "AppAPI", "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", + "AppAPI deploy daemon" : "Сервис развертывания AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).пожалуйстаприложения", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", @@ -44,6 +51,7 @@ "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", "Test deploy" : "Проверить публикацию", + "Docker registries" : "Регистры Docker", "Edit" : "Редактирование", "Daemon connection successful" : "Служба успешно установлена", "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", @@ -56,6 +64,7 @@ "Name" : "Имя", "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", + "ExApp direct communication (FRP disabled)" : "Прямая связь ExApp (FRP выключено)", "Deploy config" : "Развертывание конфигурации", "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", @@ -91,14 +100,35 @@ "Start Deploy test" : "Начать тест развертывания", "Stop Deploy test" : "Остановить тест развертывания", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Please enter a registry domain" : "Войдите в домен регистра", + "From cannot be \"local\"" : "\"От\" не может быть \"локальным\"", + "This registry mapping already exists" : "Отображение регистра уже существует", + "From and To cannot be the same" : "\"От\" и \"К\" не могут быть одинаковыми", + "Docker registry mapping added" : "Добавлено отображение регистра", + "Error adding Docker registry mapping" : "Ошибка добавления отображения регистра", + "Docker registry mapping removed" : "Удалено отображение регистра", + "Error removing Docker registry mapping" : "Ошибка удаления отображения регистра", + "Override Docker registries" : "Перезаписать регистры Docker", + "Configure Docker registry override mappings for selected daemon." : "Настроить переопределение отображений регистра для выбранного сервиса.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Подходящий регистр-источник в файле ExApp info.xml будет перезаписан во время развертывания (на шаге вызова образа).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Это полезно, если вы хотите использовать пользовательский регистр, например, приватный регистр, или использовать другой регистр для тестирования.", + "Image pull will be skipped" : "Вызов образа будет пропущен", "Remove" : "Удалить", + "No custom Docker registries configured" : "Не настроены пользовательские регистры", + "Add registry override mapping" : "Добавить переопределение отображения регистра", "From" : "От", + "registry URL (e.g. ghcr.io)" : "URL регистра (например, ghcr.io)", "To" : "По", + "registry URL (e.g. docker.io)" : "URL регистра (например, docker.io)", "Add" : "Добавить", "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Хостнейм (и порт), на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud, т е {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Хостнейм (и порт) или путь, на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud. Это также может быть путем к сокету Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Служба с таким названием уже существует", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретный ключ для связи с контейнером HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "The docker network that the deployed ex-apps would use." : "Сеть Docker, которую будут использовать развернутые ex-apps.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", @@ -115,14 +145,24 @@ "Display name" : "Отображаемое имя", "Deployment method" : "Метод развертывания", "Select daemon deploy method" : "Выберите метод развертывания службы", + "HaRP host" : "Хост HaRP", "Daemon host" : "Хост службы", + "HaRP shared key" : "Общий ключ HaRP", "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "Set daemon as default" : "Использовать службу по умолчанию", "Set as default daemon" : "Использовать службу по умолчанию", "Enable https" : "Использовать HTTPS", "Show deploy config" : "Показать конфигурацию развёртывания", "Hide deploy config" : "Скрыть конфигурацию развёртывания", + "Enable HaRP" : "Включить HaRP", + "FRP server address" : "Адрес сервера FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адрес (хост:порт) FRP сервера, который должен быть доступен для ex-app в сети, определенной в \"сети Docker\".", + "Docker socket proxy port" : "Порт прокси-сокета Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт HaRP, к которому подключится прокси-сокет Docker. Он должен быть открыт, но не для внутренних служб, не требуется, чтобы он был открыт или изменен.", + "Disable FRP" : "Отключить FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Переключатель только для расширенных настроек. Отключает FRP-туннель между ExApps и HaRP.", "Disabled" : "Отключено", + "Docker network for ex-app deployment must be defined" : "Сеть Docker для развертывания ex-app должна быть определена", "Additional option" : "Дополнительный вариант", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", @@ -135,6 +175,7 @@ "Register" : "Регистрация", "Check connection" : "Проверить подключение", "External Apps" : "Внешние приложения", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Приложения в комплекте\n\n**Начиная с Nextcloud 30.0.1, это приложение включено в поставку Nextcloud  по-умолчанию.**\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", From afbc97d46b19d3cd2b9adbe94668c4e58d072385 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 27 Aug 2025 00:19:02 +0000 Subject: [PATCH 179/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/et_EE.js | 3 +++ l10n/et_EE.json | 3 +++ l10n/ru.js | 2 +- l10n/ru.json | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 52fcc9af..3ffab4bf 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -14,6 +14,9 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloudi võrguaadress", "GPUs support" : "Graafikaprotsessori tugi", "Compute device" : "Arvutusseade", + "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", + "No Deploy daemons configured" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", + "Register a custom one or setup from available templates" : "Registreeri enda eelistus või vali olemasolevate mallide seast", "Enabled" : "Sisse lülitatud", "Remove" : "Eemalda", "From" : "Saatja", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 13c6acae..30cbdc09 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -12,6 +12,9 @@ "Nextcloud URL" : "Nextcloudi võrguaadress", "GPUs support" : "Graafikaprotsessori tugi", "Compute device" : "Arvutusseade", + "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", + "No Deploy daemons configured" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", + "Register a custom one or setup from available templates" : "Registreeri enda eelistus või vali olemasolevate mallide seast", "Enabled" : "Sisse lülitatud", "Remove" : "Eemalda", "From" : "Saatja", diff --git a/l10n/ru.js b/l10n/ru.js index c4d29db5..cc66d29d 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -23,7 +23,7 @@ OC.L10N.register( "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "AppAPI deploy daemon" : "Сервис развертывания AppAPI", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).пожалуйстаприложения", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", diff --git a/l10n/ru.json b/l10n/ru.json index 12238ed8..5a4f003c 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -21,7 +21,7 @@ "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "AppAPI deploy daemon" : "Сервис развертывания AppAPI", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).пожалуйстаприложения", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", From bdf6c7a9b13ba6f9a46878b56a9e31958bbc8244 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 29 Aug 2025 00:19:17 +0000 Subject: [PATCH 180/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 4 ++++ l10n/be.json | 4 ++++ l10n/uz.js | 1 + l10n/uz.json | 1 + 4 files changed, 10 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index 35c8da89..265adf54 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -5,8 +5,11 @@ OC.L10N.register( "Delete" : "Выдаліць", "Edit" : "Рэдагаваць", "Name" : "Назва", + "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", "Remove" : "Выдаліць", + "From" : "Ад", + "To" : "Да", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", @@ -18,6 +21,7 @@ OC.L10N.register( "Type" : "Тып", "Your apps" : "Вашы праграмы", "Documentation" : "Дакументацыя", + "Details" : "Падрабязнасці", "Active apps" : "Актыўныя праграмы", "Disabled apps" : "Адключаныя праграмы", "Updates" : "Абнаўленні", diff --git a/l10n/be.json b/l10n/be.json index 250b7afa..3059f195 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -3,8 +3,11 @@ "Delete" : "Выдаліць", "Edit" : "Рэдагаваць", "Name" : "Назва", + "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", "Remove" : "Выдаліць", + "From" : "Ад", + "To" : "Да", "Add" : "Дадаць", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", @@ -16,6 +19,7 @@ "Type" : "Тып", "Your apps" : "Вашы праграмы", "Documentation" : "Дакументацыя", + "Details" : "Падрабязнасці", "Active apps" : "Актыўныя праграмы", "Disabled apps" : "Адключаныя праграмы", "Updates" : "Абнаўленні", diff --git a/l10n/uz.js b/l10n/uz.js index bdb4789e..fe0eafb0 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Bekor qilish", "Delete" : "O'chirish", "Password confirmation failed" : "Parol tasdiqlanmadi", + "Default" : "Standart", "Edit" : "Tahrirlash", "Name" : "Name", "Remove" : "O'chirish", diff --git a/l10n/uz.json b/l10n/uz.json index 94634008..89d4f0fa 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -2,6 +2,7 @@ "Cancel" : "Bekor qilish", "Delete" : "O'chirish", "Password confirmation failed" : "Parol tasdiqlanmadi", + "Default" : "Standart", "Edit" : "Tahrirlash", "Name" : "Name", "Remove" : "O'chirish", From a0327f3c79c749bbfcd0543bb44d62fa486a301c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 2 Sep 2025 00:18:47 +0000 Subject: [PATCH 181/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 1 + l10n/be.json | 1 + l10n/lv.js | 2 +- l10n/lv.json | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/be.js b/l10n/be.js index 265adf54..6347b6f5 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -14,6 +14,7 @@ OC.L10N.register( "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнаўленне да {version}", + "Visit website" : "Наведаць вэб-сайт", "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", "Version" : "Версія", diff --git a/l10n/be.json b/l10n/be.json index 3059f195..d54a2adf 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -12,6 +12,7 @@ "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнаўленне да {version}", + "Visit website" : "Наведаць вэб-сайт", "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", "Version" : "Версія", diff --git a/l10n/lv.js b/l10n/lv.js index b6a6f15c..8d700e9a 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -21,7 +21,7 @@ OC.L10N.register( "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", "Admin documentation" : "Pārvaldītāja dokumentācija", - "Developer documentation" : "Izstrādātāja dokumentācija", + "Developer documentation" : "Dokumentācija izstrādātājiem", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Izceltās lietotnes ir kopienas izstrādātas. Tās sniedz centrālu funkcionalitāte un ir gatavas izmantošanai produkcijā.", "Featured" : "Izcelta", "Update to {update}" : "Atjaunināt uz {update}", diff --git a/l10n/lv.json b/l10n/lv.json index a80006c7..7d705cf7 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -19,7 +19,7 @@ "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", "Admin documentation" : "Pārvaldītāja dokumentācija", - "Developer documentation" : "Izstrādātāja dokumentācija", + "Developer documentation" : "Dokumentācija izstrādātājiem", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Izceltās lietotnes ir kopienas izstrādātas. Tās sniedz centrālu funkcionalitāte un ir gatavas izmantošanai produkcijā.", "Featured" : "Izcelta", "Update to {update}" : "Atjaunināt uz {update}", From a496f8e27de14dafa59105784c6d8d085a911370 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 3 Sep 2025 00:19:15 +0000 Subject: [PATCH 182/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 3 +++ l10n/be.json | 3 +++ l10n/kab.js | 1 + l10n/kab.json | 1 + 4 files changed, 8 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index 6347b6f5..bceb7a55 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -14,6 +14,9 @@ OC.L10N.register( "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнаўленне да {version}", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана мінімальная версія Nextcloud. У будучыні гэта будзе памылкай.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", "Visit website" : "Наведаць вэб-сайт", "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", diff --git a/l10n/be.json b/l10n/be.json index d54a2adf..f829d78a 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -12,6 +12,9 @@ "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнаўленне да {version}", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана мінімальная версія Nextcloud. У будучыні гэта будзе памылкай.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", "Visit website" : "Наведаць вэб-сайт", "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", diff --git a/l10n/kab.js b/l10n/kab.js index 5f9500ec..e0c10ccc 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -11,6 +11,7 @@ OC.L10N.register( "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", + "Actions" : "Tigawin", "Type" : "Anaw", "Details" : "Talqayt", "Disable" : "Désactiver" diff --git a/l10n/kab.json b/l10n/kab.json index ba4bfb99..9923bc54 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -9,6 +9,7 @@ "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", + "Actions" : "Tigawin", "Type" : "Anaw", "Details" : "Talqayt", "Disable" : "Désactiver" From 1ba26bde134118e25296c205d86f838b2e0474d2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 4 Sep 2025 00:19:23 +0000 Subject: [PATCH 183/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 1 + l10n/cs.json | 1 + l10n/sr.js | 1 + l10n/sr.json | 1 + l10n/tr.js | 2 +- l10n/tr.json | 2 +- 6 files changed, 6 insertions(+), 2 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index fa7d9061..62d7bc5b 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -30,6 +30,7 @@ OC.L10N.register( "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", "Deploy Daemons" : "Nasadit procesy služeb", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", diff --git a/l10n/cs.json b/l10n/cs.json index bcd10b6b..bc0ae4d1 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -28,6 +28,7 @@ "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", "Deploy Daemons" : "Nasadit procesy služeb", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", diff --git a/l10n/sr.js b/l10n/sr.js index 8d41ffbb..aa9d01e1 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI пројекат је узбудљива иницијатива чији је циљ да се револуционира начин на који се развијају апликације за Nextcloud кроз употребу docker контејнера. Тако се дозвољава слободнији избор програмског језика и омогућава да се сложенији задаци који захтевају већу рачунарску снагу извршавају на неком другом серверу.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", diff --git a/l10n/sr.json b/l10n/sr.json index 23f6e726..304d3db4 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -29,6 +29,7 @@ "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI пројекат је узбудљива иницијатива чији је циљ да се револуционира начин на који се развијају апликације за Nextcloud кроз употребу docker контејнера. Тако се дозвољава слободнији избор програмског језика и омогућава да се сложенији задаци који захтевају већу рачунарску снагу извршавају на неком другом серверу.", "Deploy Daemons" : "Даемони за постављање", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", diff --git a/l10n/tr.js b/l10n/tr.js index 74996b85..429df795 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -23,7 +23,7 @@ OC.L10N.register( "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", "ExApps Settings" : "ExApp ayarları", "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlardan bir varsayılan dağıtım işlemi kaydedin.", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım için yükseltmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", diff --git a/l10n/tr.json b/l10n/tr.json index 11a87db1..bbd6cd3c 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -21,7 +21,7 @@ "AI Integration Team" : "Yapay Zeka bütünleştirme ekibi", "ExApps Settings" : "ExApp ayarları", "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlardan bir varsayılan dağıtım işlemi kaydedin.", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım için yükseltmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", From 48b119ef74facbd231018b474214d8e982ea3047 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 5 Sep 2025 00:21:03 +0000 Subject: [PATCH 184/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 86 ++++++++++++++++++++++++++-------------------------- l10n/da.json | 86 ++++++++++++++++++++++++++-------------------------- 2 files changed, 86 insertions(+), 86 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index 6254cc1f..9c81ab21 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -16,49 +16,49 @@ OC.L10N.register( "Could not perform update of ExApp" : "Kunne ikke udføre opdatering af ExApp", "ExApp not found, failed to get logs" : "ExApp ikke fundet. Kunne ikke hente logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kunne ikke hente beholder logs. Bemærk: Download af Docker beholder, virker kun for beholdere med json-fil eller journald logging driver. Fejl: %s", - "ExApp not found, failed to get deploy options" : "ExApp ikke fundet. Kunne ikke hente udgivelsesindstillinger", + "ExApp not found, failed to get deploy options" : "ExApp ikke fundet. Kunne ikke hente udrulningsindstillinger", "AppAPI authentication failed" : "AppAPI godkendelse fejlede", "AppAPI ExApp notifier" : "AppAPI ExApp underretter", "AppAPI" : "AppAPI", "AI Integration Team" : "AI integrationsteam", "ExApps Settings" : "ExApps indstillinger", - "AppAPI deploy daemon" : "AppAPI udgivelses dæmon", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udgivelses dæmon er ikke sat. Registrer venligst en standard udgivelses dæmon under indstillingerne for at installere eksterne apps (Ex-apps).", - "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udgivelses dæmon \"%s\" er ikke tilgængelig. Kontroller venligst dæmonkonfigurationen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udgivelses dæmon anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", + "AppAPI deploy daemon" : "AppAPI udrulnings systemtjeneste", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udrulnings systemtjeneste er ikke sat. Registrer venligst en standard udrulnings systemtjeneste under indstillingerne for at installere eksterne apps (Ex-apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udrulnings systemtjeneste \"%s\" er ikke tilgængelig. Kontroller venligst systemtjenestekonfigurationen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udrulnings systemtjeneste anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udgivelse of styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udrulning og styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", - "Deploy Daemons" : "Udgivelses daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemoner. Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udgivelses daemon er ikke tilgængelig. Verificer venligst dets konfiguration", + "Deploy Daemons" : "Udrulnings systemtjenester", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst dets konfiguration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutter)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialiseringsproces timeout efter hvilken AppAPI vil markere den som fejlet", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp beholder genstartspolitik", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", - "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udgivelses Daemon", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udrulnings systemtjeneste", "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", "Cancel" : "Annuller", "Delete" : "Slet", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udgivelses Daemon kan ikke sættes som standard", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udrulnings systemtjeneste kan ikke sættes som standard", "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", "Set as default" : "Angiv som standard", - "Test deploy" : "Test udgivelse", + "Test deploy" : "Test udrulning", "Docker registries" : "Docker registre", "Edit" : "Rediger", "Daemon connection successful" : "Daemon forbundet", "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", - "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", - "Deploy Daemon" : "Implementer Daemon", + "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", + "Deploy Daemon" : "Udrulnings systemtjeneste", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", "ExApps installed" : "ExApps installeret", @@ -66,7 +66,7 @@ OC.L10N.register( "Protocol" : "Protokol", "Host" : "Vært", "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", - "Deploy config" : "Udgivelses config", + "Deploy config" : "Udrulnings konfiguration", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy adgangskode", @@ -74,12 +74,12 @@ OC.L10N.register( "Compute device" : "Beregningsenhed", "Additional options" : "Yderligere indstillinger", "Verify connection" : "Verificer forbindelse", - "Registered Deploy daemons list" : "Liste over registrerede udgivelses daemoner", - "No Deploy daemons configured" : "Ingen udgivelses daemoner konfigureret", + "Registered Deploy daemons list" : "Liste over registrerede udrulnings systemtjenester", + "No Deploy daemons configured" : "Ingen udrulnings systemtjenester konfigureret", "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", "Register Daemon" : "Registrer daemon", "Register ExApp in Nextcloud" : "Registrer ExApp in Nextcloud", - "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udgivelse", + "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udrulning", "Image pull" : "Billede pull", "Check if the image is successfully pulled" : "kontroller om billedet er blevet trukket", "Container started" : "Beholder startet", @@ -91,23 +91,23 @@ OC.L10N.register( "Enabled" : "Aktiveret", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "kontroller om ExApp håndterede den aktiverede begivenhed og registrerede alt korrekt", "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", - "Deploy test passed successfully!" : "Udgivelsestest gennemført!", - "Deploy test failed at step \"{step}\"" : "Udgivelsestest fejlede ved trin \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at Daemon er konfigureret korrekt og udgivelsestrin kører.", - "The following Deploy test checks must be passed to succeed:" : "De følgende udgivelsestest kontrol skal gennemføres for succes:", + "Deploy test passed successfully!" : "Udrulningstest gennemført!", + "Deploy test failed at step \"{step}\"" : "Udrulningstest fejlede ved trin \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at systemtjenesten er konfigureret korrekt og udrulningstrin kører.", + "The following Deploy test checks must be passed to succeed:" : "De følgende udrulningstest kontrol skal gennemføres for succes:", "More info" : "Mere info", "Download ExApp logs" : "Download ExApp logs", "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start udgivelsestest", - "Stop Deploy test" : "Stop udgivelsestest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Start Deploy test" : "Start udrulningstest", + "Stop Deploy test" : "Stop udrulningstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", "Please enter a registry domain" : "Indtast venligst et registre domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registre mapping findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under implementering (billede træk trin).", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under udrulningen (billede træk trin).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", "Image pull will be skipped" : "Billede træk vil blive sprunget over", "Remove" : "Fjern", @@ -125,7 +125,7 @@ OC.L10N.register( "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Den hemmelige nøgle til HaRP beholder kommunikationen (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", - "The docker network that the deployed ex-apps would use." : "Docker netværket som de udgivne ex-apps skal anvende.", + "The docker network that the deployed ex-apps would use." : "Docker netværket som de udrullede ex-apps skal anvende.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", @@ -133,15 +133,15 @@ OC.L10N.register( "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", "DaemonConfig successfully updated" : "DaemonConfig opdateret", "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", - "Edit Deploy Daemon" : "Rediger udgivelsesdaemon", - "Register Deploy Daemon" : "Registrer udgivelsesdaemon", + "Edit Deploy Daemon" : "Rediger udrulnings systemtjeneste", + "Register Deploy Daemon" : "Registrer udrulnings systemtjeneste", "Daemon configuration template" : "Daemon konfigurationsskabelon", "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", "Daemon registration form" : "Daemon registreringsformular", - "Unique Deploy Daemon Name" : "Unik udgivelsesdaemon navn", + "Unique Deploy Daemon Name" : "Unik udrulnings systemtjeneste navn", "Display name" : "Vist navn", - "Deployment method" : "Udgivelsesmetode", - "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", + "Deployment method" : "Udrulningsmetode", + "Select daemon deploy method" : "Vælg udrulnings systemtjeneste method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP delt nøgle", @@ -149,8 +149,8 @@ OC.L10N.register( "Set daemon as default" : "Angiv daemon som standardas default", "Set as default daemon" : "Angiv som standard daemon", "Enable https" : "Aktiver https", - "Show deploy config" : "Vis udgivelseskonfiguration", - "Hide deploy config" : "Skjul udgivelseskonfiguration", + "Show deploy config" : "Vis udrulningsskonfiguration", + "Hide deploy config" : "Skjul udrulningskonfiguration", "Enable HaRP" : "Aktiver HaRP", "FRP server address" : "FRP server adresse", "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", @@ -159,7 +159,7 @@ OC.L10N.register( "Disable FRP" : "Deaktivér FRP", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", - "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", + "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udrulning skal være defineret", "Additional option" : "Yderligere mulighed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", @@ -172,7 +172,7 @@ OC.L10N.register( "Register" : "Register", "Check connection" : "Kontroller forbindelsen", "External Apps" : "Eksterne apps", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udrulning og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", @@ -193,7 +193,7 @@ OC.L10N.register( "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", "All ExApps are up-to-date." : "Alle ExApps er opdaterede.", - "Default Deploy daemon is not accessible" : "Standard Deploy daemon er ikke tilgængelig", + "Default Deploy daemon is not accessible" : "Standard udrulnings systemtjeneste er ikke tilgængelig", "Icon" : "Ikon", "Version" : "Version", "Daemon" : "Daemon", @@ -220,20 +220,20 @@ OC.L10N.register( "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", "manual-install apps cannot be updated" : "manual-install apps kan ikke opdateres", - "{progress}% Deploying" : "{progress}% udgiver", + "{progress}% Deploying" : "{progress}% udruller", "{progress}% Initializing" : "{progress}% initialiserer", "Healthchecking" : "Sunhedskontrollerer", - "Deploy and Enable" : "Implementer og aktiver", + "Deploy and Enable" : "Udrul og aktiver", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", - "Default Deploy daemon is not accessible. Please verify configuration" : "Standard udgivelsesdaemon er ikke tilgængelig. Verificer venligst konfigurationen", - "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "App'en vil blive downloadet fra App Store og udgivet på standard udgivelsesdaemon", + "Default Deploy daemon is not accessible. Please verify configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst konfigurationen", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "App'en vil blive downloadet fra App Store og udgivet på standard udrulnings systemtjeneste", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", "Your ExApps" : "Dine ExApps", "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", "The app has been enabled but needs to be updated." : "App'en er blevet aktiveret, men skal opdateres.", "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n\n### Liste over applikationer som kræver AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udrulning og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n\n### Liste over applikationer som kræver AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/da.json b/l10n/da.json index 0bff97ec..b8946ba5 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -14,49 +14,49 @@ "Could not perform update of ExApp" : "Kunne ikke udføre opdatering af ExApp", "ExApp not found, failed to get logs" : "ExApp ikke fundet. Kunne ikke hente logs", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Kunne ikke hente beholder logs. Bemærk: Download af Docker beholder, virker kun for beholdere med json-fil eller journald logging driver. Fejl: %s", - "ExApp not found, failed to get deploy options" : "ExApp ikke fundet. Kunne ikke hente udgivelsesindstillinger", + "ExApp not found, failed to get deploy options" : "ExApp ikke fundet. Kunne ikke hente udrulningsindstillinger", "AppAPI authentication failed" : "AppAPI godkendelse fejlede", "AppAPI ExApp notifier" : "AppAPI ExApp underretter", "AppAPI" : "AppAPI", "AI Integration Team" : "AI integrationsteam", "ExApps Settings" : "ExApps indstillinger", - "AppAPI deploy daemon" : "AppAPI udgivelses dæmon", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udgivelses dæmon er ikke sat. Registrer venligst en standard udgivelses dæmon under indstillingerne for at installere eksterne apps (Ex-apps).", - "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udgivelses dæmon \"%s\" er ikke tilgængelig. Kontroller venligst dæmonkonfigurationen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udgivelses dæmon anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", + "AppAPI deploy daemon" : "AppAPI udrulnings systemtjeneste", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udrulnings systemtjeneste er ikke sat. Registrer venligst en standard udrulnings systemtjeneste under indstillingerne for at installere eksterne apps (Ex-apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udrulnings systemtjeneste \"%s\" er ikke tilgængelig. Kontroller venligst systemtjenestekonfigurationen.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udrulnings systemtjeneste anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udgivelse of styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udrulning og styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", - "Deploy Daemons" : "Udgivelses daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemoner. Deploy daemon (DaemonConfig) er en ExApps orkestrerings daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udgivelses daemon er ikke tilgængelig. Verificer venligst dets konfiguration", + "Deploy Daemons" : "Udrulnings systemtjenester", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst dets konfiguration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutter)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialiseringsproces timeout efter hvilken AppAPI vil markere den som fejlet", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp beholder genstartspolitik", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", - "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udgivelses Daemon", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udrulnings systemtjeneste", "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", "Cancel" : "Annuller", "Delete" : "Slet", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udgivelses Daemon kan ikke sættes som standard", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udrulnings systemtjeneste kan ikke sættes som standard", "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", "Set as default" : "Angiv som standard", - "Test deploy" : "Test udgivelse", + "Test deploy" : "Test udrulning", "Docker registries" : "Docker registre", "Edit" : "Rediger", "Daemon connection successful" : "Daemon forbundet", "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", - "Deploy daemon config details" : "Udgivelses daemon konfigurationsdetaljer", - "Deploy Daemon" : "Implementer Daemon", + "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", + "Deploy Daemon" : "Udrulnings systemtjeneste", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", "ExApps installed" : "ExApps installeret", @@ -64,7 +64,7 @@ "Protocol" : "Protokol", "Host" : "Vært", "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", - "Deploy config" : "Udgivelses config", + "Deploy config" : "Udrulnings konfiguration", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy adgangskode", @@ -72,12 +72,12 @@ "Compute device" : "Beregningsenhed", "Additional options" : "Yderligere indstillinger", "Verify connection" : "Verificer forbindelse", - "Registered Deploy daemons list" : "Liste over registrerede udgivelses daemoner", - "No Deploy daemons configured" : "Ingen udgivelses daemoner konfigureret", + "Registered Deploy daemons list" : "Liste over registrerede udrulnings systemtjenester", + "No Deploy daemons configured" : "Ingen udrulnings systemtjenester konfigureret", "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", "Register Daemon" : "Registrer daemon", "Register ExApp in Nextcloud" : "Registrer ExApp in Nextcloud", - "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udgivelse", + "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udrulning", "Image pull" : "Billede pull", "Check if the image is successfully pulled" : "kontroller om billedet er blevet trukket", "Container started" : "Beholder startet", @@ -89,23 +89,23 @@ "Enabled" : "Aktiveret", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "kontroller om ExApp håndterede den aktiverede begivenhed og registrerede alt korrekt", "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", - "Deploy test passed successfully!" : "Udgivelsestest gennemført!", - "Deploy test failed at step \"{step}\"" : "Udgivelsestest fejlede ved trin \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at Daemon er konfigureret korrekt og udgivelsestrin kører.", - "The following Deploy test checks must be passed to succeed:" : "De følgende udgivelsestest kontrol skal gennemføres for succes:", + "Deploy test passed successfully!" : "Udrulningstest gennemført!", + "Deploy test failed at step \"{step}\"" : "Udrulningstest fejlede ved trin \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at systemtjenesten er konfigureret korrekt og udrulningstrin kører.", + "The following Deploy test checks must be passed to succeed:" : "De følgende udrulningstest kontrol skal gennemføres for succes:", "More info" : "Mere info", "Download ExApp logs" : "Download ExApp logs", "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start udgivelsestest", - "Stop Deploy test" : "Stop udgivelsestest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udgivelsestest\"", + "Start Deploy test" : "Start udrulningstest", + "Stop Deploy test" : "Stop udrulningstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", "Please enter a registry domain" : "Indtast venligst et registre domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registre mapping findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under implementering (billede træk trin).", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under udrulningen (billede træk trin).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", "Image pull will be skipped" : "Billede træk vil blive sprunget over", "Remove" : "Fjern", @@ -123,7 +123,7 @@ "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Den hemmelige nøgle til HaRP beholder kommunikationen (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", - "The docker network that the deployed ex-apps would use." : "Docker netværket som de udgivne ex-apps skal anvende.", + "The docker network that the deployed ex-apps would use." : "Docker netværket som de udrullede ex-apps skal anvende.", "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", @@ -131,15 +131,15 @@ "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", "DaemonConfig successfully updated" : "DaemonConfig opdateret", "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", - "Edit Deploy Daemon" : "Rediger udgivelsesdaemon", - "Register Deploy Daemon" : "Registrer udgivelsesdaemon", + "Edit Deploy Daemon" : "Rediger udrulnings systemtjeneste", + "Register Deploy Daemon" : "Registrer udrulnings systemtjeneste", "Daemon configuration template" : "Daemon konfigurationsskabelon", "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", "Daemon registration form" : "Daemon registreringsformular", - "Unique Deploy Daemon Name" : "Unik udgivelsesdaemon navn", + "Unique Deploy Daemon Name" : "Unik udrulnings systemtjeneste navn", "Display name" : "Vist navn", - "Deployment method" : "Udgivelsesmetode", - "Select daemon deploy method" : "Vælg daemon udgivelsesmetodedeploy method", + "Deployment method" : "Udrulningsmetode", + "Select daemon deploy method" : "Vælg udrulnings systemtjeneste method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP delt nøgle", @@ -147,8 +147,8 @@ "Set daemon as default" : "Angiv daemon som standardas default", "Set as default daemon" : "Angiv som standard daemon", "Enable https" : "Aktiver https", - "Show deploy config" : "Vis udgivelseskonfiguration", - "Hide deploy config" : "Skjul udgivelseskonfiguration", + "Show deploy config" : "Vis udrulningsskonfiguration", + "Hide deploy config" : "Skjul udrulningskonfiguration", "Enable HaRP" : "Aktiver HaRP", "FRP server address" : "FRP server adresse", "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", @@ -157,7 +157,7 @@ "Disable FRP" : "Deaktivér FRP", "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", - "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udgivelse skal være defineret", + "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udrulning skal være defineret", "Additional option" : "Yderligere mulighed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", @@ -170,7 +170,7 @@ "Register" : "Register", "Check connection" : "Kontroller forbindelsen", "External Apps" : "Eksterne apps", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udrulning og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", @@ -191,7 +191,7 @@ "Featured" : "Fremhævet", "Update to {update}" : "Opdater til {update}", "All ExApps are up-to-date." : "Alle ExApps er opdaterede.", - "Default Deploy daemon is not accessible" : "Standard Deploy daemon er ikke tilgængelig", + "Default Deploy daemon is not accessible" : "Standard udrulnings systemtjeneste er ikke tilgængelig", "Icon" : "Ikon", "Version" : "Version", "Daemon" : "Daemon", @@ -218,20 +218,20 @@ "Featured apps" : "Udvalgte apps", "Supported apps" : "Understøttede apps", "manual-install apps cannot be updated" : "manual-install apps kan ikke opdateres", - "{progress}% Deploying" : "{progress}% udgiver", + "{progress}% Deploying" : "{progress}% udruller", "{progress}% Initializing" : "{progress}% initialiserer", "Healthchecking" : "Sunhedskontrollerer", - "Deploy and Enable" : "Implementer og aktiver", + "Deploy and Enable" : "Udrul og aktiver", "Enable" : "Aktiver", "Disable" : "Deaktiver", "Allow untested app" : "Tillad ikke-testet app", - "Default Deploy daemon is not accessible. Please verify configuration" : "Standard udgivelsesdaemon er ikke tilgængelig. Verificer venligst konfigurationen", - "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "App'en vil blive downloadet fra App Store og udgivet på standard udgivelsesdaemon", + "Default Deploy daemon is not accessible. Please verify configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst konfigurationen", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "App'en vil blive downloadet fra App Store og udgivet på standard udrulnings systemtjeneste", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Denne app er ikke markeret som kompatibel med din Nextcloud-version. Hvis du fortsætter, vil du stadig være i stand til at installere appen. Bemærk, at appen muligvis ikke fungerer som forventet.", "Your ExApps" : "Dine ExApps", "An error occurred during the request. Unable to proceed." : "Der opstod en fejl under anmodningen. Kan ikke fortsætte.", "The app has been enabled but needs to be updated." : "App'en er blevet aktiveret, men skal opdateres.", "Error: This app cannot be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres, fordi den gør serveren ustabil", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udgivelse og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n\n### Liste over applikationer som kræver AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udrulning og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n\n### Liste over applikationer som kræver AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From f25dfb4134cf46a951020dbb7dd5fcc944e415c7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 8 Sep 2025 00:20:32 +0000 Subject: [PATCH 185/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/fa.js | 1 + l10n/fa.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/fa.js b/l10n/fa.js index b90b4d34..10169f07 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -12,6 +12,7 @@ OC.L10N.register( "Remove" : "حذف", "From" : "از", "To" : "به", + "Add" : "افزودن", "Display name" : "Display name", "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", diff --git a/l10n/fa.json b/l10n/fa.json index cd26ae79..9e36dc9f 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -10,6 +10,7 @@ "Remove" : "حذف", "From" : "از", "To" : "به", + "Add" : "افزودن", "Display name" : "Display name", "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", From 7d63dfbacfa714c6e340bf452c29a1c15b9d2a7e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 9 Sep 2025 00:22:35 +0000 Subject: [PATCH 186/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ru.js | 8 ++++---- l10n/ru.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/l10n/ru.js b/l10n/ru.js index cc66d29d..a4ed389b 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -23,7 +23,7 @@ OC.L10N.register( "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "AppAPI deploy daemon" : "Сервис развертывания AppAPI", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Служба развертывания AppAPI по умолчанию не установлена. Пожалуйста, зарегистрируйте службу развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", @@ -43,8 +43,8 @@ OC.L10N.register( "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", - "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", - "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", + "All ExApps on this daemon will be removed" : "Все ExApps на этой службе будут удалены.", + "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этой службе, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", @@ -133,7 +133,7 @@ OC.L10N.register( "The docker network that the deployed ex-apps would use." : "Сеть Docker, которую будут использовать развернутые ex-apps.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте службы в контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", diff --git a/l10n/ru.json b/l10n/ru.json index 5a4f003c..02d6efb4 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -21,7 +21,7 @@ "AI Integration Team" : "Команда по интеграции ИИ", "ExApps Settings" : "Настройки ExApps", "AppAPI deploy daemon" : "Сервис развертывания AppAPI", - "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Демон развертывания AppAPI по умолчанию не установлен. Пожалуйста, зарегистрируйте демон развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Служба развертывания AppAPI по умолчанию не установлена. Пожалуйста, зарегистрируйте службу развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", @@ -41,8 +41,8 @@ "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", - "All ExApps on this daemon will be removed" : "Все ExApps на этом демоне будут удалены.", - "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этом демоне, будут удалены.", + "All ExApps on this daemon will be removed" : "Все ExApps на этой службе будут удалены.", + "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этой службе, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", @@ -131,7 +131,7 @@ "The docker network that the deployed ex-apps would use." : "Сеть Docker, которую будут использовать развернутые ex-apps.", "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте демона в контейнерах ExApp.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте службы в контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", From 7326605d4276507ac1733abc44f2e081a772b56e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 10 Sep 2025 00:20:56 +0000 Subject: [PATCH 187/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 6 +++--- l10n/da.json | 6 +++--- l10n/fr.js | 4 ++-- l10n/fr.json | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/l10n/da.js b/l10n/da.js index 9c81ab21..6b9c90c0 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -103,16 +103,16 @@ OC.L10N.register( "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", "Please enter a registry domain" : "Indtast venligst et registre domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", - "This registry mapping already exists" : "Denne registre mapping findes allerede", + "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", - "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", + "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under udrulningen (billede træk trin).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", "Image pull will be skipped" : "Billede træk vil blive sprunget over", "Remove" : "Fjern", "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", - "Add registry override mapping" : "Tilføj mapping af registre", + "Add registry override mapping" : "Tilføj tilknytning for registre", "From" : "Fra", "registry URL (e.g. ghcr.io)" : "registre URL (f.eks. ghcr.io)", "To" : "Til", diff --git a/l10n/da.json b/l10n/da.json index b8946ba5..13c88f0f 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -101,16 +101,16 @@ "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", "Please enter a registry domain" : "Indtast venligst et registre domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", - "This registry mapping already exists" : "Denne registre mapping findes allerede", + "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", - "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registre overskrivningsmapping for valgt dæmon.", + "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under udrulningen (billede træk trin).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", "Image pull will be skipped" : "Billede træk vil blive sprunget over", "Remove" : "Fjern", "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", - "Add registry override mapping" : "Tilføj mapping af registre", + "Add registry override mapping" : "Tilføj tilknytning for registre", "From" : "Fra", "registry URL (e.g. ghcr.io)" : "registre URL (f.eks. ghcr.io)", "To" : "Til", diff --git a/l10n/fr.js b/l10n/fr.js index c1e2f6f8..ae934653 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -12,7 +12,7 @@ OC.L10N.register( "Error starting update of ExApp" : "Erreur lors du démarrage de la mise à jour d'ExApp", "Could not perform update of ExApp" : "Impossible d'effectuer la mise à jour d'ExApp", "ExApp not found, failed to get logs" : "ExApp introuvable, échec d'obtention des logs", - "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Échec de l'obtention des journaux du conteneur. Remarque: Le téléchargement du conteneur Docker fonctionne uniquement pour les conteneurs dotés du pilote de journalisation json-file ou journald. Erreur: %s", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Échec de l'obtention des logs du conteneur. Remarque: Le téléchargement du conteneur Docker fonctionne uniquement pour les conteneurs dotés du pilote de journalisation json-file ou journald. Erreur: %s", "AppAPI authentication failed" : "Échec de l'authentification AppAPI", "AppAPI ExApp notifier" : "Notificateur AppAPI ExApp", "AppAPI" : "AppAPI", @@ -198,7 +198,7 @@ OC.L10N.register( "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "L'application sera téléchargée depuis l'App Store et déployée sur le Daemon de déploiement par défaut.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Cette application n'est pas indiquée comme étant compatible avec votre version de Nextcloud. Si vous continuez vous pourrez toujours installer l'app. Notez cependant qu'elle pourrait ne pas fonctionner comme prévu.", "Your ExApps" : "Vos ExApps", - "An error occurred during the request. Unable to proceed." : "Une erreur s’est produite pendant la demande. Impossible de poursuivre.", + "An error occurred during the request. Unable to proceed." : "Une erreur est survenue pendant la demande. Impossible de poursuivre.", "The app has been enabled but needs to be updated." : "L'application a été activée mais doit être mise à jour.", "Error: This app cannot be enabled because it makes the server unstable" : "Erreur : cette application ne peut être activée car elle rend le serveur instable", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*" diff --git a/l10n/fr.json b/l10n/fr.json index 0c5f5ea3..fe12488b 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -10,7 +10,7 @@ "Error starting update of ExApp" : "Erreur lors du démarrage de la mise à jour d'ExApp", "Could not perform update of ExApp" : "Impossible d'effectuer la mise à jour d'ExApp", "ExApp not found, failed to get logs" : "ExApp introuvable, échec d'obtention des logs", - "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Échec de l'obtention des journaux du conteneur. Remarque: Le téléchargement du conteneur Docker fonctionne uniquement pour les conteneurs dotés du pilote de journalisation json-file ou journald. Erreur: %s", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Échec de l'obtention des logs du conteneur. Remarque: Le téléchargement du conteneur Docker fonctionne uniquement pour les conteneurs dotés du pilote de journalisation json-file ou journald. Erreur: %s", "AppAPI authentication failed" : "Échec de l'authentification AppAPI", "AppAPI ExApp notifier" : "Notificateur AppAPI ExApp", "AppAPI" : "AppAPI", @@ -196,7 +196,7 @@ "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "L'application sera téléchargée depuis l'App Store et déployée sur le Daemon de déploiement par défaut.", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Cette application n'est pas indiquée comme étant compatible avec votre version de Nextcloud. Si vous continuez vous pourrez toujours installer l'app. Notez cependant qu'elle pourrait ne pas fonctionner comme prévu.", "Your ExApps" : "Vos ExApps", - "An error occurred during the request. Unable to proceed." : "Une erreur s’est produite pendant la demande. Impossible de poursuivre.", + "An error occurred during the request. Unable to proceed." : "Une erreur est survenue pendant la demande. Impossible de poursuivre.", "The app has been enabled but needs to be updated." : "L'application a été activée mais doit être mise à jour.", "Error: This app cannot be enabled because it makes the server unstable" : "Erreur : cette application ne peut être activée car elle rend le serveur instable", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boostez votre Nextcloud avec AppAPI et ses applications spécialement conçues.\n\n\nL'AppAPI est un projet au sein de l'écosystème Nextcloud conçu pour rationaliser et améliorer le processus de\ndéveloppement, déploiement et gestion d'applications.\n\nIl introduit une nouvelle méthodologie qui permet aux développeurs de créer\napplications utilisant une variété de langages de programmation, sans se limiter à PHP, qui était traditionnellement utilisé dans le développement Nextcloud.\n\n\n### Liste des applications qui nécessitent AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Si vous souhaitez développer une application, nous serons heureux de vous aider et de vous assister._\n\n### Assistance\n\nNous apprécions tout soutien pour ce projet:\n\n- ⭐ Star notre travail sur GitHub\n- ❗ Créer un problème ou une demande de fonctionnalité\n- 💁 Résoudre un problème et créer un Pull Request\n- 🧑‍💻 Développez votre propre application à l'aide d'AppAPI\n\nNous sommes véritablement enthousiasmés par l'avenir du projet AppAPI et son potentiel de transformation\nla façon dont les applications sont développées et expérimentées dans Nextcloud.\n\nAlors que nous entreprenons ce voyage, nous vous invitons chaleureusement - développeurs, penseurs, créateurs et visionnaires -\nà nous rejoindre dans la création d'un paysage d'applications plus polyvalent, stable et sécurisé.\n\n*Vos idées, suggestions et contributions nous sont inestimables.*" From 5c6ba125e467cb6a9da22fd6e558430c2a860649 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 11 Sep 2025 00:20:53 +0000 Subject: [PATCH 188/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 1 + l10n/be.json | 1 + l10n/da.js | 12 ++++++------ l10n/da.json | 12 ++++++------ 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/l10n/be.js b/l10n/be.js index bceb7a55..e0e37d93 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -11,6 +11,7 @@ OC.L10N.register( "From" : "Ад", "To" : "Да", "Add" : "Дадаць", + "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнаўленне да {version}", diff --git a/l10n/be.json b/l10n/be.json index f829d78a..4601100c 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -9,6 +9,7 @@ "From" : "Ад", "To" : "Да", "Add" : "Дадаць", + "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнаўленне да {version}", diff --git a/l10n/da.js b/l10n/da.js index 6b9c90c0..be8e5203 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -53,7 +53,7 @@ OC.L10N.register( "Set as default" : "Angiv som standard", "Test deploy" : "Test udrulning", "Docker registries" : "Docker registre", - "Edit" : "Rediger", + "Edit" : "Redigér", "Daemon connection successful" : "Daemon forbundet", "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", @@ -101,7 +101,7 @@ OC.L10N.register( "Start Deploy test" : "Start udrulningstest", "Stop Deploy test" : "Stop udrulningstest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", - "Please enter a registry domain" : "Indtast venligst et registre domæne", + "Please enter a registry domain" : "Indtast venligst et register domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", @@ -114,9 +114,9 @@ OC.L10N.register( "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", "Add registry override mapping" : "Tilføj tilknytning for registre", "From" : "Fra", - "registry URL (e.g. ghcr.io)" : "registre URL (f.eks. ghcr.io)", + "registry URL (e.g. ghcr.io)" : "register URL (f.eks. ghcr.io)", "To" : "Til", - "registry URL (e.g. docker.io)" : "registre URL (f.eks. docker.io)", + "registry URL (e.g. docker.io)" : "register URL (f.eks. docker.io)", "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", @@ -191,7 +191,7 @@ OC.L10N.register( "Supported" : "Understøttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", "Featured" : "Fremhævet", - "Update to {update}" : "Opdater til {update}", + "Update to {update}" : "Opdatér til {update}", "All ExApps are up-to-date." : "Alle ExApps er opdaterede.", "Default Deploy daemon is not accessible" : "Standard udrulnings systemtjeneste er ikke tilgængelig", "Icon" : "Ikon", @@ -202,7 +202,7 @@ OC.L10N.register( "Results from other categories" : "Resultater fra andre kategorier", "No apps found" : "Ingen apps fundet", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en tilgængelig opdatering","%n apps har tilgængelige opdateringer"], - "_Update_::_Update all_" : ["Opdater","Opdater alle"], + "_Update_::_Update all_" : ["Opdatér","Opdatér alle"], "Type" : "Type", "Display Name" : "Vist navn", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", diff --git a/l10n/da.json b/l10n/da.json index 13c88f0f..0ce58653 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -51,7 +51,7 @@ "Set as default" : "Angiv som standard", "Test deploy" : "Test udrulning", "Docker registries" : "Docker registre", - "Edit" : "Rediger", + "Edit" : "Redigér", "Daemon connection successful" : "Daemon forbundet", "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", @@ -99,7 +99,7 @@ "Start Deploy test" : "Start udrulningstest", "Stop Deploy test" : "Stop udrulningstest", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", - "Please enter a registry domain" : "Indtast venligst et registre domæne", + "Please enter a registry domain" : "Indtast venligst et register domæne", "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", @@ -112,9 +112,9 @@ "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", "Add registry override mapping" : "Tilføj tilknytning for registre", "From" : "Fra", - "registry URL (e.g. ghcr.io)" : "registre URL (f.eks. ghcr.io)", + "registry URL (e.g. ghcr.io)" : "register URL (f.eks. ghcr.io)", "To" : "Til", - "registry URL (e.g. docker.io)" : "registre URL (f.eks. docker.io)", + "registry URL (e.g. docker.io)" : "register URL (f.eks. docker.io)", "Add" : "Tilføj", "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", @@ -189,7 +189,7 @@ "Supported" : "Understøttet", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Udvalgte apps er udviklet af og inden for fællesskabet. De tilbyder central funktionalitet og er klar til produktionsbrug.", "Featured" : "Fremhævet", - "Update to {update}" : "Opdater til {update}", + "Update to {update}" : "Opdatér til {update}", "All ExApps are up-to-date." : "Alle ExApps er opdaterede.", "Default Deploy daemon is not accessible" : "Standard udrulnings systemtjeneste er ikke tilgængelig", "Icon" : "Ikon", @@ -200,7 +200,7 @@ "Results from other categories" : "Resultater fra andre kategorier", "No apps found" : "Ingen apps fundet", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en tilgængelig opdatering","%n apps har tilgængelige opdateringer"], - "_Update_::_Update all_" : ["Opdater","Opdater alle"], + "_Update_::_Update all_" : ["Opdatér","Opdatér alle"], "Type" : "Type", "Display Name" : "Vist navn", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", From 825895bfa67ec147492c344dd2474157e9ced67e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 12 Sep 2025 00:20:35 +0000 Subject: [PATCH 189/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 2 ++ l10n/be.json | 2 ++ l10n/da.js | 6 +++--- l10n/da.json | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/l10n/be.js b/l10n/be.js index e0e37d93..cda03c9c 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Скасаваць", "Delete" : "Выдаліць", + "Default" : "Прадвызначаныя", "Edit" : "Рэдагаваць", "Name" : "Назва", "Host" : "Хост", @@ -19,6 +20,7 @@ OC.L10N.register( "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", "Visit website" : "Наведаць вэб-сайт", + "Report a bug" : "Паведаміць пра памылку", "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", "Version" : "Версія", diff --git a/l10n/be.json b/l10n/be.json index 4601100c..89e95da1 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Скасаваць", "Delete" : "Выдаліць", + "Default" : "Прадвызначаныя", "Edit" : "Рэдагаваць", "Name" : "Назва", "Host" : "Хост", @@ -17,6 +18,7 @@ "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", "Visit website" : "Наведаць вэб-сайт", + "Report a bug" : "Паведаміць пра памылку", "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", "Version" : "Версія", diff --git a/l10n/da.js b/l10n/da.js index be8e5203..e3396834 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -107,9 +107,9 @@ OC.L10N.register( "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under udrulningen (billede træk trin).", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", - "Image pull will be skipped" : "Billede træk vil blive sprunget over", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Det matchende kilderegister i ExApp info.xml vil blive overskrevet under udrulningen (billede pull trin).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge et brugerdefineret Docker register, for eksempel, for at bruge et privat Docker register, eller at bruge et andet Docker register til test.", + "Image pull will be skipped" : "Billedehentning vil blive sprunget over", "Remove" : "Fjern", "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", "Add registry override mapping" : "Tilføj tilknytning for registre", diff --git a/l10n/da.json b/l10n/da.json index 0ce58653..87219054 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -105,9 +105,9 @@ "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Den matchende kilde registre i ExApp info.xml vil blive overskrevet under udrulningen (billede træk trin).", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge en brugerdefineret Docker registre, for eksempel, at bruge en privat Docker registre, eller at bruge en anden Docker registre til test.", - "Image pull will be skipped" : "Billede træk vil blive sprunget over", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Det matchende kilderegister i ExApp info.xml vil blive overskrevet under udrulningen (billede pull trin).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge et brugerdefineret Docker register, for eksempel, for at bruge et privat Docker register, eller at bruge et andet Docker register til test.", + "Image pull will be skipped" : "Billedehentning vil blive sprunget over", "Remove" : "Fjern", "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", "Add registry override mapping" : "Tilføj tilknytning for registre", From 776ffe2d1c5e958152c1965b7336a7e570ee4078 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 14 Sep 2025 00:20:08 +0000 Subject: [PATCH 190/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 6 +++--- l10n/gl.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index fc8544d8..bdd84e34 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -21,7 +21,7 @@ OC.L10N.register( "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", @@ -137,7 +137,7 @@ OC.L10N.register( "Register" : "Rexistrarse", "Check connection" : "Comprobar a conexión", "External Apps" : "Aplicacións externas", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", @@ -199,6 +199,6 @@ OC.L10N.register( "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index bb2c2ba8..94fcd235 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -19,7 +19,7 @@ "AI Integration Team" : "Equipo de integración de IA", "ExApps Settings" : "Axustes da aplicación externa (ExApp)", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", @@ -135,7 +135,7 @@ "Register" : "Rexistrarse", "Check connection" : "Comprobar a conexión", "External Apps" : "Aplicacións externas", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", @@ -197,6 +197,6 @@ "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n– [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n– [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n– [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n– [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n– [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n– ⭐ Saliente o noso traballo en GitHub\n– ❗ Cree unha incidencia ou solicitude de funcionalidade\n– 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n– 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente –desenvolvedores, pensadores, creadores e visionarios–\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n\n### Lista de aplicacións que requiren AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From d01c52fb48da17d72e7f0fc8098407b9bc51c5ff Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 17 Sep 2025 00:20:43 +0000 Subject: [PATCH 191/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 114 ++++++++++++++++++++++++++++++++++----------------- l10n/gl.json | 114 ++++++++++++++++++++++++++++++++++----------------- 2 files changed, 154 insertions(+), 74 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index bdd84e34..8308b88a 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -2,42 +2,49 @@ OC.L10N.register( "app_api", { "Daemon config not found" : "Non se atopou a configuración do servizo", - "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", - "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), consulte os ficheiros de rexistro de Nextcloud", - "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", + "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da ExApp", + "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a ExApp, consulte os ficheiros de rexistro de Nextcloud", + "ExApp not found, failed to get status" : "Non se atopou a ExApp, produciuse un fallo ao obter o estado", + "Error adding Docker registry" : "Produciuse un erro ao engadir o rexistro de Docker", + "Error removing Docker registry" : "Produciuse un erro ao retirar o rexistro de Docker", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", - "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", - "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", - "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", - "Could not update ExApp" : "Non foi posíbel actualizar a aplicación externa (ExApp)", - "Error starting update of ExApp" : "Produciuse un erro ao iniciar a actualización da aplicación externa (ExApp)", - "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da aplicación externa (ExApp)", - "ExApp not found, failed to get logs" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter os rexistros", + "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da ExApp", + "Failed to enable ExApp" : "Produciuse un fallo ao activar a ExApp", + "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a ExApp", + "Could not update ExApp" : "Non foi posíbel actualizar a ExApp", + "Error starting update of ExApp" : "Produciuse un erro ao iniciar a actualización da ExApp", + "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da ExApp", + "ExApp not found, failed to get logs" : "Non se atopou a ExApp, produciuse un fallo ao obter os rexistros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Produciuse un erro ao obter os rexistros do contedor. Nota: a descarga do contedor Docker só funciona para contedores co controlador de rexistro json-file ou journald. Erro: %s", - "ExApp not found, failed to get deploy options" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter as opcións de despregue", + "ExApp not found, failed to get deploy options" : "Non se atopou a ExApp, produciuse un fallo ao obter as opcións de despregue", "AppAPI authentication failed" : "Fallou a autenticación da AppAPI", - "AppAPI ExApp notifier" : "Notificador de AppAPI para aplicación externa (ExApp)", + "AppAPI ExApp notifier" : "Notificador de AppAPI a ExApp", "AppAPI" : "AppAPI (API de ExApps)", "AI Integration Team" : "Equipo de integración de IA", - "ExApps Settings" : "Axustes da aplicación externa (ExApp)", + "ExApps Settings" : "Axustes das ExApps", + "AppAPI deploy daemon" : "Sevizo de despregadura AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere actualizalo para obter un mellor rendemento.", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O proxecto AppAPI é unha iniciativa emocionante que ten como obxectivo revolucionar a forma na que se desenvolven as aplicacións para Nextcloud a través do uso de contedores docker. Permitindo unha maior escolla de linguaxe de programación e permitindo que as tarefas computacionalmente custosas sexan descargadas a un servidor diferente.", "Deploy Daemons" : "Servizos de despregadura", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", - "ExApp init timeout (minutes)" : "Tempo de espera de inicio da aplicación externa (ExApp) (minutos)", - "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de inicialización da aplicación externa (ExApp) apos do cal AppAPI marcarao como fallado", - "ExApp init timeout" : "Tempo de espera de inicio da aplicación externa (ExApp)", - "ExApp container restart policy" : "Directiva de reinicio do contedor da aplicación externa (ExApp)", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a aplicación externa (ExApp) se execute após o reinicio do servidor do servizo", + "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de inicialización da ExApp após do cal AppAPI marcarao como fallado", + "ExApp init timeout" : "Tempo de espera de inicio da ExApp", + "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", - "All ExApps on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) deste servizo", - "All ExApps installed on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) instaladas neste servizo", + "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", + "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", @@ -46,18 +53,20 @@ OC.L10N.register( "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", "Test deploy" : "Proba da despregadura", + "Docker registries" : "Rexistros de Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión satisfactoria do servizo", "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", - "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", + "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", - "ExApps installed" : "Aplicacións externas (ExApps) instaladas", + "ExApps installed" : "ExApps instaladas", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", + "ExApp direct communication (FRP disabled)" : "Comunicación directa coa ExApp (FRP desactivado)", "Deploy config" : "Configuración da despregadura", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", @@ -70,8 +79,8 @@ OC.L10N.register( "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", - "Register ExApp in Nextcloud" : "Rexistrar a aplicación externa (ExApp) en Nextcloud", - "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a aplicación externa (ExApp) está rexistrada en Nextcloud antes da despregadura", + "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a ExApp está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", "Check if the image is successfully pulled" : "Comprobe se a imaxe foi extraída correctamente", "Container started" : "O contedor foi iniciado", @@ -81,29 +90,50 @@ OC.L10N.register( "Init step" : "Paso inicial", "Wait for initialization step to finish" : "Agarde a que remate o paso de inicio", "Enabled" : "Activado", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproba se a aplicación externa (ExApp) xestionou correctamente o evento activado e rexistrou todo correctamente", - "Only if ExApp container is preset" : "Só se o contedor da aplicación externa (ExApp) está predefinido", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproba se a ExApp xestionou correctamente o evento activado e rexistrou todo correctamente", + "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", "More info" : "Máis información", - "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", - "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", + "Download ExApp logs" : "Descargar os rexistros da ExApp", + "Remove test ExApp" : "Retirar a proba da ExApp", "Start Deploy test" : "Iniciar a proba de despregadura", "Stop Deploy test" : "Deter a proba de despregadura", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Please enter a registry domain" : "Introduza un dominio de rexistro", + "From cannot be \"local\"" : "Desde non pode ser «local»", + "This registry mapping already exists" : "Xa existe esta asignación de rexistro", + "From and To cannot be the same" : "Desde e Ata non poden ser o mesmo", + "Docker registry mapping added" : "Engadiuse a asignación do rexistro de Docker", + "Error adding Docker registry mapping" : "Produciuse un erro ao engadir a asignación do rexistro de Docker", + "Docker registry mapping removed" : "Foi retirada a asignación do rexistro de Docker", + "Error removing Docker registry mapping" : "Produciuse un erro ao retirar a asignación do rexistro de Docker", + "Override Docker registries" : "Anular os rexistros de Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar as asignacións de anulación do rexistro de Docker para o servizo seleccionado.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O rexistro de orixe correspondente en ExApp info.xml sobrescribirase durante a despregadura (paso de extracción de imaxe).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isto é útil se quere usar un rexistro Docker personalizado, por exemplo, para usar un rexistro Docker privado, ou para usar un rexistro Docker diferente para probas.", + "Image pull will be skipped" : "Omitirase a extracción da imaxe", "Remove" : "Retirar", + "No custom Docker registries configured" : "Non hai rexistros Docker personalizados configurados", + "Add registry override mapping" : "Engadir a asignación de anulación do rexistro", "From" : "Desde", + "registry URL (e.g. ghcr.io)" : "URL do rexistro (p. ex., ghcr.io)", "To" : "Ata", + "registry URL (e.g. docker.io)" : "URL do rexistro (p. ex., docker.io)", "Add" : "Engadir", - "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", + "Hostname to access ExApps" : "Nome de servidor para acceder a ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do servidor (e o porto) no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud, p. ex. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do servidor (e o porto) ou ruta no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud. Tamén pode ser unha ruta para o conectador docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicación de contedores HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás ExApps instaladas recentemente. Para as ExApps existentes, deberían volver crearse os contedores Docker.", + "The docker network that the deployed ex-apps would use." : "A rede docker que empregarían as ExApps despregadas.", "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de ExApp.", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", @@ -117,14 +147,24 @@ OC.L10N.register( "Display name" : "Nome para amosar", "Deployment method" : "Método de despregadura", "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", + "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor do servizo", + "HaRP shared key" : "Chave compartida de HaRP", "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "Set daemon as default" : "Definir o servizo como predeterminado", "Set as default daemon" : "Definir como servizo predeterminado", "Enable https" : "Activar https", "Show deploy config" : "Amosar a configuración da despregadura", "Hide deploy config" : "Agochar a configuración da despregadura", + "Enable HaRP" : "Activar HaRP", + "FRP server address" : "Enderezo do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O enderezo (máquina:porto) do servidor FRP que debe ser alcanzado pola ExApp na rede definida en «Rede Docker».", + "Docker socket proxy port" : "Porto do proxy do conectador Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", + "Disable FRP" : "Desactivar FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", + "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -157,7 +197,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", "Featured" : "Destacada", "Update to {update}" : "Actualizar a {update}", - "All ExApps are up-to-date." : "Todas as aplicacións externas (ExApps) están actualizadas.", + "All ExApps are up-to-date." : "Todas as ExApps están actualizadas.", "Default Deploy daemon is not accessible" : "Non é posíbel acceder ao servizo predeterminado de despregadura.", "Icon" : "Icona", "Version" : "Versión", @@ -195,7 +235,7 @@ OC.L10N.register( "Default Deploy daemon is not accessible. Please verify configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "A aplicación descargarase da tenda de aplicacións e despregarase no servizo de despregadura predeterminado", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta aplicación non está marcado como compatíbel coa súa versión de Nextcloud. Se continúa, poderá instalar a aplicación. Teña en conta que é probábel que a aplicación non funcione como se agarda.", - "Your ExApps" : "As súas aplicacións externas (ExApps)", + "Your ExApps" : "As súas ExApps", "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", diff --git a/l10n/gl.json b/l10n/gl.json index 94fcd235..2535bf7a 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -1,41 +1,48 @@ { "translations": { "Daemon config not found" : "Non se atopou a configuración do servizo", - "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da aplicación externa (ExApp)", - "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a aplicación externa (ExApp), consulte os ficheiros de rexistro de Nextcloud", - "ExApp not found, failed to get status" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter o estado", + "Error starting install of ExApp" : "Produciuse un erro ao iniciar a instalación da ExApp", + "ExApp failed to register, check the NC logs" : "Produciuse un fallo ao rexistrar a ExApp, consulte os ficheiros de rexistro de Nextcloud", + "ExApp not found, failed to get status" : "Non se atopou a ExApp, produciuse un fallo ao obter o estado", + "Error adding Docker registry" : "Produciuse un erro ao engadir o rexistro de Docker", + "Error removing Docker registry" : "Produciuse un erro ao retirar o rexistro de Docker", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Esta aplicación non foi instalada desde a tenda de aplicacións. Non hai información adicional dispoñíbel. Só se permiten as accións de activar/desactivar e retirar.", - "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da aplicación externa (ExApp)", - "Failed to enable ExApp" : "Produciuse un fallo ao activar a aplicación externa (ExApp)", - "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a aplicación externa (ExApp)", - "Could not update ExApp" : "Non foi posíbel actualizar a aplicación externa (ExApp)", - "Error starting update of ExApp" : "Produciuse un erro ao iniciar a actualización da aplicación externa (ExApp)", - "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da aplicación externa (ExApp)", - "ExApp not found, failed to get logs" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter os rexistros", + "Could not perform installation of ExApp" : "Non foi posíbel realizar a instalación da ExApp", + "Failed to enable ExApp" : "Produciuse un fallo ao activar a ExApp", + "Failed to disable ExApp" : "Produciuse un fallo ao desactivar a ExApp", + "Could not update ExApp" : "Non foi posíbel actualizar a ExApp", + "Error starting update of ExApp" : "Produciuse un erro ao iniciar a actualización da ExApp", + "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da ExApp", + "ExApp not found, failed to get logs" : "Non se atopou a ExApp, produciuse un fallo ao obter os rexistros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Produciuse un erro ao obter os rexistros do contedor. Nota: a descarga do contedor Docker só funciona para contedores co controlador de rexistro json-file ou journald. Erro: %s", - "ExApp not found, failed to get deploy options" : "Non se atopou a aplicación externa (ExApp), produciuse un fallo ao obter as opcións de despregue", + "ExApp not found, failed to get deploy options" : "Non se atopou a ExApp, produciuse un fallo ao obter as opcións de despregue", "AppAPI authentication failed" : "Fallou a autenticación da AppAPI", - "AppAPI ExApp notifier" : "Notificador de AppAPI para aplicación externa (ExApp)", + "AppAPI ExApp notifier" : "Notificador de AppAPI a ExApp", "AppAPI" : "AppAPI (API de ExApps)", "AI Integration Team" : "Equipo de integración de IA", - "ExApps Settings" : "Axustes da aplicación externa (ExApp)", + "ExApps Settings" : "Axustes das ExApps", + "AppAPI deploy daemon" : "Sevizo de despregadura AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere actualizalo para obter un mellor rendemento.", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O proxecto AppAPI é unha iniciativa emocionante que ten como obxectivo revolucionar a forma na que se desenvolven as aplicacións para Nextcloud a través do uso de contedores docker. Permitindo unha maior escolla de linguaxe de programación e permitindo que as tarefas computacionalmente custosas sexan descargadas a un servidor diferente.", "Deploy Daemons" : "Servizos de despregadura", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de aplicacións externas (ExApps).", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", - "ExApp init timeout (minutes)" : "Tempo de espera de inicio da aplicación externa (ExApp) (minutos)", - "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de inicialización da aplicación externa (ExApp) apos do cal AppAPI marcarao como fallado", - "ExApp init timeout" : "Tempo de espera de inicio da aplicación externa (ExApp)", - "ExApp container restart policy" : "Directiva de reinicio do contedor da aplicación externa (ExApp)", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a aplicación externa (ExApp) se execute após o reinicio do servidor do servizo", + "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de inicialización da ExApp após do cal AppAPI marcarao como fallado", + "ExApp init timeout" : "Tempo de espera de inicio da ExApp", + "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", - "All ExApps on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) deste servizo", - "All ExApps installed on this daemon will be removed" : "Retiraranse todas as aplicacións externas (ExApps) instaladas neste servizo", + "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", + "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", @@ -44,18 +51,20 @@ "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", "Test deploy" : "Proba da despregadura", + "Docker registries" : "Rexistros de Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión satisfactoria do servizo", "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", - "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As aplicacións externas (ExApps) instalaranse nel", + "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", - "ExApps installed" : "Aplicacións externas (ExApps) instaladas", + "ExApps installed" : "ExApps instaladas", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", + "ExApp direct communication (FRP disabled)" : "Comunicación directa coa ExApp (FRP desactivado)", "Deploy config" : "Configuración da despregadura", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", @@ -68,8 +77,8 @@ "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", - "Register ExApp in Nextcloud" : "Rexistrar a aplicación externa (ExApp) en Nextcloud", - "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a aplicación externa (ExApp) está rexistrada en Nextcloud antes da despregadura", + "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a ExApp está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", "Check if the image is successfully pulled" : "Comprobe se a imaxe foi extraída correctamente", "Container started" : "O contedor foi iniciado", @@ -79,29 +88,50 @@ "Init step" : "Paso inicial", "Wait for initialization step to finish" : "Agarde a que remate o paso de inicio", "Enabled" : "Activado", - "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproba se a aplicación externa (ExApp) xestionou correctamente o evento activado e rexistrou todo correctamente", - "Only if ExApp container is preset" : "Só se o contedor da aplicación externa (ExApp) está predefinido", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproba se a ExApp xestionou correctamente o evento activado e rexistrou todo correctamente", + "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto de aplicación externa (ExApp) para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", "More info" : "Máis información", - "Download ExApp logs" : "Descargar os rexistros da aplicación externa (ExApp)", - "Remove test ExApp" : "Retirar a proba da aplicación externa (ExApp)", + "Download ExApp logs" : "Descargar os rexistros da ExApp", + "Remove test ExApp" : "Retirar a proba da ExApp", "Start Deploy test" : "Iniciar a proba de despregadura", "Stop Deploy test" : "Deter a proba de despregadura", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A aplicación externa (ExApp) non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Please enter a registry domain" : "Introduza un dominio de rexistro", + "From cannot be \"local\"" : "Desde non pode ser «local»", + "This registry mapping already exists" : "Xa existe esta asignación de rexistro", + "From and To cannot be the same" : "Desde e Ata non poden ser o mesmo", + "Docker registry mapping added" : "Engadiuse a asignación do rexistro de Docker", + "Error adding Docker registry mapping" : "Produciuse un erro ao engadir a asignación do rexistro de Docker", + "Docker registry mapping removed" : "Foi retirada a asignación do rexistro de Docker", + "Error removing Docker registry mapping" : "Produciuse un erro ao retirar a asignación do rexistro de Docker", + "Override Docker registries" : "Anular os rexistros de Docker", + "Configure Docker registry override mappings for selected daemon." : "Configurar as asignacións de anulación do rexistro de Docker para o servizo seleccionado.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O rexistro de orixe correspondente en ExApp info.xml sobrescribirase durante a despregadura (paso de extracción de imaxe).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isto é útil se quere usar un rexistro Docker personalizado, por exemplo, para usar un rexistro Docker privado, ou para usar un rexistro Docker diferente para probas.", + "Image pull will be skipped" : "Omitirase a extracción da imaxe", "Remove" : "Retirar", + "No custom Docker registries configured" : "Non hai rexistros Docker personalizados configurados", + "Add registry override mapping" : "Engadir a asignación de anulación do rexistro", "From" : "Desde", + "registry URL (e.g. ghcr.io)" : "URL do rexistro (p. ex., ghcr.io)", "To" : "Ata", + "registry URL (e.g. docker.io)" : "URL do rexistro (p. ex., docker.io)", "Add" : "Engadir", - "Hostname to access ExApps" : "Nome de servidor para acceder a aplicacións externas (ExApps)", + "Hostname to access ExApps" : "Nome de servidor para acceder a ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do servidor (e o porto) no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud, p. ex. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do servidor (e o porto) ou ruta no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud. Tamén pode ser unha ruta para o conectador docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "Daemon with this name already exists" : "Xa existe un servizo con ese nome", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicación de contedores HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás aplicacións externas (ExApp) instaladas recentemente. Para as aplicacións externas (ExApp) existentes, deberían volver crearse os contedores Docker.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás ExApps instaladas recentemente. Para as ExApps existentes, deberían volver crearse os contedores Docker.", + "The docker network that the deployed ex-apps would use." : "A rede docker que empregarían as ExApps despregadas.", "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de aplicación externa (ExApp).", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de ExApp.", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", @@ -115,14 +145,24 @@ "Display name" : "Nome para amosar", "Deployment method" : "Método de despregadura", "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", + "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor do servizo", + "HaRP shared key" : "Chave compartida de HaRP", "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "Set daemon as default" : "Definir o servizo como predeterminado", "Set as default daemon" : "Definir como servizo predeterminado", "Enable https" : "Activar https", "Show deploy config" : "Amosar a configuración da despregadura", "Hide deploy config" : "Agochar a configuración da despregadura", + "Enable HaRP" : "Activar HaRP", + "FRP server address" : "Enderezo do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O enderezo (máquina:porto) do servidor FRP que debe ser alcanzado pola ExApp na rede definida en «Rede Docker».", + "Docker socket proxy port" : "Porto do proxy do conectador Docker", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", + "Disable FRP" : "Desactivar FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", + "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -155,7 +195,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "As aplicacións destacadas están desenvolvidas por e dentro da comunidade. Ofrecen unha funcionalidade central e están preparadas para o seu uso en produción.", "Featured" : "Destacada", "Update to {update}" : "Actualizar a {update}", - "All ExApps are up-to-date." : "Todas as aplicacións externas (ExApps) están actualizadas.", + "All ExApps are up-to-date." : "Todas as ExApps están actualizadas.", "Default Deploy daemon is not accessible" : "Non é posíbel acceder ao servizo predeterminado de despregadura.", "Icon" : "Icona", "Version" : "Versión", @@ -193,7 +233,7 @@ "Default Deploy daemon is not accessible. Please verify configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "A aplicación descargarase da tenda de aplicacións e despregarase no servizo de despregadura predeterminado", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Esta aplicación non está marcado como compatíbel coa súa versión de Nextcloud. Se continúa, poderá instalar a aplicación. Teña en conta que é probábel que a aplicación non funcione como se agarda.", - "Your ExApps" : "As súas aplicacións externas (ExApps)", + "Your ExApps" : "As súas ExApps", "An error occurred during the request. Unable to proceed." : "Produciuse un erro durante a solicitude. Non é posíbel continuar.", "The app has been enabled but needs to be updated." : "Activouse a aplicación mais cómpre actualizala.", "Error: This app cannot be enabled because it makes the server unstable" : "Erro: non é posíbel activar esta aplicación porque fai que o servidor sexa inestábel", From 7b0ea6985eb8a68b2c13aa2879a093dbc298d368 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 20 Sep 2025 00:20:30 +0000 Subject: [PATCH 192/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/el.js | 1 + l10n/el.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/el.js b/l10n/el.js index 0f217c89..db6b3ab1 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -17,6 +17,7 @@ OC.L10N.register( "From" : "Από", "To" : "Έως", "Add" : "Προσθήκη", + "Display name" : "Εμφανιζόμενο όνομα", "Disabled" : "Απενεργοποιημένο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", diff --git a/l10n/el.json b/l10n/el.json index e6812503..0a804478 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -15,6 +15,7 @@ "From" : "Από", "To" : "Έως", "Add" : "Προσθήκη", + "Display name" : "Εμφανιζόμενο όνομα", "Disabled" : "Απενεργοποιημένο", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", From 5c6cadae45674b1148ec0284b3507de10bdda90e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 24 Sep 2025 00:20:32 +0000 Subject: [PATCH 193/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 2 ++ l10n/be.json | 2 ++ l10n/el.js | 3 +++ l10n/el.json | 3 +++ 4 files changed, 10 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index cda03c9c..db5c3d0f 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -12,6 +12,7 @@ OC.L10N.register( "From" : "Ад", "To" : "Да", "Add" : "Дадаць", + "Display name" : "Імя для паказу", "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", @@ -26,6 +27,7 @@ OC.L10N.register( "Version" : "Версія", "Actions" : "Дзеянні", "Type" : "Тып", + "Display Name" : "Імя для паказу", "Your apps" : "Вашы праграмы", "Documentation" : "Дакументацыя", "Details" : "Падрабязнасці", diff --git a/l10n/be.json b/l10n/be.json index 89e95da1..57bdd6fe 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -10,6 +10,7 @@ "From" : "Ад", "To" : "Да", "Add" : "Дадаць", + "Display name" : "Імя для паказу", "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", @@ -24,6 +25,7 @@ "Version" : "Версія", "Actions" : "Дзеянні", "Type" : "Тып", + "Display Name" : "Імя для паказу", "Your apps" : "Вашы праграмы", "Documentation" : "Дакументацыя", "Details" : "Падрабязнасці", diff --git a/l10n/el.js b/l10n/el.js index db6b3ab1..44a7c271 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -12,6 +12,9 @@ OC.L10N.register( "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", + "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", + "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Daemon Ανάπτυξης", + "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", "Enabled" : "Ενεργοποιημένο", "Remove" : "Αφαίρεση", "From" : "Από", diff --git a/l10n/el.json b/l10n/el.json index 0a804478..0a9b6404 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -10,6 +10,9 @@ "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", + "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", + "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Daemon Ανάπτυξης", + "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", "Enabled" : "Ενεργοποιημένο", "Remove" : "Αφαίρεση", "From" : "Από", From f3b252bfaed52865cbb1e94039a3d8ae9cf83fac Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 25 Sep 2025 00:20:25 +0000 Subject: [PATCH 194/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/da.js | 5 +++++ l10n/da.json | 5 +++++ l10n/kab.js | 2 ++ l10n/kab.json | 2 ++ 4 files changed, 14 insertions(+) diff --git a/l10n/da.js b/l10n/da.js index e3396834..88eda437 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI projektet er et spændende initiativ, som fokuserer på at revolutionere måden hvorpå applikationer bliver udviklet til Nextcloud, gennem anvendelsen af docker containere. Hvilket giver mulighed for et større udvalg af programmeringssprog og mulighed for at overlade tunge opgaver til en anden server.", "Deploy Daemons" : "Udrulnings systemtjenester", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", @@ -105,6 +106,10 @@ OC.L10N.register( "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", + "Docker registry mapping added" : "Docker register tildeling tilføjet", + "Error adding Docker registry mapping" : "Fejl under tilføjelse af Docker register tildeling", + "Docker registry mapping removed" : "Docker register tildeling fjernet", + "Error removing Docker registry mapping" : "Fejl under fjernelse af Docker register tildeling", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Det matchende kilderegister i ExApp info.xml vil blive overskrevet under udrulningen (billede pull trin).", diff --git a/l10n/da.json b/l10n/da.json index 87219054..199e562b 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -29,6 +29,7 @@ "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI projektet er et spændende initiativ, som fokuserer på at revolutionere måden hvorpå applikationer bliver udviklet til Nextcloud, gennem anvendelsen af docker containere. Hvilket giver mulighed for et større udvalg af programmeringssprog og mulighed for at overlade tunge opgaver til en anden server.", "Deploy Daemons" : "Udrulnings systemtjenester", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", @@ -103,6 +104,10 @@ "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", "From and To cannot be the same" : "Fra og Til kan ikke være det samme", + "Docker registry mapping added" : "Docker register tildeling tilføjet", + "Error adding Docker registry mapping" : "Fejl under tilføjelse af Docker register tildeling", + "Docker registry mapping removed" : "Docker register tildeling fjernet", + "Error removing Docker registry mapping" : "Fejl under fjernelse af Docker register tildeling", "Override Docker registries" : "Tilsidesæt Docker registre", "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Det matchende kilderegister i ExApp info.xml vil blive overskrevet under udrulningen (billede pull trin).", diff --git a/l10n/kab.js b/l10n/kab.js index e0c10ccc..9b256e18 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -11,6 +11,8 @@ OC.L10N.register( "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", + "Update to {version}" : "Leqqem ar {version}", + "Update to {update}" : "Leqqem ar {update}", "Actions" : "Tigawin", "Type" : "Anaw", "Details" : "Talqayt", diff --git a/l10n/kab.json b/l10n/kab.json index 9923bc54..0142cc0e 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -9,6 +9,8 @@ "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", + "Update to {version}" : "Leqqem ar {version}", + "Update to {update}" : "Leqqem ar {update}", "Actions" : "Tigawin", "Type" : "Anaw", "Details" : "Talqayt", From 4e6f84d369ae4366a3ae5c5dff869634efc09c17 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 26 Sep 2025 00:20:47 +0000 Subject: [PATCH 195/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/el.js | 179 +++++++++++++++++++++++++++++++++++++++++++++++++-- l10n/el.json | 179 +++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 348 insertions(+), 10 deletions(-) diff --git a/l10n/el.js b/l10n/el.js index 44a7c271..8a54353a 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -1,31 +1,185 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Δεν βρέθηκε ρύθμιση υπηρεσίας", + "Error starting install of ExApp" : "Σφάλμα έναρξης εγκατάστασης του ExApp", + "ExApp failed to register, check the NC logs" : "Αποτυχία εγγραφής του ExApp, ελέγξτε τα αρχεία καταγραφής του NC", + "ExApp not found, failed to get status" : "Δεν βρέθηκε το ExApp, απέτυχε η λήψη κατάστασης", + "Error adding Docker registry" : "Σφάλμα προσθήκης μητρώου Docker", + "Error removing Docker registry" : "Σφάλμα αφαίρεσης μητρώου Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Αυτή η εφαρμογή δεν είναι εγκατεστημένη από το AppStore. Δεν υπάρχουν επιπλέον πληροφορίες. Επιτρέπονται μόνο ενέργειες ενεργοποίησης/απενεργοποίησης και αφαίρεσης.", + "Could not perform installation of ExApp" : "Δεν ήταν δυνατή η εκτέλεση εγκατάστασης του ExApp", + "Failed to enable ExApp" : "Αποτυχία ενεργοποίησης του ExApp", + "Failed to disable ExApp" : "Αποτυχία απενεργοποίησης του ExApp", + "Could not update ExApp" : "Δεν ήταν δυνατή η ενημέρωση του ExApp", + "Error starting update of ExApp" : "Σφάλμα έναρξης ενημέρωσης του ExApp", + "Could not perform update of ExApp" : "Δεν ήταν δυνατή η εκτέλεση ενημέρωσης του ExApp", + "ExApp not found, failed to get logs" : "Δεν βρέθηκε το ExApp, απέτυχε η λήψη αρχείων καταγραφής", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Αποτυχία λήψης αρχείων καταγραφής container. Σημείωση: Η λήψη Docker container λειτουργεί μόνο για containers με τον οδηγό καταγραφής json-file ή journald. Σφάλμα: %s", + "ExApp not found, failed to get deploy options" : "Δεν βρέθηκε το ExApp, απέτυχε η λήψη επιλογών ανάπτυξης", + "AppAPI authentication failed" : "Αποτυχία πιστοποίησης AppAPI", + "AppAPI ExApp notifier" : "Ειδοποιητής AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Ομάδα Ενσωμάτωσης ΤΝ", + "ExApps Settings" : "Ρυθμίσεις ExApps", + "AppAPI deploy daemon" : "Υπηρεσία ανάπτυξης AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Δεν έχει οριστεί προεπιλεγμένο υπηρεσία ανάπτυξης AppAPI. Παρακαλούμε εγγράψτε μια προεπιλεγμένη υπηρεσία ανάπτυξης στις ρυθμίσεις για να εγκαταστήσετε Εξωτερικές Εφαρμογές (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Η προεπιλεγμένη υπηρεσία ανάπτυξης AppAPI \"%s\" δεν είναι προσβάσιμο. Παρακαλούμε ελέγξτε τη διαμόρφωση της υπηρεσίας.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Η προεπιλεγμένη υηρεσία ανάπτυξης AppAPI δεν χρησιμοποιεί HaRP. Παρακαλούμε σκεφτείτε να αναβαθμίσετε σε αυτό για καλύτερη απόδοση.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", + "External Apps management" : "Διαχείριση Εξωτερικών Εφαρμογών", + "Admin options saved" : "Οι επιλογές διαχειριστή αποθηκεύτηκαν", + "Failed to save admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud μέσω της χρήσης docker containers. Επιτρέποντας μεγαλύτερη επιλογή γλωσσών προγραμματισμού και επιτρέποντας την εκφόρτωση υπολογιστικά ακριβών εργασιών σε διαφορετικό διακομιστή.", + "Deploy Daemons" : "Υπηρεσία Ανάπτυξης", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Η Υπηρεσία Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Υπηρεσία Ανάπτυξης. Το Daemon Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Η προεπιλεγμένη Υπηρεσία Ανάπτυξης δεν είναι προσβάσιμη. Παρακαλούμε επαληθεύστε τη διαμόρφωσή της", + "ExApp init timeout (minutes)" : "Χρονικό όριο αρχικοποίησης ExApp (λεπτά)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Χρονικό όριο διαδικασίας αρχικοποίησης ExApp μετά το οποίο το AppAPI θα το επισημάνει ως αποτυχημένο", + "ExApp init timeout" : "Χρονικό όριο αρχικοποίησης ExApp", + "ExApp container restart policy" : "Πολιτική επανεκκίνησης container ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Καθορίστε την πολιτική επανεκκίνησης container, π.χ. 'always' για να διασφαλιστεί η λειτουργία του ExApp μετά την επανεκκίνηση του διακομιστή υπηρεσίας", + "This settings changes are reflected only for newly created containers" : "Οι αλλαγές αυτών των ρυθμίσεων αντικατοπτρίζονται μόνο για νέα containers", + "Are you sure you want delete Deploy Daemon" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε την Υπηρεσία Ανάπτυξης", + "All ExApps on this daemon will be removed" : "Όλα τα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", + "All ExApps installed on this daemon will be removed" : "Όλα τα εγκατεστημένα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", "Cancel" : "Ακύρωση", "Delete" : "Διαγραφή", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Η Υπηρεσία Ανάπτυξης \"manual-install\" δεν μπορεί να οριστεί ως προεπιλεγμένο", + "Failed to save admin options. Check the logs" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή. Ελέγξτε τα αρχεία καταγραφής", "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", + "Set as default" : "Ορισμός ως προεπιλογή", + "Test deploy" : "Δοκιμαστική ανάπτυξη", + "Docker registries" : "Μητρώα Docker", "Edit" : "Επεξεργασία", - "Deploy Daemon" : "Υπηρεσία Ανάπτυξης", + "Daemon connection successful" : "Επιτυχής σύνδεση υπηρεσίας", + "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", + "Deploy Daemon" : "πηρεσία Ανάπτυξης", + "Default daemon. ExApps will be installed on it" : "Προεπιλεγμένη υπηρεσία. Τα ExApps θα εγκατασταθούν σε αυτό", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Υπηρεσία χειροκίνητης εγκατάστασης που συνήθως χρησιμοποιείται για ανάπτυξη. Δεν μπορεί να οριστεί ως προεπιλεγμένη υπηρεσία.", + "ExApps installed" : "Εγκατεστημένα ExApps", "Name" : "Όνομα", + "Protocol" : "Πρωτόκολλο", "Host" : "Διακομιστής", - "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", + "ExApp direct communication (FRP disabled)" : "Άμεση επικοινωνία ExApp (FRP απενεργοποιημένο)", + "Deploy config" : "Διαμόρφωση ανάπτυξης", + "Docker network" : "Δίκτυο Docker", + "Nextcloud URL" : "Διεύθυνση URL Nextcloud", + "HaProxy password" : "Κωδικός πρόσβασης HaProxy", "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", + "Additional options" : "Πρόσθετες επιλογές", + "Verify connection" : "Επαλήθευση σύνδεσης", "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", - "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Daemon Ανάπτυξης", + "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Υπηρεσία Ανάπτυξης", "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", + "Register Daemon" : "Εγγραφή Υπηρεσίας", + "Register ExApp in Nextcloud" : "Εγγραφή ExApp στο Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Έλεγχος αν το ExApp είναι εγγεγραμμένο στο Nextcloud πριν την ανάπτυξη", + "Image pull" : "Λήψη εικόνας", + "Check if the image is successfully pulled" : "Έλεγχος αν η εικόνα λήφθηκε με επιτυχία", + "Container started" : "Το container ξεκίνησε", + "Check if the image successfully pulled and container is created and started" : "Έλεγχος αν η εικόνα λήφθηκε με επιτυχία και το container δημιουργήθηκε και ξεκίνησε", + "Heartbeat" : "Heartbeat", + "Check for the heartbeat is finished and healthy" : "Έλεγχος ότι το heartbeat ολοκληρώθηκε και είναι υγιές", + "Init step" : "Βήμα αρχικοποίησης", + "Wait for initialization step to finish" : "Αναμονή για ολοκλήρωση του βήματος αρχικοποίησης", "Enabled" : "Ενεργοποιημένο", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Έλεγχος αν το ExApp χειρίστηκε με επιτυχία το συμβάν ενεργοποίησης και εγγράφηκαν όλα σωστά", + "Only if ExApp container is preset" : "Μόνο αν το container ExApp είναι προκαθορισμένο", + "Deploy test passed successfully!" : "Η δοκιμαστική ανάπτυξη πέρασε με επιτυχία!", + "Deploy test failed at step \"{step}\"" : "Η δοκιμαστική ανάπτυξη απέτυχε στο βήμα \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Το AppAPI θα προσπαθήσει να εγκαταστήσει ένα μικρό σκελετό ExApp για να επαληθεύσει ότι το Daemon διαμορφώθηκε σωστά και τα βήματα ανάπτυξης περνούν.", + "The following Deploy test checks must be passed to succeed:" : "Οι ακόλουθοι έλεγχοι δοκιμαστικής ανάπτυξης πρέπει να περάσουν για επιτυχία:", + "More info" : "Περισσότερες πληροφορίες", + "Download ExApp logs" : "Λήψη αρχείων καταγραφής ExApp", + "Remove test ExApp" : "Αφαίρεση δοκιμαστικού ExApp", + "Start Deploy test" : "Έναρξη δοκιμαστικής ανάπτυξης", + "Stop Deploy test" : "Διακοπή δοκιμαστικής ανάπτυξης", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Το ExApp διαγράφεται και το container αφαιρείται στο \"Διακοπή δοκιμαστικής ανάπτυξης\"", + "Please enter a registry domain" : "Παρακαλούμε εισάγετε ένα domain μητρώου", + "From cannot be \"local\"" : "Το Από δεν μπορεί να είναι \"local\"", + "This registry mapping already exists" : "Αυτή η αντιστοίχιση μητρώου υπάρχει ήδη", + "From and To cannot be the same" : "Το Από και το Έως δεν μπορεί να είναι το ίδιο", + "Docker registry mapping added" : "Προστέθηκε αντιστοίχιση μητρώου Docker", + "Error adding Docker registry mapping" : "Σφάλμα προσθήκης αντιστοίχισης μητρώου Docker", + "Docker registry mapping removed" : "Αφαιρέθηκε αντιστοίχιση μητρώου Docker", + "Error removing Docker registry mapping" : "Σφάλμα αφαίρεσης αντιστοίχισης μητρώου Docker", + "Override Docker registries" : "Παράκαμψη μητρώων Docker", + "Configure Docker registry override mappings for selected daemon." : "Διαμόρφωση αντιστοιχίσεων παράκαμψης μητρώου Docker για το επιλεγμένο daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Το αντίστοιχο πηγαίο μητρώο στο info.xml του ExApp θα αντικατασταθεί κατά τη διάρκεια της ανάπτυξης (βήμα λήψης εικόνας).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Αυτό είναι χρήσιμο αν θέλετε να χρησιμοποιήσετε ένα προσαρμοσμένο μητρώο Docker, για παράδειγμα, για να χρησιμοποιήσετε ένα ιδιωτικό μητρώο Docker, ή για να χρησιμοποιήσετε ένα διαφορετικό μητρώο Docker για δοκιμές.", + "Image pull will be skipped" : "Η λήψη εικόνας θα παραλειφθεί", "Remove" : "Αφαίρεση", + "No custom Docker registries configured" : "Δεν έχουν ρυθμιστεί προσαρμοσμένα μητρώα Docker", + "Add registry override mapping" : "Προσθήκη αντιστοίχισης παράκαμψης μητρώου", "From" : "Από", + "registry URL (e.g. ghcr.io)" : "URL μητρώου (π.χ. ghcr.io)", "To" : "Έως", + "registry URL (e.g. docker.io)" : "URL μητρώου (π.χ. docker.io)", "Add" : "Προσθήκη", + "Hostname to access ExApps" : "Όνομα διακομιστή για πρόσβαση στα ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Το όνομα διακομιστή (και θύρα) στο οποίο το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud, π.χ. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Το όνομα διακομιστή (και θύρα) ή η διαδρομή στην οποία το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud. Μπορεί επίσης να είναι μια διαδρομή προς το docker socket. (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Υπάρχει ήδη υπηρεσία με αυτό το όνομα", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Το μυστικό κλειδί για την επικοινωνία container HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Κωδικός πιστοποίησης AppAPI Docker Socket Proxy", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Οι αλλαγές θα εφαρμοστούν μόνο για νέα εγκατεστημένα ExApps. Για υπάρχοντα ExApps, τα Docker containers θα πρέπει να αναδημιουργηθούν.", + "The docker network that the deployed ex-apps would use." : "Το δίκτυο Docker που θα χρησιμοποιούν τα ανεπτυγμένα ex-apps.", + "URL should start with http:// or https://" : "Το URL πρέπει να ξεκινά με http:// ή https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Για υπηρεσία HTTPS, το URL του Nextcloud πρέπει να είναι HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Όλες οι διαθέσιμες συσκευές GPU στον κεντρικό υπολογιστή υπηρεσίας θα ζητηθεί να ενεργοποιηθούν σε containers ExApp από το Docker.", + "DaemonConfig successfully registered" : "Το DaemonConfig εγγράφηκε με επιτυχία", + "Failed to register DaemonConfig. Check the logs" : "Αποτυχία εγγραφής DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", + "DaemonConfig successfully updated" : "Το DaemonConfig ενημερώθηκε με επιτυχία", + "Failed to update DaemonConfig. Check the logs" : "Αποτυχία ενημέρωσης DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", + "Edit Deploy Daemon" : "Επεξεργασία Υπηρεσίας Ανάπτυξης", + "Register Deploy Daemon" : "Εγγραφή Υπηρεσίας Ανάπτυξης", + "Daemon configuration template" : "Πρότυπο διαμόρφωσης υπηρεσίας", + "Select daemon configuration template" : "Επιλογή προτύπου διαμόρφωσης υπηρεσίας", + "Daemon registration form" : "Φόρμα εγγραφής υπηρεσίιας", + "Unique Deploy Daemon Name" : "Μοναδικό Όνομα Υπηρεσίας Ανάπτυξης", "Display name" : "Εμφανιζόμενο όνομα", + "Deployment method" : "Μέθοδος ανάπτυξης", + "Select daemon deploy method" : "Επιλογή μεθόδου ανάπτυξης υπηρεσίας", + "HaRP host" : "Διακομιστής HaRP", + "Daemon host" : "Διακομιστής υπηρεσιας", + "HaRP shared key" : "Κοινόχρηστο κλειδί HaRP", + "Password must be at least 12 characters long" : "Ο κωδικός πρέπει να είναι τουλάχιστον 12 χαρακτήρες", + "Set daemon as default" : "Ορισμός υπηρεσίας ως προεπιλογή", + "Set as default daemon" : "Ορισμός ως προεπιλεγμένη υπηρεσία", + "Enable https" : "Ενεργοποίηση https", + "Show deploy config" : "Εμφάνιση διαμόρφωσης ανάπτυξης", + "Hide deploy config" : "Απόκρυψη διαμόρφωσης ανάπτυξης", + "Enable HaRP" : "Ενεργοποίηση HaRP", + "FRP server address" : "Διεύθυνση διακομιστή FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Η διεύθυνση (host:port) του διακομιστή FRP που πρέπει να είναι προσβάσιμη από το ex-app στο δίκτυο που ορίζεται στο 'Docker network'.", + "Docker socket proxy port" : "Θύρα διακομιστή μεσολάβησης Docker socket", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Η θύρα στο HaRP στην οποία συνδέεται ο διακομιστής μεσολάβησης docker socket. Αυτή πρέπει να εκτίθεται, αλλά για την ενσωματωμένη, δεν απαιτείται να εκτεθεί ή να αλλάξει.", + "Disable FRP" : "Απενεργοποίηση FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Σημαία μόνο για προχωρημένες ρυθμίσεις. Απενεργοποιεί τη σήραγγα FRP μεταξύ ExApps και HaRP.", "Disabled" : "Απενεργοποιημένο", + "Docker network for ex-app deployment must be defined" : "Το δίκτυο Docker για ανάπτυξη ex-app πρέπει να οριστεί", + "Additional option" : "Πρόσθετη επιλογή", + "Add additional option" : "Προσθήκη πρόσθετης επιλογής", + "Option key (unique)" : "Κλειδί επιλογής (μοναδικό)", + "Option key (unique, e.g. my_key)" : "Κλειδί επιλογής (μοναδικό, π.χ. my_key)", + "Option key is required" : "Το κλειδί επιλογής απαιτείται", + "Option value" : "Τιμή επιλογής", + "Option value is required" : "Η τιμή επιλογής απαιτείται", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", - "{license}-licensed" : "{license}-αδειοδοτημένο", + "Check connection" : "Έλεγχος σύνδεσης", + "External Apps" : "Εξωτερικές Εφαρμογές", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n### Ενσωματωμένη Εφαρμογή\n\n**Ξεκινώντας από το Nextcloud 30.0.1, αυτή η εφαρμογή περιλαμβάνεται στο προεπιλεγμένο πακέτο Nextcloud.**\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud.", + "{license}-licensed" : "αδειοδοτημένο με {license}", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", @@ -37,11 +191,13 @@ OC.L10N.register( "User documentation" : "Τεκμηρίωση χρήστη", "Admin documentation" : "Τεκμηρίωση διαχειριστή", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Αυτή η εφαρμογή δεν είναι εγγεγραμμένη στο AppStore. Δεν υπάρχουν επιπλέον πληροφορίες. Επιτρέπονται μόνο ενέργειες ενεργοποίησης/απενεργοποίησης και αφαίρεσης.", "This app is supported via your current Nextcloud subscription." : "Αυτή η εφαρμογή υποστηρίζεται μέσω της τρέχουσας συνδρομής σας στο Nextcloud.", "Supported" : "Υποστηρίζεται", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι προτεινόμενες εφαρμογές αναπτύσσονται από και εντός της κοινότητας. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για χρήση.", "Featured" : "Προτεινόμενες", "Update to {update}" : "Ενημέρωση σε {update}", + "All ExApps are up-to-date." : "Όλα τα ExApps είναι ενημερωμένα.", "Default Deploy daemon is not accessible" : "Το προεπιλεγμένο Deploy daemon δεν είναι προσβάσιμο", "Icon" : "Εικονίδιο", "Version" : "Έκδοση", @@ -49,10 +205,15 @@ OC.L10N.register( "Level" : "Επίπεδο", "Actions" : "Ενέργειες", "Results from other categories" : "Αποτελέσματα από άλλες κατηγορίες", + "No apps found" : "Δεν βρέθηκαν εφαρμογές", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp έχει διαθέσιμη ενημέρωση","%n ExApps έχουν διαθέσιμες ενημερώσεις"], "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Όνομα διακομιστή ή διαδρομή για πρόσβαση στο Docker daemon (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "Με ενεργοποιημένο https το δίκτυο ορίζεται σε host", "Network" : "Δίκτυο", + "Docker network name" : "Όνομα δικτύου Docker", "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", @@ -63,13 +224,21 @@ OC.L10N.register( "Updates" : "Ενημερώσεις", "Featured apps" : "Προτεινόμενες εφαρμογές", "Supported apps" : "Υποστηριζόμενες εφαρμογές", + "manual-install apps cannot be updated" : "οι εφαρμογές χειροκίνητης εγκατάστασης δεν μπορούν να ενημερωθούν", + "{progress}% Deploying" : "{progress}% Ανάπτυξη", + "{progress}% Initializing" : "{progress}% Αρχικοποίηση", + "Healthchecking" : "Έλεγχος υγείας", "Deploy and Enable" : "Ανάπτυξη και Ενεργοποίηση", "Enable" : "Ενεργοποίηση", "Disable" : "Απενεργοποίηση", "Allow untested app" : "Επιτρέψτε μη δοκιμασμένες εφαρμογές", + "Default Deploy daemon is not accessible. Please verify configuration" : "Το προεπιλεγμένο Deploy daemon δεν είναι προσβάσιμο. Παρακαλούμε επαληθεύστε τη διαμόρφωση", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Η εφαρμογή θα ληφθεί από το App Store και θα αναπτυχθεί στο προεπιλεγμένο Deploy Daemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Η εφαρμογή δεν είναι συμβατή με την έκδοση Nextcloud σας. Εάν συνεχίσετε μπορείτε να εγκαταστήσετε την εφαρμογή. Η εφαρμογή ίσως να μην λειτουργεί σωστά.", + "Your ExApps" : "Τα ExApps σας", "An error occurred during the request. Unable to proceed." : "Προέκυψε σφάλμα κατά την αίτηση. Δεν είναι δυνατή η συνέχεια.", "The app has been enabled but needs to be updated." : "Η εφαρμογή έχει ενεργοποιηθεί αλλά χρειάζεται ενημέρωση.", - "Error: This app cannot be enabled because it makes the server unstable" : "Σφάλμα: Αυτή η εφαρμογή δεν μπορεί να ενεργοποιηθεί γιατί θα καταστήσει ασταθή τον διακομιστή." + "Error: This app cannot be enabled because it makes the server unstable" : "Σφάλμα: Αυτή η εφαρμογή δεν μπορεί να ενεργοποιηθεί γιατί θα καταστήσει ασταθή τον διακομιστή.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n\n### Κατάλογος εφαρμογών που απαιτούν AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/el.json b/l10n/el.json index 0a9b6404..2d3aed9c 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -1,29 +1,183 @@ { "translations": { + "Daemon config not found" : "Δεν βρέθηκε ρύθμιση υπηρεσίας", + "Error starting install of ExApp" : "Σφάλμα έναρξης εγκατάστασης του ExApp", + "ExApp failed to register, check the NC logs" : "Αποτυχία εγγραφής του ExApp, ελέγξτε τα αρχεία καταγραφής του NC", + "ExApp not found, failed to get status" : "Δεν βρέθηκε το ExApp, απέτυχε η λήψη κατάστασης", + "Error adding Docker registry" : "Σφάλμα προσθήκης μητρώου Docker", + "Error removing Docker registry" : "Σφάλμα αφαίρεσης μητρώου Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Αυτή η εφαρμογή δεν είναι εγκατεστημένη από το AppStore. Δεν υπάρχουν επιπλέον πληροφορίες. Επιτρέπονται μόνο ενέργειες ενεργοποίησης/απενεργοποίησης και αφαίρεσης.", + "Could not perform installation of ExApp" : "Δεν ήταν δυνατή η εκτέλεση εγκατάστασης του ExApp", + "Failed to enable ExApp" : "Αποτυχία ενεργοποίησης του ExApp", + "Failed to disable ExApp" : "Αποτυχία απενεργοποίησης του ExApp", + "Could not update ExApp" : "Δεν ήταν δυνατή η ενημέρωση του ExApp", + "Error starting update of ExApp" : "Σφάλμα έναρξης ενημέρωσης του ExApp", + "Could not perform update of ExApp" : "Δεν ήταν δυνατή η εκτέλεση ενημέρωσης του ExApp", + "ExApp not found, failed to get logs" : "Δεν βρέθηκε το ExApp, απέτυχε η λήψη αρχείων καταγραφής", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Αποτυχία λήψης αρχείων καταγραφής container. Σημείωση: Η λήψη Docker container λειτουργεί μόνο για containers με τον οδηγό καταγραφής json-file ή journald. Σφάλμα: %s", + "ExApp not found, failed to get deploy options" : "Δεν βρέθηκε το ExApp, απέτυχε η λήψη επιλογών ανάπτυξης", + "AppAPI authentication failed" : "Αποτυχία πιστοποίησης AppAPI", + "AppAPI ExApp notifier" : "Ειδοποιητής AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Ομάδα Ενσωμάτωσης ΤΝ", + "ExApps Settings" : "Ρυθμίσεις ExApps", + "AppAPI deploy daemon" : "Υπηρεσία ανάπτυξης AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Δεν έχει οριστεί προεπιλεγμένο υπηρεσία ανάπτυξης AppAPI. Παρακαλούμε εγγράψτε μια προεπιλεγμένη υπηρεσία ανάπτυξης στις ρυθμίσεις για να εγκαταστήσετε Εξωτερικές Εφαρμογές (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Η προεπιλεγμένη υπηρεσία ανάπτυξης AppAPI \"%s\" δεν είναι προσβάσιμο. Παρακαλούμε ελέγξτε τη διαμόρφωση της υπηρεσίας.", + "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Η προεπιλεγμένη υηρεσία ανάπτυξης AppAPI δεν χρησιμοποιεί HaRP. Παρακαλούμε σκεφτείτε να αναβαθμίσετε σε αυτό για καλύτερη απόδοση.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", + "External Apps management" : "Διαχείριση Εξωτερικών Εφαρμογών", + "Admin options saved" : "Οι επιλογές διαχειριστή αποθηκεύτηκαν", + "Failed to save admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud μέσω της χρήσης docker containers. Επιτρέποντας μεγαλύτερη επιλογή γλωσσών προγραμματισμού και επιτρέποντας την εκφόρτωση υπολογιστικά ακριβών εργασιών σε διαφορετικό διακομιστή.", + "Deploy Daemons" : "Υπηρεσία Ανάπτυξης", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Η Υπηρεσία Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Υπηρεσία Ανάπτυξης. Το Daemon Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Η προεπιλεγμένη Υπηρεσία Ανάπτυξης δεν είναι προσβάσιμη. Παρακαλούμε επαληθεύστε τη διαμόρφωσή της", + "ExApp init timeout (minutes)" : "Χρονικό όριο αρχικοποίησης ExApp (λεπτά)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Χρονικό όριο διαδικασίας αρχικοποίησης ExApp μετά το οποίο το AppAPI θα το επισημάνει ως αποτυχημένο", + "ExApp init timeout" : "Χρονικό όριο αρχικοποίησης ExApp", + "ExApp container restart policy" : "Πολιτική επανεκκίνησης container ExApp", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Καθορίστε την πολιτική επανεκκίνησης container, π.χ. 'always' για να διασφαλιστεί η λειτουργία του ExApp μετά την επανεκκίνηση του διακομιστή υπηρεσίας", + "This settings changes are reflected only for newly created containers" : "Οι αλλαγές αυτών των ρυθμίσεων αντικατοπτρίζονται μόνο για νέα containers", + "Are you sure you want delete Deploy Daemon" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε την Υπηρεσία Ανάπτυξης", + "All ExApps on this daemon will be removed" : "Όλα τα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", + "All ExApps installed on this daemon will be removed" : "Όλα τα εγκατεστημένα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", "Cancel" : "Ακύρωση", "Delete" : "Διαγραφή", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Η Υπηρεσία Ανάπτυξης \"manual-install\" δεν μπορεί να οριστεί ως προεπιλεγμένο", + "Failed to save admin options. Check the logs" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή. Ελέγξτε τα αρχεία καταγραφής", "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", + "Set as default" : "Ορισμός ως προεπιλογή", + "Test deploy" : "Δοκιμαστική ανάπτυξη", + "Docker registries" : "Μητρώα Docker", "Edit" : "Επεξεργασία", - "Deploy Daemon" : "Υπηρεσία Ανάπτυξης", + "Daemon connection successful" : "Επιτυχής σύνδεση υπηρεσίας", + "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", + "Deploy Daemon" : "πηρεσία Ανάπτυξης", + "Default daemon. ExApps will be installed on it" : "Προεπιλεγμένη υπηρεσία. Τα ExApps θα εγκατασταθούν σε αυτό", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Υπηρεσία χειροκίνητης εγκατάστασης που συνήθως χρησιμοποιείται για ανάπτυξη. Δεν μπορεί να οριστεί ως προεπιλεγμένη υπηρεσία.", + "ExApps installed" : "Εγκατεστημένα ExApps", "Name" : "Όνομα", + "Protocol" : "Πρωτόκολλο", "Host" : "Διακομιστής", - "Nextcloud URL" : "Διεύθυνση URL του Nextcloud", + "ExApp direct communication (FRP disabled)" : "Άμεση επικοινωνία ExApp (FRP απενεργοποιημένο)", + "Deploy config" : "Διαμόρφωση ανάπτυξης", + "Docker network" : "Δίκτυο Docker", + "Nextcloud URL" : "Διεύθυνση URL Nextcloud", + "HaProxy password" : "Κωδικός πρόσβασης HaProxy", "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", + "Additional options" : "Πρόσθετες επιλογές", + "Verify connection" : "Επαλήθευση σύνδεσης", "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", - "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Daemon Ανάπτυξης", + "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Υπηρεσία Ανάπτυξης", "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", + "Register Daemon" : "Εγγραφή Υπηρεσίας", + "Register ExApp in Nextcloud" : "Εγγραφή ExApp στο Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Έλεγχος αν το ExApp είναι εγγεγραμμένο στο Nextcloud πριν την ανάπτυξη", + "Image pull" : "Λήψη εικόνας", + "Check if the image is successfully pulled" : "Έλεγχος αν η εικόνα λήφθηκε με επιτυχία", + "Container started" : "Το container ξεκίνησε", + "Check if the image successfully pulled and container is created and started" : "Έλεγχος αν η εικόνα λήφθηκε με επιτυχία και το container δημιουργήθηκε και ξεκίνησε", + "Heartbeat" : "Heartbeat", + "Check for the heartbeat is finished and healthy" : "Έλεγχος ότι το heartbeat ολοκληρώθηκε και είναι υγιές", + "Init step" : "Βήμα αρχικοποίησης", + "Wait for initialization step to finish" : "Αναμονή για ολοκλήρωση του βήματος αρχικοποίησης", "Enabled" : "Ενεργοποιημένο", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Έλεγχος αν το ExApp χειρίστηκε με επιτυχία το συμβάν ενεργοποίησης και εγγράφηκαν όλα σωστά", + "Only if ExApp container is preset" : "Μόνο αν το container ExApp είναι προκαθορισμένο", + "Deploy test passed successfully!" : "Η δοκιμαστική ανάπτυξη πέρασε με επιτυχία!", + "Deploy test failed at step \"{step}\"" : "Η δοκιμαστική ανάπτυξη απέτυχε στο βήμα \"{step}\"", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Το AppAPI θα προσπαθήσει να εγκαταστήσει ένα μικρό σκελετό ExApp για να επαληθεύσει ότι το Daemon διαμορφώθηκε σωστά και τα βήματα ανάπτυξης περνούν.", + "The following Deploy test checks must be passed to succeed:" : "Οι ακόλουθοι έλεγχοι δοκιμαστικής ανάπτυξης πρέπει να περάσουν για επιτυχία:", + "More info" : "Περισσότερες πληροφορίες", + "Download ExApp logs" : "Λήψη αρχείων καταγραφής ExApp", + "Remove test ExApp" : "Αφαίρεση δοκιμαστικού ExApp", + "Start Deploy test" : "Έναρξη δοκιμαστικής ανάπτυξης", + "Stop Deploy test" : "Διακοπή δοκιμαστικής ανάπτυξης", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Το ExApp διαγράφεται και το container αφαιρείται στο \"Διακοπή δοκιμαστικής ανάπτυξης\"", + "Please enter a registry domain" : "Παρακαλούμε εισάγετε ένα domain μητρώου", + "From cannot be \"local\"" : "Το Από δεν μπορεί να είναι \"local\"", + "This registry mapping already exists" : "Αυτή η αντιστοίχιση μητρώου υπάρχει ήδη", + "From and To cannot be the same" : "Το Από και το Έως δεν μπορεί να είναι το ίδιο", + "Docker registry mapping added" : "Προστέθηκε αντιστοίχιση μητρώου Docker", + "Error adding Docker registry mapping" : "Σφάλμα προσθήκης αντιστοίχισης μητρώου Docker", + "Docker registry mapping removed" : "Αφαιρέθηκε αντιστοίχιση μητρώου Docker", + "Error removing Docker registry mapping" : "Σφάλμα αφαίρεσης αντιστοίχισης μητρώου Docker", + "Override Docker registries" : "Παράκαμψη μητρώων Docker", + "Configure Docker registry override mappings for selected daemon." : "Διαμόρφωση αντιστοιχίσεων παράκαμψης μητρώου Docker για το επιλεγμένο daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Το αντίστοιχο πηγαίο μητρώο στο info.xml του ExApp θα αντικατασταθεί κατά τη διάρκεια της ανάπτυξης (βήμα λήψης εικόνας).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Αυτό είναι χρήσιμο αν θέλετε να χρησιμοποιήσετε ένα προσαρμοσμένο μητρώο Docker, για παράδειγμα, για να χρησιμοποιήσετε ένα ιδιωτικό μητρώο Docker, ή για να χρησιμοποιήσετε ένα διαφορετικό μητρώο Docker για δοκιμές.", + "Image pull will be skipped" : "Η λήψη εικόνας θα παραλειφθεί", "Remove" : "Αφαίρεση", + "No custom Docker registries configured" : "Δεν έχουν ρυθμιστεί προσαρμοσμένα μητρώα Docker", + "Add registry override mapping" : "Προσθήκη αντιστοίχισης παράκαμψης μητρώου", "From" : "Από", + "registry URL (e.g. ghcr.io)" : "URL μητρώου (π.χ. ghcr.io)", "To" : "Έως", + "registry URL (e.g. docker.io)" : "URL μητρώου (π.χ. docker.io)", "Add" : "Προσθήκη", + "Hostname to access ExApps" : "Όνομα διακομιστή για πρόσβαση στα ExApps", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Το όνομα διακομιστή (και θύρα) στο οποίο το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud, π.χ. {host}.", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Το όνομα διακομιστή (και θύρα) ή η διαδρομή στην οποία το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud. Μπορεί επίσης να είναι μια διαδρομή προς το docker socket. (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Υπάρχει ήδη υπηρεσία με αυτό το όνομα", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Το μυστικό κλειδί για την επικοινωνία container HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Κωδικός πιστοποίησης AppAPI Docker Socket Proxy", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Οι αλλαγές θα εφαρμοστούν μόνο για νέα εγκατεστημένα ExApps. Για υπάρχοντα ExApps, τα Docker containers θα πρέπει να αναδημιουργηθούν.", + "The docker network that the deployed ex-apps would use." : "Το δίκτυο Docker που θα χρησιμοποιούν τα ανεπτυγμένα ex-apps.", + "URL should start with http:// or https://" : "Το URL πρέπει να ξεκινά με http:// ή https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Για υπηρεσία HTTPS, το URL του Nextcloud πρέπει να είναι HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Όλες οι διαθέσιμες συσκευές GPU στον κεντρικό υπολογιστή υπηρεσίας θα ζητηθεί να ενεργοποιηθούν σε containers ExApp από το Docker.", + "DaemonConfig successfully registered" : "Το DaemonConfig εγγράφηκε με επιτυχία", + "Failed to register DaemonConfig. Check the logs" : "Αποτυχία εγγραφής DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", + "DaemonConfig successfully updated" : "Το DaemonConfig ενημερώθηκε με επιτυχία", + "Failed to update DaemonConfig. Check the logs" : "Αποτυχία ενημέρωσης DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", + "Edit Deploy Daemon" : "Επεξεργασία Υπηρεσίας Ανάπτυξης", + "Register Deploy Daemon" : "Εγγραφή Υπηρεσίας Ανάπτυξης", + "Daemon configuration template" : "Πρότυπο διαμόρφωσης υπηρεσίας", + "Select daemon configuration template" : "Επιλογή προτύπου διαμόρφωσης υπηρεσίας", + "Daemon registration form" : "Φόρμα εγγραφής υπηρεσίιας", + "Unique Deploy Daemon Name" : "Μοναδικό Όνομα Υπηρεσίας Ανάπτυξης", "Display name" : "Εμφανιζόμενο όνομα", + "Deployment method" : "Μέθοδος ανάπτυξης", + "Select daemon deploy method" : "Επιλογή μεθόδου ανάπτυξης υπηρεσίας", + "HaRP host" : "Διακομιστής HaRP", + "Daemon host" : "Διακομιστής υπηρεσιας", + "HaRP shared key" : "Κοινόχρηστο κλειδί HaRP", + "Password must be at least 12 characters long" : "Ο κωδικός πρέπει να είναι τουλάχιστον 12 χαρακτήρες", + "Set daemon as default" : "Ορισμός υπηρεσίας ως προεπιλογή", + "Set as default daemon" : "Ορισμός ως προεπιλεγμένη υπηρεσία", + "Enable https" : "Ενεργοποίηση https", + "Show deploy config" : "Εμφάνιση διαμόρφωσης ανάπτυξης", + "Hide deploy config" : "Απόκρυψη διαμόρφωσης ανάπτυξης", + "Enable HaRP" : "Ενεργοποίηση HaRP", + "FRP server address" : "Διεύθυνση διακομιστή FRP", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Η διεύθυνση (host:port) του διακομιστή FRP που πρέπει να είναι προσβάσιμη από το ex-app στο δίκτυο που ορίζεται στο 'Docker network'.", + "Docker socket proxy port" : "Θύρα διακομιστή μεσολάβησης Docker socket", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Η θύρα στο HaRP στην οποία συνδέεται ο διακομιστής μεσολάβησης docker socket. Αυτή πρέπει να εκτίθεται, αλλά για την ενσωματωμένη, δεν απαιτείται να εκτεθεί ή να αλλάξει.", + "Disable FRP" : "Απενεργοποίηση FRP", + "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Σημαία μόνο για προχωρημένες ρυθμίσεις. Απενεργοποιεί τη σήραγγα FRP μεταξύ ExApps και HaRP.", "Disabled" : "Απενεργοποιημένο", + "Docker network for ex-app deployment must be defined" : "Το δίκτυο Docker για ανάπτυξη ex-app πρέπει να οριστεί", + "Additional option" : "Πρόσθετη επιλογή", + "Add additional option" : "Προσθήκη πρόσθετης επιλογής", + "Option key (unique)" : "Κλειδί επιλογής (μοναδικό)", + "Option key (unique, e.g. my_key)" : "Κλειδί επιλογής (μοναδικό, π.χ. my_key)", + "Option key is required" : "Το κλειδί επιλογής απαιτείται", + "Option value" : "Τιμή επιλογής", + "Option value is required" : "Η τιμή επιλογής απαιτείται", "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", - "{license}-licensed" : "{license}-αδειοδοτημένο", + "Check connection" : "Έλεγχος σύνδεσης", + "External Apps" : "Εξωτερικές Εφαρμογές", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n### Ενσωματωμένη Εφαρμογή\n\n**Ξεκινώντας από το Nextcloud 30.0.1, αυτή η εφαρμογή περιλαμβάνεται στο προεπιλεγμένο πακέτο Nextcloud.**\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud.", + "{license}-licensed" : "αδειοδοτημένο με {license}", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", @@ -35,11 +189,13 @@ "User documentation" : "Τεκμηρίωση χρήστη", "Admin documentation" : "Τεκμηρίωση διαχειριστή", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Αυτή η εφαρμογή δεν είναι εγγεγραμμένη στο AppStore. Δεν υπάρχουν επιπλέον πληροφορίες. Επιτρέπονται μόνο ενέργειες ενεργοποίησης/απενεργοποίησης και αφαίρεσης.", "This app is supported via your current Nextcloud subscription." : "Αυτή η εφαρμογή υποστηρίζεται μέσω της τρέχουσας συνδρομής σας στο Nextcloud.", "Supported" : "Υποστηρίζεται", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι προτεινόμενες εφαρμογές αναπτύσσονται από και εντός της κοινότητας. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για χρήση.", "Featured" : "Προτεινόμενες", "Update to {update}" : "Ενημέρωση σε {update}", + "All ExApps are up-to-date." : "Όλα τα ExApps είναι ενημερωμένα.", "Default Deploy daemon is not accessible" : "Το προεπιλεγμένο Deploy daemon δεν είναι προσβάσιμο", "Icon" : "Εικονίδιο", "Version" : "Έκδοση", @@ -47,10 +203,15 @@ "Level" : "Επίπεδο", "Actions" : "Ενέργειες", "Results from other categories" : "Αποτελέσματα από άλλες κατηγορίες", + "No apps found" : "Δεν βρέθηκαν εφαρμογές", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp έχει διαθέσιμη ενημέρωση","%n ExApps έχουν διαθέσιμες ενημερώσεις"], "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Όνομα διακομιστή ή διαδρομή για πρόσβαση στο Docker daemon (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "With https enabled network is set to host" : "Με ενεργοποιημένο https το δίκτυο ορίζεται σε host", "Network" : "Δίκτυο", + "Docker network name" : "Όνομα δικτύου Docker", "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", @@ -61,13 +222,21 @@ "Updates" : "Ενημερώσεις", "Featured apps" : "Προτεινόμενες εφαρμογές", "Supported apps" : "Υποστηριζόμενες εφαρμογές", + "manual-install apps cannot be updated" : "οι εφαρμογές χειροκίνητης εγκατάστασης δεν μπορούν να ενημερωθούν", + "{progress}% Deploying" : "{progress}% Ανάπτυξη", + "{progress}% Initializing" : "{progress}% Αρχικοποίηση", + "Healthchecking" : "Έλεγχος υγείας", "Deploy and Enable" : "Ανάπτυξη και Ενεργοποίηση", "Enable" : "Ενεργοποίηση", "Disable" : "Απενεργοποίηση", "Allow untested app" : "Επιτρέψτε μη δοκιμασμένες εφαρμογές", + "Default Deploy daemon is not accessible. Please verify configuration" : "Το προεπιλεγμένο Deploy daemon δεν είναι προσβάσιμο. Παρακαλούμε επαληθεύστε τη διαμόρφωση", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Η εφαρμογή θα ληφθεί από το App Store και θα αναπτυχθεί στο προεπιλεγμένο Deploy Daemon", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Η εφαρμογή δεν είναι συμβατή με την έκδοση Nextcloud σας. Εάν συνεχίσετε μπορείτε να εγκαταστήσετε την εφαρμογή. Η εφαρμογή ίσως να μην λειτουργεί σωστά.", + "Your ExApps" : "Τα ExApps σας", "An error occurred during the request. Unable to proceed." : "Προέκυψε σφάλμα κατά την αίτηση. Δεν είναι δυνατή η συνέχεια.", "The app has been enabled but needs to be updated." : "Η εφαρμογή έχει ενεργοποιηθεί αλλά χρειάζεται ενημέρωση.", - "Error: This app cannot be enabled because it makes the server unstable" : "Σφάλμα: Αυτή η εφαρμογή δεν μπορεί να ενεργοποιηθεί γιατί θα καταστήσει ασταθή τον διακομιστή." + "Error: This app cannot be enabled because it makes the server unstable" : "Σφάλμα: Αυτή η εφαρμογή δεν μπορεί να ενεργοποιηθεί γιατί θα καταστήσει ασταθή τον διακομιστή.", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n\n### Κατάλογος εφαρμογών που απαιτούν AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file From 2845c524ecf16ad297c8fb7aea8f826c9d196820 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 27 Sep 2025 00:21:05 +0000 Subject: [PATCH 196/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 3 +++ l10n/be.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index db5c3d0f..ce76ac3e 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -25,7 +25,10 @@ OC.L10N.register( "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", "Version" : "Версія", + "Level" : "Узровень", "Actions" : "Дзеянні", + "Results from other categories" : "Вынікі з іншых катэгорый", + "_Update_::_Update all_" : ["Абнавіць","Абнавіць усе","Абнавіць усе","Абнавіць усе"], "Type" : "Тып", "Display Name" : "Імя для паказу", "Your apps" : "Вашы праграмы", diff --git a/l10n/be.json b/l10n/be.json index 57bdd6fe..5c8e820a 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -23,7 +23,10 @@ "Update to {update}" : "Абнаўленне да {update}", "Icon" : "Значок", "Version" : "Версія", + "Level" : "Узровень", "Actions" : "Дзеянні", + "Results from other categories" : "Вынікі з іншых катэгорый", + "_Update_::_Update all_" : ["Абнавіць","Абнавіць усе","Абнавіць усе","Абнавіць усе"], "Type" : "Тып", "Display Name" : "Імя для паказу", "Your apps" : "Вашы праграмы", From 0541daddc97a00d3bad7d8fc093426cbb7540a82 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 1 Oct 2025 00:20:45 +0000 Subject: [PATCH 197/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 4 ++-- l10n/be.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/l10n/be.js b/l10n/be.js index ce76ac3e..74e44504 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -16,13 +16,13 @@ OC.L10N.register( "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", - "Update to {version}" : "Абнаўленне да {version}", + "Update to {version}" : "Абнавіць да {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана мінімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", "Visit website" : "Наведаць вэб-сайт", "Report a bug" : "Паведаміць пра памылку", - "Update to {update}" : "Абнаўленне да {update}", + "Update to {update}" : "Абнавіць да {update}", "Icon" : "Значок", "Version" : "Версія", "Level" : "Узровень", diff --git a/l10n/be.json b/l10n/be.json index 5c8e820a..9cfb877f 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -14,13 +14,13 @@ "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", - "Update to {version}" : "Абнаўленне да {version}", + "Update to {version}" : "Абнавіць да {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана мінімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", "Visit website" : "Наведаць вэб-сайт", "Report a bug" : "Паведаміць пра памылку", - "Update to {update}" : "Абнаўленне да {update}", + "Update to {update}" : "Абнавіць да {update}", "Icon" : "Значок", "Version" : "Версія", "Level" : "Узровень", From e96cee3eb4b3e26d985ca779c96b9de2d3c6ffee Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 3 Oct 2025 00:22:02 +0000 Subject: [PATCH 198/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 2 ++ l10n/cs.json | 2 ++ l10n/da.js | 1 + l10n/da.json | 1 + l10n/de.js | 2 ++ l10n/de.json | 2 ++ l10n/de_DE.js | 2 ++ l10n/de_DE.json | 2 ++ l10n/el.js | 2 ++ l10n/el.json | 2 ++ l10n/en_GB.js | 2 ++ l10n/en_GB.json | 2 ++ l10n/eo.js | 1 + l10n/eo.json | 1 + l10n/es.js | 2 ++ l10n/es.json | 2 ++ l10n/es_419.js | 1 + l10n/es_419.json | 1 + l10n/es_AR.js | 1 + l10n/es_AR.json | 1 + l10n/es_CL.js | 1 + l10n/es_CL.json | 1 + l10n/es_CO.js | 1 + l10n/es_CO.json | 1 + l10n/es_CR.js | 1 + l10n/es_CR.json | 1 + l10n/es_DO.js | 1 + l10n/es_DO.json | 1 + l10n/es_EC.js | 1 + l10n/es_EC.json | 1 + l10n/es_GT.js | 1 + l10n/es_GT.json | 1 + l10n/es_HN.js | 1 + l10n/es_HN.json | 1 + l10n/es_MX.js | 1 + l10n/es_MX.json | 1 + l10n/es_NI.js | 1 + l10n/es_NI.json | 1 + l10n/es_PA.js | 1 + l10n/es_PA.json | 1 + l10n/es_PE.js | 1 + l10n/es_PE.json | 1 + l10n/es_PR.js | 1 + l10n/es_PR.json | 1 + l10n/es_PY.js | 1 + l10n/es_PY.json | 1 + l10n/es_SV.js | 1 + l10n/es_SV.json | 1 + l10n/es_UY.js | 1 + l10n/es_UY.json | 1 + l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + l10n/eu.js | 2 ++ l10n/eu.json | 2 ++ l10n/fa.js | 1 + l10n/fa.json | 1 + l10n/fi.js | 2 ++ l10n/fi.json | 2 ++ l10n/fr.js | 2 ++ l10n/fr.json | 2 ++ l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/gl.js | 2 ++ l10n/gl.json | 2 ++ l10n/he.js | 1 + l10n/he.json | 1 + l10n/hr.js | 1 + l10n/hr.json | 1 + l10n/hu.js | 2 ++ l10n/hu.json | 2 ++ l10n/ia.js | 1 + l10n/ia.json | 1 + l10n/id.js | 1 + l10n/id.json | 1 + l10n/is.js | 1 + l10n/is.json | 1 + l10n/it.js | 2 ++ l10n/it.json | 2 ++ l10n/ja.js | 2 ++ l10n/ja.json | 2 ++ l10n/ka.js | 1 + l10n/ka.json | 1 + l10n/ka_GE.js | 1 + l10n/ka_GE.json | 1 + l10n/km.js | 1 + l10n/km.json | 1 + l10n/lo.js | 17 ----------------- l10n/lo.json | 15 --------------- l10n/lt_LT.js | 1 + l10n/lt_LT.json | 1 + l10n/lv.js | 2 ++ l10n/lv.json | 2 ++ l10n/mk.js | 2 ++ l10n/mk.json | 2 ++ l10n/nb.js | 2 ++ l10n/nb.json | 2 ++ l10n/nl.js | 2 ++ l10n/nl.json | 2 ++ l10n/nn_NO.js | 1 + l10n/nn_NO.json | 1 + l10n/oc.js | 1 + l10n/oc.json | 1 + l10n/pl.js | 2 ++ l10n/pl.json | 2 ++ l10n/pt_BR.js | 2 ++ l10n/pt_BR.json | 2 ++ l10n/pt_PT.js | 1 + l10n/pt_PT.json | 1 + l10n/ro.js | 1 + l10n/ro.json | 1 + l10n/ru.js | 2 ++ l10n/ru.json | 2 ++ l10n/si.js | 1 + l10n/si.json | 1 + l10n/sk.js | 2 ++ l10n/sk.json | 2 ++ l10n/sl.js | 2 ++ l10n/sl.json | 2 ++ l10n/sq.js | 1 + l10n/sq.json | 1 + l10n/sr.js | 2 ++ l10n/sr.json | 2 ++ l10n/sv.js | 2 ++ l10n/sv.json | 2 ++ l10n/sw.js | 1 + l10n/sw.json | 1 + l10n/th.js | 1 + l10n/th.json | 1 + l10n/tr.js | 2 ++ l10n/tr.json | 2 ++ l10n/ug.js | 1 + l10n/ug.json | 1 + l10n/uk.js | 2 ++ l10n/uk.json | 2 ++ l10n/uz.js | 1 + l10n/uz.json | 1 + l10n/vi.js | 1 + l10n/vi.json | 1 + l10n/zh_CN.js | 2 ++ l10n/zh_CN.json | 2 ++ l10n/zh_HK.js | 2 ++ l10n/zh_HK.json | 2 ++ l10n/zh_TW.js | 2 ++ l10n/zh_TW.json | 2 ++ 144 files changed, 200 insertions(+), 32 deletions(-) delete mode 100644 l10n/lo.js delete mode 100644 l10n/lo.json diff --git a/l10n/cs.js b/l10n/cs.js index 62d7bc5b..a25f4ed2 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -57,6 +57,7 @@ OC.L10N.register( "Daemon connection successful" : "Připojení ke službě úspěšné", "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", + "Unlimited" : "Neomezeně", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -72,6 +73,7 @@ OC.L10N.register( "HaProxy password" : "Heslo k HAProxy", "GPUs support" : "Podpora pro výpočty na GPU", "Compute device" : "Výpočetní zařízení", + "Memory limit" : "Limit paměti", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", diff --git a/l10n/cs.json b/l10n/cs.json index bc0ae4d1..54ee0c1a 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -55,6 +55,7 @@ "Daemon connection successful" : "Připojení ke službě úspěšné", "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", + "Unlimited" : "Neomezeně", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -70,6 +71,7 @@ "HaProxy password" : "Heslo k HAProxy", "GPUs support" : "Podpora pro výpočty na GPU", "Compute device" : "Výpočetní zařízení", + "Memory limit" : "Limit paměti", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", diff --git a/l10n/da.js b/l10n/da.js index 88eda437..b82d3b22 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Daemon forbundet", "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", + "Unlimited" : "Ubegrænset", "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", "Deploy Daemon" : "Udrulnings systemtjeneste", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", diff --git a/l10n/da.json b/l10n/da.json index 199e562b..4eeacc4e 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Daemon forbundet", "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", + "Unlimited" : "Ubegrænset", "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", "Deploy Daemon" : "Udrulnings systemtjeneste", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", diff --git a/l10n/de.js b/l10n/de.js index c27a0797..f3fd55ee 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Unlimited" : "Unbegrenzt", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy-Passwort", "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", + "Memory limit" : "Speicherlimit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", diff --git a/l10n/de.json b/l10n/de.json index 2f65f944..58fdc17c 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Unlimited" : "Unbegrenzt", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy-Passwort", "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", + "Memory limit" : "Speicherlimit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index bddff359..fb257409 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Unlimited" : "Unbegrenzt", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy-Passwort", "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", + "Memory limit" : "Speicherlimit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 182a3b72..8a589186 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Unlimited" : "Unbegrenzt", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy-Passwort", "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", + "Memory limit" : "Speicherlimit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", diff --git a/l10n/el.js b/l10n/el.js index 8a54353a..b03f546b 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Επιτυχής σύνδεση υπηρεσίας", "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Unlimited" : "Απεριόριστα", "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", "Deploy Daemon" : "πηρεσία Ανάπτυξης", "Default daemon. ExApps will be installed on it" : "Προεπιλεγμένη υπηρεσία. Τα ExApps θα εγκατασταθούν σε αυτό", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "Κωδικός πρόσβασης HaProxy", "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", + "Memory limit" : "Όριο μνήμης", "Additional options" : "Πρόσθετες επιλογές", "Verify connection" : "Επαλήθευση σύνδεσης", "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", diff --git a/l10n/el.json b/l10n/el.json index 2d3aed9c..68ef7c46 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Επιτυχής σύνδεση υπηρεσίας", "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Unlimited" : "Απεριόριστα", "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", "Deploy Daemon" : "πηρεσία Ανάπτυξης", "Default daemon. ExApps will be installed on it" : "Προεπιλεγμένη υπηρεσία. Τα ExApps θα εγκατασταθούν σε αυτό", @@ -71,6 +72,7 @@ "HaProxy password" : "Κωδικός πρόσβασης HaProxy", "GPUs support" : "Υποστήριξη GPUs", "Compute device" : "Συσκευή υπολογισμού", + "Memory limit" : "Όριο μνήμης", "Additional options" : "Πρόσθετες επιλογές", "Verify connection" : "Επαλήθευση σύνδεσης", "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 401d0f2a..9930bda3 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Daemon connection successful", "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", + "Unlimited" : "Unlimited", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy password", "GPUs support" : "GPUs support", "Compute device" : "Compute device", + "Memory limit" : "Memory limit", "Additional options" : "Additional options", "Verify connection" : "Verify connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 4bdfcfe0..da3e2c52 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Daemon connection successful", "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", + "Unlimited" : "Unlimited", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy password", "GPUs support" : "GPUs support", "Compute device" : "Compute device", + "Memory limit" : "Memory limit", "Additional options" : "Additional options", "Verify connection" : "Verify connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", diff --git a/l10n/eo.js b/l10n/eo.js index 8a141d68..f0d880e6 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Forigi", "Edit" : "Modifi", + "Unlimited" : "Senlima", "Name" : "Nomo", "Host" : "Gastigo", "From" : "De", diff --git a/l10n/eo.json b/l10n/eo.json index bcfaf42f..5e0b40b2 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Forigi", "Edit" : "Modifi", + "Unlimited" : "Senlima", "Name" : "Nomo", "Host" : "Gastigo", "From" : "De", diff --git a/l10n/es.js b/l10n/es.js index a1392dd3..63fff4d0 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Conexión a daemon exitosa", "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", + "Unlimited" : "Ilimitado", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "Contraseña de HaProxy", "GPUs support" : "Soporte a GPUs", "Compute device" : "Dispositivo de cómputo", + "Memory limit" : "Límite de memoria", "Additional options" : "Opciones adicionales", "Verify connection" : "Verificar conexión", "Registered Deploy daemons list" : "Lista de daemons de despliegue registrados", diff --git a/l10n/es.json b/l10n/es.json index 927622c7..7450ec21 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Conexión a daemon exitosa", "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", + "Unlimited" : "Ilimitado", "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", @@ -71,6 +72,7 @@ "HaProxy password" : "Contraseña de HaProxy", "GPUs support" : "Soporte a GPUs", "Compute device" : "Dispositivo de cómputo", + "Memory limit" : "Límite de memoria", "Additional options" : "Opciones adicionales", "Verify connection" : "Verificar conexión", "Registered Deploy daemons list" : "Lista de daemons de despliegue registrados", diff --git a/l10n/es_419.js b/l10n/es_419.js index 52e7a5b5..ea5c5927 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Add" : "Guardar", diff --git a/l10n/es_419.json b/l10n/es_419.json index ce63fee5..961a942a 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Add" : "Guardar", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 44bf53b7..5b771a2f 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Eliminar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index 859b23e3..8475c237 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Eliminar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_CL.js b/l10n/es_CL.js index 997c2261..94f51929 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 8fbf65e6..11b0ffad 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_CO.js b/l10n/es_CO.js index 4a65f6f5..4985a05b 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 6b206653..dbff645e 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_CR.js b/l10n/es_CR.js index 3c9e5e11..035c370f 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_CR.json b/l10n/es_CR.json index 5a2f6cd1..f1c464fd 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_DO.js b/l10n/es_DO.js index dcbfc7bf..b921ccee 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_DO.json b/l10n/es_DO.json index 4412119c..ebbfde7f 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index 0a7b2b29..b248ed44 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancelar", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Nextcloud URL" : "URL de Nextcloud", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index e606bcfd..f415e849 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -2,6 +2,7 @@ "Cancel" : "Cancelar", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Nextcloud URL" : "URL de Nextcloud", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index e1c36d93..6b4df996 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_GT.json b/l10n/es_GT.json index 843e78cd..ed501623 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_HN.js b/l10n/es_HN.js index 4a65f6f5..4985a05b 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_HN.json b/l10n/es_HN.json index 6b206653..dbff645e 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 40bf3bc2..c8d58324 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Eliminar", "Default" : "Por omisión", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Deploy Daemon" : "Desplegar demonio", "Name" : "Nombre", "Host" : "Servidor", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index ce8b8c53..6b043d48 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -3,6 +3,7 @@ "Delete" : "Eliminar", "Default" : "Por omisión", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Deploy Daemon" : "Desplegar demonio", "Name" : "Nombre", "Host" : "Servidor", diff --git a/l10n/es_NI.js b/l10n/es_NI.js index 5feeb2fd..34ec05d2 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_NI.json b/l10n/es_NI.json index c258e1ad..ef5cbb20 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PA.js b/l10n/es_PA.js index 5feeb2fd..34ec05d2 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PA.json b/l10n/es_PA.json index c258e1ad..ef5cbb20 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PE.js b/l10n/es_PE.js index 5feeb2fd..34ec05d2 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PE.json b/l10n/es_PE.json index c258e1ad..ef5cbb20 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PR.js b/l10n/es_PR.js index 5feeb2fd..34ec05d2 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PR.json b/l10n/es_PR.json index c258e1ad..ef5cbb20 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PY.js b/l10n/es_PY.js index 5feeb2fd..34ec05d2 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_PY.json b/l10n/es_PY.json index c258e1ad..ef5cbb20 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_SV.js b/l10n/es_SV.js index 4a65f6f5..4985a05b 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_SV.json b/l10n/es_SV.json index 6b206653..dbff645e 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_UY.js b/l10n/es_UY.js index 5feeb2fd..34ec05d2 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/es_UY.json b/l10n/es_UY.json index c258e1ad..ef5cbb20 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Borrar", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 3ffab4bf..cbb58cc1 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -8,6 +8,7 @@ OC.L10N.register( "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", "Edit" : "Redigeeri", + "Unlimited" : "Piiramatult", "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Name" : "Nimi", "Host" : "Host", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 30cbdc09..3e246103 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -6,6 +6,7 @@ "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", "Edit" : "Redigeeri", + "Unlimited" : "Piiramatult", "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Name" : "Nimi", "Host" : "Host", diff --git a/l10n/eu.js b/l10n/eu.js index a9100c38..a6ac6e5d 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -22,6 +22,7 @@ OC.L10N.register( "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Default" : "Lehenetsia", "Edit" : "Aldatu", + "Unlimited" : "Mugagabea", "Deploy Daemon" : "Zabaldu daimona", "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", @@ -33,6 +34,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy pasahitza", "GPUs support" : "GPUen bateragarritasuna", "Compute device" : "Konputazio gailua", + "Memory limit" : "Memoria muga", "Additional options" : "Aukera gehiago", "Verify connection" : "Egiaztatu konexioa", "Register Daemon" : "Erregistratu daimona", diff --git a/l10n/eu.json b/l10n/eu.json index b46c8fe7..77ae37ec 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -20,6 +20,7 @@ "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Default" : "Lehenetsia", "Edit" : "Aldatu", + "Unlimited" : "Mugagabea", "Deploy Daemon" : "Zabaldu daimona", "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", @@ -31,6 +32,7 @@ "HaProxy password" : "HaProxy pasahitza", "GPUs support" : "GPUen bateragarritasuna", "Compute device" : "Konputazio gailua", + "Memory limit" : "Memoria muga", "Additional options" : "Aukera gehiago", "Verify connection" : "Egiaztatu konexioa", "Register Daemon" : "Erregistratu daimona", diff --git a/l10n/fa.js b/l10n/fa.js index 10169f07..20ac1c04 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "حذف", "Default" : "پیش‌فرض", "Edit" : "ویرایش", + "Unlimited" : "نامحدود", "Name" : "نام", "Host" : "میزبان", "Nextcloud URL" : "Nextcloud URL", diff --git a/l10n/fa.json b/l10n/fa.json index 9e36dc9f..5c8df12d 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -3,6 +3,7 @@ "Delete" : "حذف", "Default" : "پیش‌فرض", "Edit" : "ویرایش", + "Unlimited" : "نامحدود", "Name" : "نام", "Host" : "میزبان", "Nextcloud URL" : "Nextcloud URL", diff --git a/l10n/fi.js b/l10n/fi.js index bb94e66f..7a0b4ceb 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -5,9 +5,11 @@ OC.L10N.register( "Delete" : "Poista", "Default" : "Oletus", "Edit" : "Muokkaa", + "Unlimited" : "Rajoittamaton", "Name" : "Nimi", "Host" : "Palvelin", "Nextcloud URL" : "Nextcloudin URL-osoite", + "Memory limit" : "Muistin raja", "Enabled" : "Käytössä", "Remove" : "Poista", "From" : "Lähettäjä", diff --git a/l10n/fi.json b/l10n/fi.json index b25bbf76..ae67410d 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -3,9 +3,11 @@ "Delete" : "Poista", "Default" : "Oletus", "Edit" : "Muokkaa", + "Unlimited" : "Rajoittamaton", "Name" : "Nimi", "Host" : "Palvelin", "Nextcloud URL" : "Nextcloudin URL-osoite", + "Memory limit" : "Muistin raja", "Enabled" : "Käytössä", "Remove" : "Poista", "From" : "Lähettäjä", diff --git a/l10n/fr.js b/l10n/fr.js index ae934653..4550c07f 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -48,6 +48,7 @@ OC.L10N.register( "Daemon connection successful" : "Connexion au Deamon réussie", "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", + "Unlimited" : "Illimité", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", @@ -62,6 +63,7 @@ OC.L10N.register( "HaProxy password" : "Mot de passe HAProxy", "GPUs support" : "Prise en charge des cartes graphiques", "Compute device" : "Equipement de calcul", + "Memory limit" : "Limite de mémoire", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", diff --git a/l10n/fr.json b/l10n/fr.json index fe12488b..48b77305 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -46,6 +46,7 @@ "Daemon connection successful" : "Connexion au Deamon réussie", "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", + "Unlimited" : "Illimité", "Deploy daemon config details" : "Déployer les détails de la configuration du service", "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", @@ -60,6 +61,7 @@ "HaProxy password" : "Mot de passe HAProxy", "GPUs support" : "Prise en charge des cartes graphiques", "Compute device" : "Equipement de calcul", + "Memory limit" : "Limite de mémoire", "Additional options" : "Options supplémentaires", "Verify connection" : "Vérifier la connexion", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", diff --git a/l10n/ga.js b/l10n/ga.js index 24cf1dab..620dd9e4 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "D'éirigh le nasc deamhan", "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", + "Unlimited" : "Gan teorainn", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", diff --git a/l10n/ga.json b/l10n/ga.json index ddb14217..52a8f4c0 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "D'éirigh le nasc deamhan", "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", + "Unlimited" : "Gan teorainn", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", diff --git a/l10n/gl.js b/l10n/gl.js index 8308b88a..4b275608 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Conexión satisfactoria do servizo", "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", + "Unlimited" : "Sen límites", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "Contrasinal de HaProxy", "GPUs support" : "Compatibilidade con GPU", "Compute device" : "Dispositivo de computación", + "Memory limit" : "Límite de memoria", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", diff --git a/l10n/gl.json b/l10n/gl.json index 2535bf7a..b2d7ded4 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Conexión satisfactoria do servizo", "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", + "Unlimited" : "Sen límites", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", @@ -71,6 +72,7 @@ "HaProxy password" : "Contrasinal de HaProxy", "GPUs support" : "Compatibilidade con GPU", "Compute device" : "Dispositivo de computación", + "Memory limit" : "Límite de memoria", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", diff --git a/l10n/he.js b/l10n/he.js index a4eeb01c..5e2c314a 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "מחיקה", "Default" : "ברירת מחדל", "Edit" : "עריכה", + "Unlimited" : "ללא הגבלה", "Name" : "שם", "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", diff --git a/l10n/he.json b/l10n/he.json index 5507b6d7..fcc0fa6b 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -3,6 +3,7 @@ "Delete" : "מחיקה", "Default" : "ברירת מחדל", "Edit" : "עריכה", + "Unlimited" : "ללא הגבלה", "Name" : "שם", "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", diff --git a/l10n/hr.js b/l10n/hr.js index 27f860d3..cc36a585 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Izbriši", "Default" : "Zadani", "Edit" : "Uredi", + "Unlimited" : "Neograničeno", "Name" : "Naziv", "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", diff --git a/l10n/hr.json b/l10n/hr.json index 33db4a5c..6585da43 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -3,6 +3,7 @@ "Delete" : "Izbriši", "Default" : "Zadani", "Edit" : "Uredi", + "Unlimited" : "Neograničeno", "Name" : "Naziv", "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", diff --git a/l10n/hu.js b/l10n/hu.js index a53cd630..cc502ad4 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -6,9 +6,11 @@ OC.L10N.register( "Password confirmation failed" : "A jelszó megerősítése nem sikerült", "Default" : "Alapértelmezett", "Edit" : "Szerkesztés", + "Unlimited" : "Korlátlan", "Name" : "Név", "Host" : "Kiszolgáló", "Nextcloud URL" : "Nextcloud URL", + "Memory limit" : "Memória korlát", "Enabled" : "Engedélyezve", "Remove" : "Eltávolítás", "From" : "Feladó", diff --git a/l10n/hu.json b/l10n/hu.json index 06af3634..08262ba9 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -4,9 +4,11 @@ "Password confirmation failed" : "A jelszó megerősítése nem sikerült", "Default" : "Alapértelmezett", "Edit" : "Szerkesztés", + "Unlimited" : "Korlátlan", "Name" : "Név", "Host" : "Kiszolgáló", "Nextcloud URL" : "Nextcloud URL", + "Memory limit" : "Memória korlát", "Enabled" : "Engedélyezve", "Remove" : "Eltávolítás", "From" : "Feladó", diff --git a/l10n/ia.js b/l10n/ia.js index 199d7dfe..d99adff8 100644 --- a/l10n/ia.js +++ b/l10n/ia.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Deler", "Edit" : "Modificar", + "Unlimited" : "Ilimitate", "Host" : "Hospite", "Enabled" : "Activate", "Confirm" : "Confirmar", diff --git a/l10n/ia.json b/l10n/ia.json index 8db87f58..7c4cd142 100644 --- a/l10n/ia.json +++ b/l10n/ia.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Deler", "Edit" : "Modificar", + "Unlimited" : "Ilimitate", "Host" : "Hospite", "Enabled" : "Activate", "Confirm" : "Confirmar", diff --git a/l10n/id.js b/l10n/id.js index 45b0c03b..3e6a3316 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Hapus", "Default" : "Default", "Edit" : "Sunting", + "Unlimited" : "Tak terbatas", "Name" : "Nama", "Host" : "Host", "Enabled" : "Diaktifkan", diff --git a/l10n/id.json b/l10n/id.json index 8a2ec82f..2d44f42e 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -3,6 +3,7 @@ "Delete" : "Hapus", "Default" : "Default", "Edit" : "Sunting", + "Unlimited" : "Tak terbatas", "Name" : "Nama", "Host" : "Host", "Enabled" : "Diaktifkan", diff --git a/l10n/is.js b/l10n/is.js index d2774dc1..6a2f6d2c 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Eyða", "Default" : "Sjálfgefið", "Edit" : "Breyta", + "Unlimited" : "Ótakmarkað", "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Name" : "Heiti", "Host" : "Þjónn", diff --git a/l10n/is.json b/l10n/is.json index 6fae5812..b7f0e99a 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -3,6 +3,7 @@ "Delete" : "Eyða", "Default" : "Sjálfgefið", "Edit" : "Breyta", + "Unlimited" : "Ótakmarkað", "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Name" : "Heiti", "Host" : "Þjónn", diff --git a/l10n/it.js b/l10n/it.js index 168cf487..05304138 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -5,9 +5,11 @@ OC.L10N.register( "Delete" : "Elimina", "Default" : "Predefinito", "Edit" : "Modifica", + "Unlimited" : "Illimitata", "Name" : "Nome", "Host" : "Host", "Nextcloud URL" : "URL Nextcloud", + "Memory limit" : "Limite di memoria", "Enabled" : "Abilitata", "Remove" : "Rimuovi", "From" : "Da", diff --git a/l10n/it.json b/l10n/it.json index 5ce5fe60..5ff13b0e 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -3,9 +3,11 @@ "Delete" : "Elimina", "Default" : "Predefinito", "Edit" : "Modifica", + "Unlimited" : "Illimitata", "Name" : "Nome", "Host" : "Host", "Nextcloud URL" : "URL Nextcloud", + "Memory limit" : "Limite di memoria", "Enabled" : "Abilitata", "Remove" : "Rimuovi", "From" : "Da", diff --git a/l10n/ja.js b/l10n/ja.js index bdcdfd7c..5d07d59c 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -54,6 +54,7 @@ OC.L10N.register( "Test deploy" : "テストデプロイ", "Docker registries" : "Dockerレジストリ", "Edit" : "編集", + "Unlimited" : "無制限", "Deploy daemon config details" : "デプロイデーモンの設定詳細", "Deploy Daemon" : "デーモンのデプロイ", "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", @@ -69,6 +70,7 @@ OC.L10N.register( "HaProxy password" : "HaProxyパスワード", "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", + "Memory limit" : "メモリ制限", "Additional options" : "追加オプション", "Verify connection" : "接続の確認", "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", diff --git a/l10n/ja.json b/l10n/ja.json index 1d1cae9b..9269dcef 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -52,6 +52,7 @@ "Test deploy" : "テストデプロイ", "Docker registries" : "Dockerレジストリ", "Edit" : "編集", + "Unlimited" : "無制限", "Deploy daemon config details" : "デプロイデーモンの設定詳細", "Deploy Daemon" : "デーモンのデプロイ", "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", @@ -67,6 +68,7 @@ "HaProxy password" : "HaProxyパスワード", "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", + "Memory limit" : "メモリ制限", "Additional options" : "追加オプション", "Verify connection" : "接続の確認", "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", diff --git a/l10n/ka.js b/l10n/ka.js index d09e9ce7..558c7543 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Delete", "Default" : "Default", "Edit" : "Edit", + "Unlimited" : "Unlimited", "Name" : "Name", "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", diff --git a/l10n/ka.json b/l10n/ka.json index e5f28f9e..abd3f083 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -3,6 +3,7 @@ "Delete" : "Delete", "Default" : "Default", "Edit" : "Edit", + "Unlimited" : "Unlimited", "Name" : "Name", "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index c7e3e91e..d6076819 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "წაშლა", "Default" : "საწყისი პარამეტრები", "Edit" : "შეცვლა", + "Unlimited" : "ულიმიტო", "Name" : "სახელი", "Host" : "ჰოსტი", "Enabled" : "მოქმედია", diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 5375acb0..5b80f23e 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -3,6 +3,7 @@ "Delete" : "წაშლა", "Default" : "საწყისი პარამეტრები", "Edit" : "შეცვლა", + "Unlimited" : "ულიმიტო", "Name" : "სახელი", "Host" : "ჰოსტი", "Enabled" : "მოქმედია", diff --git a/l10n/km.js b/l10n/km.js index ad8b3b17..c5c7a57e 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "លើកលែង", "Delete" : "លុប", "Edit" : "កែប្រែ", + "Unlimited" : "មិន​កំណត់", "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", diff --git a/l10n/km.json b/l10n/km.json index 9b5c7e2b..3009ccf3 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -2,6 +2,7 @@ "Cancel" : "លើកលែង", "Delete" : "លុប", "Edit" : "កែប្រែ", + "Unlimited" : "មិន​កំណត់", "Name" : "ឈ្មោះ", "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", diff --git a/l10n/lo.js b/l10n/lo.js deleted file mode 100644 index 5b64404f..00000000 --- a/l10n/lo.js +++ /dev/null @@ -1,17 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "ຍົກເລີກ", - "Delete" : "ລຶບ", - "Default" : "ເລີ່ມຕົ້ນ", - "Edit" : "ແກ້ໄຂ", - "Name" : "ຊື່", - "Remove" : "ຍ້າຍອອກ", - "Confirm" : "ຢືນຢັນ", - "Save" : "ບັນທຶກ", - "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Type" : "ພິມ", - "Details" : "ລາຍລະອຽດ", - "Disable" : "ປິດ" -}, -"nplurals=1; plural=0;"); diff --git a/l10n/lo.json b/l10n/lo.json deleted file mode 100644 index 30dd8844..00000000 --- a/l10n/lo.json +++ /dev/null @@ -1,15 +0,0 @@ -{ "translations": { - "Cancel" : "ຍົກເລີກ", - "Delete" : "ລຶບ", - "Default" : "ເລີ່ມຕົ້ນ", - "Edit" : "ແກ້ໄຂ", - "Name" : "ຊື່", - "Remove" : "ຍ້າຍອອກ", - "Confirm" : "ຢືນຢັນ", - "Save" : "ບັນທຶກ", - "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Type" : "ພິມ", - "Details" : "ລາຍລະອຽດ", - "Disable" : "ປິດ" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 88b14b00..999a130c 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -6,6 +6,7 @@ OC.L10N.register( "Delete" : "Ištrinti", "Default" : "Numatytasis", "Edit" : "Taisyti", + "Unlimited" : "Neribotai", "Name" : "Pavadinimas", "Protocol" : "Protokolas", "Host" : "Serveris", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index dff0a27d..bb71f28f 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -4,6 +4,7 @@ "Delete" : "Ištrinti", "Default" : "Numatytasis", "Edit" : "Taisyti", + "Unlimited" : "Neribotai", "Name" : "Pavadinimas", "Protocol" : "Protokolas", "Host" : "Serveris", diff --git a/l10n/lv.js b/l10n/lv.js index 8d700e9a..373b57a1 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -4,8 +4,10 @@ OC.L10N.register( "Cancel" : "Atcelt", "Delete" : "Izdzēst", "Edit" : "Labot", + "Unlimited" : "Neierobežota", "Name" : "Nosaukums", "Host" : "Resursdators", + "Memory limit" : "Atmiņas limits", "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", "Remove" : "Noņemt", diff --git a/l10n/lv.json b/l10n/lv.json index 7d705cf7..a800f2bc 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -2,8 +2,10 @@ "Cancel" : "Atcelt", "Delete" : "Izdzēst", "Edit" : "Labot", + "Unlimited" : "Neierobežota", "Name" : "Nosaukums", "Host" : "Resursdators", + "Memory limit" : "Atmiņas limits", "Enabled" : "Iespējots", "More info" : "Vairāk informācijas", "Remove" : "Noņemt", diff --git a/l10n/mk.js b/l10n/mk.js index 2383447b..d3555953 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -5,9 +5,11 @@ OC.L10N.register( "Delete" : "Избриши", "Default" : "Предефиниран", "Edit" : "Уреди", + "Unlimited" : "Неограничено", "Name" : "Име", "Host" : "Домаќин", "Nextcloud URL" : "Nextcloud URL", + "Memory limit" : "Лимит на меморијата", "Enabled" : "Овозможено", "Remove" : "Отстрани ", "From" : "Од", diff --git a/l10n/mk.json b/l10n/mk.json index b4445c96..fc64628f 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -3,9 +3,11 @@ "Delete" : "Избриши", "Default" : "Предефиниран", "Edit" : "Уреди", + "Unlimited" : "Неограничено", "Name" : "Име", "Host" : "Домаќин", "Nextcloud URL" : "Nextcloud URL", + "Memory limit" : "Лимит на меморијата", "Enabled" : "Овозможено", "Remove" : "Отстрани ", "From" : "Од", diff --git a/l10n/nb.js b/l10n/nb.js index 3834248d..b2573a53 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -47,6 +47,7 @@ OC.L10N.register( "Daemon connection successful" : "Vellykket daemon-forbindelse", "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", + "Unlimited" : "Ubegrenset", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", @@ -61,6 +62,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy-passord", "GPUs support" : "Støtte for GPUer", "Compute device" : "Beregningsenhet", + "Memory limit" : "Minnegrense", "Additional options" : "Ytterligere alternativer", "Verify connection" : "Verifiser forbindelse", "Registered Deploy daemons list" : "Registrert liste over distribuerings-daemoner", diff --git a/l10n/nb.json b/l10n/nb.json index 1d849885..c511bb5c 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -45,6 +45,7 @@ "Daemon connection successful" : "Vellykket daemon-forbindelse", "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", + "Unlimited" : "Ubegrenset", "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", @@ -59,6 +60,7 @@ "HaProxy password" : "HaProxy-passord", "GPUs support" : "Støtte for GPUer", "Compute device" : "Beregningsenhet", + "Memory limit" : "Minnegrense", "Additional options" : "Ytterligere alternativer", "Verify connection" : "Verifiser forbindelse", "Registered Deploy daemons list" : "Registrert liste over distribuerings-daemoner", diff --git a/l10n/nl.js b/l10n/nl.js index c8d78673..ba19cff9 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -57,6 +57,7 @@ OC.L10N.register( "Daemon connection successful" : "Verbinding maken met Daemon gelukt", "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", + "Unlimited" : "Ongelimiteerd", "Deploy daemon config details" : "Deploy Daemon configuratie details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", @@ -72,6 +73,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy wachtwoord", "GPUs support" : "GPUs support", "Compute device" : "Compute apparaat", + "Memory limit" : "Geheugenlimiet", "Additional options" : "Additionele opties", "Verify connection" : "Verifieer verbinding", "Registered Deploy daemons list" : "Lijst van geregistreerde Deploy Daemons", diff --git a/l10n/nl.json b/l10n/nl.json index 4c29ef1f..ed0ecfc8 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -55,6 +55,7 @@ "Daemon connection successful" : "Verbinding maken met Daemon gelukt", "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", + "Unlimited" : "Ongelimiteerd", "Deploy daemon config details" : "Deploy Daemon configuratie details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", @@ -70,6 +71,7 @@ "HaProxy password" : "HaProxy wachtwoord", "GPUs support" : "GPUs support", "Compute device" : "Compute apparaat", + "Memory limit" : "Geheugenlimiet", "Additional options" : "Additionele opties", "Verify connection" : "Verifieer verbinding", "Registered Deploy daemons list" : "Lijst van geregistreerde Deploy Daemons", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index 73692f78..afeaf29b 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Slett", "Edit" : "Rediger", + "Unlimited" : "Ubegrensa", "Name" : "Namn", "Host" : "Tenar", "Disabled" : "Deaktivert", diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index 7b601cc7..da134478 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Slett", "Edit" : "Rediger", + "Unlimited" : "Ubegrensa", "Name" : "Namn", "Host" : "Tenar", "Disabled" : "Deaktivert", diff --git a/l10n/oc.js b/l10n/oc.js index e9085fe1..cfefdd83 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Anullar", "Delete" : "Suprimir", "Edit" : "Modificar", + "Unlimited" : "Illimitat", "Name" : "Nom", "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", diff --git a/l10n/oc.json b/l10n/oc.json index 8a52ab7c..c8849d08 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -2,6 +2,7 @@ "Cancel" : "Anullar", "Delete" : "Suprimir", "Edit" : "Modificar", + "Unlimited" : "Illimitat", "Name" : "Nom", "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", diff --git a/l10n/pl.js b/l10n/pl.js index e2a0d695..829d5719 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Połączenie z demonem powiodło się", "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", + "Unlimited" : "Bez limitu", "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", "Deploy Daemon" : "Uruchom demona", "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "Hasło HaProxy", "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", + "Memory limit" : "Limit pamięci", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", diff --git a/l10n/pl.json b/l10n/pl.json index 742a3310..679340a1 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Połączenie z demonem powiodło się", "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", + "Unlimited" : "Bez limitu", "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", "Deploy Daemon" : "Uruchom demona", "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", @@ -71,6 +72,7 @@ "HaProxy password" : "Hasło HaProxy", "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", + "Memory limit" : "Limit pamięci", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 2d242aa7..5e6a9a56 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Conexão do daemon bem-sucedida", "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", + "Unlimited" : "Ilimitado", "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "Senha do HaProxy", "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", + "Memory limit" : "Limite de memória", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 2f3223e6..945d933a 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Conexão do daemon bem-sucedida", "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", + "Unlimited" : "Ilimitado", "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -71,6 +72,7 @@ "HaProxy password" : "Senha do HaProxy", "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", + "Memory limit" : "Limite de memória", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index cfaabdd3..6d6d4388 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Eliminar", "Default" : "Predefinido", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nome", "Host" : "Anfitrião", "Enabled" : "Ativado", diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 3cde9ad5..3116b053 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -3,6 +3,7 @@ "Delete" : "Eliminar", "Default" : "Predefinido", "Edit" : "Editar", + "Unlimited" : "Ilimitado", "Name" : "Nome", "Host" : "Anfitrião", "Enabled" : "Ativado", diff --git a/l10n/ro.js b/l10n/ro.js index 9b648593..382805bc 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Șterge", "Default" : "Implicită", "Edit" : "Editează", + "Unlimited" : "Nelimitată", "Name" : "Nume", "Host" : "Gazdă", "Enabled" : "Activat", diff --git a/l10n/ro.json b/l10n/ro.json index 7f6ad56b..c02b6ff1 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -3,6 +3,7 @@ "Delete" : "Șterge", "Default" : "Implicită", "Edit" : "Editează", + "Unlimited" : "Nelimitată", "Name" : "Nume", "Host" : "Gazdă", "Enabled" : "Activat", diff --git a/l10n/ru.js b/l10n/ru.js index a4ed389b..ac708c0c 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Служба успешно установлена", "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", + "Unlimited" : "Неограничено", "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy пароль ", "GPUs support" : "Поддержка графических процессоров", "Compute device" : "Вычислительное устройство", + "Memory limit" : "Лимит памяти", "Additional options" : "Дополнительные возможности", "Verify connection" : "Проверить соединение", "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", diff --git a/l10n/ru.json b/l10n/ru.json index 02d6efb4..e318330e 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Служба успешно установлена", "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", + "Unlimited" : "Неограничено", "Deploy daemon config details" : "Подробности конфигурации службы публикации", "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy пароль ", "GPUs support" : "Поддержка графических процессоров", "Compute device" : "Вычислительное устройство", + "Memory limit" : "Лимит памяти", "Additional options" : "Дополнительные возможности", "Verify connection" : "Проверить соединение", "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", diff --git a/l10n/si.js b/l10n/si.js index 7e0e34c8..e9f7037d 100644 --- a/l10n/si.js +++ b/l10n/si.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "අවලංගු", "Edit" : "සංස්කරණය", + "Unlimited" : "අසීමිත", "Name" : "නම", "Host" : " ධාරකය", "Enabled" : "සබල කර ඇත", diff --git a/l10n/si.json b/l10n/si.json index c82159b8..51cd66cc 100644 --- a/l10n/si.json +++ b/l10n/si.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "අවලංගු", "Edit" : "සංස්කරණය", + "Unlimited" : "අසීමිත", "Name" : "නම", "Host" : " ධාරකය", "Enabled" : "සබල කර ඇත", diff --git a/l10n/sk.js b/l10n/sk.js index 0c9d2900..a14e2765 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -54,6 +54,7 @@ OC.L10N.register( "Daemon connection successful" : "Pripojenie démona bolo úspešné", "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", + "Unlimited" : "Neobmedzené", "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", @@ -68,6 +69,7 @@ OC.L10N.register( "HaProxy password" : "Heslo HaProxy", "GPUs support" : "Podpora GPU", "Compute device" : "Výpočetné zariadenie", + "Memory limit" : "Obmedzenie pamäte", "Additional options" : "Ďalšie nastavenia", "Verify connection" : "Overiť spojenie", "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", diff --git a/l10n/sk.json b/l10n/sk.json index 38fb9b9f..fffd17de 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -52,6 +52,7 @@ "Daemon connection successful" : "Pripojenie démona bolo úspešné", "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", + "Unlimited" : "Neobmedzené", "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", @@ -66,6 +67,7 @@ "HaProxy password" : "Heslo HaProxy", "GPUs support" : "Podpora GPU", "Compute device" : "Výpočetné zariadenie", + "Memory limit" : "Obmedzenie pamäte", "Additional options" : "Ďalšie nastavenia", "Verify connection" : "Overiť spojenie", "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", diff --git a/l10n/sl.js b/l10n/sl.js index 29ef6f60..a25fe5c7 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -5,9 +5,11 @@ OC.L10N.register( "Delete" : "Izbriši", "Default" : "privzeto", "Edit" : "Uredi", + "Unlimited" : "Neomejeno", "Name" : "Ime", "Host" : "Gostitelj", "Nextcloud URL" : "Naslov URL Nextcloud", + "Memory limit" : "Omejitev pomnilnika", "Enabled" : "Omogočeno", "Remove" : "Odstrani", "From" : "Od", diff --git a/l10n/sl.json b/l10n/sl.json index 8c13b020..ac4f4bf0 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -3,9 +3,11 @@ "Delete" : "Izbriši", "Default" : "privzeto", "Edit" : "Uredi", + "Unlimited" : "Neomejeno", "Name" : "Ime", "Host" : "Gostitelj", "Nextcloud URL" : "Naslov URL Nextcloud", + "Memory limit" : "Omejitev pomnilnika", "Enabled" : "Omogočeno", "Remove" : "Odstrani", "From" : "Od", diff --git a/l10n/sq.js b/l10n/sq.js index 72387e2b..69d94856 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -5,6 +5,7 @@ OC.L10N.register( "Delete" : "Fshi", "Default" : "Paraprake", "Edit" : "Përpuno", + "Unlimited" : "E palimituar", "Name" : "Emër", "Host" : "Strehë", "Enabled" : "E aktivizuar", diff --git a/l10n/sq.json b/l10n/sq.json index 0179ee39..ca5c8196 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -3,6 +3,7 @@ "Delete" : "Fshi", "Default" : "Paraprake", "Edit" : "Përpuno", + "Unlimited" : "E palimituar", "Name" : "Emër", "Host" : "Strehë", "Enabled" : "E aktivizuar", diff --git a/l10n/sr.js b/l10n/sr.js index aa9d01e1..46f26eff 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Веза са даемоном је успела", "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", + "Unlimited" : "Неограничено", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy лозинка", "GPUs support" : "Подршка за GPU", "Compute device" : "Рачунарски уређај", + "Memory limit" : "Ограничење меморије", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", diff --git a/l10n/sr.json b/l10n/sr.json index 304d3db4..2148094d 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Веза са даемоном је успела", "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", + "Unlimited" : "Неограничено", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy лозинка", "GPUs support" : "Подршка за GPU", "Compute device" : "Рачунарски уређај", + "Memory limit" : "Ограничење меморије", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", diff --git a/l10n/sv.js b/l10n/sv.js index 4fa44bb7..767c2363 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -6,9 +6,11 @@ OC.L10N.register( "Delete" : "Radera", "Default" : "Förvald", "Edit" : "Redigera", + "Unlimited" : "Obegränsat", "Name" : "Namn", "Host" : "Server", "Nextcloud URL" : "Nextcloud-URL", + "Memory limit" : "Minnesgräns", "Enabled" : "Aktiverad", "Remove" : "Ta bort", "From" : "Från", diff --git a/l10n/sv.json b/l10n/sv.json index 2044d0bc..8a36300b 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -4,9 +4,11 @@ "Delete" : "Radera", "Default" : "Förvald", "Edit" : "Redigera", + "Unlimited" : "Obegränsat", "Name" : "Namn", "Host" : "Server", "Nextcloud URL" : "Nextcloud-URL", + "Memory limit" : "Minnesgräns", "Enabled" : "Aktiverad", "Remove" : "Ta bort", "From" : "Från", diff --git a/l10n/sw.js b/l10n/sw.js index f9886842..cd8986d8 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", + "Unlimited" : "Isiyo na kikomo", "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", "Deploy Daemon" : "Tumia Daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", diff --git a/l10n/sw.json b/l10n/sw.json index b12d58c3..58baa900 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", + "Unlimited" : "Isiyo na kikomo", "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", "Deploy Daemon" : "Tumia Daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", diff --git a/l10n/th.js b/l10n/th.js index ed48c664..95e56184 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "ยกเลิก", "Delete" : "ลบ", "Edit" : "แก้ไข", + "Unlimited" : "ไม่จำกัด", "Name" : "ชื่อ", "Host" : "โฮสต์", "Enabled" : "เปิดใช้งาน", diff --git a/l10n/th.json b/l10n/th.json index be2a7969..af472380 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -2,6 +2,7 @@ "Cancel" : "ยกเลิก", "Delete" : "ลบ", "Edit" : "แก้ไข", + "Unlimited" : "ไม่จำกัด", "Name" : "ชื่อ", "Host" : "โฮสต์", "Enabled" : "เปิดใช้งาน", diff --git a/l10n/tr.js b/l10n/tr.js index 429df795..f23de439 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", + "Unlimited" : "Sınırsız", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy parolası", "GPUs support" : "Grafik işlemci desteği", "Compute device" : "Hesaplama aygıtı", + "Memory limit" : "Bellek sınırı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", diff --git a/l10n/tr.json b/l10n/tr.json index bbd6cd3c..f37d69ec 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", + "Unlimited" : "Sınırsız", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy parolası", "GPUs support" : "Grafik işlemci desteği", "Compute device" : "Hesaplama aygıtı", + "Memory limit" : "Bellek sınırı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", diff --git a/l10n/ug.js b/l10n/ug.js index 3ac82f4f..0dd1c5cb 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -48,6 +48,7 @@ OC.L10N.register( "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Unlimited" : "چەكسىز", "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", diff --git a/l10n/ug.json b/l10n/ug.json index 644ccb2a..885c39eb 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -46,6 +46,7 @@ "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Unlimited" : "چەكسىز", "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", diff --git a/l10n/uk.js b/l10n/uk.js index cf56f087..bd339710 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "Підключення демона виконано успішно", "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", + "Unlimited" : "Необмежено", "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", "Deploy Daemon" : "Розгортання демона", "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "Пароль HaProxy", "GPUs support" : "Підтримка GPU", "Compute device" : "Обчислити пристрій", + "Memory limit" : "Ліміт пам'яті", "Additional options" : "Додаткові опції", "Verify connection" : "Перевірте з'єднання", "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", diff --git a/l10n/uk.json b/l10n/uk.json index 500b77e7..9e7bdc51 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "Підключення демона виконано успішно", "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", + "Unlimited" : "Необмежено", "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", "Deploy Daemon" : "Розгортання демона", "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", @@ -71,6 +72,7 @@ "HaProxy password" : "Пароль HaProxy", "GPUs support" : "Підтримка GPU", "Compute device" : "Обчислити пристрій", + "Memory limit" : "Ліміт пам'яті", "Additional options" : "Додаткові опції", "Verify connection" : "Перевірте з'єднання", "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", diff --git a/l10n/uz.js b/l10n/uz.js index fe0eafb0..82f2acc9 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -6,6 +6,7 @@ OC.L10N.register( "Password confirmation failed" : "Parol tasdiqlanmadi", "Default" : "Standart", "Edit" : "Tahrirlash", + "Unlimited" : "Unlimited", "Name" : "Name", "Remove" : "O'chirish", "From" : "Dan", diff --git a/l10n/uz.json b/l10n/uz.json index 89d4f0fa..7945661f 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -4,6 +4,7 @@ "Password confirmation failed" : "Parol tasdiqlanmadi", "Default" : "Standart", "Edit" : "Tahrirlash", + "Unlimited" : "Unlimited", "Name" : "Name", "Remove" : "O'chirish", "From" : "Dan", diff --git a/l10n/vi.js b/l10n/vi.js index 00fcb855..bca9d739 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Hủy", "Delete" : "Xóa", "Edit" : "Chỉnh sửa", + "Unlimited" : "Không giới hạn", "Name" : "Tên", "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", diff --git a/l10n/vi.json b/l10n/vi.json index 7d291435..830e65f9 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -2,6 +2,7 @@ "Cancel" : "Hủy", "Delete" : "Xóa", "Edit" : "Chỉnh sửa", + "Unlimited" : "Không giới hạn", "Name" : "Tên", "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 9b54c307..0a5b7f30 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -28,12 +28,14 @@ OC.L10N.register( "Delete" : "删除", "Default" : "默认", "Edit" : "编辑", + "Unlimited" : "无限制", "Deploy Daemon" : "部署守护进程", "Name" : "名称", "Host" : "主机", "Nextcloud URL" : "Nextcloud URL ", "GPUs support" : "GPU 支持", "Compute device" : "计算设备", + "Memory limit" : "内存限制", "Registered Deploy daemons list" : "已注册的部署守护进程列表", "No Deploy daemons configured" : "没有部署守护进程配置", "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index c0c0df60..6e095932 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -26,12 +26,14 @@ "Delete" : "删除", "Default" : "默认", "Edit" : "编辑", + "Unlimited" : "无限制", "Deploy Daemon" : "部署守护进程", "Name" : "名称", "Host" : "主机", "Nextcloud URL" : "Nextcloud URL ", "GPUs support" : "GPU 支持", "Compute device" : "计算设备", + "Memory limit" : "内存限制", "Registered Deploy daemons list" : "已注册的部署守护进程列表", "No Deploy daemons configured" : "没有部署守护进程配置", "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 62d3256c..994fe1c6 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "幕後程式連線成功", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Unlimited" : "無限制", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy 密碼", "GPUs support" : "GPUs 支援", "Compute device" : "計算裝置", + "Memory limit" : "記憶體限制", "Additional options" : "附加選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index e76d40c6..5f51ee81 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "幕後程式連線成功", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Unlimited" : "無限制", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy 密碼", "GPUs support" : "GPUs 支援", "Compute device" : "計算裝置", + "Memory limit" : "記憶體限制", "Additional options" : "附加選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 40183f0c..89244ddd 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -58,6 +58,7 @@ OC.L10N.register( "Daemon connection successful" : "幕後程式連線成功", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Unlimited" : "無限制", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", @@ -73,6 +74,7 @@ OC.L10N.register( "HaProxy password" : "HaProxy 密碼", "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", + "Memory limit" : "記憶體限制", "Additional options" : "額外選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 16008286..3e2ed242 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -56,6 +56,7 @@ "Daemon connection successful" : "幕後程式連線成功", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Unlimited" : "無限制", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", @@ -71,6 +72,7 @@ "HaProxy password" : "HaProxy 密碼", "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", + "Memory limit" : "記憶體限制", "Additional options" : "額外選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", From 24ae2e000378605c734a87410a8ca43d9a635328 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 4 Oct 2025 00:20:18 +0000 Subject: [PATCH 199/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/af.js | 1 + l10n/af.json | 1 + l10n/ar.js | 1 + l10n/ar.json | 1 + l10n/ast.js | 1 + l10n/ast.json | 1 + l10n/az.js | 1 + l10n/az.json | 1 + l10n/be.js | 2 ++ l10n/be.json | 2 ++ l10n/bg.js | 2 ++ l10n/bg.json | 2 ++ l10n/bn_BD.js | 1 + l10n/bn_BD.json | 1 + l10n/br.js | 1 + l10n/br.json | 1 + l10n/bs.js | 1 + l10n/bs.json | 1 + l10n/ca.js | 2 ++ l10n/ca.json | 2 ++ l10n/de.js | 11 +++++++++++ l10n/de.json | 11 +++++++++++ l10n/de_DE.js | 11 +++++++++++ l10n/de_DE.json | 11 +++++++++++ l10n/pl.js | 11 +++++++++++ l10n/pl.json | 11 +++++++++++ l10n/pt_BR.js | 9 +++++++++ l10n/pt_BR.json | 9 +++++++++ l10n/sr@latin.js | 17 ----------------- l10n/sr@latin.json | 15 --------------- l10n/zh_TW.js | 11 +++++++++++ l10n/zh_TW.json | 11 +++++++++++ 32 files changed, 132 insertions(+), 32 deletions(-) delete mode 100644 l10n/sr@latin.js delete mode 100644 l10n/sr@latin.json diff --git a/l10n/af.js b/l10n/af.js index 4527cf25..be516c3c 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Cancel" : "Cancel", "Delete" : "Skrap", + "Unlimited" : "Onbeperkte", "Host" : "Gasheer", "From" : "Van", "To" : "Aan", diff --git a/l10n/af.json b/l10n/af.json index 3456ab55..7373b817 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -1,6 +1,7 @@ { "translations": { "Cancel" : "Cancel", "Delete" : "Skrap", + "Unlimited" : "Onbeperkte", "Host" : "Gasheer", "From" : "Van", "To" : "Aan", diff --git a/l10n/ar.js b/l10n/ar.js index d69bd7c6..280e3195 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -54,6 +54,7 @@ OC.L10N.register( "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", + "Unlimited" : "غير محدود", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", diff --git a/l10n/ar.json b/l10n/ar.json index d938496e..221391d5 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -52,6 +52,7 @@ "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", + "Unlimited" : "غير محدود", "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", diff --git a/l10n/ast.js b/l10n/ast.js index ffa2154d..9a5359e6 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -16,6 +16,7 @@ OC.L10N.register( "Set as default" : "Predeterminar", "Edit" : "Editar", "Daemon connection successful" : "La conexón del degorriu foi correuta", + "Unlimited" : "Ensin llende", "Name" : "Nome", "Protocol" : "Protocolu", "Host" : "Agospiador", diff --git a/l10n/ast.json b/l10n/ast.json index 81efad87..1ae488e3 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -14,6 +14,7 @@ "Set as default" : "Predeterminar", "Edit" : "Editar", "Daemon connection successful" : "La conexón del degorriu foi correuta", + "Unlimited" : "Ensin llende", "Name" : "Nome", "Protocol" : "Protocolu", "Host" : "Agospiador", diff --git a/l10n/az.js b/l10n/az.js index 0bfd60b3..70dd0770 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Cancel", "Delete" : "Sil", "Edit" : "Dəyişiklik et", + "Unlimited" : "Limitsiz", "Name" : "Ad", "Host" : "Şəbəkədə ünvan", "Enabled" : "İşə salınıb", diff --git a/l10n/az.json b/l10n/az.json index 31e95e66..619776b9 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -2,6 +2,7 @@ "Cancel" : "Cancel", "Delete" : "Sil", "Edit" : "Dəyişiklik et", + "Unlimited" : "Limitsiz", "Name" : "Ad", "Host" : "Şəbəkədə ünvan", "Enabled" : "İşə salınıb", diff --git a/l10n/be.js b/l10n/be.js index 74e44504..2c2156bc 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -5,6 +5,8 @@ OC.L10N.register( "Delete" : "Выдаліць", "Default" : "Прадвызначаныя", "Edit" : "Рэдагаваць", + "1 CPU" : "1 працэсар", + "{cpus} CPUs" : "{cpus} працэсары(-аў)", "Name" : "Назва", "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", diff --git a/l10n/be.json b/l10n/be.json index 9cfb877f..064662d9 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -3,6 +3,8 @@ "Delete" : "Выдаліць", "Default" : "Прадвызначаныя", "Edit" : "Рэдагаваць", + "1 CPU" : "1 працэсар", + "{cpus} CPUs" : "{cpus} працэсары(-аў)", "Name" : "Назва", "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", diff --git a/l10n/bg.js b/l10n/bg.js index 1783e74e..e9a427d6 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -5,9 +5,11 @@ OC.L10N.register( "Delete" : "Изтриване", "Default" : "По подразбиране", "Edit" : "Редактиране", + "Unlimited" : "Неограничено", "Name" : "Име", "Host" : "Хост", "Nextcloud URL" : "URL адрес на Nextcloud", + "Memory limit" : "Лимит на паметта", "Enabled" : "Включено", "Remove" : "Премахване", "From" : "От", diff --git a/l10n/bg.json b/l10n/bg.json index e45fb62f..796e2aa3 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -3,9 +3,11 @@ "Delete" : "Изтриване", "Default" : "По подразбиране", "Edit" : "Редактиране", + "Unlimited" : "Неограничено", "Name" : "Име", "Host" : "Хост", "Nextcloud URL" : "URL адрес на Nextcloud", + "Memory limit" : "Лимит на паметта", "Enabled" : "Включено", "Remove" : "Премахване", "From" : "От", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index 8efd4c20..59e1f519 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "বাতিল করুন", "Delete" : "মুছে", "Edit" : "সম্পাদনা", + "Unlimited" : "অসীম", "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index 1a970d70..e8330f61 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -2,6 +2,7 @@ "Cancel" : "বাতিল করুন", "Delete" : "মুছে", "Edit" : "সম্পাদনা", + "Unlimited" : "অসীম", "Name" : "নাম", "Host" : "হোস্ট", "Enabled" : "কার্যকর", diff --git a/l10n/br.js b/l10n/br.js index 1bb49ec2..59ff342e 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Nullañ", "Delete" : "Dilemel", "Edit" : "Embann", + "Unlimited" : "Didermenet", "Name" : "Anv", "Host" : "Ostiz", "Display name" : "Anv ardivink", diff --git a/l10n/br.json b/l10n/br.json index 349a49e0..3afd7720 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -2,6 +2,7 @@ "Cancel" : "Nullañ", "Delete" : "Dilemel", "Edit" : "Embann", + "Unlimited" : "Didermenet", "Name" : "Anv", "Host" : "Ostiz", "Display name" : "Anv ardivink", diff --git a/l10n/bs.js b/l10n/bs.js index f1a39d0f..547959a6 100644 --- a/l10n/bs.js +++ b/l10n/bs.js @@ -4,6 +4,7 @@ OC.L10N.register( "Cancel" : "Odustani", "Delete" : "Obriši", "Edit" : "Izmjeni", + "Unlimited" : "Neograničeno", "Name" : "Ime", "Enabled" : "Aktivirano", "Disabled" : "Onemogućeno", diff --git a/l10n/bs.json b/l10n/bs.json index 346cec28..5766d857 100644 --- a/l10n/bs.json +++ b/l10n/bs.json @@ -2,6 +2,7 @@ "Cancel" : "Odustani", "Delete" : "Obriši", "Edit" : "Izmjeni", + "Unlimited" : "Neograničeno", "Name" : "Ime", "Enabled" : "Aktivirano", "Disabled" : "Onemogućeno", diff --git a/l10n/ca.js b/l10n/ca.js index 4f644517..1fa893cf 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -50,6 +50,7 @@ OC.L10N.register( "Daemon connection successful" : "La connexió del dimoni ha estat correcta", "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", + "Unlimited" : "Il·limitat", "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", "Deploy Daemon" : "Desplega Dimoni", "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", @@ -64,6 +65,7 @@ OC.L10N.register( "HaProxy password" : "Contrasenya HaProxy", "GPUs support" : "Suport de GPU", "Compute device" : "Dispositiu de computació", + "Memory limit" : "Límit de memòria", "Additional options" : "Opcions addicionals", "Verify connection" : "Verifica la connexió", "Registered Deploy daemons list" : "Llista de dimonis de desplegament registrats", diff --git a/l10n/ca.json b/l10n/ca.json index 59a874e5..f09e3157 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -48,6 +48,7 @@ "Daemon connection successful" : "La connexió del dimoni ha estat correcta", "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", + "Unlimited" : "Il·limitat", "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", "Deploy Daemon" : "Desplega Dimoni", "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", @@ -62,6 +63,7 @@ "HaProxy password" : "Contrasenya HaProxy", "GPUs support" : "Suport de GPU", "Compute device" : "Dispositiu de computació", + "Memory limit" : "Límit de memòria", "Additional options" : "Opcions addicionals", "Verify connection" : "Verifica la connexió", "Registered Deploy daemons list" : "Llista de dimonis de desplegament registrats", diff --git a/l10n/de.js b/l10n/de.js index f3fd55ee..54423f97 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", + "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", + "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", + "Must be a positive number" : "Muss eine positive Zahl sein", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/de.json b/l10n/de.json index 58fdc17c..3b909a0f 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -73,6 +77,7 @@ "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", + "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", + "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", + "Must be a positive number" : "Muss eine positive Zahl sein", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index fb257409..6f6856d2 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", + "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", + "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", + "Must be a positive number" : "Muss eine positive Zahl sein", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 8a589186..afd05f17 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", @@ -73,6 +77,7 @@ "GPUs support" : "GPUs Unterstützung", "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", + "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Verify connection" : "Verbindung überprüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", + "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", + "Must be a positive number" : "Muss eine positive Zahl sein", "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", diff --git a/l10n/pl.js b/l10n/pl.js index 829d5719..9e3f3cf6 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", "Unlimited" : "Bez limitu", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPU", "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", "Deploy Daemon" : "Uruchom demona", "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", "Memory limit" : "Limit pamięci", + "CPU limit" : "Limit CPU ", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flaga tylko dla zaawansowanych konfiguracji. Wyłącza tunel FRP pomiędzy ExApps a HaRP.", "Disabled" : "Wyłączone", "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", + "Memory limit (in MiB)" : "Limit pamięci (w MB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maksymalna pamięć, jaką kontener ExApp może używać w mebibajtach", + "Must be a positive integer" : "Musi być liczbą całkowitą dodatnią", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maksymalna liczba rdzeni CPU, jaką kontener ExApp może używać (np. 0.5 dla połowy rdzenia, 2 dla dwóch rdzeni)", + "CPU limit as decimal value" : "Limit CPU jako wartość dziesiętna", + "Must be a positive number" : "Musi być liczbą dodatnią", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key (unique)" : "Klucz opcji (unikalny)", diff --git a/l10n/pl.json b/l10n/pl.json index 679340a1..64c00e17 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", "Unlimited" : "Bez limitu", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPU", "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", "Deploy Daemon" : "Uruchom demona", "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", @@ -73,6 +77,7 @@ "GPUs support" : "Obsługa procesorów graficznych", "Compute device" : "Urządzenie obliczeniowe", "Memory limit" : "Limit pamięci", + "CPU limit" : "Limit CPU ", "Additional options" : "Dodatkowe opcje", "Verify connection" : "Sprawdź połączenie", "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flaga tylko dla zaawansowanych konfiguracji. Wyłącza tunel FRP pomiędzy ExApps a HaRP.", "Disabled" : "Wyłączone", "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", + "Memory limit (in MiB)" : "Limit pamięci (w MB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maksymalna pamięć, jaką kontener ExApp może używać w mebibajtach", + "Must be a positive integer" : "Musi być liczbą całkowitą dodatnią", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maksymalna liczba rdzeni CPU, jaką kontener ExApp może używać (np. 0.5 dla połowy rdzenia, 2 dla dwóch rdzeni)", + "CPU limit as decimal value" : "Limit CPU jako wartość dziesiętna", + "Must be a positive number" : "Musi być liczbą dodatnią", "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key (unique)" : "Klucz opcji (unikalny)", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 5e6a9a56..ac0e6718 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Unlimited" : "Ilimitado", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", "Memory limit" : "Limite de memória", + "CPU limit" : "Limite da CPU", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", @@ -167,6 +172,10 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", + "Memory limit (in MiB)" : "Limite de memória (em MiB)", + "Must be a positive integer" : "Deve ser um número inteiro positivo", + "CPU limit as decimal value" : "Limite da CPU como valor decimal", + "Must be a positive number" : "Deve ser um número positivo", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave da opção (exclusiva)", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 945d933a..fcd59579 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Unlimited" : "Ilimitado", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", @@ -73,6 +77,7 @@ "GPUs support" : "Suporte a GPUs", "Compute device" : "Dispositivo de computação", "Memory limit" : "Limite de memória", + "CPU limit" : "Limite da CPU", "Additional options" : "Opções adicionais", "Verify connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", @@ -165,6 +170,10 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", + "Memory limit (in MiB)" : "Limite de memória (em MiB)", + "Must be a positive integer" : "Deve ser um número inteiro positivo", + "CPU limit as decimal value" : "Limite da CPU como valor decimal", + "Must be a positive number" : "Deve ser um número positivo", "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave da opção (exclusiva)", diff --git a/l10n/sr@latin.js b/l10n/sr@latin.js deleted file mode 100644 index 60b746e1..00000000 --- a/l10n/sr@latin.js +++ /dev/null @@ -1,17 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "Poništi", - "Delete" : "Obriši", - "Edit" : "Izmeni", - "Name" : "Ime", - "Save" : "Sačuvaj", - "Update to {version}" : "Ažuriraj na verziju {version}", - "Report a bug" : "Prijavi grešku", - "Version" : "Verzija", - "Type" : "Tip", - "Documentation" : "Dokumentacija", - "Details" : "Detalji", - "Disable" : "Isključi" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr@latin.json b/l10n/sr@latin.json deleted file mode 100644 index badf3b3d..00000000 --- a/l10n/sr@latin.json +++ /dev/null @@ -1,15 +0,0 @@ -{ "translations": { - "Cancel" : "Poništi", - "Delete" : "Obriši", - "Edit" : "Izmeni", - "Name" : "Ime", - "Save" : "Sačuvaj", - "Update to {version}" : "Ažuriraj na verziju {version}", - "Report a bug" : "Prijavi grešku", - "Version" : "Verzija", - "Type" : "Tip", - "Documentation" : "Dokumentacija", - "Details" : "Detalji", - "Disable" : "Isključi" -},"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/zh_TW.js b/l10n/zh_TW.js index 89244ddd..868e57f6 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", + "CPU limit" : "CPU 限制", "Additional options" : "額外選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApp 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", + "Must be a positive integer" : "必須為正整數", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "CPU limit as decimal value" : "CPU 限制(十進位值)", + "Must be a positive number" : "必須為正數", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 3e2ed242..6d36ec11 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", @@ -73,6 +77,7 @@ "GPUs support" : "GPU 支援", "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", + "CPU limit" : "CPU 限制", "Additional options" : "額外選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApp 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", + "Must be a positive integer" : "必須為正整數", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "CPU limit as decimal value" : "CPU 限制(十進位值)", + "Must be a positive number" : "必須為正數", "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", From 444aad10d8937b3223f6a373354d8049f2d74537 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 5 Oct 2025 00:20:20 +0000 Subject: [PATCH 200/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ga.js | 12 ++++++++++++ l10n/ga.json | 12 ++++++++++++ l10n/pt_BR.js | 2 ++ l10n/pt_BR.json | 2 ++ l10n/sw.js | 12 ++++++++++++ l10n/sw.json | 12 ++++++++++++ 6 files changed, 52 insertions(+) diff --git a/l10n/ga.js b/l10n/ga.js index 620dd9e4..e3419e4f 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Unlimited" : "Gan teorainn", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 LAP", + "{cpus} CPUs" : "{cpus}LAPanna", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", @@ -74,6 +78,8 @@ OC.L10N.register( "HaProxy password" : "Pasfhocal HaProxy", "GPUs support" : "Tacaíocht GPUs", "Compute device" : "Gléas ríomh", + "Memory limit" : "Teorainn chuimhne", + "CPU limit" : "Teorainn LAP", "Additional options" : "Roghanna breise", "Verify connection" : "Fíoraigh ceangal", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", @@ -166,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach do na hardsocruithe amháin. Díchumasaítear an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", + "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", + "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", + "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", + "Must be a positive number" : "Ní mór gur uimhir dhearfach í", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", diff --git a/l10n/ga.json b/l10n/ga.json index 52a8f4c0..d25616b1 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Unlimited" : "Gan teorainn", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 LAP", + "{cpus} CPUs" : "{cpus}LAPanna", "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", @@ -72,6 +76,8 @@ "HaProxy password" : "Pasfhocal HaProxy", "GPUs support" : "Tacaíocht GPUs", "Compute device" : "Gléas ríomh", + "Memory limit" : "Teorainn chuimhne", + "CPU limit" : "Teorainn LAP", "Additional options" : "Roghanna breise", "Verify connection" : "Fíoraigh ceangal", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", @@ -164,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach do na hardsocruithe amháin. Díchumasaítear an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", + "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", + "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", + "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", + "Must be a positive number" : "Ní mór gur uimhir dhearfach í", "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index ac0e6718..c9e645a0 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -173,7 +173,9 @@ OC.L10N.register( "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Memory limit (in MiB)" : "Limite de memória (em MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Memória máxima que o contêiner ExApp pode usar em mebibytes", "Must be a positive integer" : "Deve ser um número inteiro positivo", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0,5 para meio núcleo, 2 para dois núcleos)", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", "Additional option" : "Opção adicional", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index fcd59579..4bfcd5b8 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -171,7 +171,9 @@ "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Memory limit (in MiB)" : "Limite de memória (em MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Memória máxima que o contêiner ExApp pode usar em mebibytes", "Must be a positive integer" : "Deve ser um número inteiro positivo", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0,5 para meio núcleo, 2 para dois núcleos)", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", "Additional option" : "Opção adicional", diff --git a/l10n/sw.js b/l10n/sw.js index cd8986d8..4753974d 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", "Unlimited" : "Isiyo na kikomo", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", "Deploy Daemon" : "Tumia Daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", @@ -74,6 +78,8 @@ OC.L10N.register( "HaProxy password" : "Nenosiri la HaProxy", "GPUs support" : "Usaidizi wa GPU", "Compute device" : "Kuhesabu kifaa", + "Memory limit" : "Kikomo cha kumbukumbu", + "CPU limit" : "Kikomo cha CPU", "Additional options" : "Chaguzi za ziada", "Verify connection" : "Thibitisha muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", @@ -166,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Disabled" : "Zima", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", + "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", + "Must be a positive integer" : "Lazima iwe nambari chanya", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Upeo wa cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", + "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", + "Must be a positive number" : "Lazima iwe nambari chanya", "Additional option" : "Chaguo la ziada", "Add additional option" : "Ongeza chaguo la ziada", "Option key (unique)" : "Ufunguo mbadala (unique)", diff --git a/l10n/sw.json b/l10n/sw.json index 58baa900..1ce3f1d4 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", "Unlimited" : "Isiyo na kikomo", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", "Deploy Daemon" : "Tumia Daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", @@ -72,6 +76,8 @@ "HaProxy password" : "Nenosiri la HaProxy", "GPUs support" : "Usaidizi wa GPU", "Compute device" : "Kuhesabu kifaa", + "Memory limit" : "Kikomo cha kumbukumbu", + "CPU limit" : "Kikomo cha CPU", "Additional options" : "Chaguzi za ziada", "Verify connection" : "Thibitisha muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", @@ -164,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Disabled" : "Zima", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", + "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", + "Must be a positive integer" : "Lazima iwe nambari chanya", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Upeo wa cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", + "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", + "Must be a positive number" : "Lazima iwe nambari chanya", "Additional option" : "Chaguo la ziada", "Add additional option" : "Ongeza chaguo la ziada", "Option key (unique)" : "Ufunguo mbadala (unique)", From 05cb04f9986d2b1ff1cb6dc79e8c787875165062 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 6 Oct 2025 00:20:12 +0000 Subject: [PATCH 201/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 19 +++++++++++++++---- l10n/gl.json | 19 +++++++++++++++---- 2 files changed, 30 insertions(+), 8 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index 4b275608..f81c75d8 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -37,7 +37,7 @@ OC.L10N.register( "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", - "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de inicialización da ExApp após do cal AppAPI marcarao como fallado", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de preparación da ExApp após do cal AppAPI marcarao como fallado", "ExApp init timeout" : "Tempo de espera de inicio da ExApp", "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Unlimited" : "Sen límites", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPU", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "Compatibilidade con GPU", "Compute device" : "Dispositivo de computación", "Memory limit" : "Límite de memoria", + "CPU limit" : "Límite de CPU", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", @@ -90,7 +95,7 @@ OC.L10N.register( "Heartbeat" : "Latexo (proba de execución)", "Check for the heartbeat is finished and healthy" : "Comprobe se o latexo está rematado e é saudábel", "Init step" : "Paso inicial", - "Wait for initialization step to finish" : "Agarde a que remate o paso de inicio", + "Wait for initialization step to finish" : "Agarde a que remate o paso de preparación", "Enabled" : "Activado", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproba se a ExApp xestionou correctamente o evento activado e rexistrou todo correctamente", "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", + "Memory limit (in MiB)" : "Límite de memoria (en MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Memoria máxima que o contedor ExApp pode usar en mebibytes", + "Must be a positive integer" : "Debe ser un número enteiro positivo.", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Máximo de núcleos de CPU que o contedor ExApp pode usar (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", + "CPU limit as decimal value" : "Límite da CPU como valor decimal", + "Must be a positive number" : "Debe ser un número positivo.", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -227,8 +238,8 @@ OC.L10N.register( "Featured apps" : "Aplicacións destacadas", "Supported apps" : "Aplicacións compatíbeis", "manual-install apps cannot be updated" : "non é posíbel actualizar as aplicacións de instalación manual", - "{progress}% Deploying" : "{progress}% Despregando", - "{progress}% Initializing" : "{progress}% Iniciando", + "{progress}% Deploying" : "{progress}% despregando", + "{progress}% Initializing" : "{progress}% preparando", "Healthchecking" : "Control de integridade", "Deploy and Enable" : "Despregar e activar", "Enable" : "Activar", diff --git a/l10n/gl.json b/l10n/gl.json index b2d7ded4..b1e345ba 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -35,7 +35,7 @@ "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", - "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de inicialización da ExApp após do cal AppAPI marcarao como fallado", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de preparación da ExApp após do cal AppAPI marcarao como fallado", "ExApp init timeout" : "Tempo de espera de inicio da ExApp", "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Unlimited" : "Sen límites", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPU", "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", @@ -73,6 +77,7 @@ "GPUs support" : "Compatibilidade con GPU", "Compute device" : "Dispositivo de computación", "Memory limit" : "Límite de memoria", + "CPU limit" : "Límite de CPU", "Additional options" : "Opcións adicionais", "Verify connection" : "Verificar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", @@ -88,7 +93,7 @@ "Heartbeat" : "Latexo (proba de execución)", "Check for the heartbeat is finished and healthy" : "Comprobe se o latexo está rematado e é saudábel", "Init step" : "Paso inicial", - "Wait for initialization step to finish" : "Agarde a que remate o paso de inicio", + "Wait for initialization step to finish" : "Agarde a que remate o paso de preparación", "Enabled" : "Activado", "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Comproba se a ExApp xestionou correctamente o evento activado e rexistrou todo correctamente", "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", + "Memory limit (in MiB)" : "Límite de memoria (en MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Memoria máxima que o contedor ExApp pode usar en mebibytes", + "Must be a positive integer" : "Debe ser un número enteiro positivo.", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Máximo de núcleos de CPU que o contedor ExApp pode usar (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", + "CPU limit as decimal value" : "Límite da CPU como valor decimal", + "Must be a positive number" : "Debe ser un número positivo.", "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", @@ -225,8 +236,8 @@ "Featured apps" : "Aplicacións destacadas", "Supported apps" : "Aplicacións compatíbeis", "manual-install apps cannot be updated" : "non é posíbel actualizar as aplicacións de instalación manual", - "{progress}% Deploying" : "{progress}% Despregando", - "{progress}% Initializing" : "{progress}% Iniciando", + "{progress}% Deploying" : "{progress}% despregando", + "{progress}% Initializing" : "{progress}% preparando", "Healthchecking" : "Control de integridade", "Deploy and Enable" : "Despregar e activar", "Enable" : "Activar", From 4b7c609e651e5c7e5cdc0c6ce0214794d1b19e4b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 8 Oct 2025 00:20:27 +0000 Subject: [PATCH 202/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sr.js | 11 +++++++++++ l10n/sr.json | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/l10n/sr.js b/l10n/sr.js index 46f26eff..c3681017 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Unlimited" : "Неограничено", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPU-а", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "Подршка за GPU", "Compute device" : "Рачунарски уређај", "Memory limit" : "Ограничење меморије", + "CPU limit" : "CPU ограничење", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Заставица само за напредне инсталације. Искључује FRP тунел између ExApp апликација и HaRP.", "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", + "Memory limit (in MiB)" : "Ограничење меморије (у MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Максимална количина меморије у мебибајтовима које ExApp контејнер може да употреби", + "Must be a positive integer" : "Мора да буде позитиван цео број", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимални број CPU језгара које ExApp контејнер може да употреби (нпр. 0.5 за пола језгра, 2 за два језгра)", + "CPU limit as decimal value" : "CPU ограничење као децимална вредност", + "Must be a positive number" : "Мора да буде позитиван цео број", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", diff --git a/l10n/sr.json b/l10n/sr.json index 2148094d..f6e44ce6 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Unlimited" : "Неограничено", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPU-а", "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", @@ -73,6 +77,7 @@ "GPUs support" : "Подршка за GPU", "Compute device" : "Рачунарски уређај", "Memory limit" : "Ограничење меморије", + "CPU limit" : "CPU ограничење", "Additional options" : "Додатне опције", "Verify connection" : "Провери везу", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Заставица само за напредне инсталације. Искључује FRP тунел између ExApp апликација и HaRP.", "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", + "Memory limit (in MiB)" : "Ограничење меморије (у MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Максимална количина меморије у мебибајтовима које ExApp контејнер може да употреби", + "Must be a positive integer" : "Мора да буде позитиван цео број", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимални број CPU језгара које ExApp контејнер може да употреби (нпр. 0.5 за пола језгра, 2 за два језгра)", + "CPU limit as decimal value" : "CPU ограничење као децимална вредност", + "Must be a positive number" : "Мора да буде позитиван цео број", "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", From 4e148884c783a5e80f5f13d65074a68791460587 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 9 Oct 2025 00:32:48 +0000 Subject: [PATCH 203/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/tr.js | 11 +++++++++++ l10n/tr.json | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/l10n/tr.js b/l10n/tr.js index f23de439..48ba4ba5 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Unlimited" : "Sınırsız", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 işlemci", + "{cpus} CPUs" : "{cpus} işlemci", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "Grafik işlemci desteği", "Compute device" : "Hesaplama aygıtı", "Memory limit" : "Bellek sınırı", + "CPU limit" : "İşlemci sayısı sınırı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", + "Memory limit (in MiB)" : "Bellek sınırı (MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "ExApp kapsayıcısının mebibayt cinsinden kullanabileceği en fazla bellek", + "Must be a positive integer" : "Bir pozitif tam sayı olmalıdır", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp kapsayıcısının kullanabileceği en fazla işlemci çekirdeği (yarım çekirdek için 0.5, iki çekirdek için 2)", + "CPU limit as decimal value" : "Ondalık değer olarak işlemci sayısı sınırı", + "Must be a positive number" : "Bir pozitif sayı olmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", diff --git a/l10n/tr.json b/l10n/tr.json index f37d69ec..37f6f916 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Unlimited" : "Sınırsız", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 işlemci", + "{cpus} CPUs" : "{cpus} işlemci", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", @@ -73,6 +77,7 @@ "GPUs support" : "Grafik işlemci desteği", "Compute device" : "Hesaplama aygıtı", "Memory limit" : "Bellek sınırı", + "CPU limit" : "İşlemci sayısı sınırı", "Additional options" : "Ek seçenekler", "Verify connection" : "Bağlantı sına", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", + "Memory limit (in MiB)" : "Bellek sınırı (MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "ExApp kapsayıcısının mebibayt cinsinden kullanabileceği en fazla bellek", + "Must be a positive integer" : "Bir pozitif tam sayı olmalıdır", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp kapsayıcısının kullanabileceği en fazla işlemci çekirdeği (yarım çekirdek için 0.5, iki çekirdek için 2)", + "CPU limit as decimal value" : "Ondalık değer olarak işlemci sayısı sınırı", + "Must be a positive number" : "Bir pozitif sayı olmalıdır", "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", From 2cc55f9fdbaf0e01d769ddb1967b530e25ca6ff5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 11 Oct 2025 00:19:56 +0000 Subject: [PATCH 204/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/uk.js | 11 +++++++++++ l10n/uk.json | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/l10n/uk.js b/l10n/uk.js index bd339710..29759e2d 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", "Unlimited" : "Необмежено", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 ПРОЦЕСОР", + "{cpus} CPUs" : "{cpus} Процесори", "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", "Deploy Daemon" : "Розгортання демона", "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "Підтримка GPU", "Compute device" : "Обчислити пристрій", "Memory limit" : "Ліміт пам'яті", + "CPU limit" : "Обмеження процесора", "Additional options" : "Додаткові опції", "Verify connection" : "Перевірте з'єднання", "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Прапорець лише для розширених налаштувань. Вимикає тунель FRP між ExApps і HaRP.", "Disabled" : "Вимкнено", "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", + "Memory limit (in MiB)" : "Ліміт пам'яті (в Мбайт)", + "Maximum memory that the ExApp container can use in mebibytes" : "Максимальний обсяг пам'яті, який може використовувати контейнер ExApp в мегабайтах", + "Must be a positive integer" : "Повинно бути натуральним числом", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимальна кількість ядер процесора, яку може використовувати контейнер ExApp (наприклад, 0.5 для половини ядра, 2 для двох ядер)", + "CPU limit as decimal value" : "Обмеження процесора як десяткове значення", + "Must be a positive number" : "Повинно бути додатнім числом", "Additional option" : "Додаткова опція", "Add additional option" : "Додати додаткову опцію", "Option key (unique)" : "Ключ опції (унікальний)", diff --git a/l10n/uk.json b/l10n/uk.json index 9e7bdc51..9b6ea3ab 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", "Unlimited" : "Необмежено", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 ПРОЦЕСОР", + "{cpus} CPUs" : "{cpus} Процесори", "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", "Deploy Daemon" : "Розгортання демона", "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", @@ -73,6 +77,7 @@ "GPUs support" : "Підтримка GPU", "Compute device" : "Обчислити пристрій", "Memory limit" : "Ліміт пам'яті", + "CPU limit" : "Обмеження процесора", "Additional options" : "Додаткові опції", "Verify connection" : "Перевірте з'єднання", "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Прапорець лише для розширених налаштувань. Вимикає тунель FRP між ExApps і HaRP.", "Disabled" : "Вимкнено", "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", + "Memory limit (in MiB)" : "Ліміт пам'яті (в Мбайт)", + "Maximum memory that the ExApp container can use in mebibytes" : "Максимальний обсяг пам'яті, який може використовувати контейнер ExApp в мегабайтах", + "Must be a positive integer" : "Повинно бути натуральним числом", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимальна кількість ядер процесора, яку може використовувати контейнер ExApp (наприклад, 0.5 для половини ядра, 2 для двох ядер)", + "CPU limit as decimal value" : "Обмеження процесора як десяткове значення", + "Must be a positive number" : "Повинно бути додатнім числом", "Additional option" : "Додаткова опція", "Add additional option" : "Додати додаткову опцію", "Option key (unique)" : "Ключ опції (унікальний)", From 58ba8dd6985da8f892073d842b71fcdc0bf71f79 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 14 Oct 2025 00:18:47 +0000 Subject: [PATCH 205/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/be.js | 1 + l10n/be.json | 1 + l10n/cs.js | 5 +++++ l10n/cs.json | 5 +++++ 4 files changed, 12 insertions(+) diff --git a/l10n/be.js b/l10n/be.js index 2c2156bc..a1c57664 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -19,6 +19,7 @@ OC.L10N.register( "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнавіць да {version}", + "Delete data on remove" : "Ачысціць даныя пры выдаленні", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана мінімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", diff --git a/l10n/be.json b/l10n/be.json index 064662d9..aeaa2c23 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -17,6 +17,7 @@ "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнавіць да {version}", + "Delete data on remove" : "Ачысціць даныя пры выдаленні", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана мінімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Гэтай праграме не прызначана максімальная версія Nextcloud. У будучыні гэта будзе памылкай.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Гэта праграма не можа быць усталявана, бо не выкананы наступныя залежнасці:", diff --git a/l10n/cs.js b/l10n/cs.js index a25f4ed2..b4c61a84 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -58,6 +58,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Unlimited" : "Neomezeně", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 jádro procesoru", + "{cpus} CPUs" : "{cpus} jader procesoru", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -74,6 +78,7 @@ OC.L10N.register( "GPUs support" : "Podpora pro výpočty na GPU", "Compute device" : "Výpočetní zařízení", "Memory limit" : "Limit paměti", + "CPU limit" : "Limit počtu jader procesoru", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", diff --git a/l10n/cs.json b/l10n/cs.json index 54ee0c1a..265c054e 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -56,6 +56,10 @@ "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Unlimited" : "Neomezeně", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 jádro procesoru", + "{cpus} CPUs" : "{cpus} jader procesoru", "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", @@ -72,6 +76,7 @@ "GPUs support" : "Podpora pro výpočty na GPU", "Compute device" : "Výpočetní zařízení", "Memory limit" : "Limit paměti", + "CPU limit" : "Limit počtu jader procesoru", "Additional options" : "Další možnosti", "Verify connection" : "Ověřit připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", From 3fda1c3a3688b4d4d8215b52b34d3c824ecc857e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 20 Oct 2025 00:18:41 +0000 Subject: [PATCH 206/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 8 ++++---- l10n/de.json | 8 ++++---- l10n/de_DE.js | 2 +- l10n/de_DE.json | 2 +- l10n/en_GB.js | 11 +++++++++++ l10n/en_GB.json | 11 +++++++++++ 6 files changed, 32 insertions(+), 10 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index 54423f97..af1806b5 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -24,7 +24,7 @@ OC.L10N.register( "ExApps Settings" : "ExApp-Einstellungen", "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", - "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", @@ -110,7 +110,7 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", @@ -215,7 +215,7 @@ OC.L10N.register( "Icon" : "Symbol", "Version" : "Version", "Daemon" : "Daemon", - "Level" : "Level", + "Level" : "Stufe", "Actions" : "Aktionen", "Results from other categories" : "Ergebnisse aus anderen Kategorien", "No apps found" : "Keine Apps gefunden", @@ -251,7 +251,7 @@ OC.L10N.register( "Your ExApps" : "Deine ExApps", "An error occurred during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", "The app has been enabled but needs to be updated." : "Die App wurde aktiviert, muss jedoch aktualisiert werden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", + "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht.", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweiter deine Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Issue oder einen Erweiterungsvorschlag\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickle deine eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de.json b/l10n/de.json index 3b909a0f..2d2b436c 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -22,7 +22,7 @@ "ExApps Settings" : "ExApp-Einstellungen", "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", - "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", @@ -108,7 +108,7 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", @@ -213,7 +213,7 @@ "Icon" : "Symbol", "Version" : "Version", "Daemon" : "Daemon", - "Level" : "Level", + "Level" : "Stufe", "Actions" : "Aktionen", "Results from other categories" : "Ergebnisse aus anderen Kategorien", "No apps found" : "Keine Apps gefunden", @@ -249,7 +249,7 @@ "Your ExApps" : "Deine ExApps", "An error occurred during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", "The app has been enabled but needs to be updated." : "Die App wurde aktiviert, muss jedoch aktualisiert werden.", - "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", + "Error: This app cannot be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht.", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Erweiter deine Nextcloud mit AppAPI und den hierfür entwickelten Anwendungen.\n\n\nDie AppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das darauf abzielt, Prozesse der Anwendungsentwicklung, Bereitstellung und\nVerwaltung zu rationalisieren und zu verbessern.\n\nEs führt eine neue Methodik ein, die Entwicklern das Erstellen von Anwendungen nicht nur mit PHP,\ndas bislang in der Nextcloud-Entwicklung verwendet wurde, sondern mit einer Vielzahl von Programmiersprachen ermöglicht.\n\n\n### Liste der Anwendungen, die AppAPI erfordern:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen wir Ihnen gerne weiter._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Issue oder einen Erweiterungsvorschlag\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickle deine eigene Anwendung mit AppAPI\n\nWir sind sehr gespannt auf die Zukunft des AppAPI-Projekts und sein Transformationspotenzial\nbezüglich der Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein –\ngemeinsam mit uns eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*" },"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 6f6856d2..d67d0052 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -110,7 +110,7 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index afd05f17..08cc25e4 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -108,7 +108,7 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht „lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 9930bda3..a02ddc01 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Unlimited" : "Unlimited", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "GPUs support", "Compute device" : "Compute device", "Memory limit" : "Memory limit", + "CPU limit" : "CPU limit", "Additional options" : "Additional options", "Verify connection" : "Verify connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", + "Memory limit (in MiB)" : "Memory limit (in MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maximum memory that the ExApp container can use in mebibytes", + "Must be a positive integer" : "Must be a positive integer", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", + "CPU limit as decimal value" : "CPU limit as decimal value", + "Must be a positive number" : "Must be a positive number", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index da3e2c52..a2c75db1 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Unlimited" : "Unlimited", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "Deploy daemon config details", "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", @@ -73,6 +77,7 @@ "GPUs support" : "GPUs support", "Compute device" : "Compute device", "Memory limit" : "Memory limit", + "CPU limit" : "CPU limit", "Additional options" : "Additional options", "Verify connection" : "Verify connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", + "Memory limit (in MiB)" : "Memory limit (in MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Maximum memory that the ExApp container can use in mebibytes", + "Must be a positive integer" : "Must be a positive integer", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", + "CPU limit as decimal value" : "CPU limit as decimal value", + "Must be a positive number" : "Must be a positive number", "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", From 170d53c82b64a223e2a033b1a8082a1dc8f549f6 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 24 Oct 2025 00:19:58 +0000 Subject: [PATCH 207/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 2 +- l10n/pt_BR.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index c9e645a0..97618116 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -175,7 +175,7 @@ OC.L10N.register( "Memory limit (in MiB)" : "Limite de memória (em MiB)", "Maximum memory that the ExApp container can use in mebibytes" : "Memória máxima que o contêiner ExApp pode usar em mebibytes", "Must be a positive integer" : "Deve ser um número inteiro positivo", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0,5 para meio núcleo, 2 para dois núcleos)", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0.5 para meio núcleo, 2 para dois núcleos)", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", "Additional option" : "Opção adicional", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 4bfcd5b8..ce08243c 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -173,7 +173,7 @@ "Memory limit (in MiB)" : "Limite de memória (em MiB)", "Maximum memory that the ExApp container can use in mebibytes" : "Memória máxima que o contêiner ExApp pode usar em mebibytes", "Must be a positive integer" : "Deve ser um número inteiro positivo", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0,5 para meio núcleo, 2 para dois núcleos)", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0.5 para meio núcleo, 2 para dois núcleos)", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", "Additional option" : "Opção adicional", From 90a46bf170abf214939b5652c823aff96403e7da Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 26 Oct 2025 00:19:41 +0000 Subject: [PATCH 208/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 5 +++++ l10n/cs.json | 5 +++++ l10n/zh_HK.js | 11 +++++++++++ l10n/zh_HK.json | 11 +++++++++++ 4 files changed, 32 insertions(+) diff --git a/l10n/cs.js b/l10n/cs.js index b4c61a84..a39a7c56 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -171,6 +171,11 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", + "Memory limit (in MiB)" : "Limit paměti (v MiB)", + "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", + "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", + "Must be a positive number" : "Je třeba, aby bylo kladné číslo", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", diff --git a/l10n/cs.json b/l10n/cs.json index 265c054e..34ed631f 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -169,6 +169,11 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", + "Memory limit (in MiB)" : "Limit paměti (v MiB)", + "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", + "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", + "Must be a positive number" : "Je třeba, aby bylo kladné číslo", "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 994fe1c6..9dab7520 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -59,6 +59,10 @@ OC.L10N.register( "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -75,6 +79,7 @@ OC.L10N.register( "GPUs support" : "GPUs 支援", "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", + "CPU limit" : "CPU 限制", "Additional options" : "附加選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", @@ -167,6 +172,12 @@ OC.L10N.register( "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於高級設置的標誌。禁用 ExApps 和 HaRP 之間的 FRP 隧道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", + "Must be a positive integer" : "必須為正整數", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "CPU limit as decimal value" : "CPU 限制(十進位值)", + "Must be a positive number" : "必須為正數", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 5f51ee81..cfc25a06 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -57,6 +57,10 @@ "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "部署幕後程式設定詳細資訊", "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", @@ -73,6 +77,7 @@ "GPUs support" : "GPUs 支援", "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", + "CPU limit" : "CPU 限制", "Additional options" : "附加選項", "Verify connection" : "驗證連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", @@ -165,6 +170,12 @@ "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於高級設置的標誌。禁用 ExApps 和 HaRP 之間的 FRP 隧道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", + "Must be a positive integer" : "必須為正整數", + "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "CPU limit as decimal value" : "CPU 限制(十進位值)", + "Must be a positive number" : "必須為正數", "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", From c7a3f8ed267328188fa2eaeda3a6b952e71f534c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 28 Oct 2025 00:20:16 +0000 Subject: [PATCH 209/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 1 + l10n/cs.json | 1 + l10n/de.js | 4 ++-- l10n/de.json | 4 ++-- l10n/de_DE.js | 4 ++-- l10n/de_DE.json | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index a39a7c56..a4b344c6 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -172,6 +172,7 @@ OC.L10N.register( "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Memory limit (in MiB)" : "Limit paměti (v MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Kolik operační paměti nejvýše bude moci ExApp kontejner využívat (v MiB)", "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", diff --git a/l10n/cs.json b/l10n/cs.json index 34ed631f..fe427afd 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -170,6 +170,7 @@ "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Memory limit (in MiB)" : "Limit paměti (v MiB)", + "Maximum memory that the ExApp container can use in mebibytes" : "Kolik operační paměti nejvýše bude moci ExApp kontejner využívat (v MiB)", "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", diff --git a/l10n/de.js b/l10n/de.js index af1806b5..129362ee 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -110,7 +110,7 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", @@ -165,7 +165,7 @@ OC.L10N.register( "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", diff --git a/l10n/de.json b/l10n/de.json index 2d2b436c..0827d275 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -108,7 +108,7 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", @@ -163,7 +163,7 @@ "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index d67d0052..82f67f7e 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -110,7 +110,7 @@ OC.L10N.register( "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", @@ -165,7 +165,7 @@ OC.L10N.register( "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 08cc25e4..ebf85e9e 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -108,7 +108,7 @@ "Stop Deploy test" : "Bereitstellungstest anhalten", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal“ sein", + "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", @@ -163,7 +163,7 @@ "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter „Docker-Netzwerk“ definierten Netzwerk erreichbar sein soll.", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", From 4fce7f97c5da1281a979f6bd2b9c784c957127ff Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 8 Nov 2025 00:19:55 +0000 Subject: [PATCH 210/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ja.js | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/ja.json | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 136 insertions(+), 2 deletions(-) diff --git a/l10n/ja.js b/l10n/ja.js index 5d07d59c..9a4e4f5d 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -31,6 +31,7 @@ OC.L10N.register( "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPIプロジェクトは、Dockerコンテナーの活用によりNextcloud用のアプリケーション開発に革新をもたらすことを目的とした画期的な取り組みです。これによりプログラミング言語の選択肢が広がり、計算負荷の高いタスクを別のサーバーにオフロードできるようになります。", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", @@ -54,7 +55,14 @@ OC.L10N.register( "Test deploy" : "テストデプロイ", "Docker registries" : "Dockerレジストリ", "Edit" : "編集", + "Daemon connection successful" : "バックグラウンドデーモンに接続できました", + "Failed to connect to Daemon. Check the logs" : "バックグラウンドデーモンに接続できません。ログを確認してください。", + "Failed to check connection to Daemon. Check the logs" : "バックグラウンドデーモンへ接続確認できませんでした。ログを確認してください。", "Unlimited" : "無制限", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "デプロイデーモンの設定詳細", "Deploy Daemon" : "デーモンのデプロイ", "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", @@ -71,6 +79,7 @@ OC.L10N.register( "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", "Memory limit" : "メモリ制限", + "CPU limit" : "CPU制限", "Additional options" : "追加オプション", "Verify connection" : "接続の確認", "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", @@ -79,16 +88,65 @@ OC.L10N.register( "Register Daemon" : "デーモンを登録", "Register ExApp in Nextcloud" : "ExAppをNextcloudに登録する", "Check if the ExApp is registered in Nextcloud before deployment" : "デプロイ前にExAppがNextcloudに登録されているか確認する", + "Image pull" : "イメージダウンロード", + "Check if the image is successfully pulled" : "イメージが正常にダウンロードされたかどうかを確認する", + "Container started" : "コンテナ起動", + "Check if the image successfully pulled and container is created and started" : "イメージが正常にダウンロードされ、コンテナーが作成および開始されたかどうかを確認します。", + "Heartbeat" : "ヘルスチェック", + "Check for the heartbeat is finished and healthy" : "ヘルスチェックは正常で稼働中です", + "Init step" : "初期設定", + "Wait for initialization step to finish" : "初期起動が終了するのを待っています", "Enabled" : "有効", + "Deploy test passed successfully!" : "テストデプロイは成功しました", + "Deploy test failed at step \"{step}\"" : "ステップ\"{step}\"でテストデプロイに失敗しました", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPIはバックグラウンドデーモンが正しく構成され、デプロイが成功していることを確認するために、小さなスケルトンExAppをインストールします。", + "The following Deploy test checks must be passed to succeed:" : "以下のデプロイテストチェックに合格する必要があります:", + "More info" : "追加情報", + "Download ExApp logs" : "ExAppログをダウンロード", + "Remove test ExApp" : "テスト用ExAppを削除", + "Start Deploy test" : "デプロイテストの開始", + "Stop Deploy test" : "デプロイテストの終了", + "Please enter a registry domain" : "レジストリドメインを入力してください", + "Override Docker registries" : "Dockerレジストリを上書き", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "カスタムDockerレジストリを使用する場合(たとえば、プライベートDockerレジストリを使用する場合や、テストに別のDockerレジストリを使用する場合) に便利です。", + "Image pull will be skipped" : "イメージダウンロードは省略されました", "Remove" : "削除", + "No custom Docker registries configured" : "No custom Docker registries configured", "From" : "開始", + "registry URL (e.g. ghcr.io)" : "レジストリーURL(例: ghcr.io)", "To" : "宛先", + "registry URL (e.g. docker.io)" : "レジストリーURL(例:docker.io)", "Add" : "追加", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "ホスト名(およびポート){name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホスト{host}であれば構いません。", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ホスト名(およびポート)またはパス{name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホストであれば構いません。Dockerソケットへのパスとしても指定できます(例: nextcloud-appapi-dsp:2375や/var/run/docker.sock)", + "Edit Deploy Daemon" : "バックグラウンドデプロイデーモン設定を修正", + "Register Deploy Daemon" : "バックグラウンドデプロイサーバーを登録", "Display name" : "表示名", + "Deployment method" : "デプロイ手法", + "HaRP host" : "HaRPホスト", + "Daemon host" : "バックグラウンドデーモンホスト", + "HaRP shared key" : "HaRP共有鍵", + "Password must be at least 12 characters long" : "パスワードは12字以上である必要があります", + "Enable https" : "httpsを有効化", + "Show deploy config" : "デプロイ設定を表示", + "Hide deploy config" : "デプロイ設定を隠す", + "Enable HaRP" : "HaRPを有効化", + "FRP server address" : "FRPサーバーアドレス", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "「Docker ネットワーク」で定義されたネットワーク内の元アプリからアクセスできるFRPサーバーのアドレス(ホスト:ポート)。", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Dockerソケットプロキシーへ接続するHaRPのポート。これは公開される必要がありますが、組み込みの場合は公開または変更する必要はありません。", + "Disable FRP" : "FRPを無効化", "Disabled" : "無効", + "Must be a positive integer" : "正の整数である必要があります", + "Must be a positive number" : "正の数である必要があります", + "Additional option" : "追加オプション", + "Add additional option" : "オプションを追加", + "Option value" : "オプション", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", + "Check connection" : "接続を確認", + "External Apps" : "外部アプリ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIと専用設計アプリケーションでNextcloudを強化\n\n\nAppAPIはNextcloudエコシステム内のプロジェクトで、\nアプリケーションの開発、デプロイ、管理のプロセスを効率化・強化することを目的としています。\n\n従来Nextcloud開発で用いられてきたPHPに限定されない、\n様々なプログラミング言語を用いたアプリケーション開発を可能にする新たな手法を導入します。\n\n### バンドルアプリ\n\n**Nextcloud 30.0.1以降、このアプリケーションはデフォルトのNextcloudパッケージに含まれています。**\n\n### サポート\n\n本プロジェクトへのご支援を心よりお待ちしております:\n\n- ⭐ GitHubでスターを付ける\n- ❗ イシューまたは機能リクエストを作成\n- 💁 イシューを解決しプルリクエストを作成\n- 🧑‍💻 AppAPIを使用して独自のアプリケーションを開発\n\nAppAPIプロジェクトの将来性と、Nextcloud内でのアプリケーション開発・体験の方法を変革する可能性に、私たちは心から期待しています。\n\nこの道に踏み出すにあたり、より多様で安定した安全なアプリ環境の構築を構築するために\n開発者、思想家、創造者、そして先見の明を持つ皆様を温かく迎え入れたいと思います。\n\n*皆様の洞察、提案、貢献は私たちにとってとても有意義なものです。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", @@ -107,6 +165,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "注目のアプリはコミュニティ内で開発されています。これらのアプリは主要な機能を提供しており、すぐに本番で使用することができます。", "Featured" : "注目", "Update to {update}" : "{update} にアップデート", + "All ExApps are up-to-date." : "全ての外部アプリが最新です。", "Default Deploy daemon is not accessible" : "デフォルトのデプロイデーモンにアクセスできません", "Icon" : "アイコン", "Version" : "バージョン", @@ -114,10 +173,12 @@ OC.L10N.register( "Level" : "レベル", "Actions" : "アクション", "Results from other categories" : "他のカテゴリからの結果", + "No apps found" : "アプリが見つかりませんでした", "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", "Network" : "ネットワーク", + "Docker network name" : "Dockerネットワーク名", "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", @@ -129,13 +190,19 @@ OC.L10N.register( "Featured apps" : "注目のアプリ", "Supported apps" : "対応しているアプリ", "manual-install apps cannot be updated" : "手動インストールしたアプリはアップデートできません", + "{progress}% Deploying" : "{progress}% デプロイ中 …", + "{progress}% Initializing" : "{progress}% 初期化中", + "Healthchecking" : "ヘルスチェック", "Deploy and Enable" : "デプロイと有効化", "Enable" : "有効にする", "Disable" : "無効", "Allow untested app" : "テストされていないアプリを許可する", + "Default Deploy daemon is not accessible. Please verify configuration" : "デフォルトのバックグラウンドDeployデーモンにアクセスできません。構成を確認してください", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "このアプリはご利用中のNextcloudのバージョンと互換性があるとしてマークされていません。 続行しても、アプリをインストールすることはできます。 アプリが期待通りに動作しない可能性があることに注意してください。", + "Your ExApps" : "あなたの外部アプリ", "An error occurred during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", "The app has been enabled but needs to be updated." : "アプリは有効になっているが、アップデートが必要です。", - "Error: This app cannot be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。" + "Error: This app cannot be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIと専用設計アプリケーションでNextcloudを強化\n\n\nAppAPIはNextcloudエコシステム内のプロジェクトで、\nアプリケーションの開発、デプロイ、管理プロセスを効率化・強化するために設計されています。\n\n従来Nextcloud開発で用いられてきたPHPに限定されない、様々なプログラミング言語を用いたアプリケーション開発を可能にする新たな手法を導入します。\n\n\n### AppAPIを必要とするアプリケーション一覧:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_アプリケーション開発をご希望の場合、喜んでお手伝いいたします。_\n\n### サポート\n\n本プロジェクトへのご支援を心よりお待ちしております:\n\n- ⭐ GitHubでスターを付ける\n- ❗ イシューまたは機能リクエストを作成する\n- 💁 イシューを解決しプルリクエストを作成する\n- 🧑‍💻 AppAPIを使用した独自アプリケーションの開発\n\nAppAPIプロジェクトの未来と、Nextcloud内でのアプリケーション開発・体験方法を変革する可能性に、私たちは心から期待しています。\n\nこの道に踏み出すにあたり、より多様で安定した安全なアプリ環境を構築するために\n開発者、思想家、創造者、そして先見の明を持つ皆様を温かくお招きいたします。\n\n*皆様の要望、提案、貢献は私たちにとってとても有意義なものです。*" }, "nplurals=1; plural=0;"); diff --git a/l10n/ja.json b/l10n/ja.json index 9269dcef..6b152c84 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -29,6 +29,7 @@ "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPIプロジェクトは、Dockerコンテナーの活用によりNextcloud用のアプリケーション開発に革新をもたらすことを目的とした画期的な取り組みです。これによりプログラミング言語の選択肢が広がり、計算負荷の高いタスクを別のサーバーにオフロードできるようになります。", "Deploy Daemons" : "Deploy Daemons", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", @@ -52,7 +53,14 @@ "Test deploy" : "テストデプロイ", "Docker registries" : "Dockerレジストリ", "Edit" : "編集", + "Daemon connection successful" : "バックグラウンドデーモンに接続できました", + "Failed to connect to Daemon. Check the logs" : "バックグラウンドデーモンに接続できません。ログを確認してください。", + "Failed to check connection to Daemon. Check the logs" : "バックグラウンドデーモンへ接続確認できませんでした。ログを確認してください。", "Unlimited" : "無制限", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "1 CPU" : "1 CPU", + "{cpus} CPUs" : "{cpus} CPUs", "Deploy daemon config details" : "デプロイデーモンの設定詳細", "Deploy Daemon" : "デーモンのデプロイ", "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", @@ -69,6 +77,7 @@ "GPUs support" : "GPUサポート", "Compute device" : "計算デバイス", "Memory limit" : "メモリ制限", + "CPU limit" : "CPU制限", "Additional options" : "追加オプション", "Verify connection" : "接続の確認", "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", @@ -77,16 +86,65 @@ "Register Daemon" : "デーモンを登録", "Register ExApp in Nextcloud" : "ExAppをNextcloudに登録する", "Check if the ExApp is registered in Nextcloud before deployment" : "デプロイ前にExAppがNextcloudに登録されているか確認する", + "Image pull" : "イメージダウンロード", + "Check if the image is successfully pulled" : "イメージが正常にダウンロードされたかどうかを確認する", + "Container started" : "コンテナ起動", + "Check if the image successfully pulled and container is created and started" : "イメージが正常にダウンロードされ、コンテナーが作成および開始されたかどうかを確認します。", + "Heartbeat" : "ヘルスチェック", + "Check for the heartbeat is finished and healthy" : "ヘルスチェックは正常で稼働中です", + "Init step" : "初期設定", + "Wait for initialization step to finish" : "初期起動が終了するのを待っています", "Enabled" : "有効", + "Deploy test passed successfully!" : "テストデプロイは成功しました", + "Deploy test failed at step \"{step}\"" : "ステップ\"{step}\"でテストデプロイに失敗しました", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPIはバックグラウンドデーモンが正しく構成され、デプロイが成功していることを確認するために、小さなスケルトンExAppをインストールします。", + "The following Deploy test checks must be passed to succeed:" : "以下のデプロイテストチェックに合格する必要があります:", + "More info" : "追加情報", + "Download ExApp logs" : "ExAppログをダウンロード", + "Remove test ExApp" : "テスト用ExAppを削除", + "Start Deploy test" : "デプロイテストの開始", + "Stop Deploy test" : "デプロイテストの終了", + "Please enter a registry domain" : "レジストリドメインを入力してください", + "Override Docker registries" : "Dockerレジストリを上書き", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "カスタムDockerレジストリを使用する場合(たとえば、プライベートDockerレジストリを使用する場合や、テストに別のDockerレジストリを使用する場合) に便利です。", + "Image pull will be skipped" : "イメージダウンロードは省略されました", "Remove" : "削除", + "No custom Docker registries configured" : "No custom Docker registries configured", "From" : "開始", + "registry URL (e.g. ghcr.io)" : "レジストリーURL(例: ghcr.io)", "To" : "宛先", + "registry URL (e.g. docker.io)" : "レジストリーURL(例:docker.io)", "Add" : "追加", + "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "ホスト名(およびポート){name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホスト{host}であれば構いません。", + "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ホスト名(およびポート)またはパス{name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホストであれば構いません。Dockerソケットへのパスとしても指定できます(例: nextcloud-appapi-dsp:2375や/var/run/docker.sock)", + "Edit Deploy Daemon" : "バックグラウンドデプロイデーモン設定を修正", + "Register Deploy Daemon" : "バックグラウンドデプロイサーバーを登録", "Display name" : "表示名", + "Deployment method" : "デプロイ手法", + "HaRP host" : "HaRPホスト", + "Daemon host" : "バックグラウンドデーモンホスト", + "HaRP shared key" : "HaRP共有鍵", + "Password must be at least 12 characters long" : "パスワードは12字以上である必要があります", + "Enable https" : "httpsを有効化", + "Show deploy config" : "デプロイ設定を表示", + "Hide deploy config" : "デプロイ設定を隠す", + "Enable HaRP" : "HaRPを有効化", + "FRP server address" : "FRPサーバーアドレス", + "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "「Docker ネットワーク」で定義されたネットワーク内の元アプリからアクセスできるFRPサーバーのアドレス(ホスト:ポート)。", + "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Dockerソケットプロキシーへ接続するHaRPのポート。これは公開される必要がありますが、組み込みの場合は公開または変更する必要はありません。", + "Disable FRP" : "FRPを無効化", "Disabled" : "無効", + "Must be a positive integer" : "正の整数である必要があります", + "Must be a positive number" : "正の数である必要があります", + "Additional option" : "追加オプション", + "Add additional option" : "オプションを追加", + "Option value" : "オプション", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", + "Check connection" : "接続を確認", + "External Apps" : "外部アプリ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIと専用設計アプリケーションでNextcloudを強化\n\n\nAppAPIはNextcloudエコシステム内のプロジェクトで、\nアプリケーションの開発、デプロイ、管理のプロセスを効率化・強化することを目的としています。\n\n従来Nextcloud開発で用いられてきたPHPに限定されない、\n様々なプログラミング言語を用いたアプリケーション開発を可能にする新たな手法を導入します。\n\n### バンドルアプリ\n\n**Nextcloud 30.0.1以降、このアプリケーションはデフォルトのNextcloudパッケージに含まれています。**\n\n### サポート\n\n本プロジェクトへのご支援を心よりお待ちしております:\n\n- ⭐ GitHubでスターを付ける\n- ❗ イシューまたは機能リクエストを作成\n- 💁 イシューを解決しプルリクエストを作成\n- 🧑‍💻 AppAPIを使用して独自のアプリケーションを開発\n\nAppAPIプロジェクトの将来性と、Nextcloud内でのアプリケーション開発・体験の方法を変革する可能性に、私たちは心から期待しています。\n\nこの道に踏み出すにあたり、より多様で安定した安全なアプリ環境の構築を構築するために\n開発者、思想家、創造者、そして先見の明を持つ皆様を温かく迎え入れたいと思います。\n\n*皆様の洞察、提案、貢献は私たちにとってとても有意義なものです。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", @@ -105,6 +163,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "注目のアプリはコミュニティ内で開発されています。これらのアプリは主要な機能を提供しており、すぐに本番で使用することができます。", "Featured" : "注目", "Update to {update}" : "{update} にアップデート", + "All ExApps are up-to-date." : "全ての外部アプリが最新です。", "Default Deploy daemon is not accessible" : "デフォルトのデプロイデーモンにアクセスできません", "Icon" : "アイコン", "Version" : "バージョン", @@ -112,10 +171,12 @@ "Level" : "レベル", "Actions" : "アクション", "Results from other categories" : "他のカテゴリからの結果", + "No apps found" : "アプリが見つかりませんでした", "_Update_::_Update all_" : ["全て更新"], "Type" : "タイプ", "Display Name" : "表示名", "Network" : "ネットワーク", + "Docker network name" : "Dockerネットワーク名", "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", @@ -127,13 +188,19 @@ "Featured apps" : "注目のアプリ", "Supported apps" : "対応しているアプリ", "manual-install apps cannot be updated" : "手動インストールしたアプリはアップデートできません", + "{progress}% Deploying" : "{progress}% デプロイ中 …", + "{progress}% Initializing" : "{progress}% 初期化中", + "Healthchecking" : "ヘルスチェック", "Deploy and Enable" : "デプロイと有効化", "Enable" : "有効にする", "Disable" : "無効", "Allow untested app" : "テストされていないアプリを許可する", + "Default Deploy daemon is not accessible. Please verify configuration" : "デフォルトのバックグラウンドDeployデーモンにアクセスできません。構成を確認してください", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "このアプリはご利用中のNextcloudのバージョンと互換性があるとしてマークされていません。 続行しても、アプリをインストールすることはできます。 アプリが期待通りに動作しない可能性があることに注意してください。", + "Your ExApps" : "あなたの外部アプリ", "An error occurred during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", "The app has been enabled but needs to be updated." : "アプリは有効になっているが、アップデートが必要です。", - "Error: This app cannot be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。" + "Error: This app cannot be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIと専用設計アプリケーションでNextcloudを強化\n\n\nAppAPIはNextcloudエコシステム内のプロジェクトで、\nアプリケーションの開発、デプロイ、管理プロセスを効率化・強化するために設計されています。\n\n従来Nextcloud開発で用いられてきたPHPに限定されない、様々なプログラミング言語を用いたアプリケーション開発を可能にする新たな手法を導入します。\n\n\n### AppAPIを必要とするアプリケーション一覧:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_アプリケーション開発をご希望の場合、喜んでお手伝いいたします。_\n\n### サポート\n\n本プロジェクトへのご支援を心よりお待ちしております:\n\n- ⭐ GitHubでスターを付ける\n- ❗ イシューまたは機能リクエストを作成する\n- 💁 イシューを解決しプルリクエストを作成する\n- 🧑‍💻 AppAPIを使用した独自アプリケーションの開発\n\nAppAPIプロジェクトの未来と、Nextcloud内でのアプリケーション開発・体験方法を変革する可能性に、私たちは心から期待しています。\n\nこの道に踏み出すにあたり、より多様で安定した安全なアプリ環境を構築するために\n開発者、思想家、創造者、そして先見の明を持つ皆様を温かくお招きいたします。\n\n*皆様の要望、提案、貢献は私たちにとってとても有意義なものです。*" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file From a71e178ac7f1267eec5271c2000d9409181f22c3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 15 Nov 2025 00:19:48 +0000 Subject: [PATCH 211/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/lo.js | 20 ++++++++++++++++++++ l10n/lo.json | 18 ++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 l10n/lo.js create mode 100644 l10n/lo.json diff --git a/l10n/lo.js b/l10n/lo.js new file mode 100644 index 00000000..4e7a39ec --- /dev/null +++ b/l10n/lo.js @@ -0,0 +1,20 @@ +OC.L10N.register( + "app_api", + { + "Cancel" : "ຍົກເລີກ", + "Delete" : "ລຶບ", + "Default" : "ເລີ່ມຕົ້ນ", + "Edit" : "ແກ້ໄຂ", + "Name" : "ຊື່", + "Remove" : "ຍ້າຍອອກ", + "From" : "ຈາກ", + "To" : "ເຖິງ", + "Confirm" : "ຢືນຢັນ", + "Save" : "ບັນທຶກ", + "Register" : "ລົງທະບຽນ", + "Update to {version}" : "ປັບປຸງ ເປັນ {version}", + "Type" : "ພິມ", + "Details" : "ລາຍລະອຽດ", + "Disable" : "ປິດ" +}, +"nplurals=1; plural=0;"); diff --git a/l10n/lo.json b/l10n/lo.json new file mode 100644 index 00000000..662795f9 --- /dev/null +++ b/l10n/lo.json @@ -0,0 +1,18 @@ +{ "translations": { + "Cancel" : "ຍົກເລີກ", + "Delete" : "ລຶບ", + "Default" : "ເລີ່ມຕົ້ນ", + "Edit" : "ແກ້ໄຂ", + "Name" : "ຊື່", + "Remove" : "ຍ້າຍອອກ", + "From" : "ຈາກ", + "To" : "ເຖິງ", + "Confirm" : "ຢືນຢັນ", + "Save" : "ບັນທຶກ", + "Register" : "ລົງທະບຽນ", + "Update to {version}" : "ປັບປຸງ ເປັນ {version}", + "Type" : "ພິມ", + "Details" : "ລາຍລະອຽດ", + "Disable" : "ປິດ" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file From fb29cacb75ce7fcb1cd8660f9f5205ba9e79d0ec Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 16 Nov 2025 00:19:52 +0000 Subject: [PATCH 212/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ug.js | 1 + l10n/ug.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/ug.js b/l10n/ug.js index 0dd1c5cb..badad446 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -164,6 +164,7 @@ OC.L10N.register( "Actions" : "مەشغۇلاتلار", "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", + "_Update_::_Update all_" : ["ھەممىنى يېڭىلا","ھەممىنى يېڭىلا"], "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", diff --git a/l10n/ug.json b/l10n/ug.json index 885c39eb..d9da7229 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -162,6 +162,7 @@ "Actions" : "مەشغۇلاتلار", "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", + "_Update_::_Update all_" : ["ھەممىنى يېڭىلا","ھەممىنى يېڭىلا"], "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", From 65c5d1a882c7d5122e2218ae834a85284819b435 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 18 Nov 2025 00:21:14 +0000 Subject: [PATCH 213/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 104 ++++++++++++++++++++----------------------- l10n/ar.json | 104 ++++++++++++++++++++----------------------- l10n/ast.js | 20 ++++----- l10n/ast.json | 20 ++++----- l10n/be.js | 3 +- l10n/be.json | 3 +- l10n/bs.js | 19 -------- l10n/bs.json | 17 ------- l10n/ca.js | 98 ++++++++++++++++++++-------------------- l10n/ca.json | 98 ++++++++++++++++++++-------------------- l10n/cs.js | 114 ++++++++++++++++++++--------------------------- l10n/cs.json | 114 ++++++++++++++++++++--------------------------- l10n/da.js | 110 ++++++++++++++++++++------------------------- l10n/da.json | 110 ++++++++++++++++++++------------------------- l10n/de.js | 114 ++++++++++++++++++++--------------------------- l10n/de.json | 114 ++++++++++++++++++++--------------------------- l10n/de_DE.js | 114 ++++++++++++++++++++--------------------------- l10n/de_DE.json | 114 ++++++++++++++++++++--------------------------- l10n/el.js | 110 ++++++++++++++++++++------------------------- l10n/el.json | 110 ++++++++++++++++++++------------------------- l10n/en_GB.js | 114 ++++++++++++++++++++--------------------------- l10n/en_GB.json | 114 ++++++++++++++++++++--------------------------- l10n/es.js | 110 ++++++++++++++++++++------------------------- l10n/es.json | 110 ++++++++++++++++++++------------------------- l10n/es_MX.js | 6 +-- l10n/es_MX.json | 6 +-- l10n/et_EE.js | 23 +++++++--- l10n/et_EE.json | 23 +++++++--- l10n/eu.js | 23 +++++----- l10n/eu.json | 23 +++++----- l10n/fa.js | 1 + l10n/fa.json | 1 + l10n/fi.js | 1 + l10n/fi.json | 1 + l10n/fr.js | 100 +++++++++++++++++++++-------------------- l10n/fr.json | 100 +++++++++++++++++++++-------------------- l10n/ga.js | 116 +++++++++++++++++++++--------------------------- l10n/ga.json | 116 +++++++++++++++++++++--------------------------- l10n/gl.js | 116 +++++++++++++++++++++--------------------------- l10n/gl.json | 116 +++++++++++++++++++++--------------------------- l10n/he.js | 1 + l10n/he.json | 1 + l10n/hr.js | 1 + l10n/hr.json | 1 + l10n/hu.js | 1 + l10n/hu.json | 1 + l10n/is.js | 7 +-- l10n/is.json | 7 +-- l10n/it.js | 1 + l10n/it.json | 1 + l10n/ja.js | 84 ++++++++++++++++------------------- l10n/ja.json | 84 ++++++++++++++++------------------- l10n/ka.js | 1 + l10n/ka.json | 1 + l10n/ko.js | 93 +++++++++++++++++++------------------- l10n/ko.json | 93 +++++++++++++++++++------------------- l10n/lt_LT.js | 5 ++- l10n/lt_LT.json | 5 ++- l10n/lv.js | 2 +- l10n/lv.json | 2 +- l10n/mk.js | 1 + l10n/mk.json | 1 + l10n/nb.js | 99 +++++++++++++++++++++-------------------- l10n/nb.json | 99 +++++++++++++++++++++-------------------- l10n/nl.js | 111 +++++++++++++++++++++------------------------ l10n/nl.json | 111 +++++++++++++++++++++------------------------ l10n/nn_NO.js | 1 + l10n/nn_NO.json | 1 + l10n/oc.js | 1 + l10n/oc.json | 1 + l10n/pl.js | 116 +++++++++++++++++++++--------------------------- l10n/pl.json | 116 +++++++++++++++++++++--------------------------- l10n/pt_BR.js | 116 +++++++++++++++++++++--------------------------- l10n/pt_BR.json | 116 +++++++++++++++++++++--------------------------- l10n/ro.js | 1 + l10n/ro.json | 1 + l10n/ru.js | 112 +++++++++++++++++++++------------------------- l10n/ru.json | 112 +++++++++++++++++++++------------------------- l10n/sc.js | 1 + l10n/sc.json | 1 + l10n/sk.js | 106 +++++++++++++++++++++---------------------- l10n/sk.json | 106 +++++++++++++++++++++---------------------- l10n/sl.js | 1 + l10n/sl.json | 1 + l10n/sr.js | 116 +++++++++++++++++++++--------------------------- l10n/sr.json | 116 +++++++++++++++++++++--------------------------- l10n/sv.js | 1 + l10n/sv.json | 1 + l10n/sw.js | 115 +++++++++++++++++++++-------------------------- l10n/sw.json | 115 +++++++++++++++++++++-------------------------- l10n/tr.js | 116 +++++++++++++++++++++--------------------------- l10n/tr.json | 116 +++++++++++++++++++++--------------------------- l10n/ug.js | 100 +++++++++++++++++++++-------------------- l10n/ug.json | 100 +++++++++++++++++++++-------------------- l10n/uk.js | 116 +++++++++++++++++++++--------------------------- l10n/uk.json | 116 +++++++++++++++++++++--------------------------- l10n/uz.js | 4 +- l10n/uz.json | 4 +- l10n/vi.js | 1 + l10n/vi.json | 1 + l10n/zh_CN.js | 26 ++++++----- l10n/zh_CN.json | 26 ++++++----- l10n/zh_HK.js | 116 +++++++++++++++++++++--------------------------- l10n/zh_HK.json | 116 +++++++++++++++++++++--------------------------- l10n/zh_TW.js | 116 +++++++++++++++++++++--------------------------- l10n/zh_TW.json | 116 +++++++++++++++++++++--------------------------- 106 files changed, 2842 insertions(+), 3366 deletions(-) delete mode 100644 l10n/bs.js delete mode 100644 l10n/bs.json diff --git a/l10n/ar.js b/l10n/ar.js index 280e3195..ea789e5a 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -23,58 +23,35 @@ OC.L10N.register( "AppAPI deploy daemon" : "البرنامج الخفي daemon لنشر AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "البرنامج الخفي التلقائي لنشر AppAPI لم يتم تعيينه. رجاءً؛ قُم بتسجيله في الإعدادات ليمكنك تثبيت التطبيقات الخارجية (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "البرنامج الخفي لنشر AppAPI \"%s\" لايمكن الوصول إليه. رجاءً؛ قُم بفحص تهيئة البرنامج الخفي daemon.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "البرنامج الخفي التلقائي لنشر AppAPI لايستعمل HaRP. رجاءً؛ أدرُس إمكانية ترقيته لتحسين الأداء.", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", - "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "نشر البرامج الخفيّة Daemons. البرنامج Deploy Daemon (DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن. تأكّد من إعداداته لو سمحت ", "ExApp init timeout (minutes)" : "مُهلة بدء التطبيقات الخارجية ExApp (بالدقائق)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "مُهلة بدء التطبيقات الخارجية ExApp حيث بعدها سيتعامل AppAPI معها كعملية فاشلة", "ExApp init timeout" : "مهلة بدء التطبيقات الخارجية ExApp", "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", - "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", - "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", - "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", - "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", "Cancel" : "إلغاء", "Delete" : "حذف", - "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", - "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Default" : "التلقائي", "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", - "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", - "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Unlimited" : "غير محدود", - "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", - "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "البرنامج الخفي للتثبيت اليدوي يُستعمل عادةً في مرحلة التطوير؛ و لا يمكن تعيينه كبرنامج خفي تلقائي.", "ExApps installed" : "البرنامج الخارحي ExApps تمّ تثبيته", "Name" : "الاسم", "Protocol" : "بروتوكول", "Host" : "المضيف", - "Deploy config" : "تهيئة النشر", "Docker network" : "شبكة \"دوكر\" Docker", "Nextcloud URL" : "رابط الخادم السحابي نكست كلاود", "HaProxy password" : "كلمة مرور HaProxy", - "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", - "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", - "Verify connection" : "تحقّق من الاتصال", + "Check connection" : "تحقَّق من الاتصال", "Registered Deploy daemons list" : "قائمة برامج النشر الخفية المسجلة", - "No Deploy daemons configured" : "لم تتم تهيئة أي برامج نشر خفية", - "Register a custom one or setup from available templates" : "قُم بتسجيل واحدة مخصصة أو قم بتجهيز واحدة باستعمال القوالب المتاحة", - "Register Daemon" : "قم بتسجيل برنامج خفي Daemon", "Register ExApp in Nextcloud" : "تسجيل ExApp في نكست كلاود", "Check if the ExApp is registered in Nextcloud before deployment" : "التحقُّق من أن ExApp مُسجَّل في نكست كلاود قبل النشر", "Image pull" : "سحب الصورة", @@ -90,59 +67,32 @@ OC.L10N.register( "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", - "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", - "More info" : "معلومات أكثر", "Download ExApp logs" : "تنزيل سجلات حركة ExApp", - "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", - "Start Deploy test" : "البدء في النشر التجريبي", - "Stop Deploy test" : "إيقاف النشر التجريبي", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Remove" : "حذف", "From" : "مِن :", "To" : "إلى :", "Add" : "إضافة ", - "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "المفتاح السّري لاتصالات حاوية HaRP؛ أي (HP_SHARES_KEY).", "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", - "The docker network that the deployed ex-apps would use." : "شبكة \"دوكر\" docker التي ستستعملها التطبيقات الخارجية ex-apps المثبتة.", - "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", - "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", - "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", + "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", + "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Daemon configuration template" : "قالب تهيئة برنامج خفي", - "Select daemon configuration template" : "إختَر قالب تهيئة البرنامج الخفي", "Daemon registration form" : "نموذج تهيئة برنامج خفي", - "Unique Deploy Daemon Name" : "الاسم الفريد للبرنامج الخفي للنشر", "Display name" : "اسم العرض", "Deployment method" : "طُرُق النشر", - "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "HaRP host" : "مُضِيف HaRP", "Daemon host" : "مُضِيف البرنامج الخفي", "HaRP shared key" : "مفتاح HaRP المُشتَرَك", - "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", - "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", - "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", - "Enable https" : "تمكين https", - "Show deploy config" : "أظهِر تهيئة النشر deploy config", - "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", "Enable HaRP" : "تمكين HaRP", "FRP server address" : "عنوان خادوم FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "عنوان خادوم FRP (أي المضيف: المنفذ) الذي يجب أن يكون الوصول إليه متاحاً بالنسبة للتطبيق الخارجي في الشبكة المُعرَّفة في 'شبكة دوكر Docker network'.", "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "المنفذ الذي يتصل من خلاله وكيل مقبس \"دوكر\". هذا يجب أن يكون مكشوفاً؛ لكن بالنسبة للجاهز built-in فلايحتاج لأن يكون مكشوفاً ولا أن يتم تغييره.", "Disabled" : "مُعطّل", "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", - "Additional option" : "خيار إضافي", + "Compute device" : "إحسب الجهاز", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", "Option key (unique, e.g. my_key)" : "مفتاح الخيار (غير متكرر؛ مثل: my_key )", @@ -152,10 +102,15 @@ OC.L10N.register( "Confirm" : "تأكيد", "Save" : "حفظ", "Register" : "تسجيل", - "Check connection" : "تحقَّق من الاتصال", "External Apps" : "تطبيقات خارجية", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", + "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "نشر البرامج الخفيّة Daemons. البرنامج Deploy Daemon (DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن. تأكّد من إعداداته لو سمحت ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", + "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", "Delete data on remove" : "إحذف البيانات عند الإزالة", @@ -185,12 +140,51 @@ OC.L10N.register( "No apps found" : "لا توجد أي تطبيقات", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], + "Deploy Daemon" : "نشر البرنامج الخفي", "Type" : "النوع", "Display Name" : "إسم العرض", + "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", + "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", + "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", + "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", + "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", + "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", + "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "البرنامج الخفي للتثبيت اليدوي يُستعمل عادةً في مرحلة التطوير؛ و لا يمكن تعيينه كبرنامج خفي تلقائي.", + "Deploy config" : "تهيئة النشر", + "Verify connection" : "تحقّق من الاتصال", + "No Deploy daemons configured" : "لم تتم تهيئة أي برامج نشر خفية", + "Register a custom one or setup from available templates" : "قُم بتسجيل واحدة مخصصة أو قم بتجهيز واحدة باستعمال القوالب المتاحة", + "Register Daemon" : "قم بتسجيل برنامج خفي Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", + "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", + "More info" : "معلومات أكثر", + "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", + "Start Deploy test" : "البدء في النشر التجريبي", + "Stop Deploy test" : "إيقاف النشر التجريبي", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", + "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", + "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", + "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", + "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", + "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", + "Select daemon configuration template" : "إختَر قالب تهيئة البرنامج الخفي", + "Unique Deploy Daemon Name" : "الاسم الفريد للبرنامج الخفي للنشر", + "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", + "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", + "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", + "Enable https" : "تمكين https", + "Show deploy config" : "أظهِر تهيئة النشر deploy config", + "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", "Network" : "الشبكة", "Docker network name" : "إسم شبكة \"دوكر\" Docker", + "Additional option" : "خيار إضافي", "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", diff --git a/l10n/ar.json b/l10n/ar.json index 221391d5..77f93f6a 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -21,58 +21,35 @@ "AppAPI deploy daemon" : "البرنامج الخفي daemon لنشر AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "البرنامج الخفي التلقائي لنشر AppAPI لم يتم تعيينه. رجاءً؛ قُم بتسجيله في الإعدادات ليمكنك تثبيت التطبيقات الخارجية (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "البرنامج الخفي لنشر AppAPI \"%s\" لايمكن الوصول إليه. رجاءً؛ قُم بفحص تهيئة البرنامج الخفي daemon.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "البرنامج الخفي التلقائي لنشر AppAPI لايستعمل HaRP. رجاءً؛ أدرُس إمكانية ترقيته لتحسين الأداء.", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", - "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "نشر البرامج الخفيّة Daemons. البرنامج Deploy Daemon (DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن. تأكّد من إعداداته لو سمحت ", "ExApp init timeout (minutes)" : "مُهلة بدء التطبيقات الخارجية ExApp (بالدقائق)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "مُهلة بدء التطبيقات الخارجية ExApp حيث بعدها سيتعامل AppAPI معها كعملية فاشلة", "ExApp init timeout" : "مهلة بدء التطبيقات الخارجية ExApp", "ExApp container restart policy" : "سياسة إعادة تشغيل حاوية container التطبيقات الخارجية ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", - "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", - "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", - "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", - "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", "Cancel" : "إلغاء", "Delete" : "حذف", - "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", - "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", "Password confirmation failed" : "فشل في تأكيد كلمة المرور", "Default" : "التلقائي", "Set as default" : "ضبط كقيمة تلقائية", "Test deploy" : "نشر تجريبي", "Edit" : "تحرير", "Daemon connection successful" : "تمّ الاتصال بنجاح مع برنامج الخادم الخفي", - "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", - "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Unlimited" : "غير محدود", - "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", - "Deploy Daemon" : "نشر البرنامج الخفي", "Default daemon. ExApps will be installed on it" : "البرنامج الخفي التلقائي. سوف يتم تثبيت التطبيقات الخارجية عليه.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "البرنامج الخفي للتثبيت اليدوي يُستعمل عادةً في مرحلة التطوير؛ و لا يمكن تعيينه كبرنامج خفي تلقائي.", "ExApps installed" : "البرنامج الخارحي ExApps تمّ تثبيته", "Name" : "الاسم", "Protocol" : "بروتوكول", "Host" : "المضيف", - "Deploy config" : "تهيئة النشر", "Docker network" : "شبكة \"دوكر\" Docker", "Nextcloud URL" : "رابط الخادم السحابي نكست كلاود", "HaProxy password" : "كلمة مرور HaProxy", - "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", - "Compute device" : "إحسب الجهاز", "Additional options" : "خيارات إضافية", - "Verify connection" : "تحقّق من الاتصال", + "Check connection" : "تحقَّق من الاتصال", "Registered Deploy daemons list" : "قائمة برامج النشر الخفية المسجلة", - "No Deploy daemons configured" : "لم تتم تهيئة أي برامج نشر خفية", - "Register a custom one or setup from available templates" : "قُم بتسجيل واحدة مخصصة أو قم بتجهيز واحدة باستعمال القوالب المتاحة", - "Register Daemon" : "قم بتسجيل برنامج خفي Daemon", "Register ExApp in Nextcloud" : "تسجيل ExApp في نكست كلاود", "Check if the ExApp is registered in Nextcloud before deployment" : "التحقُّق من أن ExApp مُسجَّل في نكست كلاود قبل النشر", "Image pull" : "سحب الصورة", @@ -88,59 +65,32 @@ "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", - "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", - "More info" : "معلومات أكثر", "Download ExApp logs" : "تنزيل سجلات حركة ExApp", - "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", - "Start Deploy test" : "البدء في النشر التجريبي", - "Stop Deploy test" : "إيقاف النشر التجريبي", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", "Remove" : "حذف", "From" : "مِن :", "To" : "إلى :", "Add" : "إضافة ", - "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "اسم المضيف (والمنفذ) حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً؛ يلزم فقط أن يكون الوصول إليه مُتاحاً من خادوم نكست كلاود. مثلاً: {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المضيف (والمنفذ) أو المسار حيث يوجد {name} لايلزم أن يكون مُضيفاً عُموميّاً. يلزم فقط أن يكون الوصول إليه متاحاً من خادوم نكست كلاود. ويمكن أيضاً أن يكون مَقبَس \"دوكر\" docker socket. (مثلاً: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "المفتاح السّري لاتصالات حاوية HaRP؛ أي (HP_SHARES_KEY).", "AppAPI Docker Socket Proxy authentication password" : "كلمة مرور التصديق على وكيل مقبس \"دوكر\" Docker Socket Proxy للواجهات AppAPI", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", - "The docker network that the deployed ex-apps would use." : "شبكة \"دوكر\" docker التي ستستعملها التطبيقات الخارجية ex-apps المثبتة.", - "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", "DaemonConfig successfully registered" : "تمّ بنجاح تسجيل إعداد لبرنامج الخادم خفي DaemonConfig", "Failed to register DaemonConfig. Check the logs" : "تعذّر تسجيل إعداد لبرنامج خفي DaemonConfig. راجع سجل الحركات", "DaemonConfig successfully updated" : "تمّ تحديث DaemonConfig بنجاح", "Failed to update DaemonConfig. Check the logs" : "تعذّر تحديث DaemonConfig. تحقَّق من سجل الحركات.", - "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", - "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", + "Failed to connect to Daemon. Check the logs" : "تعذّر الاتصال مع البرنامج الخفي", + "Failed to check connection to Daemon. Check the logs" : "تعذّر اختبار الاتصال مع البرنامج الخفي. راجع سجل الحركات", "Daemon configuration template" : "قالب تهيئة برنامج خفي", - "Select daemon configuration template" : "إختَر قالب تهيئة البرنامج الخفي", "Daemon registration form" : "نموذج تهيئة برنامج خفي", - "Unique Deploy Daemon Name" : "الاسم الفريد للبرنامج الخفي للنشر", "Display name" : "اسم العرض", "Deployment method" : "طُرُق النشر", - "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", "HaRP host" : "مُضِيف HaRP", "Daemon host" : "مُضِيف البرنامج الخفي", "HaRP shared key" : "مفتاح HaRP المُشتَرَك", - "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", - "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", - "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", - "Enable https" : "تمكين https", - "Show deploy config" : "أظهِر تهيئة النشر deploy config", - "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", "Enable HaRP" : "تمكين HaRP", "FRP server address" : "عنوان خادوم FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "عنوان خادوم FRP (أي المضيف: المنفذ) الذي يجب أن يكون الوصول إليه متاحاً بالنسبة للتطبيق الخارجي في الشبكة المُعرَّفة في 'شبكة دوكر Docker network'.", "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "المنفذ الذي يتصل من خلاله وكيل مقبس \"دوكر\". هذا يجب أن يكون مكشوفاً؛ لكن بالنسبة للجاهز built-in فلايحتاج لأن يكون مكشوفاً ولا أن يتم تغييره.", "Disabled" : "مُعطّل", "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", - "Additional option" : "خيار إضافي", + "Compute device" : "إحسب الجهاز", "Add additional option" : "إضِف خياراً إضافيّاً", "Option key (unique)" : "مفتاح الخيار (غير متكرر)", "Option key (unique, e.g. my_key)" : "مفتاح الخيار (غير متكرر؛ مثل: my_key )", @@ -150,10 +100,15 @@ "Confirm" : "تأكيد", "Save" : "حفظ", "Register" : "تسجيل", - "Check connection" : "تحقَّق من الاتصال", "External Apps" : "تطبيقات خارجية", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزز نكست كلاود عندك باستعمال AppAPI وتطبيقاته المصممة خصيصًا. \n\n\nمشروع AppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nيقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت تستخدم تقليديًا في تطوير نكست كلاود. \n\n### التطبيق المجمع budled app \n\n**بدءًا من الإصدار 30.0.1 من نكست كلاود، تم تضمين هذا التطبيق في حزمة نكست كلاود الافتراضية.** \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حُلَّ مشكلة وأنشئ طلب سحب \n- 🧑‍💻 قم بتطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعًا واستقرارًا وأمانًا. \n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "مشروع AppAPI هو مبادرة مثيرة تهدف لتثوير طريقة تطوير التطبيقات في نكست كلاود.", + "Deploy Daemons" : "نشر البرامج الخفيّة Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (أو DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "نشر البرامج الخفيّة Daemons. البرنامج Deploy Daemon (DaemonConfig) هو برنامج خفي لتنسيق التطبيقات الخارجية.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "الوصول إلى البرنامج الخفي التلقائي لنشر التطبيقات Default Deploy Daemon غير ممكن. تأكّد من إعداداته لو سمحت ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قم بتحديد سياسة إعادة تشغيل الحاوية. مثلاً: \"دائماً always\" تضمن تشغيل التطبيق الخارجي ExApp بعد إعادة تشغيل خادم البرنامج الخفي ", + "This settings changes are reflected only for newly created containers" : "التعديلات في هذا الإعداد تنعكس فقط على الحاويات المُنشأة حديثاً", "{license}-licensed" : "{license} مُرخّصٌ", "Update to {version}" : "التحديث إلى {version}", "Delete data on remove" : "إحذف البيانات عند الإزالة", @@ -183,12 +138,51 @@ "No apps found" : "لا توجد أي تطبيقات", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيق يوجد لها تحديث","%n تطبيقات يوجد لها تحديث","%n تحديث يوجد لها تحديث","%nتطبيق يوجد لها تحديث"], "_Update_::_Update all_" : ["تحديث الكل","تحديث","تحديث الكل","تحديث الكل","تحديث الكل","تحديث الكل"], + "Deploy Daemon" : "نشر البرنامج الخفي", "Type" : "النوع", "Display Name" : "إسم العرض", + "GPUs support" : "دعم وحدات المعالجة الرسومية GPU", + "Are you sure you want delete Deploy Daemon" : "هل أنت متأكد أنك تريد حذف البرنامج المخفي للنشر Deploy Daemon؟", + "All ExApps on this daemon will be removed" : "كل التطبيقات الخارجية على هذا البرنامج الخفي سيتم حذفها", + "All ExApps installed on this daemon will be removed" : "كل التطبيقات الخارجية المثبتة على هذا البرنامج الخفي سيتم حذفها", + "\"manual-install\" Deploy Daemon cannot be set as default" : "تطبيق النشر الخارجي \"التثبيت اليدوي\" \"manual-install\" لا يمكن تعيينه كافتراضي", + "Failed to save admin options. Check the logs" : "تعذّر حفظ خيارات المدير. راجع سجل الأحداث", + "Deploy daemon config details" : "تفاصيل تهيئة برنامج النشر الخفي ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "البرنامج الخفي للتثبيت اليدوي يُستعمل عادةً في مرحلة التطوير؛ و لا يمكن تعيينه كبرنامج خفي تلقائي.", + "Deploy config" : "تهيئة النشر", + "Verify connection" : "تحقّق من الاتصال", + "No Deploy daemons configured" : "لم تتم تهيئة أي برامج نشر خفية", + "Register a custom one or setup from available templates" : "قُم بتسجيل واحدة مخصصة أو قم بتجهيز واحدة باستعمال القوالب المتاحة", + "Register Daemon" : "قم بتسجيل برنامج خفي Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "سيحاول AppAPI تثبيت ExApp الهيكلي الصغير للتحقق من تكوين Daemon بشكل صحيح ومن تنفيذ خطوات النشر بنجاحٍ.", + "The following Deploy test checks must be passed to succeed:" : "يجب اجتياز عمليات التحقق من اختبار النشر التالية لتحقيق النجاح:", + "More info" : "معلومات أكثر", + "Remove test ExApp" : "إزالة التطبيق الخارجي ExApp التجريبي", + "Start Deploy test" : "البدء في النشر التجريبي", + "Stop Deploy test" : "إيقاف النشر التجريبي", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "التطبيق الخارجي ExApp غير مسجل؛ و تمّت إزالة الحاوية في \"إيقاف تجربة النشر Stop deploy test\"", + "Hostname to access ExApps" : "اسم المضيف Hostname للوصول إلى التطبيقات الخارجية ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "اسم المُضيف للوصول إلى البرنامج الخفي لـ\"دوكر\". مثلاً: (nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "برنامج خفي آخر بنفس هذا الاسم موجود سلفاً", + "Password must be at least 12 characters long" : "يجب ألّا يقل طول كلمة المرور عن 12 حرفاً", "With https enabled network is set to host" : "مع تعيين شبكة للمضيف يكون فيها بروتوكول https مٌمكّناً", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "سيتم تطبيق التغييرات فقط على التطبيقات الخارجية ExApps المثبتة حديثًا. أمّا بالنسبة إلى تلك الموجودة سلفاً، فتتوجب إعادة إنشاء حاويات Docker لها.", + "URL should start with http:// or https://" : "عناوين الويب يجب أن تبدأ بـ http:// أو بـ https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "بالنسبة للبرنامج الخفي لـ HTTPS، عنوان URL لنكست كلاود يجب أن يكون HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "كل وحدات المعالجة الرسومية GPU على مُضيف البرنامج الخفي سيتم طلب تمكينها في حاويات التطبيقات الخارجية ExApp من قِبَل \"دوكر\" Docker. ", + "Edit Deploy Daemon" : "تحرير برنامج النشر الخفي", + "Register Deploy Daemon" : "تسجيل برنامج خفي للنشر", + "Select daemon configuration template" : "إختَر قالب تهيئة البرنامج الخفي", + "Unique Deploy Daemon Name" : "الاسم الفريد للبرنامج الخفي للنشر", + "Select daemon deploy method" : "إختَر طريقة نشر البرنامج الخفي", + "Set daemon as default" : "إختَر البرنامج الخفي كقيمة تلقائية", + "Set as default daemon" : "تعيين كبرنامج خفي تلقائي", + "Enable https" : "تمكين https", + "Show deploy config" : "أظهِر تهيئة النشر deploy config", + "Hide deploy config" : "إخْفِ تهيئة النشر deploy config", "Network" : "الشبكة", "Docker network name" : "إسم شبكة \"دوكر\" Docker", + "Additional option" : "خيار إضافي", "by {author}\n{license}" : "من قِبَل {author}\n{license}", "Your apps" : "تطبيقاتك", "Documentation" : "توثيق النظام", diff --git a/l10n/ast.js b/l10n/ast.js index 9a5359e6..ba85c120 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -8,8 +8,6 @@ OC.L10N.register( "Could not perform update of ExApp" : "Nun se pudo facer l'anovamientu de l'aplicación esterna", "Nextcloud AppAPI" : "AppAPI de Nextcloud", "External Apps management" : "Xestión d'aplicaciones esternes", - "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", - "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", "Delete" : "Desaniciar", "Default" : "Por defeutu", @@ -23,25 +21,18 @@ OC.L10N.register( "Docker network" : "Rede de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", - "Verify connection" : "Verificar la conexón", - "Register Daemon" : "Rexistrar el degorriu", + "Check connection" : "Comprobar la conexón", "Enabled" : "Activóse", - "More info" : "Más información", "Remove" : "Quitar", "From" : "De", "To" : "Pa", "Add" : "Amestar", - "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", - "Set daemon as default" : "Predeterminar el degorriu", - "Set as default daemon" : "Predeterminar el degorriu", - "Enable https" : "Activar HTTPS", "Disabled" : "Desactivóse", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", - "Check connection" : "Comprobar la conexón", "External Apps" : "Aplicaciones esternes", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "{license}-licensed" : "Con llicencia {license}", @@ -68,6 +59,15 @@ OC.L10N.register( "_Update_::_Update all_" : ["Anovar","Anovar too"], "Type" : "Tipu", "Display Name" : "Nome visible", + "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", + "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", + "Verify connection" : "Verificar la conexón", + "Register Daemon" : "Rexistrar el degorriu", + "More info" : "Más información", + "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", + "Set daemon as default" : "Predeterminar el degorriu", + "Set as default daemon" : "Predeterminar el degorriu", + "Enable https" : "Activar HTTPS", "Network" : "Rede", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Les tos aplicaciones", diff --git a/l10n/ast.json b/l10n/ast.json index 1ae488e3..e067fb4f 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -6,8 +6,6 @@ "Could not perform update of ExApp" : "Nun se pudo facer l'anovamientu de l'aplicación esterna", "Nextcloud AppAPI" : "AppAPI de Nextcloud", "External Apps management" : "Xestión d'aplicaciones esternes", - "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", - "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", "Cancel" : "Encaboxar", "Delete" : "Desaniciar", "Default" : "Por defeutu", @@ -21,25 +19,18 @@ "Docker network" : "Rede de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", - "Verify connection" : "Verificar la conexón", - "Register Daemon" : "Rexistrar el degorriu", + "Check connection" : "Comprobar la conexón", "Enabled" : "Activóse", - "More info" : "Más información", "Remove" : "Quitar", "From" : "De", "To" : "Pa", "Add" : "Amestar", - "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", - "Set daemon as default" : "Predeterminar el degorriu", - "Set as default daemon" : "Predeterminar el degorriu", - "Enable https" : "Activar HTTPS", "Disabled" : "Desactivóse", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", - "Check connection" : "Comprobar la conexón", "External Apps" : "Aplicaciones esternes", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El proyeutu AppAPI ye una iniciativa emocionante que tien l'oxetivu de revolucionar la forma na que se desendolquen les aplicaciones pa Nextcloud.", "{license}-licensed" : "Con llicencia {license}", @@ -66,6 +57,15 @@ "_Update_::_Update all_" : ["Anovar","Anovar too"], "Type" : "Tipu", "Display Name" : "Nome visible", + "All ExApps on this daemon will be removed" : "Van quitase toles aplicaciones esternes d'esti degorriu", + "All ExApps installed on this daemon will be removed" : "Van quitase toles aplicaciones instalaes d'esti degorriu", + "Verify connection" : "Verificar la conexón", + "Register Daemon" : "Rexistrar el degorriu", + "More info" : "Más información", + "Daemon with this name already exists" : "Yá esiste un degorriu con esti nome", + "Set daemon as default" : "Predeterminar el degorriu", + "Set as default daemon" : "Predeterminar el degorriu", + "Enable https" : "Activar HTTPS", "Network" : "Rede", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Les tos aplicaciones", diff --git a/l10n/be.js b/l10n/be.js index a1c57664..31dfb865 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -5,11 +5,10 @@ OC.L10N.register( "Delete" : "Выдаліць", "Default" : "Прадвызначаныя", "Edit" : "Рэдагаваць", - "1 CPU" : "1 працэсар", - "{cpus} CPUs" : "{cpus} працэсары(-аў)", "Name" : "Назва", "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", + "Enabled" : "Уключаны", "Remove" : "Выдаліць", "From" : "Ад", "To" : "Да", diff --git a/l10n/be.json b/l10n/be.json index aeaa2c23..58d54554 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -3,11 +3,10 @@ "Delete" : "Выдаліць", "Default" : "Прадвызначаныя", "Edit" : "Рэдагаваць", - "1 CPU" : "1 працэсар", - "{cpus} CPUs" : "{cpus} працэсары(-аў)", "Name" : "Назва", "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", + "Enabled" : "Уключаны", "Remove" : "Выдаліць", "From" : "Ад", "To" : "Да", diff --git a/l10n/bs.js b/l10n/bs.js deleted file mode 100644 index 547959a6..00000000 --- a/l10n/bs.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "Odustani", - "Delete" : "Obriši", - "Edit" : "Izmjeni", - "Unlimited" : "Neograničeno", - "Name" : "Ime", - "Enabled" : "Aktivirano", - "Disabled" : "Onemogućeno", - "Save" : "Spremi", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", - "Version" : "Verzija", - "Actions" : "Radnje", - "Documentation" : "Dokumentacija", - "Updates" : "Ažuriranja", - "Disable" : "Onemogući" -}, -"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/bs.json b/l10n/bs.json deleted file mode 100644 index 5766d857..00000000 --- a/l10n/bs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Cancel" : "Odustani", - "Delete" : "Obriši", - "Edit" : "Izmjeni", - "Unlimited" : "Neograničeno", - "Name" : "Ime", - "Enabled" : "Aktivirano", - "Disabled" : "Onemogućeno", - "Save" : "Spremi", - "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", - "Version" : "Verzija", - "Actions" : "Radnje", - "Documentation" : "Dokumentacija", - "Updates" : "Ažuriranja", - "Disable" : "Onemogući" -},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" -} \ No newline at end of file diff --git a/l10n/ca.js b/l10n/ca.js index 1fa893cf..2d087075 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -25,53 +25,31 @@ OC.L10N.register( "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", - "Deploy Daemons" : "Desplega els dimonis", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu-ne la configuració", "ExApp init timeout (minutes)" : "Temps d'espera d'inici ExApp (minuts)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Temps d'espera del procés d'inicialització de l'ExApp després del qual AppAPI el marcarà com a fallat", "ExApp init timeout" : "Temps d'espera d'inici ExApp", "ExApp container restart policy" : "Política de reinici del contenidor ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifiqueu la política de reinici del contenidor, p.ex. 'always' per garantir que ExApp s'executi després del reinici del servidor del dimoni", - "This settings changes are reflected only for newly created containers" : "Els canvis d'aquesta configuració només es reflecteixen als contenidors de nova creació", - "Are you sure you want delete Deploy Daemon" : "Esteu segur que voleu suprimir Deploy Daemon", - "All ExApps on this daemon will be removed" : "S'eliminaran totes les ExApps d'aquest dimoni", - "All ExApps installed on this daemon will be removed" : "S'eliminaran totes les ExApps instal·lades en aquest dimoni", "Cancel" : "Cancelar", "Delete" : "Suprimir", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon no es pot establir com a predeterminat", - "Failed to save admin options. Check the logs" : "No s'han pogut desar les opcions d'administració. Comproveu els registres", "Password confirmation failed" : "La confirmació de la contrasenya ha fallat", "Default" : "Per defecte", "Set as default" : "Estableix com a predeterminat", "Test deploy" : "Prova de desplegament", "Edit" : "Edició", "Daemon connection successful" : "La connexió del dimoni ha estat correcta", - "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", - "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Unlimited" : "Il·limitat", - "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", - "Deploy Daemon" : "Desplega Dimoni", "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "El dimoni d'instal·lació manual s'utilitza normalment per al desenvolupament. No es pot establir com a dimoni per defecte.", "ExApps installed" : "ExApps instal·lades", "Name" : "Nom", "Protocol" : "Protocol", "Host" : "Servidor", - "Deploy config" : "Desplega la configuració", "Docker network" : "Xarxa Docker", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "Contrasenya HaProxy", - "GPUs support" : "Suport de GPU", - "Compute device" : "Dispositiu de computació", "Memory limit" : "Límit de memòria", "Additional options" : "Opcions addicionals", - "Verify connection" : "Verifica la connexió", + "Check connection" : "Comproveu la connexió", "Registered Deploy daemons list" : "Llista de dimonis de desplegament registrats", - "No Deploy daemons configured" : "No s'ha configurat cap dimoni de desplegament", - "Register a custom one or setup from available templates" : "Registreu-ne un personalitzat o configureu-ne a partir de les plantilles disponibles", - "Register Daemon" : "Registre Daemon", "Register ExApp in Nextcloud" : "Registreu ExApp a Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comproveu si l'ExApp està registrada a Nextcloud abans del desplegament", "Image pull" : "Tirada d'imatge", @@ -87,47 +65,25 @@ OC.L10N.register( "Only if ExApp container is preset" : "Només si el contenidor ExApp està predefinit", "Deploy test passed successfully!" : "La prova de desplegament s'ha superat correctament!", "Deploy test failed at step \"{step}\"" : "La prova de desplegament ha fallat al pas \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "L'AppAPI intentarà instal·lar l'ExApp d'esquelet petit per verificar que Daemon està configurat correctament i que s'estan passant els passos de desplegament.", - "The following Deploy test checks must be passed to succeed:" : "Per tenir èxit, s'han de superar les comprovacions de prova de desplegament següents:", - "More info" : "Més informació", "Download ExApp logs" : "Baixeu els registres d'ExApp", - "Remove test ExApp" : "Elimina la prova ExApp", - "Start Deploy test" : "Inicieu la prova de desplegament", - "Stop Deploy test" : "Atura la prova de desplegament", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", "Remove" : "Suprimeix", "From" : "De", "To" : "A", "Add" : "Afegeix", - "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", - "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", - "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker sol·licitarà que tots els dispositius GPU disponibles a l'amfitrió del dimoni estiguin habilitats als contenidors ExApp.", "DaemonConfig successfully registered" : "DaemonConfig s'ha registrat correctament", "Failed to register DaemonConfig. Check the logs" : "No s'ha pogut registrar DaemonConfig. Comproveu els registres", "DaemonConfig successfully updated" : "DaemonConfig s'ha actualitzat correctament", "Failed to update DaemonConfig. Check the logs" : "No s'ha pogut actualitzar DaemonConfig. Comproveu els registres", - "Edit Deploy Daemon" : "Edita Deploy Daemon", - "Register Deploy Daemon" : "Registre Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", + "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Daemon configuration template" : "Plantilla de configuració del dimoni", - "Select daemon configuration template" : "Seleccioneu la plantilla de configuració del dimoni", "Daemon registration form" : "Formulari de registre de Daemon", - "Unique Deploy Daemon Name" : "Nom únic del dimoni de desplegament", "Display name" : "Nom de visualització", "Deployment method" : "Mètode de desplegament", - "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", "Daemon host" : "Servidor del dimoni", - "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", - "Set daemon as default" : "Estableix el dimoni com a predeterminat", - "Set as default daemon" : "Estableix com a dimoni predeterminat", - "Enable https" : "Activa https", - "Show deploy config" : "Mostra la configuració de desplegament", - "Hide deploy config" : "Amaga la configuració de desplegament", "Disabled" : "Inhabilitat", - "Additional option" : "Opció addicional", + "Compute device" : "Dispositiu de computació", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", "Option key (unique, e.g. my_key)" : "Clau d'opció (única, per exemple, my_key)", @@ -137,10 +93,15 @@ OC.L10N.register( "Confirm" : "Confirma", "Save" : "Desar", "Register" : "Registra", - "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", + "Deploy Daemons" : "Desplega els dimonis", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu-ne la configuració", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifiqueu la política de reinici del contenidor, p.ex. 'always' per garantir que ExApp s'executi després del reinici del servidor del dimoni", + "This settings changes are reflected only for newly created containers" : "Els canvis d'aquesta configuració només es reflecteixen als contenidors de nova creació", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Delete data on remove" : "Suprimir dades en eliminar", @@ -170,12 +131,51 @@ OC.L10N.register( "No apps found" : "No s'ha trobat cap aplicació", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp té una actualització disponible","%n apps tenen una actualització disponible"], "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], + "Deploy Daemon" : "Desplega Dimoni", "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "GPUs support" : "Suport de GPU", + "Are you sure you want delete Deploy Daemon" : "Esteu segur que voleu suprimir Deploy Daemon", + "All ExApps on this daemon will be removed" : "S'eliminaran totes les ExApps d'aquest dimoni", + "All ExApps installed on this daemon will be removed" : "S'eliminaran totes les ExApps instal·lades en aquest dimoni", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon no es pot establir com a predeterminat", + "Failed to save admin options. Check the logs" : "No s'han pogut desar les opcions d'administració. Comproveu els registres", + "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El dimoni d'instal·lació manual s'utilitza normalment per al desenvolupament. No es pot establir com a dimoni per defecte.", + "Deploy config" : "Desplega la configuració", + "Verify connection" : "Verifica la connexió", + "No Deploy daemons configured" : "No s'ha configurat cap dimoni de desplegament", + "Register a custom one or setup from available templates" : "Registreu-ne un personalitzat o configureu-ne a partir de les plantilles disponibles", + "Register Daemon" : "Registre Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "L'AppAPI intentarà instal·lar l'ExApp d'esquelet petit per verificar que Daemon està configurat correctament i que s'estan passant els passos de desplegament.", + "The following Deploy test checks must be passed to succeed:" : "Per tenir èxit, s'han de superar les comprovacions de prova de desplegament següents:", + "More info" : "Més informació", + "Remove test ExApp" : "Elimina la prova ExApp", + "Start Deploy test" : "Inicieu la prova de desplegament", + "Stop Deploy test" : "Atura la prova de desplegament", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", + "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", + "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", "With https enabled network is set to host" : "Amb https habilitat, la xarxa està configurada com a host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", + "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker sol·licitarà que tots els dispositius GPU disponibles a l'amfitrió del dimoni estiguin habilitats als contenidors ExApp.", + "Edit Deploy Daemon" : "Edita Deploy Daemon", + "Register Deploy Daemon" : "Registre Deploy Daemon", + "Select daemon configuration template" : "Seleccioneu la plantilla de configuració del dimoni", + "Unique Deploy Daemon Name" : "Nom únic del dimoni de desplegament", + "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", + "Set daemon as default" : "Estableix el dimoni com a predeterminat", + "Set as default daemon" : "Estableix com a dimoni predeterminat", + "Enable https" : "Activa https", + "Show deploy config" : "Mostra la configuració de desplegament", + "Hide deploy config" : "Amaga la configuració de desplegament", "Network" : "Xarxa", "Docker network name" : "Nom de la xarxa Docker", + "Additional option" : "Opció addicional", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", diff --git a/l10n/ca.json b/l10n/ca.json index f09e3157..b0631b52 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -23,53 +23,31 @@ "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", - "Deploy Daemons" : "Desplega els dimonis", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu-ne la configuració", "ExApp init timeout (minutes)" : "Temps d'espera d'inici ExApp (minuts)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Temps d'espera del procés d'inicialització de l'ExApp després del qual AppAPI el marcarà com a fallat", "ExApp init timeout" : "Temps d'espera d'inici ExApp", "ExApp container restart policy" : "Política de reinici del contenidor ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifiqueu la política de reinici del contenidor, p.ex. 'always' per garantir que ExApp s'executi després del reinici del servidor del dimoni", - "This settings changes are reflected only for newly created containers" : "Els canvis d'aquesta configuració només es reflecteixen als contenidors de nova creació", - "Are you sure you want delete Deploy Daemon" : "Esteu segur que voleu suprimir Deploy Daemon", - "All ExApps on this daemon will be removed" : "S'eliminaran totes les ExApps d'aquest dimoni", - "All ExApps installed on this daemon will be removed" : "S'eliminaran totes les ExApps instal·lades en aquest dimoni", "Cancel" : "Cancelar", "Delete" : "Suprimir", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon no es pot establir com a predeterminat", - "Failed to save admin options. Check the logs" : "No s'han pogut desar les opcions d'administració. Comproveu els registres", "Password confirmation failed" : "La confirmació de la contrasenya ha fallat", "Default" : "Per defecte", "Set as default" : "Estableix com a predeterminat", "Test deploy" : "Prova de desplegament", "Edit" : "Edició", "Daemon connection successful" : "La connexió del dimoni ha estat correcta", - "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", - "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Unlimited" : "Il·limitat", - "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", - "Deploy Daemon" : "Desplega Dimoni", "Default daemon. ExApps will be installed on it" : "Dimoni per defecte. S'hi instal·laran ExApps", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "El dimoni d'instal·lació manual s'utilitza normalment per al desenvolupament. No es pot establir com a dimoni per defecte.", "ExApps installed" : "ExApps instal·lades", "Name" : "Nom", "Protocol" : "Protocol", "Host" : "Servidor", - "Deploy config" : "Desplega la configuració", "Docker network" : "Xarxa Docker", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "Contrasenya HaProxy", - "GPUs support" : "Suport de GPU", - "Compute device" : "Dispositiu de computació", "Memory limit" : "Límit de memòria", "Additional options" : "Opcions addicionals", - "Verify connection" : "Verifica la connexió", + "Check connection" : "Comproveu la connexió", "Registered Deploy daemons list" : "Llista de dimonis de desplegament registrats", - "No Deploy daemons configured" : "No s'ha configurat cap dimoni de desplegament", - "Register a custom one or setup from available templates" : "Registreu-ne un personalitzat o configureu-ne a partir de les plantilles disponibles", - "Register Daemon" : "Registre Daemon", "Register ExApp in Nextcloud" : "Registreu ExApp a Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comproveu si l'ExApp està registrada a Nextcloud abans del desplegament", "Image pull" : "Tirada d'imatge", @@ -85,47 +63,25 @@ "Only if ExApp container is preset" : "Només si el contenidor ExApp està predefinit", "Deploy test passed successfully!" : "La prova de desplegament s'ha superat correctament!", "Deploy test failed at step \"{step}\"" : "La prova de desplegament ha fallat al pas \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "L'AppAPI intentarà instal·lar l'ExApp d'esquelet petit per verificar que Daemon està configurat correctament i que s'estan passant els passos de desplegament.", - "The following Deploy test checks must be passed to succeed:" : "Per tenir èxit, s'han de superar les comprovacions de prova de desplegament següents:", - "More info" : "Més informació", "Download ExApp logs" : "Baixeu els registres d'ExApp", - "Remove test ExApp" : "Elimina la prova ExApp", - "Start Deploy test" : "Inicieu la prova de desplegament", - "Stop Deploy test" : "Atura la prova de desplegament", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", "Remove" : "Suprimeix", "From" : "De", "To" : "A", "Add" : "Afegeix", - "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", - "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", "AppAPI Docker Socket Proxy authentication password" : "Contrasenya d'autenticació del servidor intermediari de l'AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", - "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker sol·licitarà que tots els dispositius GPU disponibles a l'amfitrió del dimoni estiguin habilitats als contenidors ExApp.", "DaemonConfig successfully registered" : "DaemonConfig s'ha registrat correctament", "Failed to register DaemonConfig. Check the logs" : "No s'ha pogut registrar DaemonConfig. Comproveu els registres", "DaemonConfig successfully updated" : "DaemonConfig s'ha actualitzat correctament", "Failed to update DaemonConfig. Check the logs" : "No s'ha pogut actualitzar DaemonConfig. Comproveu els registres", - "Edit Deploy Daemon" : "Edita Deploy Daemon", - "Register Deploy Daemon" : "Registre Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "No s'ha pogut connectar amb Daemon. Comproveu els registres", + "Failed to check connection to Daemon. Check the logs" : "No s'ha pogut comprovar la connexió amb Daemon. Comproveu els registres", "Daemon configuration template" : "Plantilla de configuració del dimoni", - "Select daemon configuration template" : "Seleccioneu la plantilla de configuració del dimoni", "Daemon registration form" : "Formulari de registre de Daemon", - "Unique Deploy Daemon Name" : "Nom únic del dimoni de desplegament", "Display name" : "Nom de visualització", "Deployment method" : "Mètode de desplegament", - "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", "Daemon host" : "Servidor del dimoni", - "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", - "Set daemon as default" : "Estableix el dimoni com a predeterminat", - "Set as default daemon" : "Estableix com a dimoni predeterminat", - "Enable https" : "Activa https", - "Show deploy config" : "Mostra la configuració de desplegament", - "Hide deploy config" : "Amaga la configuració de desplegament", "Disabled" : "Inhabilitat", - "Additional option" : "Opció addicional", + "Compute device" : "Dispositiu de computació", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", "Option key (unique, e.g. my_key)" : "Clau d'opció (única, per exemple, my_key)", @@ -135,10 +91,15 @@ "Confirm" : "Confirma", "Save" : "Desar", "Register" : "Registra", - "Check connection" : "Comproveu la connexió", "External Apps" : "Apps externes", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n### Aplicació empaquetada\n\n**A partir de Nextcloud 30.0.1, aquesta aplicació s'inclou al paquet per defecte de Nextcloud.**\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El projecte AppAPI és una iniciativa emocionant que pretén revolucionar la manera com es desenvolupen les aplicacions per a Nextcloud.", + "Deploy Daemons" : "Desplega els dimonis", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplega els dimonis. Deploy Daemon (DaemonConfig) és un dimoni d'orquestració d'ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "El dimoni de desplegament predeterminat no és accessible. Verifiqueu-ne la configuració", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifiqueu la política de reinici del contenidor, p.ex. 'always' per garantir que ExApp s'executi després del reinici del servidor del dimoni", + "This settings changes are reflected only for newly created containers" : "Els canvis d'aquesta configuració només es reflecteixen als contenidors de nova creació", "{license}-licensed" : "sota la llicència - {license}", "Update to {version}" : "Actualització a la versió {version}", "Delete data on remove" : "Suprimir dades en eliminar", @@ -168,12 +129,51 @@ "No apps found" : "No s'ha trobat cap aplicació", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp té una actualització disponible","%n apps tenen una actualització disponible"], "_Update_::_Update all_" : ["Actualitza","Actualitza-les totes"], + "Deploy Daemon" : "Desplega Dimoni", "Type" : "Tipus", "Display Name" : "Nom d'usuari", + "GPUs support" : "Suport de GPU", + "Are you sure you want delete Deploy Daemon" : "Esteu segur que voleu suprimir Deploy Daemon", + "All ExApps on this daemon will be removed" : "S'eliminaran totes les ExApps d'aquest dimoni", + "All ExApps installed on this daemon will be removed" : "S'eliminaran totes les ExApps instal·lades en aquest dimoni", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon no es pot establir com a predeterminat", + "Failed to save admin options. Check the logs" : "No s'han pogut desar les opcions d'administració. Comproveu els registres", + "Deploy daemon config details" : "Desplegueu els detalls de configuració del dimoni", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El dimoni d'instal·lació manual s'utilitza normalment per al desenvolupament. No es pot establir com a dimoni per defecte.", + "Deploy config" : "Desplega la configuració", + "Verify connection" : "Verifica la connexió", + "No Deploy daemons configured" : "No s'ha configurat cap dimoni de desplegament", + "Register a custom one or setup from available templates" : "Registreu-ne un personalitzat o configureu-ne a partir de les plantilles disponibles", + "Register Daemon" : "Registre Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "L'AppAPI intentarà instal·lar l'ExApp d'esquelet petit per verificar que Daemon està configurat correctament i que s'estan passant els passos de desplegament.", + "The following Deploy test checks must be passed to succeed:" : "Per tenir èxit, s'han de superar les comprovacions de prova de desplegament següents:", + "More info" : "Més informació", + "Remove test ExApp" : "Elimina la prova ExApp", + "Start Deploy test" : "Inicieu la prova de desplegament", + "Stop Deploy test" : "Atura la prova de desplegament", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp no està registrada i el contenidor s'elimina a \"Atura la prova de desplegament\"", + "Hostname to access ExApps" : "Nom de servidor per accedir a ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom de servidor o camí per accedir al dimoni Docker (p. ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "El dimoni amb aquest nom ja existeix", + "Password must be at least 12 characters long" : "La contrasenya ha de tenir com a mínim 12 caràcters", "With https enabled network is set to host" : "Amb https habilitat, la xarxa està configurada com a host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Els canvis només s'aplicarien a les ExApps recentment instal·lades. Per a les ExApps existents, els contenidors Docker s'han de tornar a crear.", + "URL should start with http:// or https://" : "L'URL hauria de començar per http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Per al dimoni HTTPS, l'URL de Nextcloud hauria de ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker sol·licitarà que tots els dispositius GPU disponibles a l'amfitrió del dimoni estiguin habilitats als contenidors ExApp.", + "Edit Deploy Daemon" : "Edita Deploy Daemon", + "Register Deploy Daemon" : "Registre Deploy Daemon", + "Select daemon configuration template" : "Seleccioneu la plantilla de configuració del dimoni", + "Unique Deploy Daemon Name" : "Nom únic del dimoni de desplegament", + "Select daemon deploy method" : "Seleccioneu el mètode de desplegament del dimoni", + "Set daemon as default" : "Estableix el dimoni com a predeterminat", + "Set as default daemon" : "Estableix com a dimoni predeterminat", + "Enable https" : "Activa https", + "Show deploy config" : "Mostra la configuració de desplegament", + "Hide deploy config" : "Amaga la configuració de desplegament", "Network" : "Xarxa", "Docker network name" : "Nom de la xarxa Docker", + "Additional option" : "Opció addicional", "by {author}\n{license}" : "{author}\n{license}", "Your apps" : "Les vostres aplicacions", "Documentation" : "Documentació", diff --git a/l10n/cs.js b/l10n/cs.js index a4b344c6..ed44d620 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -25,29 +25,17 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI proces služby nasazování", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", - "Deploy Daemons" : "Nasadit procesy služeb", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Výchozí proces služby nasazování není dostupný. Ověřte její nastavení", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", - "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", - "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", - "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", - "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", "Cancel" : "Storno", "Delete" : "Smazat", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", - "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", @@ -55,36 +43,23 @@ OC.L10N.register( "Docker registries" : "Docker registry", "Edit" : "Upravit", "Daemon connection successful" : "Připojení ke službě úspěšné", - "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", - "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Unlimited" : "Neomezeně", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 jádro procesoru", - "{cpus} CPUs" : "{cpus} jader procesoru", - "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", - "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", "Name" : "Název", "Protocol" : "Protokol", "Host" : "Hostitel", "ExApp direct communication (FRP disabled)" : "Přímá komunikace ExAPP (FRP vypnuto)", - "Deploy config" : "Nastavení nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", - "GPUs support" : "Podpora pro výpočty na GPU", - "Compute device" : "Výpočetní zařízení", "Memory limit" : "Limit paměti", "CPU limit" : "Limit počtu jader procesoru", "Additional options" : "Další možnosti", - "Verify connection" : "Ověřit připojení", + "Check connection" : "Zkontrolovat připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", - "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", - "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", - "Register Daemon" : "Zaregistrovat proces služby", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", @@ -100,84 +75,49 @@ OC.L10N.register( "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", - "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", - "More info" : "Další informace", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", - "Remove test ExApp" : "Odebrat testovací ExApp", - "Start Deploy test" : "Spustit zkoušku nasazení", - "Stop Deploy test" : "Zastavit zkoušku nasazení", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Please enter a registry domain" : "Zadejte doménu registru", - "From cannot be \"local\"" : "Od nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", - "From and To cannot be the same" : "Od a Pro nemůže být totéž", "Docker registry mapping added" : "Mapování na docker registry přidáno", "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", "Docker registry mapping removed" : "Mapování na docker registry odebráno", "Error removing Docker registry mapping" : "Chyba při odebírání mapování na Docker registry", "Override Docker registries" : "Přebít Docker registry", - "Configure Docker registry override mappings for selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", - "No custom Docker registries configured" : "Nenastaveny žádné uživatelsky určené Docker registry", "Add registry override mapping" : "Přidat mapování přebití registru", "From" : "Od", "registry URL (e.g. ghcr.io)" : "URL registru (např. ghcr.io)", "To" : "Pro", "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", - "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", - "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", - "The docker network that the deployed ex-apps would use." : "Docker síť kterou mají nasazované ex-applikace používat.", - "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", - "Edit Deploy Daemon" : "Upravit proces služby nasazován", - "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Daemon configuration template" : "Šablona nastavení procesu služby", - "Select daemon configuration template" : "Vyberte šablonu nastavení procesu služby", "Daemon registration form" : "Formulář registrace procesu služby", - "Unique Deploy Daemon Name" : "Neopakující se název procesu služby nasazování", "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", - "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", "HaRP shared key" : "Sdílený klíč HaRP", - "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", - "Set daemon as default" : "Nastavit proces služby jako výchozí", - "Set as default daemon" : "Nastavit jako výchozí proces služby", - "Enable https" : "Zapnout https", - "Show deploy config" : "Zobrazit nastavení nasazení", - "Hide deploy config" : "Skrýt nastavení nasazení", "Enable HaRP" : "Zapnout HaRP", "FRP server address" : "Adresa FRP serveru", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ex-app v síti, definované v 'Docker Network'.", "Docker socket proxy port" : "Port Docker proxy soketu", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", + "Compute device" : "Výpočetní zařízení", "Memory limit (in MiB)" : "Limit paměti (v MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Kolik operační paměti nejvýše bude moci ExApp kontejner využívat (v MiB)", "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", "Must be a positive number" : "Je třeba, aby bylo kladné číslo", - "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", "Option key (unique, e.g. my_key)" : "Klíč volby (neopakující se, např. muj_klic)", @@ -187,9 +127,14 @@ OC.L10N.register( "Confirm" : "Potvrdit", "Save" : "Uložit", "Register" : "Registrovat", - "Check connection" : "Zkontrolovat připojení", "External Apps" : "Externí aplikace", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", + "Deploy Daemons" : "Nasadit procesy služeb", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Výchozí proces služby nasazování není dostupný. Ověřte její nastavení", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", + "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", "Delete data on remove" : "Při odebrání smazat data", @@ -219,12 +164,51 @@ OC.L10N.register( "No apps found" : "Nenalezeny žádné aplikace", "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], + "Deploy Daemon" : "Nasadit proces služby", "Type" : "Typ", "Display Name" : "Zobrazované jméno", + "GPUs support" : "Podpora pro výpočty na GPU", + "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", + "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", + "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", + "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", + "Deploy config" : "Nastavení nasazení", + "Verify connection" : "Ověřit připojení", + "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", + "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", + "Register Daemon" : "Zaregistrovat proces služby", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", + "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", + "More info" : "Další informace", + "Remove test ExApp" : "Odebrat testovací ExApp", + "Start Deploy test" : "Spustit zkoušku nasazení", + "Stop Deploy test" : "Zastavit zkoušku nasazení", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", + "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", + "Edit Deploy Daemon" : "Upravit proces služby nasazován", + "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", + "Select daemon configuration template" : "Vyberte šablonu nastavení procesu služby", + "Unique Deploy Daemon Name" : "Neopakující se název procesu služby nasazování", + "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", + "Set daemon as default" : "Nastavit proces služby jako výchozí", + "Set as default daemon" : "Nastavit jako výchozí proces služby", + "Enable https" : "Zapnout https", + "Show deploy config" : "Zobrazit nastavení nasazení", + "Hide deploy config" : "Skrýt nastavení nasazení", "Network" : "Síť", "Docker network name" : "Název Docker sítě", + "Additional option" : "Další volba", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", diff --git a/l10n/cs.json b/l10n/cs.json index fe427afd..db60cb66 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -23,29 +23,17 @@ "AppAPI deploy daemon" : "AppAPI proces služby nasazování", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", - "Deploy Daemons" : "Nasadit procesy služeb", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Výchozí proces služby nasazování není dostupný. Ověřte její nastavení", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", - "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", - "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", - "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", - "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", "Cancel" : "Storno", "Delete" : "Smazat", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", - "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", @@ -53,36 +41,23 @@ "Docker registries" : "Docker registry", "Edit" : "Upravit", "Daemon connection successful" : "Připojení ke službě úspěšné", - "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", - "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Unlimited" : "Neomezeně", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 jádro procesoru", - "{cpus} CPUs" : "{cpus} jader procesoru", - "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", - "Deploy Daemon" : "Nasadit proces služby", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", "Name" : "Název", "Protocol" : "Protokol", "Host" : "Hostitel", "ExApp direct communication (FRP disabled)" : "Přímá komunikace ExAPP (FRP vypnuto)", - "Deploy config" : "Nastavení nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", - "GPUs support" : "Podpora pro výpočty na GPU", - "Compute device" : "Výpočetní zařízení", "Memory limit" : "Limit paměti", "CPU limit" : "Limit počtu jader procesoru", "Additional options" : "Další možnosti", - "Verify connection" : "Ověřit připojení", + "Check connection" : "Zkontrolovat připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", - "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", - "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", - "Register Daemon" : "Zaregistrovat proces služby", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", @@ -98,84 +73,49 @@ "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", - "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", - "More info" : "Další informace", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", - "Remove test ExApp" : "Odebrat testovací ExApp", - "Start Deploy test" : "Spustit zkoušku nasazení", - "Stop Deploy test" : "Zastavit zkoušku nasazení", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", "Please enter a registry domain" : "Zadejte doménu registru", - "From cannot be \"local\"" : "Od nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", - "From and To cannot be the same" : "Od a Pro nemůže být totéž", "Docker registry mapping added" : "Mapování na docker registry přidáno", "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", "Docker registry mapping removed" : "Mapování na docker registry odebráno", "Error removing Docker registry mapping" : "Chyba při odebírání mapování na Docker registry", "Override Docker registries" : "Přebít Docker registry", - "Configure Docker registry override mappings for selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", - "No custom Docker registries configured" : "Nenastaveny žádné uživatelsky určené Docker registry", "Add registry override mapping" : "Přidat mapování přebití registru", "From" : "Od", "registry URL (e.g. ghcr.io)" : "URL registru (např. ghcr.io)", "To" : "Pro", "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", - "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", - "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", - "The docker network that the deployed ex-apps would use." : "Docker síť kterou mají nasazované ex-applikace používat.", - "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", - "Edit Deploy Daemon" : "Upravit proces služby nasazován", - "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", + "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Daemon configuration template" : "Šablona nastavení procesu služby", - "Select daemon configuration template" : "Vyberte šablonu nastavení procesu služby", "Daemon registration form" : "Formulář registrace procesu služby", - "Unique Deploy Daemon Name" : "Neopakující se název procesu služby nasazování", "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", - "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", "HaRP shared key" : "Sdílený klíč HaRP", - "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", - "Set daemon as default" : "Nastavit proces služby jako výchozí", - "Set as default daemon" : "Nastavit jako výchozí proces služby", - "Enable https" : "Zapnout https", - "Show deploy config" : "Zobrazit nastavení nasazení", - "Hide deploy config" : "Skrýt nastavení nasazení", "Enable HaRP" : "Zapnout HaRP", "FRP server address" : "Adresa FRP serveru", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ex-app v síti, definované v 'Docker Network'.", "Docker socket proxy port" : "Port Docker proxy soketu", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", + "Compute device" : "Výpočetní zařízení", "Memory limit (in MiB)" : "Limit paměti (v MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Kolik operační paměti nejvýše bude moci ExApp kontejner využívat (v MiB)", "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", "Must be a positive number" : "Je třeba, aby bylo kladné číslo", - "Additional option" : "Další volba", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", "Option key (unique, e.g. my_key)" : "Klíč volby (neopakující se, např. muj_klic)", @@ -185,9 +125,14 @@ "Confirm" : "Potvrdit", "Save" : "Uložit", "Register" : "Registrovat", - "Check connection" : "Zkontrolovat připojení", "External Apps" : "Externí aplikace", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI je vzrušující iniciativa která má za cíl zcela změnit způsob, kterým jsou vyvíjeny aplikace pro Nextcloud.", + "Deploy Daemons" : "Nasadit procesy služeb", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Výchozí proces služby nasazování není dostupný. Ověřte její nastavení", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Určete zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp bude spuštěna po restartu serveru s procesem služby", + "This settings changes are reflected only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", "{license}-licensed" : "licencováno pod {license}", "Update to {version}" : "Aktualizovat na {version}", "Delete data on remove" : "Při odebrání smazat data", @@ -217,12 +162,51 @@ "No apps found" : "Nenalezeny žádné aplikace", "_%n ExApp has an update available_::_%n apps have an update available_" : ["pro %n ExApp je k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace","pro %n aplikací jsou k dispozici aktualizace","pro %n aplikace jsou k dispozici aktualizace"], "_Update_::_Update all_" : ["Aktualizovat","Aktualizovat vše","Aktualizovat vše","Aktualizovat vše"], + "Deploy Daemon" : "Nasadit proces služby", "Type" : "Typ", "Display Name" : "Zobrazované jméno", + "GPUs support" : "Podpora pro výpočty na GPU", + "Are you sure you want delete Deploy Daemon" : "Opravdu chcete proces nasazování smazat", + "All ExApps on this daemon will be removed" : "Veškeré ExApps na tomto procesu služby byly odebrány", + "All ExApps installed on this daemon will be removed" : "Veškeré ExApps nainstalované na tomto procesu služby byly odebrány", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", + "Failed to save admin options. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", + "Deploy daemon config details" : "Podrobnosti nastavení procesu služby nasazování", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Proces služby ruční instalace je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", + "Deploy config" : "Nastavení nasazení", + "Verify connection" : "Ověřit připojení", + "No Deploy daemons configured" : "Nejsou nastavené žádné procesy služby nasazování", + "Register a custom one or setup from available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", + "Register Daemon" : "Zaregistrovat proces služby", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli ověření správného nastavení procesu služby a toho, že procházejí kroky nasazování.", + "The following Deploy test checks must be passed to succeed:" : "Pro úspěch je třeba, aby následující kontroly zkoušky nasazení prošly:", + "More info" : "Další informace", + "Remove test ExApp" : "Odebrat testovací ExApp", + "Start Deploy test" : "Spustit zkoušku nasazení", + "Stop Deploy test" : "Zastavit zkoušku nasazení", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Registrace ExApp zrušena a kontejner odebrán na „Zastavit zkoušku nasazení“", + "Hostname to access ExApps" : "Název stroje pro přístup k ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje nebo popis umístění pro přístup k procesu služby Docker (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Takto nazvaný proces služby už existuje", + "Password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", "With https enabled network is set to host" : "V případě sítě podporující https je nastaveno na hostitele", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Změny by měly být uplatněny pouze pro nově instalované ExApps. Pro stávající ExApps by měly být znovu vytvořeny Docker kontejnery.", + "URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude zažádáno o to, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", + "Edit Deploy Daemon" : "Upravit proces služby nasazován", + "Register Deploy Daemon" : "Zaregistrovat proces služby nasazování", + "Select daemon configuration template" : "Vyberte šablonu nastavení procesu služby", + "Unique Deploy Daemon Name" : "Neopakující se název procesu služby nasazování", + "Select daemon deploy method" : "Vyberte metodu nasazování procesu služby", + "Set daemon as default" : "Nastavit proces služby jako výchozí", + "Set as default daemon" : "Nastavit jako výchozí proces služby", + "Enable https" : "Zapnout https", + "Show deploy config" : "Zobrazit nastavení nasazení", + "Hide deploy config" : "Skrýt nastavení nasazení", "Network" : "Síť", "Docker network name" : "Název Docker sítě", + "Additional option" : "Další volba", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikace", "Documentation" : "Dokumentace", diff --git a/l10n/da.js b/l10n/da.js index b82d3b22..91418afe 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI udrulnings systemtjeneste", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udrulnings systemtjeneste er ikke sat. Registrer venligst en standard udrulnings systemtjeneste under indstillingerne for at installere eksterne apps (Ex-apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udrulnings systemtjeneste \"%s\" er ikke tilgængelig. Kontroller venligst systemtjenestekonfigurationen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udrulnings systemtjeneste anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udrulning og styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI projektet er et spændende initiativ, som fokuserer på at revolutionere måden hvorpå applikationer bliver udviklet til Nextcloud, gennem anvendelsen af docker containere. Hvilket giver mulighed for et større udvalg af programmeringssprog og mulighed for at overlade tunge opgaver til en anden server.", - "Deploy Daemons" : "Udrulnings systemtjenester", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst dets konfiguration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutter)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialiseringsproces timeout efter hvilken AppAPI vil markere den som fejlet", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp beholder genstartspolitik", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", - "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", - "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udrulnings systemtjeneste", - "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", - "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", "Cancel" : "Annuller", "Delete" : "Slet", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udrulnings systemtjeneste kan ikke sættes som standard", - "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", "Set as default" : "Angiv som standard", @@ -56,30 +44,19 @@ OC.L10N.register( "Docker registries" : "Docker registre", "Edit" : "Redigér", "Daemon connection successful" : "Daemon forbundet", - "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", - "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Unlimited" : "Ubegrænset", - "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", - "Deploy Daemon" : "Udrulnings systemtjeneste", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", "ExApps installed" : "ExApps installeret", "Name" : "Navn", "Protocol" : "Protokol", "Host" : "Vært", "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", - "Deploy config" : "Udrulnings konfiguration", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy adgangskode", - "GPUs support" : "GPUs support", - "Compute device" : "Beregningsenhed", "Additional options" : "Yderligere indstillinger", - "Verify connection" : "Verificer forbindelse", + "Check connection" : "Kontroller forbindelsen", "Registered Deploy daemons list" : "Liste over registrerede udrulnings systemtjenester", - "No Deploy daemons configured" : "Ingen udrulnings systemtjenester konfigureret", - "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", - "Register Daemon" : "Registrer daemon", "Register ExApp in Nextcloud" : "Registrer ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udrulning", "Image pull" : "Billede pull", @@ -95,78 +72,45 @@ OC.L10N.register( "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", "Deploy test passed successfully!" : "Udrulningstest gennemført!", "Deploy test failed at step \"{step}\"" : "Udrulningstest fejlede ved trin \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at systemtjenesten er konfigureret korrekt og udrulningstrin kører.", - "The following Deploy test checks must be passed to succeed:" : "De følgende udrulningstest kontrol skal gennemføres for succes:", - "More info" : "Mere info", "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start udrulningstest", - "Stop Deploy test" : "Stop udrulningstest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", "Please enter a registry domain" : "Indtast venligst et register domæne", - "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", - "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Docker registry mapping added" : "Docker register tildeling tilføjet", "Error adding Docker registry mapping" : "Fejl under tilføjelse af Docker register tildeling", "Docker registry mapping removed" : "Docker register tildeling fjernet", "Error removing Docker registry mapping" : "Fejl under fjernelse af Docker register tildeling", "Override Docker registries" : "Tilsidesæt Docker registre", - "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Det matchende kilderegister i ExApp info.xml vil blive overskrevet under udrulningen (billede pull trin).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge et brugerdefineret Docker register, for eksempel, for at bruge et privat Docker register, eller at bruge et andet Docker register til test.", "Image pull will be skipped" : "Billedehentning vil blive sprunget over", "Remove" : "Fjern", - "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", "Add registry override mapping" : "Tilføj tilknytning for registre", "From" : "Fra", "registry URL (e.g. ghcr.io)" : "register URL (f.eks. ghcr.io)", "To" : "Til", "registry URL (e.g. docker.io)" : "register URL (f.eks. docker.io)", "Add" : "Tilføj", - "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavnet (og port) eller stien på hvilken {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, men blot en host der er tilgængelig for Nextcloud serveren. Det kan også være en sti til docker sokkel. (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Den hemmelige nøgle til HaRP beholder kommunikationen (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", - "The docker network that the deployed ex-apps would use." : "Docker netværket som de udrullede ex-apps skal anvende.", - "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", "DaemonConfig successfully registered" : "DaemonConfig registreret", "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", "DaemonConfig successfully updated" : "DaemonConfig opdateret", "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", - "Edit Deploy Daemon" : "Rediger udrulnings systemtjeneste", - "Register Deploy Daemon" : "Registrer udrulnings systemtjeneste", + "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", + "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Daemon configuration template" : "Daemon konfigurationsskabelon", - "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", "Daemon registration form" : "Daemon registreringsformular", - "Unique Deploy Daemon Name" : "Unik udrulnings systemtjeneste navn", "Display name" : "Vist navn", "Deployment method" : "Udrulningsmetode", - "Select daemon deploy method" : "Vælg udrulnings systemtjeneste method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP delt nøgle", - "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", - "Set daemon as default" : "Angiv daemon som standardas default", - "Set as default daemon" : "Angiv som standard daemon", - "Enable https" : "Aktiver https", - "Show deploy config" : "Vis udrulningsskonfiguration", - "Hide deploy config" : "Skjul udrulningskonfiguration", "Enable HaRP" : "Aktiver HaRP", "FRP server address" : "FRP server adresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", "Docker socket proxy port" : "Docker sokkel proxy port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", "Disable FRP" : "Deaktivér FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udrulning skal være defineret", - "Additional option" : "Yderligere mulighed", + "Compute device" : "Beregningsenhed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", "Option key (unique, e.g. my_key)" : "Mulighedsnøgle (unik, fx my_key)", @@ -176,10 +120,15 @@ OC.L10N.register( "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Register", - "Check connection" : "Kontroller forbindelsen", "External Apps" : "Eksterne apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udrulning og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", + "Deploy Daemons" : "Udrulnings systemtjenester", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst dets konfiguration", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", + "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Delete data on remove" : "Slet data ved fjernelse", @@ -209,12 +158,51 @@ OC.L10N.register( "No apps found" : "Ingen apps fundet", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en tilgængelig opdatering","%n apps har tilgængelige opdateringer"], "_Update_::_Update all_" : ["Opdatér","Opdatér alle"], + "Deploy Daemon" : "Udrulnings systemtjeneste", "Type" : "Type", "Display Name" : "Vist navn", + "GPUs support" : "GPUs support", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udrulnings systemtjeneste", + "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", + "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udrulnings systemtjeneste kan ikke sættes som standard", + "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", + "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", + "Deploy config" : "Udrulnings konfiguration", + "Verify connection" : "Verificer forbindelse", + "No Deploy daemons configured" : "Ingen udrulnings systemtjenester konfigureret", + "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", + "Register Daemon" : "Registrer daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at systemtjenesten er konfigureret korrekt og udrulningstrin kører.", + "The following Deploy test checks must be passed to succeed:" : "De følgende udrulningstest kontrol skal gennemføres for succes:", + "More info" : "Mere info", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start udrulningstest", + "Stop Deploy test" : "Stop udrulningstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", + "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", + "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "With https enabled network is set to host" : "Med https aktiveret, så er netværk sat til host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", + "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", + "Edit Deploy Daemon" : "Rediger udrulnings systemtjeneste", + "Register Deploy Daemon" : "Registrer udrulnings systemtjeneste", + "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", + "Unique Deploy Daemon Name" : "Unik udrulnings systemtjeneste navn", + "Select daemon deploy method" : "Vælg udrulnings systemtjeneste method", + "Set daemon as default" : "Angiv daemon som standardas default", + "Set as default daemon" : "Angiv som standard daemon", + "Enable https" : "Aktiver https", + "Show deploy config" : "Vis udrulningsskonfiguration", + "Hide deploy config" : "Skjul udrulningskonfiguration", "Network" : "Netværk", "Docker network name" : "Docker ventværksnavn", + "Additional option" : "Yderligere mulighed", "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", diff --git a/l10n/da.json b/l10n/da.json index 4eeacc4e..3c2eb868 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI udrulnings systemtjeneste", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udrulnings systemtjeneste er ikke sat. Registrer venligst en standard udrulnings systemtjeneste under indstillingerne for at installere eksterne apps (Ex-apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udrulnings systemtjeneste \"%s\" er ikke tilgængelig. Kontroller venligst systemtjenestekonfigurationen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standard udrulnings systemtjeneste anvender ikke HaRP. Overvej venligst at opgradere den for bedre performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udrulning og styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI projektet er et spændende initiativ, som fokuserer på at revolutionere måden hvorpå applikationer bliver udviklet til Nextcloud, gennem anvendelsen af docker containere. Hvilket giver mulighed for et større udvalg af programmeringssprog og mulighed for at overlade tunge opgaver til en anden server.", - "Deploy Daemons" : "Udrulnings systemtjenester", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst dets konfiguration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutter)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialiseringsproces timeout efter hvilken AppAPI vil markere den som fejlet", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp beholder genstartspolitik", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", - "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", - "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udrulnings systemtjeneste", - "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", - "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", "Cancel" : "Annuller", "Delete" : "Slet", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udrulnings systemtjeneste kan ikke sættes som standard", - "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", "Password confirmation failed" : "Bekræftelse af adgangskode mislykkedes", "Default" : "Standard", "Set as default" : "Angiv som standard", @@ -54,30 +42,19 @@ "Docker registries" : "Docker registre", "Edit" : "Redigér", "Daemon connection successful" : "Daemon forbundet", - "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", - "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Unlimited" : "Ubegrænset", - "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", - "Deploy Daemon" : "Udrulnings systemtjeneste", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps vil blive installeret på den", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", "ExApps installed" : "ExApps installeret", "Name" : "Navn", "Protocol" : "Protokol", "Host" : "Vært", "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", - "Deploy config" : "Udrulnings konfiguration", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy adgangskode", - "GPUs support" : "GPUs support", - "Compute device" : "Beregningsenhed", "Additional options" : "Yderligere indstillinger", - "Verify connection" : "Verificer forbindelse", + "Check connection" : "Kontroller forbindelsen", "Registered Deploy daemons list" : "Liste over registrerede udrulnings systemtjenester", - "No Deploy daemons configured" : "Ingen udrulnings systemtjenester konfigureret", - "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", - "Register Daemon" : "Registrer daemon", "Register ExApp in Nextcloud" : "Registrer ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Kontroller om ExApp'en er registreret i Nextcloud inden udrulning", "Image pull" : "Billede pull", @@ -93,78 +70,45 @@ "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", "Deploy test passed successfully!" : "Udrulningstest gennemført!", "Deploy test failed at step \"{step}\"" : "Udrulningstest fejlede ved trin \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at systemtjenesten er konfigureret korrekt og udrulningstrin kører.", - "The following Deploy test checks must be passed to succeed:" : "De følgende udrulningstest kontrol skal gennemføres for succes:", - "More info" : "Mere info", "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start udrulningstest", - "Stop Deploy test" : "Stop udrulningstest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", "Please enter a registry domain" : "Indtast venligst et register domæne", - "From cannot be \"local\"" : "Fra kan ikke være \"local\"", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", - "From and To cannot be the same" : "Fra og Til kan ikke være det samme", "Docker registry mapping added" : "Docker register tildeling tilføjet", "Error adding Docker registry mapping" : "Fejl under tilføjelse af Docker register tildeling", "Docker registry mapping removed" : "Docker register tildeling fjernet", "Error removing Docker registry mapping" : "Fejl under fjernelse af Docker register tildeling", "Override Docker registries" : "Tilsidesæt Docker registre", - "Configure Docker registry override mappings for selected daemon." : "Konfigurer Docker registrerings overskrivningstilknytning for valgt systemtjeneste.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Det matchende kilderegister i ExApp info.xml vil blive overskrevet under udrulningen (billede pull trin).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dette er nyttigt, hvis du ønsker at bruge et brugerdefineret Docker register, for eksempel, for at bruge et privat Docker register, eller at bruge et andet Docker register til test.", "Image pull will be skipped" : "Billedehentning vil blive sprunget over", "Remove" : "Fjern", - "No custom Docker registries configured" : "Ingen brugerdefinerede Docker registre konfigureret", "Add registry override mapping" : "Tilføj tilknytning for registre", "From" : "Fra", "registry URL (e.g. ghcr.io)" : "register URL (f.eks. ghcr.io)", "To" : "Til", "registry URL (e.g. docker.io)" : "register URL (f.eks. docker.io)", "Add" : "Tilføj", - "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Hostnavn (og port) hvor {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, mn blot en host der er tilgængelig for Nextcloud serveren, fx {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavnet (og port) eller stien på hvilken {name} er tilgængelig. Dette skal ikke nødvendigvis være en offentlig host, men blot en host der er tilgængelig for Nextcloud serveren. Det kan også være en sti til docker sokkel. (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Den hemmelige nøgle til HaRP beholder kommunikationen (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy godkendelsesadgangskode", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", - "The docker network that the deployed ex-apps would use." : "Docker netværket som de udrullede ex-apps skal anvende.", - "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", "DaemonConfig successfully registered" : "DaemonConfig registreret", "Failed to register DaemonConfig. Check the logs" : "Kunne ikke registrere DaemonConfig. Kontroller loggen", "DaemonConfig successfully updated" : "DaemonConfig opdateret", "Failed to update DaemonConfig. Check the logs" : "Kunne ikke opdatere DaemonConfig. Kontroller log", - "Edit Deploy Daemon" : "Rediger udrulnings systemtjeneste", - "Register Deploy Daemon" : "Registrer udrulnings systemtjeneste", + "Failed to connect to Daemon. Check the logs" : "Kunne ikke forbinde til Daemon. Kontroller loggen", + "Failed to check connection to Daemon. Check the logs" : "Kunne ikke forbinde til daemon. Kontroller loggen", "Daemon configuration template" : "Daemon konfigurationsskabelon", - "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", "Daemon registration form" : "Daemon registreringsformular", - "Unique Deploy Daemon Name" : "Unik udrulnings systemtjeneste navn", "Display name" : "Vist navn", "Deployment method" : "Udrulningsmetode", - "Select daemon deploy method" : "Vælg udrulnings systemtjeneste method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP delt nøgle", - "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", - "Set daemon as default" : "Angiv daemon som standardas default", - "Set as default daemon" : "Angiv som standard daemon", - "Enable https" : "Aktiver https", - "Show deploy config" : "Vis udrulningsskonfiguration", - "Hide deploy config" : "Skjul udrulningskonfiguration", "Enable HaRP" : "Aktiver HaRP", "FRP server address" : "FRP server adresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adressen (host:port) på FRP serveren som skal være kontaktbar af ex-app'en i netværket der er defineret under 'Docker netværk'.", "Docker socket proxy port" : "Docker sokkel proxy port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Porten i HaRP, som docker sokkel proxy'en fobinder til. Denne skal være udstillet, men for den indbyggede er det ikke krævet at den skal være udstillet eller ændret.", "Disable FRP" : "Deaktivér FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag til de avancerede opsætninger. Deaktiverer FRP tunnelen mellem ExApps og HaRP.", "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udrulning skal være defineret", - "Additional option" : "Yderligere mulighed", + "Compute device" : "Beregningsenhed", "Add additional option" : "Tilføj yderligere mulighed", "Option key (unique)" : "Mulighedsnøgle (unik)", "Option key (unique, e.g. my_key)" : "Mulighedsnøgle (unik, fx my_key)", @@ -174,10 +118,15 @@ "Confirm" : "Bekræft", "Save" : "Gem", "Register" : "Register", - "Check connection" : "Kontroller forbindelsen", "External Apps" : "Eksterne apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt under Nextcloud økosystemet, som er designet til at strømline og forbedre processen omkring applikationsudvikling, udrulning og styring.\n\nDen introducerer en ny metode som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke kun begrænset til PHP, som traditionelt er blevet anvendt ved Nextcloud udvikling.\n\n### Bundtet app\n\n**Startende med Nextcloud 30.0.1, så er denne applikation inkludere som standard i Nextcloud pakken.**\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vort arbejde på GitHub\n- ❗ Opret fejlrapport eller efterspørg funktionalitet\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede i forhold til fremtiden for AppAPI projektet og dets potentiale til at transformere måden som applikationer bliver udviklet og opleves på i Nextcloud.\n\nEfterhånden som vi begiver os ud på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære til at deltage i udformningen af et mere tilgængeligt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI projektet er et spændende initiativ som sigter efter at revolutionere måden hvorpå applikationer udvikles til Nextcloud.", + "Deploy Daemons" : "Udrulnings systemtjenester", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Udrulnings systemtjenester. Udrulnings systemtjeneste (DaemonConfig) er en ExApps orkestrerings systemtjeneste.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard udrulnings systemtjeneste er ikke tilgængelig. Verificer venligst dets konfiguration", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Angiv beholder genstartspolitik, fx 'altid' for at sikre at ExApp kører efter daemon server genstart", + "This settings changes are reflected only for newly created containers" : "Denne indstillings ændringer reflekteres kun i nyligt oprettede beholdere", "{license}-licensed" : "{license}-licenseret", "Update to {version}" : "Opdateret til {version}", "Delete data on remove" : "Slet data ved fjernelse", @@ -207,12 +156,51 @@ "No apps found" : "Ingen apps fundet", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en tilgængelig opdatering","%n apps har tilgængelige opdateringer"], "_Update_::_Update all_" : ["Opdatér","Opdatér alle"], + "Deploy Daemon" : "Udrulnings systemtjeneste", "Type" : "Type", "Display Name" : "Vist navn", + "GPUs support" : "GPUs support", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du ønsker at slette udrulnings systemtjeneste", + "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemon vil blive fjernet", + "All ExApps installed on this daemon will be removed" : "Alle ExApps der er installeret på denne daemon vil blive fjernet", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" udrulnings systemtjeneste kan ikke sættes som standard", + "Failed to save admin options. Check the logs" : "Kunne ikke gemme adminindstillinger. Kontroller venligst logs'ene", + "Deploy daemon config details" : "Udrulnings systemtjeneste konfigurationsdetaljer", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuel installations daemon der normalt anvendes til udvikling. Den kan ikke sættes som standard daemon.", + "Deploy config" : "Udrulnings konfiguration", + "Verify connection" : "Verificer forbindelse", + "No Deploy daemons configured" : "Ingen udrulnings systemtjenester konfigureret", + "Register a custom one or setup from available templates" : "Registrer en brugerdefineret en eller opsæt fra tilgængelige skabeloner", + "Register Daemon" : "Registrer daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil forsøge at installere lille skelet ExApp for at verificere at systemtjenesten er konfigureret korrekt og udrulningstrin kører.", + "The following Deploy test checks must be passed to succeed:" : "De følgende udrulningstest kontrol skal gennemføres for succes:", + "More info" : "Mere info", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start udrulningstest", + "Stop Deploy test" : "Stop udrulningstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er ikke registreret og beholder fjernes ved \"Stop udrulningstest\"", + "Hostname to access ExApps" : "Hostnavn for at tilgå ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostnavn eller sti til at tilgå Docker daemon (fx nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon med dette navn eksisterer allerede", + "Password must be at least 12 characters long" : "Adgangskoden skal være mindst 12 karakterer lang", "With https enabled network is set to host" : "Med https aktiveret, så er netværk sat til host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ændringer vil kun gælde for nyligt installerede ExApps. For eksisterende ExApps, skal Docker beholdere genskabes.", + "URL should start with http:// or https://" : "URL skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL skal være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgængelige GPU apparater på daemon host vil blive forespurgt om at blive aktiveret i ExApp beholdere af Docker.", + "Edit Deploy Daemon" : "Rediger udrulnings systemtjeneste", + "Register Deploy Daemon" : "Registrer udrulnings systemtjeneste", + "Select daemon configuration template" : "Vælg daemon konfigurationsskabelon", + "Unique Deploy Daemon Name" : "Unik udrulnings systemtjeneste navn", + "Select daemon deploy method" : "Vælg udrulnings systemtjeneste method", + "Set daemon as default" : "Angiv daemon som standardas default", + "Set as default daemon" : "Angiv som standard daemon", + "Enable https" : "Aktiver https", + "Show deploy config" : "Vis udrulningsskonfiguration", + "Hide deploy config" : "Skjul udrulningskonfiguration", "Network" : "Netværk", "Docker network name" : "Docker ventværksnavn", + "Additional option" : "Yderligere mulighed", "by {author}\n{license}" : "af {author}\n{licens}", "Your apps" : "Dine apps", "Documentation" : "Dokumentation", diff --git a/l10n/de.js b/l10n/de.js index 129362ee..3d347b62 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", - "Deploy Daemons" : "Daemons bereitstellen", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfe seine Konfiguration.", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Gib die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", - "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", - "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", - "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -56,36 +44,23 @@ OC.L10N.register( "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", - "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", - "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", - "GPUs support" : "GPUs Unterstützung", - "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", - "Verify connection" : "Verbindung überprüfen", + "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", - "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", - "Register a custom one or setup from available templates" : "Registriere eine benutzerdefinierte Vorlage oder richte sie aus verfügbaren Vorlagen ein", - "Register Daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -101,84 +76,49 @@ OC.L10N.register( "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", - "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", - "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", - "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", - "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", - "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", - "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", - "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", - "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Gemeinsamer HaRP-Schlüssel", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Set daemon as default" : "Daemon als Standard auswählen", - "Set as default daemon" : "Als Standard-Daemon festlegen", - "Enable https" : "https aktivieren", - "Show deploy config" : "Bereitstellungseinstellungen anzeigen", - "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", - "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", @@ -188,10 +128,15 @@ OC.L10N.register( "Confirm" : "Bestätigen", "Save" : "Speichern", "Register" : "Registrieren", - "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "Deploy Daemons" : "Daemons bereitstellen", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfe seine Konfiguration.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Gib die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", + "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -221,12 +166,51 @@ OC.L10N.register( "No apps found" : "Keine Apps gefunden", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Deploy Daemon" : "Daemon bereitstellen", "Type" : "Typ", "Display Name" : "Anzeigename", + "GPUs support" : "GPUs Unterstützung", + "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", + "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", + "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", + "Deploy config" : "Bereitstellungseinstellungen", + "Verify connection" : "Verbindung überprüfen", + "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", + "Register a custom one or setup from available templates" : "Registriere eine benutzerdefinierte Vorlage oder richte sie aus verfügbaren Vorlagen ein", + "Register Daemon" : "Daemon registrieren", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", + "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", + "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", + "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "Set daemon as default" : "Daemon als Standard auswählen", + "Set as default daemon" : "Als Standard-Daemon festlegen", + "Enable https" : "https aktivieren", + "Show deploy config" : "Bereitstellungseinstellungen anzeigen", + "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", + "Additional option" : "Zusatzoption", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", diff --git a/l10n/de.json b/l10n/de.json index 0827d275..8ce2ee7a 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", - "Deploy Daemons" : "Daemons bereitstellen", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfe seine Konfiguration.", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Gib die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", - "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", - "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", - "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -54,36 +42,23 @@ "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", - "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", - "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", - "GPUs support" : "GPUs Unterstützung", - "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", - "Verify connection" : "Verbindung überprüfen", + "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", - "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", - "Register a custom one or setup from available templates" : "Registriere eine benutzerdefinierte Vorlage oder richte sie aus verfügbaren Vorlagen ein", - "Register Daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -99,84 +74,49 @@ "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", - "From and To cannot be the same" : "Von und Bis dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", - "Configure Docker registry override mappings for selected daemon." : "Docker-Registy-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", - "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem der {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", - "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", - "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", - "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", - "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", - "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Gemeinsamer HaRP-Schlüssel", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Set daemon as default" : "Daemon als Standard auswählen", - "Set as default daemon" : "Als Standard-Daemon festlegen", - "Enable https" : "https aktivieren", - "Show deploy config" : "Bereitstellungseinstellungen anzeigen", - "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", - "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", @@ -186,10 +126,15 @@ "Confirm" : "Bestätigen", "Save" : "Speichern", "Register" : "Registrieren", - "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "Deploy Daemons" : "Daemons bereitstellen", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfe seine Konfiguration.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Gib die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", + "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -219,12 +164,51 @@ "No apps found" : "Keine Apps gefunden", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Deploy Daemon" : "Daemon bereitstellen", "Type" : "Typ", "Display Name" : "Anzeigename", + "GPUs support" : "GPUs Unterstützung", + "Are you sure you want delete Deploy Daemon" : "Möchtest du wirklich den Deploy Daemon löschen?", + "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", + "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", + "Deploy config" : "Bereitstellungseinstellungen", + "Verify connection" : "Verbindung überprüfen", + "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", + "Register a custom one or setup from available templates" : "Registriere eine benutzerdefinierte Vorlage oder richte sie aus verfügbaren Vorlagen ein", + "Register Daemon" : "Daemon registrieren", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", + "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", + "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", + "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "Set daemon as default" : "Daemon als Standard auswählen", + "Set as default daemon" : "Als Standard-Daemon festlegen", + "Enable https" : "https aktivieren", + "Show deploy config" : "Bereitstellungseinstellungen anzeigen", + "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", + "Additional option" : "Zusatzoption", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Deine Apps", "Documentation" : "Dokumentation", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 82f67f7e..1fd366fc 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", - "Deploy Daemons" : "Daemons bereitstellen", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfen Sie seine Konfiguration.", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geben Sie die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", - "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", - "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", - "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -56,36 +44,23 @@ OC.L10N.register( "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", - "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", - "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", - "GPUs support" : "GPUs Unterstützung", - "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", - "Verify connection" : "Verbindung überprüfen", + "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", - "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", - "Register a custom one or setup from available templates" : "Registrieren Sie eine benutzerdefinierte Vorlage oder richten Sie sie aus verfügbaren Vorlagen ein", - "Register Daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -101,84 +76,49 @@ OC.L10N.register( "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", - "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", - "Configure Docker registry override mappings for selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise eine benutzerdefinierte Docker-Registry, eine private Docker-Registry oder eine andere Docker-Registry zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", - "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", - "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", - "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", - "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", - "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", - "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Geteilter HaRP-Schlüssel", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Set daemon as default" : "Daemon als Standard auswählen", - "Set as default daemon" : "Als Standard-Daemon festlegen", - "Enable https" : "https aktivieren", - "Show deploy config" : "Bereitstellungseinstellungen anzeigen", - "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", - "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", @@ -188,10 +128,15 @@ OC.L10N.register( "Confirm" : "Bestätigen", "Save" : "Speichern", "Register" : "Registrieren", - "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "Deploy Daemons" : "Daemons bereitstellen", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfen Sie seine Konfiguration.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geben Sie die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", + "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -221,12 +166,51 @@ OC.L10N.register( "No apps found" : "Keine Apps gefunden", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Deploy Daemon" : "Daemon bereitstellen", "Type" : "Typ", "Display Name" : "Anzeigename", + "GPUs support" : "GPUs Unterstützung", + "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", + "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", + "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", + "Deploy config" : "Bereitstellungseinstellungen", + "Verify connection" : "Verbindung überprüfen", + "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", + "Register a custom one or setup from available templates" : "Registrieren Sie eine benutzerdefinierte Vorlage oder richten Sie sie aus verfügbaren Vorlagen ein", + "Register Daemon" : "Daemon registrieren", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", + "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", + "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", + "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "Set daemon as default" : "Daemon als Standard auswählen", + "Set as default daemon" : "Als Standard-Daemon festlegen", + "Enable https" : "https aktivieren", + "Show deploy config" : "Bereitstellungseinstellungen anzeigen", + "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", + "Additional option" : "Zusatzoption", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index ebf85e9e..1f14ff11 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Der standardmäßige Bereitstellungs-Daemon von AppAPI verwendet kein HaRP. Für eine bessere Leistung sollte ein Upgrade darauf in Erwägung gezogen werden.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", - "Deploy Daemons" : "Daemons bereitstellen", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfen Sie seine Konfiguration.", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geben Sie die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", - "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", - "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", - "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", - "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", "Cancel" : "Abbrechen", "Delete" : "Löschen", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", - "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -54,36 +42,23 @@ "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", - "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", - "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", - "Deploy Daemon" : "Daemon bereitstellen", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", - "Deploy config" : "Bereitstellungseinstellungen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", - "GPUs support" : "GPUs Unterstützung", - "Compute device" : "Compute-Gerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", - "Verify connection" : "Verbindung überprüfen", + "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", - "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", - "Register a custom one or setup from available templates" : "Registrieren Sie eine benutzerdefinierte Vorlage oder richten Sie sie aus verfügbaren Vorlagen ein", - "Register Daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -99,84 +74,49 @@ "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", - "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", - "More info" : "Weitere Infos", "Download ExApp logs" : "ExApps-Protokolle herunterladen", - "Remove test ExApp" : "Test-ExApp entfernen", - "Start Deploy test" : "Bereitstellungstest starten", - "Stop Deploy test" : "Bereitstellungstest anhalten", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", - "From cannot be \"local\"" : "Von darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", - "From and To cannot be the same" : "Von und An dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", - "Configure Docker registry override mappings for selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise eine benutzerdefinierte Docker-Registry, eine private Docker-Registry oder eine andere Docker-Registry zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", - "No custom Docker registries configured" : "Keine benutzerdefinierten Docker-Registries konfiguriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", - "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name}verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", - "The docker network that the deployed ex-apps would use." : "Das Docker-Netzwerk, das die bereitgestellten Ex-Apps verwenden würden.", - "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", - "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", - "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", + "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", - "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", - "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", - "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Geteilter HaRP-Schlüssel", - "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", - "Set daemon as default" : "Daemon als Standard auswählen", - "Set as default daemon" : "Als Standard-Daemon festlegen", - "Enable https" : "https aktivieren", - "Show deploy config" : "Bereitstellungseinstellungen anzeigen", - "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Die Adresse (Host:Port) des FRP-Servers, der von der Ex-App im unter \"Docker-Netzwerk\" definierten Netzwerk erreichbar sein soll.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für die erweiterten Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", + "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maximaler Speicher, den der ExApp-Container in Mebibyte verwenden kann", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale CPU-Kerne, die der ExApp-Container verwenden kann (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", - "Additional option" : "Zusatzoption", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", @@ -186,10 +126,15 @@ "Confirm" : "Bestätigen", "Save" : "Speichern", "Register" : "Registrieren", - "Check connection" : "Verbindung prüfen", "External Apps" : "Externe Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und hierfür speziell entwickelte Anwendungen.\n\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs wird eine neue Methodik eingeführt, die es Entwicklern ermöglicht,\nAnwendungen nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung\nverwendet wurde, sondern mit einer Vielzahl von Programmiersprachen zu erstellen, .\n### Gebündelte App\n\n**Ab Nextcloud 30.0.1 ist diese Anwendung im Standard-Nextcloud-Paket enthalten.**\n\n### Support\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden, zu verändern.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Das AppAPI-Projekt ist eine innovative Initiative, die darauf abzielt, die Art und Weise zu revolutionieren, wie Anwendungen für Nextcloud entwickelt werden.", + "Deploy Daemons" : "Daemons bereitstellen", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte überprüfen Sie seine Konfiguration.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geben Sie die Neustartrichtlinie für den Container an, z. B. 'immer', um sicherzustellen, dass ExApp nach einem Neustart des Daemon-Servers ausgeführt wird", + "This settings changes are reflected only for newly created containers" : "Diese Einstellungen werden nur für neu erstellte Container übernommen", "{license}-licensed" : "{license}-Lizenziert", "Update to {version}" : "Aktualisieren auf {version}", "Delete data on remove" : "Daten beim Entfernen löschen", @@ -219,12 +164,51 @@ "No apps found" : "Keine Apps gefunden", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp hat ein Update verfügbar.","Für %n Apps ist ein Update verfügbar"], "_Update_::_Update all_" : ["Aktualisieren","Alle aktualisieren"], + "Deploy Daemon" : "Daemon bereitstellen", "Type" : "Typ", "Display Name" : "Anzeigename", + "GPUs support" : "GPUs Unterstützung", + "Are you sure you want delete Deploy Daemon" : "Möchten Sie wirklich den Deploy Daemon löschen?", + "All ExApps on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "All ExApps installed on this daemon will be removed" : "Alle ExApps auf diesem Daemon werden entfernt.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin options. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Prüfen Sie die Protokolle.", + "Deploy daemon config details" : "Daemon-Konfigurationsdetails bereitstellen", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manueller installierter Daemon, der normalerweise für die Entwicklung verwendet wird. Er kann nicht als Standard-Daemon festgelegt werden.", + "Deploy config" : "Bereitstellungseinstellungen", + "Verify connection" : "Verbindung überprüfen", + "No Deploy daemons configured" : "Keine Bereitstellungsdämonen konfiguriert", + "Register a custom one or setup from available templates" : "Registrieren Sie eine benutzerdefinierte Vorlage oder richten Sie sie aus verfügbaren Vorlagen ein", + "Register Daemon" : "Daemon registrieren", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Hintergrunddienst richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following Deploy test checks must be passed to succeed:" : "Die folgenden Tests müssen für eine erfolgreiche Bereitstellung bestanden werden:", + "More info" : "Weitere Infos", + "Remove test ExApp" : "Test-ExApp entfernen", + "Start Deploy test" : "Bereitstellungstest starten", + "Stop Deploy test" : "Bereitstellungstest anhalten", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ist nicht registriert und der Container wird bei Auswahl von \"Bereitstellungstest beenden\" entfernt.", + "Hostname to access ExApps" : "Hostname zum Zugriff auf ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname oder Pfad zum Zugriff auf den Docker-Daemon (z.B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", + "Password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", "With https enabled network is set to host" : "Bei aktiviertem https ist das Netzwerk auf Host eingestellt", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Änderungen werden nur für neu installierte ExApps übernommen. Für vorhandene ExApps sollten die Docker-Container neu erstellt werden.", + "URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Für den HTTPS-Daemon sollte die Nextcloud-URL HTTPS sein", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host werden von Docker aufgefordert, in ExApp-Containern aktiviert zu werden.", + "Edit Deploy Daemon" : "Bereitstellungs-Daemon bearbeiten", + "Register Deploy Daemon" : "Bereitstellungsdaemon registrieren", + "Select daemon configuration template" : "Daemon-Konfigurationsvorlage auswählen", + "Unique Deploy Daemon Name" : "Einzigartiger Bereitstellungs-Daemonname", + "Select daemon deploy method" : "Daemon für Bereitstellungsmethode auswählen", + "Set daemon as default" : "Daemon als Standard auswählen", + "Set as default daemon" : "Als Standard-Daemon festlegen", + "Enable https" : "https aktivieren", + "Show deploy config" : "Bereitstellungseinstellungen anzeigen", + "Hide deploy config" : "Bereitstellungseinstellungen ausblenden", "Network" : "Netzwerk", "Docker network name" : "Docker-Netzwerkname", + "Additional option" : "Zusatzoption", "by {author}\n{license}" : "von {author}\n{license}", "Your apps" : "Ihre Apps", "Documentation" : "Dokumentation", diff --git a/l10n/el.js b/l10n/el.js index b03f546b..f9388e8d 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Υπηρεσία ανάπτυξης AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Δεν έχει οριστεί προεπιλεγμένο υπηρεσία ανάπτυξης AppAPI. Παρακαλούμε εγγράψτε μια προεπιλεγμένη υπηρεσία ανάπτυξης στις ρυθμίσεις για να εγκαταστήσετε Εξωτερικές Εφαρμογές (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Η προεπιλεγμένη υπηρεσία ανάπτυξης AppAPI \"%s\" δεν είναι προσβάσιμο. Παρακαλούμε ελέγξτε τη διαμόρφωση της υπηρεσίας.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Η προεπιλεγμένη υηρεσία ανάπτυξης AppAPI δεν χρησιμοποιεί HaRP. Παρακαλούμε σκεφτείτε να αναβαθμίσετε σε αυτό για καλύτερη απόδοση.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", "External Apps management" : "Διαχείριση Εξωτερικών Εφαρμογών", "Admin options saved" : "Οι επιλογές διαχειριστή αποθηκεύτηκαν", "Failed to save admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud μέσω της χρήσης docker containers. Επιτρέποντας μεγαλύτερη επιλογή γλωσσών προγραμματισμού και επιτρέποντας την εκφόρτωση υπολογιστικά ακριβών εργασιών σε διαφορετικό διακομιστή.", - "Deploy Daemons" : "Υπηρεσία Ανάπτυξης", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Η Υπηρεσία Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Υπηρεσία Ανάπτυξης. Το Daemon Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Η προεπιλεγμένη Υπηρεσία Ανάπτυξης δεν είναι προσβάσιμη. Παρακαλούμε επαληθεύστε τη διαμόρφωσή της", "ExApp init timeout (minutes)" : "Χρονικό όριο αρχικοποίησης ExApp (λεπτά)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Χρονικό όριο διαδικασίας αρχικοποίησης ExApp μετά το οποίο το AppAPI θα το επισημάνει ως αποτυχημένο", "ExApp init timeout" : "Χρονικό όριο αρχικοποίησης ExApp", "ExApp container restart policy" : "Πολιτική επανεκκίνησης container ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Καθορίστε την πολιτική επανεκκίνησης container, π.χ. 'always' για να διασφαλιστεί η λειτουργία του ExApp μετά την επανεκκίνηση του διακομιστή υπηρεσίας", - "This settings changes are reflected only for newly created containers" : "Οι αλλαγές αυτών των ρυθμίσεων αντικατοπτρίζονται μόνο για νέα containers", - "Are you sure you want delete Deploy Daemon" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε την Υπηρεσία Ανάπτυξης", - "All ExApps on this daemon will be removed" : "Όλα τα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", - "All ExApps installed on this daemon will be removed" : "Όλα τα εγκατεστημένα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", "Cancel" : "Ακύρωση", "Delete" : "Διαγραφή", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Η Υπηρεσία Ανάπτυξης \"manual-install\" δεν μπορεί να οριστεί ως προεπιλεγμένο", - "Failed to save admin options. Check the logs" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή. Ελέγξτε τα αρχεία καταγραφής", "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", "Set as default" : "Ορισμός ως προεπιλογή", @@ -56,31 +44,20 @@ OC.L10N.register( "Docker registries" : "Μητρώα Docker", "Edit" : "Επεξεργασία", "Daemon connection successful" : "Επιτυχής σύνδεση υπηρεσίας", - "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", - "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", "Unlimited" : "Απεριόριστα", - "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", - "Deploy Daemon" : "πηρεσία Ανάπτυξης", "Default daemon. ExApps will be installed on it" : "Προεπιλεγμένη υπηρεσία. Τα ExApps θα εγκατασταθούν σε αυτό", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Υπηρεσία χειροκίνητης εγκατάστασης που συνήθως χρησιμοποιείται για ανάπτυξη. Δεν μπορεί να οριστεί ως προεπιλεγμένη υπηρεσία.", "ExApps installed" : "Εγκατεστημένα ExApps", "Name" : "Όνομα", "Protocol" : "Πρωτόκολλο", "Host" : "Διακομιστής", "ExApp direct communication (FRP disabled)" : "Άμεση επικοινωνία ExApp (FRP απενεργοποιημένο)", - "Deploy config" : "Διαμόρφωση ανάπτυξης", "Docker network" : "Δίκτυο Docker", "Nextcloud URL" : "Διεύθυνση URL Nextcloud", "HaProxy password" : "Κωδικός πρόσβασης HaProxy", - "GPUs support" : "Υποστήριξη GPUs", - "Compute device" : "Συσκευή υπολογισμού", "Memory limit" : "Όριο μνήμης", "Additional options" : "Πρόσθετες επιλογές", - "Verify connection" : "Επαλήθευση σύνδεσης", + "Check connection" : "Έλεγχος σύνδεσης", "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", - "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Υπηρεσία Ανάπτυξης", - "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", - "Register Daemon" : "Εγγραφή Υπηρεσίας", "Register ExApp in Nextcloud" : "Εγγραφή ExApp στο Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Έλεγχος αν το ExApp είναι εγγεγραμμένο στο Nextcloud πριν την ανάπτυξη", "Image pull" : "Λήψη εικόνας", @@ -96,78 +73,45 @@ OC.L10N.register( "Only if ExApp container is preset" : "Μόνο αν το container ExApp είναι προκαθορισμένο", "Deploy test passed successfully!" : "Η δοκιμαστική ανάπτυξη πέρασε με επιτυχία!", "Deploy test failed at step \"{step}\"" : "Η δοκιμαστική ανάπτυξη απέτυχε στο βήμα \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Το AppAPI θα προσπαθήσει να εγκαταστήσει ένα μικρό σκελετό ExApp για να επαληθεύσει ότι το Daemon διαμορφώθηκε σωστά και τα βήματα ανάπτυξης περνούν.", - "The following Deploy test checks must be passed to succeed:" : "Οι ακόλουθοι έλεγχοι δοκιμαστικής ανάπτυξης πρέπει να περάσουν για επιτυχία:", - "More info" : "Περισσότερες πληροφορίες", "Download ExApp logs" : "Λήψη αρχείων καταγραφής ExApp", - "Remove test ExApp" : "Αφαίρεση δοκιμαστικού ExApp", - "Start Deploy test" : "Έναρξη δοκιμαστικής ανάπτυξης", - "Stop Deploy test" : "Διακοπή δοκιμαστικής ανάπτυξης", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Το ExApp διαγράφεται και το container αφαιρείται στο \"Διακοπή δοκιμαστικής ανάπτυξης\"", "Please enter a registry domain" : "Παρακαλούμε εισάγετε ένα domain μητρώου", - "From cannot be \"local\"" : "Το Από δεν μπορεί να είναι \"local\"", "This registry mapping already exists" : "Αυτή η αντιστοίχιση μητρώου υπάρχει ήδη", - "From and To cannot be the same" : "Το Από και το Έως δεν μπορεί να είναι το ίδιο", "Docker registry mapping added" : "Προστέθηκε αντιστοίχιση μητρώου Docker", "Error adding Docker registry mapping" : "Σφάλμα προσθήκης αντιστοίχισης μητρώου Docker", "Docker registry mapping removed" : "Αφαιρέθηκε αντιστοίχιση μητρώου Docker", "Error removing Docker registry mapping" : "Σφάλμα αφαίρεσης αντιστοίχισης μητρώου Docker", "Override Docker registries" : "Παράκαμψη μητρώων Docker", - "Configure Docker registry override mappings for selected daemon." : "Διαμόρφωση αντιστοιχίσεων παράκαμψης μητρώου Docker για το επιλεγμένο daemon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Το αντίστοιχο πηγαίο μητρώο στο info.xml του ExApp θα αντικατασταθεί κατά τη διάρκεια της ανάπτυξης (βήμα λήψης εικόνας).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Αυτό είναι χρήσιμο αν θέλετε να χρησιμοποιήσετε ένα προσαρμοσμένο μητρώο Docker, για παράδειγμα, για να χρησιμοποιήσετε ένα ιδιωτικό μητρώο Docker, ή για να χρησιμοποιήσετε ένα διαφορετικό μητρώο Docker για δοκιμές.", "Image pull will be skipped" : "Η λήψη εικόνας θα παραλειφθεί", "Remove" : "Αφαίρεση", - "No custom Docker registries configured" : "Δεν έχουν ρυθμιστεί προσαρμοσμένα μητρώα Docker", "Add registry override mapping" : "Προσθήκη αντιστοίχισης παράκαμψης μητρώου", "From" : "Από", "registry URL (e.g. ghcr.io)" : "URL μητρώου (π.χ. ghcr.io)", "To" : "Έως", "registry URL (e.g. docker.io)" : "URL μητρώου (π.χ. docker.io)", "Add" : "Προσθήκη", - "Hostname to access ExApps" : "Όνομα διακομιστή για πρόσβαση στα ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Το όνομα διακομιστή (και θύρα) στο οποίο το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud, π.χ. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Το όνομα διακομιστή (και θύρα) ή η διαδρομή στην οποία το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud. Μπορεί επίσης να είναι μια διαδρομή προς το docker socket. (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Υπάρχει ήδη υπηρεσία με αυτό το όνομα", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Το μυστικό κλειδί για την επικοινωνία container HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Κωδικός πιστοποίησης AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Οι αλλαγές θα εφαρμοστούν μόνο για νέα εγκατεστημένα ExApps. Για υπάρχοντα ExApps, τα Docker containers θα πρέπει να αναδημιουργηθούν.", - "The docker network that the deployed ex-apps would use." : "Το δίκτυο Docker που θα χρησιμοποιούν τα ανεπτυγμένα ex-apps.", - "URL should start with http:// or https://" : "Το URL πρέπει να ξεκινά με http:// ή https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Για υπηρεσία HTTPS, το URL του Nextcloud πρέπει να είναι HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Όλες οι διαθέσιμες συσκευές GPU στον κεντρικό υπολογιστή υπηρεσίας θα ζητηθεί να ενεργοποιηθούν σε containers ExApp από το Docker.", "DaemonConfig successfully registered" : "Το DaemonConfig εγγράφηκε με επιτυχία", "Failed to register DaemonConfig. Check the logs" : "Αποτυχία εγγραφής DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", "DaemonConfig successfully updated" : "Το DaemonConfig ενημερώθηκε με επιτυχία", "Failed to update DaemonConfig. Check the logs" : "Αποτυχία ενημέρωσης DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", - "Edit Deploy Daemon" : "Επεξεργασία Υπηρεσίας Ανάπτυξης", - "Register Deploy Daemon" : "Εγγραφή Υπηρεσίας Ανάπτυξης", + "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", "Daemon configuration template" : "Πρότυπο διαμόρφωσης υπηρεσίας", - "Select daemon configuration template" : "Επιλογή προτύπου διαμόρφωσης υπηρεσίας", "Daemon registration form" : "Φόρμα εγγραφής υπηρεσίιας", - "Unique Deploy Daemon Name" : "Μοναδικό Όνομα Υπηρεσίας Ανάπτυξης", "Display name" : "Εμφανιζόμενο όνομα", "Deployment method" : "Μέθοδος ανάπτυξης", - "Select daemon deploy method" : "Επιλογή μεθόδου ανάπτυξης υπηρεσίας", "HaRP host" : "Διακομιστής HaRP", "Daemon host" : "Διακομιστής υπηρεσιας", "HaRP shared key" : "Κοινόχρηστο κλειδί HaRP", - "Password must be at least 12 characters long" : "Ο κωδικός πρέπει να είναι τουλάχιστον 12 χαρακτήρες", - "Set daemon as default" : "Ορισμός υπηρεσίας ως προεπιλογή", - "Set as default daemon" : "Ορισμός ως προεπιλεγμένη υπηρεσία", - "Enable https" : "Ενεργοποίηση https", - "Show deploy config" : "Εμφάνιση διαμόρφωσης ανάπτυξης", - "Hide deploy config" : "Απόκρυψη διαμόρφωσης ανάπτυξης", "Enable HaRP" : "Ενεργοποίηση HaRP", "FRP server address" : "Διεύθυνση διακομιστή FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Η διεύθυνση (host:port) του διακομιστή FRP που πρέπει να είναι προσβάσιμη από το ex-app στο δίκτυο που ορίζεται στο 'Docker network'.", "Docker socket proxy port" : "Θύρα διακομιστή μεσολάβησης Docker socket", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Η θύρα στο HaRP στην οποία συνδέεται ο διακομιστής μεσολάβησης docker socket. Αυτή πρέπει να εκτίθεται, αλλά για την ενσωματωμένη, δεν απαιτείται να εκτεθεί ή να αλλάξει.", "Disable FRP" : "Απενεργοποίηση FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Σημαία μόνο για προχωρημένες ρυθμίσεις. Απενεργοποιεί τη σήραγγα FRP μεταξύ ExApps και HaRP.", "Disabled" : "Απενεργοποιημένο", "Docker network for ex-app deployment must be defined" : "Το δίκτυο Docker για ανάπτυξη ex-app πρέπει να οριστεί", - "Additional option" : "Πρόσθετη επιλογή", + "Compute device" : "Συσκευή υπολογισμού", "Add additional option" : "Προσθήκη πρόσθετης επιλογής", "Option key (unique)" : "Κλειδί επιλογής (μοναδικό)", "Option key (unique, e.g. my_key)" : "Κλειδί επιλογής (μοναδικό, π.χ. my_key)", @@ -177,10 +121,15 @@ OC.L10N.register( "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", - "Check connection" : "Έλεγχος σύνδεσης", "External Apps" : "Εξωτερικές Εφαρμογές", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n### Ενσωματωμένη Εφαρμογή\n\n**Ξεκινώντας από το Nextcloud 30.0.1, αυτή η εφαρμογή περιλαμβάνεται στο προεπιλεγμένο πακέτο Nextcloud.**\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud.", + "Deploy Daemons" : "Υπηρεσία Ανάπτυξης", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Η Υπηρεσία Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Υπηρεσία Ανάπτυξης. Το Daemon Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Η προεπιλεγμένη Υπηρεσία Ανάπτυξης δεν είναι προσβάσιμη. Παρακαλούμε επαληθεύστε τη διαμόρφωσή της", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Καθορίστε την πολιτική επανεκκίνησης container, π.χ. 'always' για να διασφαλιστεί η λειτουργία του ExApp μετά την επανεκκίνηση του διακομιστή υπηρεσίας", + "This settings changes are reflected only for newly created containers" : "Οι αλλαγές αυτών των ρυθμίσεων αντικατοπτρίζονται μόνο για νέα containers", "{license}-licensed" : "αδειοδοτημένο με {license}", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", @@ -210,12 +159,51 @@ OC.L10N.register( "No apps found" : "Δεν βρέθηκαν εφαρμογές", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp έχει διαθέσιμη ενημέρωση","%n ExApps έχουν διαθέσιμες ενημερώσεις"], "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], + "Deploy Daemon" : "πηρεσία Ανάπτυξης", "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "GPUs support" : "Υποστήριξη GPUs", + "Are you sure you want delete Deploy Daemon" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε την Υπηρεσία Ανάπτυξης", + "All ExApps on this daemon will be removed" : "Όλα τα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", + "All ExApps installed on this daemon will be removed" : "Όλα τα εγκατεστημένα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Η Υπηρεσία Ανάπτυξης \"manual-install\" δεν μπορεί να οριστεί ως προεπιλεγμένο", + "Failed to save admin options. Check the logs" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή. Ελέγξτε τα αρχεία καταγραφής", + "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Υπηρεσία χειροκίνητης εγκατάστασης που συνήθως χρησιμοποιείται για ανάπτυξη. Δεν μπορεί να οριστεί ως προεπιλεγμένη υπηρεσία.", + "Deploy config" : "Διαμόρφωση ανάπτυξης", + "Verify connection" : "Επαλήθευση σύνδεσης", + "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Υπηρεσία Ανάπτυξης", + "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", + "Register Daemon" : "Εγγραφή Υπηρεσίας", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Το AppAPI θα προσπαθήσει να εγκαταστήσει ένα μικρό σκελετό ExApp για να επαληθεύσει ότι το Daemon διαμορφώθηκε σωστά και τα βήματα ανάπτυξης περνούν.", + "The following Deploy test checks must be passed to succeed:" : "Οι ακόλουθοι έλεγχοι δοκιμαστικής ανάπτυξης πρέπει να περάσουν για επιτυχία:", + "More info" : "Περισσότερες πληροφορίες", + "Remove test ExApp" : "Αφαίρεση δοκιμαστικού ExApp", + "Start Deploy test" : "Έναρξη δοκιμαστικής ανάπτυξης", + "Stop Deploy test" : "Διακοπή δοκιμαστικής ανάπτυξης", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Το ExApp διαγράφεται και το container αφαιρείται στο \"Διακοπή δοκιμαστικής ανάπτυξης\"", + "Hostname to access ExApps" : "Όνομα διακομιστή για πρόσβαση στα ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Όνομα διακομιστή ή διαδρομή για πρόσβαση στο Docker daemon (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Υπάρχει ήδη υπηρεσία με αυτό το όνομα", + "Password must be at least 12 characters long" : "Ο κωδικός πρέπει να είναι τουλάχιστον 12 χαρακτήρες", "With https enabled network is set to host" : "Με ενεργοποιημένο https το δίκτυο ορίζεται σε host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Οι αλλαγές θα εφαρμοστούν μόνο για νέα εγκατεστημένα ExApps. Για υπάρχοντα ExApps, τα Docker containers θα πρέπει να αναδημιουργηθούν.", + "URL should start with http:// or https://" : "Το URL πρέπει να ξεκινά με http:// ή https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Για υπηρεσία HTTPS, το URL του Nextcloud πρέπει να είναι HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Όλες οι διαθέσιμες συσκευές GPU στον κεντρικό υπολογιστή υπηρεσίας θα ζητηθεί να ενεργοποιηθούν σε containers ExApp από το Docker.", + "Edit Deploy Daemon" : "Επεξεργασία Υπηρεσίας Ανάπτυξης", + "Register Deploy Daemon" : "Εγγραφή Υπηρεσίας Ανάπτυξης", + "Select daemon configuration template" : "Επιλογή προτύπου διαμόρφωσης υπηρεσίας", + "Unique Deploy Daemon Name" : "Μοναδικό Όνομα Υπηρεσίας Ανάπτυξης", + "Select daemon deploy method" : "Επιλογή μεθόδου ανάπτυξης υπηρεσίας", + "Set daemon as default" : "Ορισμός υπηρεσίας ως προεπιλογή", + "Set as default daemon" : "Ορισμός ως προεπιλεγμένη υπηρεσία", + "Enable https" : "Ενεργοποίηση https", + "Show deploy config" : "Εμφάνιση διαμόρφωσης ανάπτυξης", + "Hide deploy config" : "Απόκρυψη διαμόρφωσης ανάπτυξης", "Network" : "Δίκτυο", "Docker network name" : "Όνομα δικτύου Docker", + "Additional option" : "Πρόσθετη επιλογή", "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", diff --git a/l10n/el.json b/l10n/el.json index 68ef7c46..1b51ff67 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Υπηρεσία ανάπτυξης AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Δεν έχει οριστεί προεπιλεγμένο υπηρεσία ανάπτυξης AppAPI. Παρακαλούμε εγγράψτε μια προεπιλεγμένη υπηρεσία ανάπτυξης στις ρυθμίσεις για να εγκαταστήσετε Εξωτερικές Εφαρμογές (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Η προεπιλεγμένη υπηρεσία ανάπτυξης AppAPI \"%s\" δεν είναι προσβάσιμο. Παρακαλούμε ελέγξτε τη διαμόρφωση της υπηρεσίας.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Η προεπιλεγμένη υηρεσία ανάπτυξης AppAPI δεν χρησιμοποιεί HaRP. Παρακαλούμε σκεφτείτε να αναβαθμίσετε σε αυτό για καλύτερη απόδοση.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", "External Apps management" : "Διαχείριση Εξωτερικών Εφαρμογών", "Admin options saved" : "Οι επιλογές διαχειριστή αποθηκεύτηκαν", "Failed to save admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud μέσω της χρήσης docker containers. Επιτρέποντας μεγαλύτερη επιλογή γλωσσών προγραμματισμού και επιτρέποντας την εκφόρτωση υπολογιστικά ακριβών εργασιών σε διαφορετικό διακομιστή.", - "Deploy Daemons" : "Υπηρεσία Ανάπτυξης", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Η Υπηρεσία Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Υπηρεσία Ανάπτυξης. Το Daemon Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Η προεπιλεγμένη Υπηρεσία Ανάπτυξης δεν είναι προσβάσιμη. Παρακαλούμε επαληθεύστε τη διαμόρφωσή της", "ExApp init timeout (minutes)" : "Χρονικό όριο αρχικοποίησης ExApp (λεπτά)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Χρονικό όριο διαδικασίας αρχικοποίησης ExApp μετά το οποίο το AppAPI θα το επισημάνει ως αποτυχημένο", "ExApp init timeout" : "Χρονικό όριο αρχικοποίησης ExApp", "ExApp container restart policy" : "Πολιτική επανεκκίνησης container ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Καθορίστε την πολιτική επανεκκίνησης container, π.χ. 'always' για να διασφαλιστεί η λειτουργία του ExApp μετά την επανεκκίνηση του διακομιστή υπηρεσίας", - "This settings changes are reflected only for newly created containers" : "Οι αλλαγές αυτών των ρυθμίσεων αντικατοπτρίζονται μόνο για νέα containers", - "Are you sure you want delete Deploy Daemon" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε την Υπηρεσία Ανάπτυξης", - "All ExApps on this daemon will be removed" : "Όλα τα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", - "All ExApps installed on this daemon will be removed" : "Όλα τα εγκατεστημένα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", "Cancel" : "Ακύρωση", "Delete" : "Διαγραφή", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Η Υπηρεσία Ανάπτυξης \"manual-install\" δεν μπορεί να οριστεί ως προεπιλεγμένο", - "Failed to save admin options. Check the logs" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή. Ελέγξτε τα αρχεία καταγραφής", "Password confirmation failed" : "Η επιβεβαίωση του κωδικού πρόσβασης απέτυχε", "Default" : "Προεπιλογή", "Set as default" : "Ορισμός ως προεπιλογή", @@ -54,31 +42,20 @@ "Docker registries" : "Μητρώα Docker", "Edit" : "Επεξεργασία", "Daemon connection successful" : "Επιτυχής σύνδεση υπηρεσίας", - "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", - "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", "Unlimited" : "Απεριόριστα", - "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", - "Deploy Daemon" : "πηρεσία Ανάπτυξης", "Default daemon. ExApps will be installed on it" : "Προεπιλεγμένη υπηρεσία. Τα ExApps θα εγκατασταθούν σε αυτό", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Υπηρεσία χειροκίνητης εγκατάστασης που συνήθως χρησιμοποιείται για ανάπτυξη. Δεν μπορεί να οριστεί ως προεπιλεγμένη υπηρεσία.", "ExApps installed" : "Εγκατεστημένα ExApps", "Name" : "Όνομα", "Protocol" : "Πρωτόκολλο", "Host" : "Διακομιστής", "ExApp direct communication (FRP disabled)" : "Άμεση επικοινωνία ExApp (FRP απενεργοποιημένο)", - "Deploy config" : "Διαμόρφωση ανάπτυξης", "Docker network" : "Δίκτυο Docker", "Nextcloud URL" : "Διεύθυνση URL Nextcloud", "HaProxy password" : "Κωδικός πρόσβασης HaProxy", - "GPUs support" : "Υποστήριξη GPUs", - "Compute device" : "Συσκευή υπολογισμού", "Memory limit" : "Όριο μνήμης", "Additional options" : "Πρόσθετες επιλογές", - "Verify connection" : "Επαλήθευση σύνδεσης", + "Check connection" : "Έλεγχος σύνδεσης", "Registered Deploy daemons list" : "Κατάλογος εγγεγραμμένων Daemon Ανάπτυξης", - "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Υπηρεσία Ανάπτυξης", - "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", - "Register Daemon" : "Εγγραφή Υπηρεσίας", "Register ExApp in Nextcloud" : "Εγγραφή ExApp στο Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Έλεγχος αν το ExApp είναι εγγεγραμμένο στο Nextcloud πριν την ανάπτυξη", "Image pull" : "Λήψη εικόνας", @@ -94,78 +71,45 @@ "Only if ExApp container is preset" : "Μόνο αν το container ExApp είναι προκαθορισμένο", "Deploy test passed successfully!" : "Η δοκιμαστική ανάπτυξη πέρασε με επιτυχία!", "Deploy test failed at step \"{step}\"" : "Η δοκιμαστική ανάπτυξη απέτυχε στο βήμα \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Το AppAPI θα προσπαθήσει να εγκαταστήσει ένα μικρό σκελετό ExApp για να επαληθεύσει ότι το Daemon διαμορφώθηκε σωστά και τα βήματα ανάπτυξης περνούν.", - "The following Deploy test checks must be passed to succeed:" : "Οι ακόλουθοι έλεγχοι δοκιμαστικής ανάπτυξης πρέπει να περάσουν για επιτυχία:", - "More info" : "Περισσότερες πληροφορίες", "Download ExApp logs" : "Λήψη αρχείων καταγραφής ExApp", - "Remove test ExApp" : "Αφαίρεση δοκιμαστικού ExApp", - "Start Deploy test" : "Έναρξη δοκιμαστικής ανάπτυξης", - "Stop Deploy test" : "Διακοπή δοκιμαστικής ανάπτυξης", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Το ExApp διαγράφεται και το container αφαιρείται στο \"Διακοπή δοκιμαστικής ανάπτυξης\"", "Please enter a registry domain" : "Παρακαλούμε εισάγετε ένα domain μητρώου", - "From cannot be \"local\"" : "Το Από δεν μπορεί να είναι \"local\"", "This registry mapping already exists" : "Αυτή η αντιστοίχιση μητρώου υπάρχει ήδη", - "From and To cannot be the same" : "Το Από και το Έως δεν μπορεί να είναι το ίδιο", "Docker registry mapping added" : "Προστέθηκε αντιστοίχιση μητρώου Docker", "Error adding Docker registry mapping" : "Σφάλμα προσθήκης αντιστοίχισης μητρώου Docker", "Docker registry mapping removed" : "Αφαιρέθηκε αντιστοίχιση μητρώου Docker", "Error removing Docker registry mapping" : "Σφάλμα αφαίρεσης αντιστοίχισης μητρώου Docker", "Override Docker registries" : "Παράκαμψη μητρώων Docker", - "Configure Docker registry override mappings for selected daemon." : "Διαμόρφωση αντιστοιχίσεων παράκαμψης μητρώου Docker για το επιλεγμένο daemon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Το αντίστοιχο πηγαίο μητρώο στο info.xml του ExApp θα αντικατασταθεί κατά τη διάρκεια της ανάπτυξης (βήμα λήψης εικόνας).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Αυτό είναι χρήσιμο αν θέλετε να χρησιμοποιήσετε ένα προσαρμοσμένο μητρώο Docker, για παράδειγμα, για να χρησιμοποιήσετε ένα ιδιωτικό μητρώο Docker, ή για να χρησιμοποιήσετε ένα διαφορετικό μητρώο Docker για δοκιμές.", "Image pull will be skipped" : "Η λήψη εικόνας θα παραλειφθεί", "Remove" : "Αφαίρεση", - "No custom Docker registries configured" : "Δεν έχουν ρυθμιστεί προσαρμοσμένα μητρώα Docker", "Add registry override mapping" : "Προσθήκη αντιστοίχισης παράκαμψης μητρώου", "From" : "Από", "registry URL (e.g. ghcr.io)" : "URL μητρώου (π.χ. ghcr.io)", "To" : "Έως", "registry URL (e.g. docker.io)" : "URL μητρώου (π.χ. docker.io)", "Add" : "Προσθήκη", - "Hostname to access ExApps" : "Όνομα διακομιστή για πρόσβαση στα ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Το όνομα διακομιστή (και θύρα) στο οποίο το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud, π.χ. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Το όνομα διακομιστή (και θύρα) ή η διαδρομή στην οποία το {name} είναι διαθέσιμο. Αυτό δεν χρειάζεται να είναι ένας δημόσιος διακομιστής, απλώς ένας διακομιστής προσβάσιμος από τον διακομιστή Nextcloud. Μπορεί επίσης να είναι μια διαδρομή προς το docker socket. (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Υπάρχει ήδη υπηρεσία με αυτό το όνομα", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Το μυστικό κλειδί για την επικοινωνία container HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Κωδικός πιστοποίησης AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Οι αλλαγές θα εφαρμοστούν μόνο για νέα εγκατεστημένα ExApps. Για υπάρχοντα ExApps, τα Docker containers θα πρέπει να αναδημιουργηθούν.", - "The docker network that the deployed ex-apps would use." : "Το δίκτυο Docker που θα χρησιμοποιούν τα ανεπτυγμένα ex-apps.", - "URL should start with http:// or https://" : "Το URL πρέπει να ξεκινά με http:// ή https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Για υπηρεσία HTTPS, το URL του Nextcloud πρέπει να είναι HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Όλες οι διαθέσιμες συσκευές GPU στον κεντρικό υπολογιστή υπηρεσίας θα ζητηθεί να ενεργοποιηθούν σε containers ExApp από το Docker.", "DaemonConfig successfully registered" : "Το DaemonConfig εγγράφηκε με επιτυχία", "Failed to register DaemonConfig. Check the logs" : "Αποτυχία εγγραφής DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", "DaemonConfig successfully updated" : "Το DaemonConfig ενημερώθηκε με επιτυχία", "Failed to update DaemonConfig. Check the logs" : "Αποτυχία ενημέρωσης DaemonConfig. Ελέγξτε τα αρχεία καταγραφής", - "Edit Deploy Daemon" : "Επεξεργασία Υπηρεσίας Ανάπτυξης", - "Register Deploy Daemon" : "Εγγραφή Υπηρεσίας Ανάπτυξης", + "Failed to connect to Daemon. Check the logs" : "Αποτυχία σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", + "Failed to check connection to Daemon. Check the logs" : "Αποτυχία ελέγχου σύνδεσης με την Υπηρεσία. Ελέγξτε τα αρχεία καταγραφής", "Daemon configuration template" : "Πρότυπο διαμόρφωσης υπηρεσίας", - "Select daemon configuration template" : "Επιλογή προτύπου διαμόρφωσης υπηρεσίας", "Daemon registration form" : "Φόρμα εγγραφής υπηρεσίιας", - "Unique Deploy Daemon Name" : "Μοναδικό Όνομα Υπηρεσίας Ανάπτυξης", "Display name" : "Εμφανιζόμενο όνομα", "Deployment method" : "Μέθοδος ανάπτυξης", - "Select daemon deploy method" : "Επιλογή μεθόδου ανάπτυξης υπηρεσίας", "HaRP host" : "Διακομιστής HaRP", "Daemon host" : "Διακομιστής υπηρεσιας", "HaRP shared key" : "Κοινόχρηστο κλειδί HaRP", - "Password must be at least 12 characters long" : "Ο κωδικός πρέπει να είναι τουλάχιστον 12 χαρακτήρες", - "Set daemon as default" : "Ορισμός υπηρεσίας ως προεπιλογή", - "Set as default daemon" : "Ορισμός ως προεπιλεγμένη υπηρεσία", - "Enable https" : "Ενεργοποίηση https", - "Show deploy config" : "Εμφάνιση διαμόρφωσης ανάπτυξης", - "Hide deploy config" : "Απόκρυψη διαμόρφωσης ανάπτυξης", "Enable HaRP" : "Ενεργοποίηση HaRP", "FRP server address" : "Διεύθυνση διακομιστή FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Η διεύθυνση (host:port) του διακομιστή FRP που πρέπει να είναι προσβάσιμη από το ex-app στο δίκτυο που ορίζεται στο 'Docker network'.", "Docker socket proxy port" : "Θύρα διακομιστή μεσολάβησης Docker socket", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Η θύρα στο HaRP στην οποία συνδέεται ο διακομιστής μεσολάβησης docker socket. Αυτή πρέπει να εκτίθεται, αλλά για την ενσωματωμένη, δεν απαιτείται να εκτεθεί ή να αλλάξει.", "Disable FRP" : "Απενεργοποίηση FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Σημαία μόνο για προχωρημένες ρυθμίσεις. Απενεργοποιεί τη σήραγγα FRP μεταξύ ExApps και HaRP.", "Disabled" : "Απενεργοποιημένο", "Docker network for ex-app deployment must be defined" : "Το δίκτυο Docker για ανάπτυξη ex-app πρέπει να οριστεί", - "Additional option" : "Πρόσθετη επιλογή", + "Compute device" : "Συσκευή υπολογισμού", "Add additional option" : "Προσθήκη πρόσθετης επιλογής", "Option key (unique)" : "Κλειδί επιλογής (μοναδικό)", "Option key (unique, e.g. my_key)" : "Κλειδί επιλογής (μοναδικό, π.χ. my_key)", @@ -175,10 +119,15 @@ "Confirm" : "Επιβεβαίωση", "Save" : "Αποθήκευση", "Register" : "Εγγραφή", - "Check connection" : "Έλεγχος σύνδεσης", "External Apps" : "Εξωτερικές Εφαρμογές", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n### Ενσωματωμένη Εφαρμογή\n\n**Ξεκινώντας από το Nextcloud 30.0.1, αυτή η εφαρμογή περιλαμβάνεται στο προεπιλεγμένο πακέτο Nextcloud.**\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Το Έργο AppAPI είναι μια συναρπαστική πρωτοβουλία που στοχεύει να φέρει επανάσταση στον τρόπο ανάπτυξης εφαρμογών για το Nextcloud.", + "Deploy Daemons" : "Υπηρεσία Ανάπτυξης", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Η Υπηρεσία Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Υπηρεσία Ανάπτυξης. Το Daemon Ανάπτυξης (DaemonConfig) είναι μια υπηρεσία ορχήστρωσης ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Η προεπιλεγμένη Υπηρεσία Ανάπτυξης δεν είναι προσβάσιμη. Παρακαλούμε επαληθεύστε τη διαμόρφωσή της", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Καθορίστε την πολιτική επανεκκίνησης container, π.χ. 'always' για να διασφαλιστεί η λειτουργία του ExApp μετά την επανεκκίνηση του διακομιστή υπηρεσίας", + "This settings changes are reflected only for newly created containers" : "Οι αλλαγές αυτών των ρυθμίσεων αντικατοπτρίζονται μόνο για νέα containers", "{license}-licensed" : "αδειοδοτημένο με {license}", "Update to {version}" : "Ενημέρωση στην έκδοση {version}", "Delete data on remove" : "Διαγραφή δεδομένων κατά την αφαίρεση", @@ -208,12 +157,51 @@ "No apps found" : "Δεν βρέθηκαν εφαρμογές", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp έχει διαθέσιμη ενημέρωση","%n ExApps έχουν διαθέσιμες ενημερώσεις"], "_Update_::_Update all_" : ["Ενημέρωση","Ενημέρωση όλων"], + "Deploy Daemon" : "πηρεσία Ανάπτυξης", "Type" : "Τύπος", "Display Name" : "Εμφανιζόμενο όνομα", + "GPUs support" : "Υποστήριξη GPUs", + "Are you sure you want delete Deploy Daemon" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε την Υπηρεσία Ανάπτυξης", + "All ExApps on this daemon will be removed" : "Όλα τα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", + "All ExApps installed on this daemon will be removed" : "Όλα τα εγκατεστημένα ExApps σε αυτή την υπηρεσία θα αφαιρεθούν", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Η Υπηρεσία Ανάπτυξης \"manual-install\" δεν μπορεί να οριστεί ως προεπιλεγμένο", + "Failed to save admin options. Check the logs" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή. Ελέγξτε τα αρχεία καταγραφής", + "Deploy daemon config details" : "Λεπτομέρειες διαμόρφωσης daemon ανάπτυξης", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Υπηρεσία χειροκίνητης εγκατάστασης που συνήθως χρησιμοποιείται για ανάπτυξη. Δεν μπορεί να οριστεί ως προεπιλεγμένη υπηρεσία.", + "Deploy config" : "Διαμόρφωση ανάπτυξης", + "Verify connection" : "Επαλήθευση σύνδεσης", + "No Deploy daemons configured" : "Δεν έχουν ρυθμιστεί Υπηρεσία Ανάπτυξης", + "Register a custom one or setup from available templates" : "Εγγραφή προσαρμοσμένου ή ρύθμιση από διαθέσιμα πρότυπα", + "Register Daemon" : "Εγγραφή Υπηρεσίας", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Το AppAPI θα προσπαθήσει να εγκαταστήσει ένα μικρό σκελετό ExApp για να επαληθεύσει ότι το Daemon διαμορφώθηκε σωστά και τα βήματα ανάπτυξης περνούν.", + "The following Deploy test checks must be passed to succeed:" : "Οι ακόλουθοι έλεγχοι δοκιμαστικής ανάπτυξης πρέπει να περάσουν για επιτυχία:", + "More info" : "Περισσότερες πληροφορίες", + "Remove test ExApp" : "Αφαίρεση δοκιμαστικού ExApp", + "Start Deploy test" : "Έναρξη δοκιμαστικής ανάπτυξης", + "Stop Deploy test" : "Διακοπή δοκιμαστικής ανάπτυξης", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Το ExApp διαγράφεται και το container αφαιρείται στο \"Διακοπή δοκιμαστικής ανάπτυξης\"", + "Hostname to access ExApps" : "Όνομα διακομιστή για πρόσβαση στα ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Όνομα διακομιστή ή διαδρομή για πρόσβαση στο Docker daemon (π.χ. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Υπάρχει ήδη υπηρεσία με αυτό το όνομα", + "Password must be at least 12 characters long" : "Ο κωδικός πρέπει να είναι τουλάχιστον 12 χαρακτήρες", "With https enabled network is set to host" : "Με ενεργοποιημένο https το δίκτυο ορίζεται σε host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Οι αλλαγές θα εφαρμοστούν μόνο για νέα εγκατεστημένα ExApps. Για υπάρχοντα ExApps, τα Docker containers θα πρέπει να αναδημιουργηθούν.", + "URL should start with http:// or https://" : "Το URL πρέπει να ξεκινά με http:// ή https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Για υπηρεσία HTTPS, το URL του Nextcloud πρέπει να είναι HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Όλες οι διαθέσιμες συσκευές GPU στον κεντρικό υπολογιστή υπηρεσίας θα ζητηθεί να ενεργοποιηθούν σε containers ExApp από το Docker.", + "Edit Deploy Daemon" : "Επεξεργασία Υπηρεσίας Ανάπτυξης", + "Register Deploy Daemon" : "Εγγραφή Υπηρεσίας Ανάπτυξης", + "Select daemon configuration template" : "Επιλογή προτύπου διαμόρφωσης υπηρεσίας", + "Unique Deploy Daemon Name" : "Μοναδικό Όνομα Υπηρεσίας Ανάπτυξης", + "Select daemon deploy method" : "Επιλογή μεθόδου ανάπτυξης υπηρεσίας", + "Set daemon as default" : "Ορισμός υπηρεσίας ως προεπιλογή", + "Set as default daemon" : "Ορισμός ως προεπιλεγμένη υπηρεσία", + "Enable https" : "Ενεργοποίηση https", + "Show deploy config" : "Εμφάνιση διαμόρφωσης ανάπτυξης", + "Hide deploy config" : "Απόκρυψη διαμόρφωσης ανάπτυξης", "Network" : "Δίκτυο", "Docker network name" : "Όνομα δικτύου Docker", + "Additional option" : "Πρόσθετη επιλογή", "by {author}\n{license}" : "από {author}\n{license}", "Your apps" : "Οι εφαρμογές σας", "Documentation" : "Τεκμηρίωση", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index a02ddc01..1fcaaa3f 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI deploy daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server.", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Default Deploy Daemon is not accessible. Please verify its configuration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutes)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialization process timeout after which AppAPI will mark it as failed", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp container restart policy", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot", - "This settings changes are reflected only for newly created containers" : "This settings changes are reflected only for newly created containers", - "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", - "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", - "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", "Cancel" : "Cancel", "Delete" : "Delete", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", - "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", "Password confirmation failed" : "Password confirmation failed", "Default" : "Default", "Set as default" : "Set as default", @@ -56,36 +44,23 @@ OC.L10N.register( "Docker registries" : "Docker registries", "Edit" : "Edit", "Daemon connection successful" : "Daemon connection successful", - "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", - "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Unlimited" : "Unlimited", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Deploy daemon config details", - "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon usually used for development. It cannot be set as default daemon.", "ExApps installed" : "ExApps installed", "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "ExApp direct communication (FRP disabled)", - "Deploy config" : "Deploy config", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy password", - "GPUs support" : "GPUs support", - "Compute device" : "Compute device", "Memory limit" : "Memory limit", "CPU limit" : "CPU limit", "Additional options" : "Additional options", - "Verify connection" : "Verify connection", + "Check connection" : "Check connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", - "No Deploy daemons configured" : "No Deploy daemons configured", - "Register a custom one or setup from available templates" : "Register a custom one or setup from available templates", - "Register Daemon" : "Register Daemon", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Check if the ExApp is registered in Nextcloud before deployment", "Image pull" : "Image pull", @@ -101,84 +76,49 @@ OC.L10N.register( "Only if ExApp container is preset" : "Only if ExApp container is preset", "Deploy test passed successfully!" : "Deploy test passed successfully!", "Deploy test failed at step \"{step}\"" : "Deploy test failed at step \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", - "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", - "More info" : "More info", "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Remove test ExApp", - "Start Deploy test" : "Start Deploy test", - "Stop Deploy test" : "Stop Deploy test", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Please enter a registry domain" : "Please enter a registry domain", - "From cannot be \"local\"" : "From cannot be \"local\"", "This registry mapping already exists" : "This registry mapping already exists", - "From and To cannot be the same" : "From and To cannot be the same", "Docker registry mapping added" : "Docker registry mapping added", "Error adding Docker registry mapping" : "Error adding Docker registry mapping", "Docker registry mapping removed" : "Docker registry mapping removed", "Error removing Docker registry mapping" : "Error removing Docker registry mapping", "Override Docker registries" : "Override Docker registries", - "Configure Docker registry override mappings for selected daemon." : "Configure Docker registry override mappings for selected daemon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing.", "Image pull will be skipped" : "Image pull will be skipped", "Remove" : "Remove", - "No custom Docker registries configured" : "No custom Docker registries configured", "Add registry override mapping" : "Add registry override mapping", "From" : "From", "registry URL (e.g. ghcr.io)" : "registry URL (e.g. ghcr.io)", "To" : "To", "registry URL (e.g. docker.io)" : "registry URL (e.g. docker.io)", "Add" : "Add", - "Hostname to access ExApps" : "Hostname to access ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon with this name already exists", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "The secret key for the HaRP container communication (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", - "The docker network that the deployed ex-apps would use." : "The docker network that the deployed ex-apps would use.", - "URL should start with http:// or https://" : "URL should start with http:// or https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", "DaemonConfig successfully registered" : "DaemonConfig successfully registered", "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", - "Edit Deploy Daemon" : "Edit Deploy Daemon", - "Register Deploy Daemon" : "Register Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", + "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Daemon configuration template" : "Daemon configuration template", - "Select daemon configuration template" : "Select daemon configuration template", "Daemon registration form" : "Daemon registration form", - "Unique Deploy Daemon Name" : "Unique Deploy Daemon Name", "Display name" : "Display name", "Deployment method" : "Deployment method", - "Select daemon deploy method" : "Select daemon deploy method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP shared key", - "Password must be at least 12 characters long" : "Password must be at least 12 characters long", - "Set daemon as default" : "Set daemon as default", - "Set as default daemon" : "Set as default daemon", - "Enable https" : "Enable https", - "Show deploy config" : "Show deploy config", - "Hide deploy config" : "Hide deploy config", "Enable HaRP" : "Enable HaRP", "FRP server address" : "FRP server address", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", + "Compute device" : "Compute device", "Memory limit (in MiB)" : "Memory limit (in MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maximum memory that the ExApp container can use in mebibytes", "Must be a positive integer" : "Must be a positive integer", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", "CPU limit as decimal value" : "CPU limit as decimal value", "Must be a positive number" : "Must be a positive number", - "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", "Option key (unique, e.g. my_key)" : "Option key (unique, e.g. my_key)", @@ -188,10 +128,15 @@ OC.L10N.register( "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", - "Check connection" : "Check connection", "External Apps" : "External Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Default Deploy Daemon is not accessible. Please verify its configuration", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot", + "This settings changes are reflected only for newly created containers" : "This settings changes are reflected only for newly created containers", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Delete data on remove" : "Delete data on remove", @@ -221,12 +166,51 @@ OC.L10N.register( "No apps found" : "No apps found", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n apps have an update available"], "_Update_::_Update all_" : ["Update","Update all"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "Type", "Display Name" : "Display Name", + "GPUs support" : "GPUs support", + "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", + "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", + "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", + "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", + "Deploy daemon config details" : "Deploy daemon config details", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon usually used for development. It cannot be set as default daemon.", + "Deploy config" : "Deploy config", + "Verify connection" : "Verify connection", + "No Deploy daemons configured" : "No Deploy daemons configured", + "Register a custom one or setup from available templates" : "Register a custom one or setup from available templates", + "Register Daemon" : "Register Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", + "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", + "More info" : "More info", + "Remove test ExApp" : "Remove test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Hostname to access ExApps" : "Hostname to access ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon with this name already exists", + "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "With https enabled network is set to host" : "With https enabled network is set to host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", + "URL should start with http:// or https://" : "URL should start with http:// or https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", + "Edit Deploy Daemon" : "Edit Deploy Daemon", + "Register Deploy Daemon" : "Register Deploy Daemon", + "Select daemon configuration template" : "Select daemon configuration template", + "Unique Deploy Daemon Name" : "Unique Deploy Daemon Name", + "Select daemon deploy method" : "Select daemon deploy method", + "Set daemon as default" : "Set daemon as default", + "Set as default daemon" : "Set as default daemon", + "Enable https" : "Enable https", + "Show deploy config" : "Show deploy config", + "Hide deploy config" : "Hide deploy config", "Network" : "Network", "Docker network name" : "Docker network name", + "Additional option" : "Additional option", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index a2c75db1..fb839f68 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI deploy daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server.", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Default Deploy Daemon is not accessible. Please verify its configuration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutes)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialization process timeout after which AppAPI will mark it as failed", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp container restart policy", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot", - "This settings changes are reflected only for newly created containers" : "This settings changes are reflected only for newly created containers", - "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", - "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", - "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", "Cancel" : "Cancel", "Delete" : "Delete", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", - "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", "Password confirmation failed" : "Password confirmation failed", "Default" : "Default", "Set as default" : "Set as default", @@ -54,36 +42,23 @@ "Docker registries" : "Docker registries", "Edit" : "Edit", "Daemon connection successful" : "Daemon connection successful", - "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", - "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Unlimited" : "Unlimited", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Deploy daemon config details", - "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon usually used for development. It cannot be set as default daemon.", "ExApps installed" : "ExApps installed", "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "ExApp direct communication (FRP disabled)", - "Deploy config" : "Deploy config", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy password", - "GPUs support" : "GPUs support", - "Compute device" : "Compute device", "Memory limit" : "Memory limit", "CPU limit" : "CPU limit", "Additional options" : "Additional options", - "Verify connection" : "Verify connection", + "Check connection" : "Check connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", - "No Deploy daemons configured" : "No Deploy daemons configured", - "Register a custom one or setup from available templates" : "Register a custom one or setup from available templates", - "Register Daemon" : "Register Daemon", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Check if the ExApp is registered in Nextcloud before deployment", "Image pull" : "Image pull", @@ -99,84 +74,49 @@ "Only if ExApp container is preset" : "Only if ExApp container is preset", "Deploy test passed successfully!" : "Deploy test passed successfully!", "Deploy test failed at step \"{step}\"" : "Deploy test failed at step \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", - "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", - "More info" : "More info", "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Remove test ExApp", - "Start Deploy test" : "Start Deploy test", - "Stop Deploy test" : "Stop Deploy test", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", "Please enter a registry domain" : "Please enter a registry domain", - "From cannot be \"local\"" : "From cannot be \"local\"", "This registry mapping already exists" : "This registry mapping already exists", - "From and To cannot be the same" : "From and To cannot be the same", "Docker registry mapping added" : "Docker registry mapping added", "Error adding Docker registry mapping" : "Error adding Docker registry mapping", "Docker registry mapping removed" : "Docker registry mapping removed", "Error removing Docker registry mapping" : "Error removing Docker registry mapping", "Override Docker registries" : "Override Docker registries", - "Configure Docker registry override mappings for selected daemon." : "Configure Docker registry override mappings for selected daemon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing.", "Image pull will be skipped" : "Image pull will be skipped", "Remove" : "Remove", - "No custom Docker registries configured" : "No custom Docker registries configured", "Add registry override mapping" : "Add registry override mapping", "From" : "From", "registry URL (e.g. ghcr.io)" : "registry URL (e.g. ghcr.io)", "To" : "To", "registry URL (e.g. docker.io)" : "registry URL (e.g. docker.io)", "Add" : "Add", - "Hostname to access ExApps" : "Hostname to access ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon with this name already exists", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "The secret key for the HaRP container communication (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", - "The docker network that the deployed ex-apps would use." : "The docker network that the deployed ex-apps would use.", - "URL should start with http:// or https://" : "URL should start with http:// or https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", "DaemonConfig successfully registered" : "DaemonConfig successfully registered", "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", - "Edit Deploy Daemon" : "Edit Deploy Daemon", - "Register Deploy Daemon" : "Register Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", + "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", "Daemon configuration template" : "Daemon configuration template", - "Select daemon configuration template" : "Select daemon configuration template", "Daemon registration form" : "Daemon registration form", - "Unique Deploy Daemon Name" : "Unique Deploy Daemon Name", "Display name" : "Display name", "Deployment method" : "Deployment method", - "Select daemon deploy method" : "Select daemon deploy method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP shared key", - "Password must be at least 12 characters long" : "Password must be at least 12 characters long", - "Set daemon as default" : "Set daemon as default", - "Set as default daemon" : "Set as default daemon", - "Enable https" : "Enable https", - "Show deploy config" : "Show deploy config", - "Hide deploy config" : "Hide deploy config", "Enable HaRP" : "Enable HaRP", "FRP server address" : "FRP server address", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", + "Compute device" : "Compute device", "Memory limit (in MiB)" : "Memory limit (in MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maximum memory that the ExApp container can use in mebibytes", "Must be a positive integer" : "Must be a positive integer", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", "CPU limit as decimal value" : "CPU limit as decimal value", "Must be a positive number" : "Must be a positive number", - "Additional option" : "Additional option", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", "Option key (unique, e.g. my_key)" : "Option key (unique, e.g. my_key)", @@ -186,10 +126,15 @@ "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", - "Check connection" : "Check connection", "External Apps" : "External Apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Default Deploy Daemon is not accessible. Please verify its configuration", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot", + "This settings changes are reflected only for newly created containers" : "This settings changes are reflected only for newly created containers", "{license}-licensed" : "{license}-licensed", "Update to {version}" : "Update to {version}", "Delete data on remove" : "Delete data on remove", @@ -219,12 +164,51 @@ "No apps found" : "No apps found", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n apps have an update available"], "_Update_::_Update all_" : ["Update","Update all"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "Type", "Display Name" : "Display Name", + "GPUs support" : "GPUs support", + "Are you sure you want delete Deploy Daemon" : "Are you sure you want delete Deploy Daemon", + "All ExApps on this daemon will be removed" : "All ExApps on this daemon will be removed", + "All ExApps installed on this daemon will be removed" : "All ExApps installed on this daemon will be removed", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon cannot be set as default", + "Failed to save admin options. Check the logs" : "Failed to save admin options. Check the logs", + "Deploy daemon config details" : "Deploy daemon config details", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon usually used for development. It cannot be set as default daemon.", + "Deploy config" : "Deploy config", + "Verify connection" : "Verify connection", + "No Deploy daemons configured" : "No Deploy daemons configured", + "Register a custom one or setup from available templates" : "Register a custom one or setup from available templates", + "Register Daemon" : "Register Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing.", + "The following Deploy test checks must be passed to succeed:" : "The following Deploy test checks must be passed to succeed:", + "More info" : "More info", + "Remove test ExApp" : "Remove test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp is unregistered and container is removed on \"Stop deploy test\"", + "Hostname to access ExApps" : "Hostname to access ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon with this name already exists", + "Password must be at least 12 characters long" : "Password must be at least 12 characters long", "With https enabled network is set to host" : "With https enabled network is set to host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated.", + "URL should start with http:// or https://" : "URL should start with http:// or https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS daemon, Nextcloud URL should be HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker.", + "Edit Deploy Daemon" : "Edit Deploy Daemon", + "Register Deploy Daemon" : "Register Deploy Daemon", + "Select daemon configuration template" : "Select daemon configuration template", + "Unique Deploy Daemon Name" : "Unique Deploy Daemon Name", + "Select daemon deploy method" : "Select daemon deploy method", + "Set daemon as default" : "Set daemon as default", + "Set as default daemon" : "Set as default daemon", + "Enable https" : "Enable https", + "Show deploy config" : "Show deploy config", + "Hide deploy config" : "Hide deploy config", "Network" : "Network", "Docker network name" : "Docker network name", + "Additional option" : "Additional option", "by {author}\n{license}" : "by {author}\n{license}", "Your apps" : "Your apps", "Documentation" : "Documentation", diff --git a/l10n/es.js b/l10n/es.js index 63fff4d0..d928f4b6 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Daemon de despliegue AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "El daemon de despliegue AppAPI predeterminado no está establecido. Por favor, registre un daemon de despliegue predeterminado en los ajustes para poder instalar Apps Externas (Ex-Apps)", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "No se puede acceder a el daemon de despliegue AppAPI \"%s\". Por favor, chequee la configuración del mismo.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "El daemon de despliegue AppAPI predeterminado no está utilizando HaRP. Por favor, considere actualizarlo para obtener un mejor rendimiento.", "Nextcloud AppAPI" : "AppAPI de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "El proyecto AppAPI es una iniciativa excitante que busca revolucionar la forma en que las aplicaciones son desarrolladas para Nextcloud a través del uso de contenedores docker. Permitiendo así una variedad más amplia de opciones de lenguajes de programación y permitiendo que las tareas que son computacionalmente costosas puedan ser ejecutadas en un servidor diferente.", - "Deploy Daemons" : "Daemons de despliegue", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "No se puede acceder al Daemon de despliegue predeterminado. Por favor, verifique su configuración", "ExApp init timeout (minutes)" : "Tiempo límite de inicio de ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tiempo de espera máximo para el proceso de inicialización de una ExApp después del cual AppAPI la marcará como fallido", "ExApp init timeout" : "Tiempo límite de inicio de ExApp", "ExApp container restart policy" : "Política de reinicio del contenedor ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique la política de reinicio del contenedor. p. ej. 'siempre' para asegurarse de que la ExApp se está ejecutando luego de un reinicio del Daemon del servidor", - "This settings changes are reflected only for newly created containers" : "Estos cambios de ajustes solo se reflejarán para contenedores nuevos", - "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", - "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", - "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", "Cancel" : "Cancelar", "Delete" : "Eliminar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", - "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Verifique los registros", "Password confirmation failed" : "Fallo la confirmación de la contraseña", "Default" : "Predeterminado", "Set as default" : "Establecer como predeterminado", @@ -56,31 +44,20 @@ OC.L10N.register( "Docker registries" : "Registros Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Unlimited" : "Ilimitado", - "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", - "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "El daemon de instalación manual se utiliza normalmente para desarrollo. No puede establecerse como predeterminado", "ExApps installed" : "ExApp instaladas", "Name" : "Nombre", "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicación directa con ExApp (FRP deshabilitado)", - "Deploy config" : "Configuración de despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", - "GPUs support" : "Soporte a GPUs", - "Compute device" : "Dispositivo de cómputo", "Memory limit" : "Límite de memoria", "Additional options" : "Opciones adicionales", - "Verify connection" : "Verificar conexión", + "Check connection" : "Verificar conexión", "Registered Deploy daemons list" : "Lista de daemons de despliegue registrados", - "No Deploy daemons configured" : "No hay daemons de despliegue configurados", - "Register a custom one or setup from available templates" : "Registre uno personalizado, o, configure desde las plantillas disponibles", - "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registrar ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar si la ExApp está registrada en Nextcloud antes del despliegue", "Image pull" : "Pull de imagen", @@ -96,78 +73,45 @@ OC.L10N.register( "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", "Deploy test failed at step \"{step}\"" : "La verificación de despliegue falló en el paso \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", - "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", - "More info" : "Más información", "Download ExApp logs" : "Descargar los registros de la ExApp", - "Remove test ExApp" : "Eliminar la ExApp de prueba", - "Start Deploy test" : "Iniciar pruebas de despliegue", - "Stop Deploy test" : "Detener pruebas de despliegue", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", "Please enter a registry domain" : "Por favor, ingrese un dominio para el registry", - "From cannot be \"local\"" : "De no puede ser \"local\"", "This registry mapping already exists" : "Este mapeo de registry ya existe", - "From and To cannot be the same" : "De y para no pueden ser lo mismo", "Docker registry mapping added" : "Se ha añadido la asignación del registro Docker", "Error adding Docker registry mapping" : "Error al añadir la asignación del registro de Docker", "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", "Override Docker registries" : "Reemplazar registries de Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar reemplazos de asignación de registries de Docker para el daemon seleccionado.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", "Image pull will be skipped" : "Se omitirá la obtención de la imagen", "Remove" : "Quitar", - "No custom Docker registries configured" : "No existen registries Docker personalizados configurados", "Add registry override mapping" : "Añadir reemplazo a mapeo de registry", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL del registry (p.ej. ghcr.io)", "To" : "A", "registry URL (e.g. docker.io)" : "URL del registry (p.ej. docker.io)", "Add" : "Añadir", - "Hostname to access ExApps" : "Nombre de servidor para el acceso a ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "El nombre de servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un host público, solo uno que pueda ser accedido por el servidor Nextcloud, p.ej. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "El nombre del servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un servidor público, solo uno que pueda ser accedido por el servidor Nextcloud, Tambien puede ser una ruta al socket de docker. (p.ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "La clave secreta para la comunicación HaRP con los contenedores (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Los cambios serán aplicados solamente para las nuevas ExApps instaladas. Para las ExApps existentes, los contenedores Docker deben ser recreados.", - "The docker network that the deployed ex-apps would use." : "La red docker que las ex-apps desplegadas usarían.", - "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para el daemon HTTPS, la URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Verifique los registros", "DaemonConfig successfully updated" : "Se actualizó DaemonConfig exitosamente", "Failed to update DaemonConfig. Check the logs" : "Fallo al actualizar DaemonConfig. Verifique los registros", - "Edit Deploy Daemon" : "Editar Daemon de despliegue", - "Register Deploy Daemon" : "Registrar Daemon de despliegue", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Daemon configuration template" : "Plantilla de configuración de daemon", - "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", "Daemon registration form" : "Formulario de registro de daemon", - "Unique Deploy Daemon Name" : "Nombre único del Daemon de despliegue", "Display name" : "Nombre para mostrar", "Deployment method" : "Método de despliegue", - "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor del Daemon", "HaRP shared key" : "Clave compartida HaRP", - "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", - "Set daemon as default" : "Establecer daemon como predeterminado", - "Set as default daemon" : "Establecer como daemon predeterminado", - "Enable https" : "Habilitar https", - "Show deploy config" : "Mostrar configuración de despligue", - "Hide deploy config" : "Ocultar configuración de despliegue", "Enable HaRP" : "Habilitar HaRP", "FRP server address" : "Dirección del servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "La dirección (host:puerto) del servidor FRP que debe ser accesible por la ex-app en la red definida bajo \"Red Docker\".", "Docker socket proxy port" : "Puerto del proxy para el socket Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "El puerto al que el proxy para el socket Docker se conecta. Este debe estar expuesto, pero para el que está incluído internamente, no se requiere que lo esté o ser cambiado.", "Disable FRP" : "Deshabilitar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador para configuraciones avanzadas solamente. Deshabilita el túnel FRP entre las ExApps y HaRP.", "Disabled" : "Deshabilitado", "Docker network for ex-app deployment must be defined" : "La red Docker para despliegues de ex-app debe ser definida", - "Additional option" : "Opción adicional", + "Compute device" : "Dispositivo de cómputo", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", "Option key (unique, e.g. my_key)" : "Llave de la opción (única, p. ej. mi_valor)", @@ -177,10 +121,15 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", - "Check connection" : "Verificar conexión", "External Apps" : "Apps Externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n## App incluída\n\n** Desde la versión 30.0.1 de Nextcloud, esta aplicación está incluída en el paquete predeterminado de Nextcloud.**\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", + "Deploy Daemons" : "Daemons de despliegue", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "No se puede acceder al Daemon de despliegue predeterminado. Por favor, verifique su configuración", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique la política de reinicio del contenedor. p. ej. 'siempre' para asegurarse de que la ExApp se está ejecutando luego de un reinicio del Daemon del servidor", + "This settings changes are reflected only for newly created containers" : "Estos cambios de ajustes solo se reflejarán para contenedores nuevos", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar datos al borrar", @@ -210,12 +159,51 @@ OC.L10N.register( "No apps found" : "No se encontraron apps", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], + "Deploy Daemon" : "Daemon de despligue", "Type" : "Tipo", "Display Name" : "Nombre mostrado", + "GPUs support" : "Soporte a GPUs", + "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", + "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", + "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", + "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", + "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Verifique los registros", + "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El daemon de instalación manual se utiliza normalmente para desarrollo. No puede establecerse como predeterminado", + "Deploy config" : "Configuración de despliegue", + "Verify connection" : "Verificar conexión", + "No Deploy daemons configured" : "No hay daemons de despliegue configurados", + "Register a custom one or setup from available templates" : "Registre uno personalizado, o, configure desde las plantillas disponibles", + "Register Daemon" : "Registrar Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", + "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", + "More info" : "Más información", + "Remove test ExApp" : "Eliminar la ExApp de prueba", + "Start Deploy test" : "Iniciar pruebas de despliegue", + "Stop Deploy test" : "Detener pruebas de despliegue", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Hostname to access ExApps" : "Nombre de servidor para el acceso a ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre del servidor o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un daemon con este nombre ya existe", + "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Los cambios serán aplicados solamente para las nuevas ExApps instaladas. Para las ExApps existentes, los contenedores Docker deben ser recreados.", + "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para el daemon HTTPS, la URL de Nextcloud debe ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", + "Edit Deploy Daemon" : "Editar Daemon de despliegue", + "Register Deploy Daemon" : "Registrar Daemon de despliegue", + "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", + "Unique Deploy Daemon Name" : "Nombre único del Daemon de despliegue", + "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", + "Set daemon as default" : "Establecer daemon como predeterminado", + "Set as default daemon" : "Establecer como daemon predeterminado", + "Enable https" : "Habilitar https", + "Show deploy config" : "Mostrar configuración de despligue", + "Hide deploy config" : "Ocultar configuración de despliegue", "Network" : "Red", "Docker network name" : "Nombre de la red Docker", + "Additional option" : "Opción adicional", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Sus apps", "Documentation" : "Documentación", diff --git a/l10n/es.json b/l10n/es.json index 7450ec21..d2746f95 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Daemon de despliegue AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "El daemon de despliegue AppAPI predeterminado no está establecido. Por favor, registre un daemon de despliegue predeterminado en los ajustes para poder instalar Apps Externas (Ex-Apps)", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "No se puede acceder a el daemon de despliegue AppAPI \"%s\". Por favor, chequee la configuración del mismo.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "El daemon de despliegue AppAPI predeterminado no está utilizando HaRP. Por favor, considere actualizarlo para obtener un mejor rendimiento.", "Nextcloud AppAPI" : "AppAPI de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "El proyecto AppAPI es una iniciativa excitante que busca revolucionar la forma en que las aplicaciones son desarrolladas para Nextcloud a través del uso de contenedores docker. Permitiendo así una variedad más amplia de opciones de lenguajes de programación y permitiendo que las tareas que son computacionalmente costosas puedan ser ejecutadas en un servidor diferente.", - "Deploy Daemons" : "Daemons de despliegue", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "No se puede acceder al Daemon de despliegue predeterminado. Por favor, verifique su configuración", "ExApp init timeout (minutes)" : "Tiempo límite de inicio de ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tiempo de espera máximo para el proceso de inicialización de una ExApp después del cual AppAPI la marcará como fallido", "ExApp init timeout" : "Tiempo límite de inicio de ExApp", "ExApp container restart policy" : "Política de reinicio del contenedor ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique la política de reinicio del contenedor. p. ej. 'siempre' para asegurarse de que la ExApp se está ejecutando luego de un reinicio del Daemon del servidor", - "This settings changes are reflected only for newly created containers" : "Estos cambios de ajustes solo se reflejarán para contenedores nuevos", - "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", - "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", - "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", "Cancel" : "Cancelar", "Delete" : "Eliminar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", - "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Verifique los registros", "Password confirmation failed" : "Fallo la confirmación de la contraseña", "Default" : "Predeterminado", "Set as default" : "Establecer como predeterminado", @@ -54,31 +42,20 @@ "Docker registries" : "Registros Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión a daemon exitosa", - "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", - "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Unlimited" : "Ilimitado", - "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", - "Deploy Daemon" : "Daemon de despligue", "Default daemon. ExApps will be installed on it" : "Daemon predeterminado. Las ExApps serán instaladas en él", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "El daemon de instalación manual se utiliza normalmente para desarrollo. No puede establecerse como predeterminado", "ExApps installed" : "ExApp instaladas", "Name" : "Nombre", "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicación directa con ExApp (FRP deshabilitado)", - "Deploy config" : "Configuración de despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", - "GPUs support" : "Soporte a GPUs", - "Compute device" : "Dispositivo de cómputo", "Memory limit" : "Límite de memoria", "Additional options" : "Opciones adicionales", - "Verify connection" : "Verificar conexión", + "Check connection" : "Verificar conexión", "Registered Deploy daemons list" : "Lista de daemons de despliegue registrados", - "No Deploy daemons configured" : "No hay daemons de despliegue configurados", - "Register a custom one or setup from available templates" : "Registre uno personalizado, o, configure desde las plantillas disponibles", - "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registrar ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar si la ExApp está registrada en Nextcloud antes del despliegue", "Image pull" : "Pull de imagen", @@ -94,78 +71,45 @@ "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", "Deploy test failed at step \"{step}\"" : "La verificación de despliegue falló en el paso \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", - "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", - "More info" : "Más información", "Download ExApp logs" : "Descargar los registros de la ExApp", - "Remove test ExApp" : "Eliminar la ExApp de prueba", - "Start Deploy test" : "Iniciar pruebas de despliegue", - "Stop Deploy test" : "Detener pruebas de despliegue", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", "Please enter a registry domain" : "Por favor, ingrese un dominio para el registry", - "From cannot be \"local\"" : "De no puede ser \"local\"", "This registry mapping already exists" : "Este mapeo de registry ya existe", - "From and To cannot be the same" : "De y para no pueden ser lo mismo", "Docker registry mapping added" : "Se ha añadido la asignación del registro Docker", "Error adding Docker registry mapping" : "Error al añadir la asignación del registro de Docker", "Docker registry mapping removed" : "Eliminación de la asignación del registro de Docker", "Error removing Docker registry mapping" : "Error al eliminar la asignación del registro de Docker", "Override Docker registries" : "Reemplazar registries de Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar reemplazos de asignación de registries de Docker para el daemon seleccionado.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "El registry origen coincidente en el archivo info.xml de la ExApp será sobreescrito durante el despliegue (paso de obtención de imagen)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Esto es útil si desea utilizar un registry Docker personalizado, por ejemplo, para usar un registry Docker privado, o, para usar un registry Docker diferente para pruebas.", "Image pull will be skipped" : "Se omitirá la obtención de la imagen", "Remove" : "Quitar", - "No custom Docker registries configured" : "No existen registries Docker personalizados configurados", "Add registry override mapping" : "Añadir reemplazo a mapeo de registry", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL del registry (p.ej. ghcr.io)", "To" : "A", "registry URL (e.g. docker.io)" : "URL del registry (p.ej. docker.io)", "Add" : "Añadir", - "Hostname to access ExApps" : "Nombre de servidor para el acceso a ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "El nombre de servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un host público, solo uno que pueda ser accedido por el servidor Nextcloud, p.ej. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "El nombre del servidor (y puerto) en el que {name} está disponible. No necesariamente debe ser un servidor público, solo uno que pueda ser accedido por el servidor Nextcloud, Tambien puede ser una ruta al socket de docker. (p.ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Un daemon con este nombre ya existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "La clave secreta para la comunicación HaRP con los contenedores (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contraseña de autenticación del proxy de Socket de Docker de AppAPI", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Los cambios serán aplicados solamente para las nuevas ExApps instaladas. Para las ExApps existentes, los contenedores Docker deben ser recreados.", - "The docker network that the deployed ex-apps would use." : "La red docker que las ex-apps desplegadas usarían.", - "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para el daemon HTTPS, la URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado exitosamente", "Failed to register DaemonConfig. Check the logs" : "Fallo al registrar DaemonConfig. Verifique los registros", "DaemonConfig successfully updated" : "Se actualizó DaemonConfig exitosamente", "Failed to update DaemonConfig. Check the logs" : "Fallo al actualizar DaemonConfig. Verifique los registros", - "Edit Deploy Daemon" : "Editar Daemon de despliegue", - "Register Deploy Daemon" : "Registrar Daemon de despliegue", + "Failed to connect to Daemon. Check the logs" : "Fallo al conectar al Daemon. Verifique los registros", + "Failed to check connection to Daemon. Check the logs" : "Fallo al chequear la conexión al Daemon. Verifique los registros", "Daemon configuration template" : "Plantilla de configuración de daemon", - "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", "Daemon registration form" : "Formulario de registro de daemon", - "Unique Deploy Daemon Name" : "Nombre único del Daemon de despliegue", "Display name" : "Nombre para mostrar", "Deployment method" : "Método de despliegue", - "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor del Daemon", "HaRP shared key" : "Clave compartida HaRP", - "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", - "Set daemon as default" : "Establecer daemon como predeterminado", - "Set as default daemon" : "Establecer como daemon predeterminado", - "Enable https" : "Habilitar https", - "Show deploy config" : "Mostrar configuración de despligue", - "Hide deploy config" : "Ocultar configuración de despliegue", "Enable HaRP" : "Habilitar HaRP", "FRP server address" : "Dirección del servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "La dirección (host:puerto) del servidor FRP que debe ser accesible por la ex-app en la red definida bajo \"Red Docker\".", "Docker socket proxy port" : "Puerto del proxy para el socket Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "El puerto al que el proxy para el socket Docker se conecta. Este debe estar expuesto, pero para el que está incluído internamente, no se requiere que lo esté o ser cambiado.", "Disable FRP" : "Deshabilitar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador para configuraciones avanzadas solamente. Deshabilita el túnel FRP entre las ExApps y HaRP.", "Disabled" : "Deshabilitado", "Docker network for ex-app deployment must be defined" : "La red Docker para despliegues de ex-app debe ser definida", - "Additional option" : "Opción adicional", + "Compute device" : "Dispositivo de cómputo", "Add additional option" : "Añadir opción adicional", "Option key (unique)" : "Llave de la opción (única)", "Option key (unique, e.g. my_key)" : "Llave de la opción (única, p. ej. mi_valor)", @@ -175,10 +119,15 @@ "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", - "Check connection" : "Verificar conexión", "External Apps" : "Apps Externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n## App incluída\n\n** Desde la versión 30.0.1 de Nextcloud, esta aplicación está incluída en el paquete predeterminado de Nextcloud.**\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "El Proyecto AppAPI es una excitante iniciativa que tiene como objetivo revolucionar la manera en que las aplicaciones son desarrolladas para Nextcloud.", + "Deploy Daemons" : "Daemons de despliegue", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Desplegar Daemons, El Daemon de despliegue (DaemonConfig) es un daemon de orquestación de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "No se puede acceder al Daemon de despliegue predeterminado. Por favor, verifique su configuración", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique la política de reinicio del contenedor. p. ej. 'siempre' para asegurarse de que la ExApp se está ejecutando luego de un reinicio del Daemon del servidor", + "This settings changes are reflected only for newly created containers" : "Estos cambios de ajustes solo se reflejarán para contenedores nuevos", "{license}-licensed" : "licenciado bajo {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar datos al borrar", @@ -208,12 +157,51 @@ "No apps found" : "No se encontraron apps", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n app tiene una actualización disponible","%n apps tienen una actualización disponible","%n apps tienen una actualización disponible"], "_Update_::_Update all_" : ["Actualizar todo","Actualizar todo","Actualizar todo"], + "Deploy Daemon" : "Daemon de despligue", "Type" : "Tipo", "Display Name" : "Nombre mostrado", + "GPUs support" : "Soporte a GPUs", + "Are you sure you want delete Deploy Daemon" : "¿Está seguro que desea eliminar el Daemon de despliegue?", + "All ExApps on this daemon will be removed" : "Todas las ExApps en este daemon serán eliminadas", + "All ExApps installed on this daemon will be removed" : "Todas las ExApps instaladas en este daemon serán eliminadas", + "\"manual-install\" Deploy Daemon cannot be set as default" : "El Daemon de despliegue \"manual-install\" no puede establecerse como predeterminado", + "Failed to save admin options. Check the logs" : "Fallo al guardar opciones de administración. Verifique los registros", + "Deploy daemon config details" : "Detalles de la configuración del daemon de despliegue", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El daemon de instalación manual se utiliza normalmente para desarrollo. No puede establecerse como predeterminado", + "Deploy config" : "Configuración de despliegue", + "Verify connection" : "Verificar conexión", + "No Deploy daemons configured" : "No hay daemons de despliegue configurados", + "Register a custom one or setup from available templates" : "Registre uno personalizado, o, configure desde las plantillas disponibles", + "Register Daemon" : "Registrar Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI intentará instalar una ExApp esqueleto pequeña para verificar que el Daemon está configurado correctamente y los pasos de despliegue están pasando.", + "The following Deploy test checks must be passed to succeed:" : "Las siguientes verificaciones de prueba sobre el despliegue deben pasar para que este sea exitoso: ", + "More info" : "Más información", + "Remove test ExApp" : "Eliminar la ExApp de prueba", + "Start Deploy test" : "Iniciar pruebas de despliegue", + "Stop Deploy test" : "Detener pruebas de despliegue", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "La ExApp no está registrada y el contenedor es eliminado al \"Detener pruebas de despliegue\"", + "Hostname to access ExApps" : "Nombre de servidor para el acceso a ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nombre del servidor o ruta a acceder para el Daemon docker (p. ej. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un daemon con este nombre ya existe", + "Password must be at least 12 characters long" : "La contraseña debe tener al menos 12 caracteres", "With https enabled network is set to host" : "Con https habilitado la red se establece a host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Los cambios serán aplicados solamente para las nuevas ExApps instaladas. Para las ExApps existentes, los contenedores Docker deben ser recreados.", + "URL should start with http:// or https://" : "El URL debe comenzar por http:// o https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para el daemon HTTPS, la URL de Nextcloud debe ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "A todos los dispositivos GPU se les solicitará ser habilitados en los contenedores de ExApps de Docker.", + "Edit Deploy Daemon" : "Editar Daemon de despliegue", + "Register Deploy Daemon" : "Registrar Daemon de despliegue", + "Select daemon configuration template" : "Seleccione una plantilla de configuración de daemon", + "Unique Deploy Daemon Name" : "Nombre único del Daemon de despliegue", + "Select daemon deploy method" : "Seleccione el método de despliegue del daemon", + "Set daemon as default" : "Establecer daemon como predeterminado", + "Set as default daemon" : "Establecer como daemon predeterminado", + "Enable https" : "Habilitar https", + "Show deploy config" : "Mostrar configuración de despligue", + "Hide deploy config" : "Ocultar configuración de despliegue", "Network" : "Red", "Docker network name" : "Nombre de la red Docker", + "Additional option" : "Opción adicional", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Sus apps", "Documentation" : "Documentación", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index c8d58324..26dc4683 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -6,11 +6,8 @@ OC.L10N.register( "Default" : "Por omisión", "Edit" : "Editar", "Unlimited" : "Ilimitado", - "Deploy Daemon" : "Desplegar demonio", "Name" : "Nombre", "Host" : "Servidor", - "GPUs support" : "Soporte de GPUs", - "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Remove" : "Borrar", "From" : "De", @@ -18,6 +15,7 @@ OC.L10N.register( "Add" : "Añadir", "Display name" : "Nombre para mostrar", "Disabled" : "Deshabilitado", + "Compute device" : "Dispositivo de cómputo", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", @@ -46,8 +44,10 @@ OC.L10N.register( "Actions" : "Acciones", "Results from other categories" : "Resultados de otras categorías", "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], + "Deploy Daemon" : "Desplegar demonio", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "GPUs support" : "Soporte de GPUs", "Network" : "Red", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus aplicaciones", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 6b043d48..b4b12684 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -4,11 +4,8 @@ "Default" : "Por omisión", "Edit" : "Editar", "Unlimited" : "Ilimitado", - "Deploy Daemon" : "Desplegar demonio", "Name" : "Nombre", "Host" : "Servidor", - "GPUs support" : "Soporte de GPUs", - "Compute device" : "Dispositivo de cómputo", "Enabled" : "Habilitado", "Remove" : "Borrar", "From" : "De", @@ -16,6 +13,7 @@ "Add" : "Añadir", "Display name" : "Nombre para mostrar", "Disabled" : "Deshabilitado", + "Compute device" : "Dispositivo de cómputo", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", @@ -44,8 +42,10 @@ "Actions" : "Acciones", "Results from other categories" : "Resultados de otras categorías", "_Update_::_Update all_" : ["Actualizar","Actualizar todo","Actualizar todo"], + "Deploy Daemon" : "Desplegar demonio", "Type" : "Tipo", "Display Name" : "Nombre a desplegar", + "GPUs support" : "Soporte de GPUs", "Network" : "Red", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Tus aplicaciones", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index cbb58cc1..62fd39c3 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -9,27 +9,30 @@ OC.L10N.register( "Default" : "Vaikimisi", "Edit" : "Redigeeri", "Unlimited" : "Piiramatult", - "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Name" : "Nimi", + "Protocol" : "Protokoll", "Host" : "Host", + "Deploy options" : "Kasutuselevõtmise valikud", + "Docker network" : "Dockeri võrk", "Nextcloud URL" : "Nextcloudi võrguaadress", - "GPUs support" : "Graafikaprotsessori tugi", - "Compute device" : "Arvutusseade", + "HaProxy password" : "HaProxy salasõna", + "Memory limit" : "Mälukasutuse ülempiir", + "CPU limit" : "Kasutatavate protsessorite arvu ülempiir", + "Additional options" : "Täiendavad valikud", + "Check connection" : "Kontrolli ühenduse toimimist", "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", - "No Deploy daemons configured" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", - "Register a custom one or setup from available templates" : "Registreeri enda eelistus või vali olemasolevate mallide seast", "Enabled" : "Sisse lülitatud", + "More information" : "Lisateave", "Remove" : "Eemalda", "From" : "Saatja", "To" : "Saaja", "Add" : "Lisa", - "URL should start with http:// or https://" : "Võrguaadressi alguses peab olema kas http:// või https://", "Display name" : "Kuvatav nimi", "Disabled" : "Välja lülitatud", + "Compute device" : "Arvutusseade", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", - "Check connection" : "Kontrolli ühenduse toimimist", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", "Delete data on remove" : "Eemaldamisel kustuta andmed", @@ -55,8 +58,14 @@ OC.L10N.register( "Actions" : "Tegevused", "Results from other categories" : "Tulemused muudest kategooriatest", "_Update_::_Update all_" : ["Uuenda","Uuenda kõik"], + "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", + "GPUs support" : "Graafikaprotsessori tugi", + "Verify connection" : "Kontrolli ühendust", + "No Deploy daemons configured" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", + "Register a custom one or setup from available templates" : "Registreeri enda eelistus või vali olemasolevate mallide seast", + "URL should start with http:// or https://" : "Võrguaadressi alguses peab olema kas http:// või https://", "Network" : "Võrk", "Your apps" : "Sinu rakendused", "Documentation" : "Dokumentatsioon", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 3e246103..62a0a17a 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -7,27 +7,30 @@ "Default" : "Vaikimisi", "Edit" : "Redigeeri", "Unlimited" : "Piiramatult", - "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Name" : "Nimi", + "Protocol" : "Protokoll", "Host" : "Host", + "Deploy options" : "Kasutuselevõtmise valikud", + "Docker network" : "Dockeri võrk", "Nextcloud URL" : "Nextcloudi võrguaadress", - "GPUs support" : "Graafikaprotsessori tugi", - "Compute device" : "Arvutusseade", + "HaProxy password" : "HaProxy salasõna", + "Memory limit" : "Mälukasutuse ülempiir", + "CPU limit" : "Kasutatavate protsessorite arvu ülempiir", + "Additional options" : "Täiendavad valikud", + "Check connection" : "Kontrolli ühenduse toimimist", "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", - "No Deploy daemons configured" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", - "Register a custom one or setup from available templates" : "Registreeri enda eelistus või vali olemasolevate mallide seast", "Enabled" : "Sisse lülitatud", + "More information" : "Lisateave", "Remove" : "Eemalda", "From" : "Saatja", "To" : "Saaja", "Add" : "Lisa", - "URL should start with http:// or https://" : "Võrguaadressi alguses peab olema kas http:// või https://", "Display name" : "Kuvatav nimi", "Disabled" : "Välja lülitatud", + "Compute device" : "Arvutusseade", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", - "Check connection" : "Kontrolli ühenduse toimimist", "{license}-licensed" : "{license} litsents", "Update to {version}" : "Uuenda versioonile {version}", "Delete data on remove" : "Eemaldamisel kustuta andmed", @@ -53,8 +56,14 @@ "Actions" : "Tegevused", "Results from other categories" : "Tulemused muudest kategooriatest", "_Update_::_Update all_" : ["Uuenda","Uuenda kõik"], + "Deploy Daemon" : "Kasutuselevõtmise taustateenus", "Type" : "Tüüp", "Display Name" : "Kuvatav nimi", + "GPUs support" : "Graafikaprotsessori tugi", + "Verify connection" : "Kontrolli ühendust", + "No Deploy daemons configured" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", + "Register a custom one or setup from available templates" : "Registreeri enda eelistus või vali olemasolevate mallide seast", + "URL should start with http:// or https://" : "Võrguaadressi alguses peab olema kas http:// või https://", "Network" : "Võrk", "Your apps" : "Sinu rakendused", "Documentation" : "Dokumentatsioon", diff --git a/l10n/eu.js b/l10n/eu.js index a6ac6e5d..e3e3d71f 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -16,31 +16,25 @@ OC.L10N.register( "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Default" : "Lehenetsia", "Edit" : "Aldatu", "Unlimited" : "Mugagabea", - "Deploy Daemon" : "Zabaldu daimona", "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", "Protocol" : "Protokoloa", "Host" : "Ostalaria", - "Deploy config" : "Zabaldu konfigurazioa", "Docker network" : "Docker sarea", "Nextcloud URL" : "Nextcloud URLa", "HaProxy password" : "HaProxy pasahitza", - "GPUs support" : "GPUen bateragarritasuna", - "Compute device" : "Konputazio gailua", "Memory limit" : "Memoria muga", "Additional options" : "Aukera gehiago", - "Verify connection" : "Egiaztatu konexioa", - "Register Daemon" : "Erregistratu daimona", + "Check connection" : "Egiaztatu konexioa", "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", - "More info" : "Informazio gehiago", + "More information" : "Informazio gehiago", "Remove" : "Kendu", "From" : "Nork", "To" : "Nori", @@ -48,16 +42,15 @@ OC.L10N.register( "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", - "Enable https" : "Gaitu https", "Disabled" : "Desgaituta", - "Additional option" : "Aukera gehiago", + "Compute device" : "Konputazio gailua", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", "Save" : "Gorde", "Register" : "Erregistratu", - "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", + "Deploy Daemons" : "Zabaldu daimonak", "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", "Delete data on remove" : "Ezabatu datuak kentzean", @@ -84,9 +77,17 @@ OC.L10N.register( "Results from other categories" : "Beste kategoriatako emaitzak", "_%n ExApp has an update available_::_%n apps have an update available_" : ["Aplikazio %nek eguneraketa dauka prest","%n aplikaziok eguneraketa daukate prest."], "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], + "Deploy Daemon" : "Zabaldu daimona", "Type" : "Mota", "Display Name" : "Izena erakutsi", + "GPUs support" : "GPUen bateragarritasuna", + "Deploy config" : "Zabaldu konfigurazioa", + "Verify connection" : "Egiaztatu konexioa", + "Register Daemon" : "Erregistratu daimona", + "More info" : "Informazio gehiago", + "Enable https" : "Gaitu https", "Network" : "Sarea", + "Additional option" : "Aukera gehiago", "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", diff --git a/l10n/eu.json b/l10n/eu.json index 77ae37ec..27150121 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -14,31 +14,25 @@ "AI Integration Team" : "AA integrazio taldea", "ExApps Settings" : "ExApp-ren ezarpenak", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "Deploy Daemons" : "Zabaldu daimonak", "Cancel" : "Utzi", "Delete" : "Ezabatu", "Password confirmation failed" : "Pasahitzaren berrespenak huts egin du", "Default" : "Lehenetsia", "Edit" : "Aldatu", "Unlimited" : "Mugagabea", - "Deploy Daemon" : "Zabaldu daimona", "ExApps installed" : "ExApp-ak instalatuta", "Name" : "Izena", "Protocol" : "Protokoloa", "Host" : "Ostalaria", - "Deploy config" : "Zabaldu konfigurazioa", "Docker network" : "Docker sarea", "Nextcloud URL" : "Nextcloud URLa", "HaProxy password" : "HaProxy pasahitza", - "GPUs support" : "GPUen bateragarritasuna", - "Compute device" : "Konputazio gailua", "Memory limit" : "Memoria muga", "Additional options" : "Aukera gehiago", - "Verify connection" : "Egiaztatu konexioa", - "Register Daemon" : "Erregistratu daimona", + "Check connection" : "Egiaztatu konexioa", "Heartbeat" : "Taupadak", "Enabled" : "Gaituta", - "More info" : "Informazio gehiago", + "More information" : "Informazio gehiago", "Remove" : "Kendu", "From" : "Nork", "To" : "Nori", @@ -46,16 +40,15 @@ "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", - "Enable https" : "Gaitu https", "Disabled" : "Desgaituta", - "Additional option" : "Aukera gehiago", + "Compute device" : "Konputazio gailua", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", "Save" : "Gorde", "Register" : "Erregistratu", - "Check connection" : "Egiaztatu konexioa", "External Apps" : "Kanpoko aplikazioak", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Proiektua Nextcloud-erako aplikazioak garatzeko modua iraultzea helburu duen ekimen zirraragarria da.", + "Deploy Daemons" : "Zabaldu daimonak", "{license}-licensed" : "{license}-lizentziaduna", "Update to {version}" : "Eguneratu {version} bertsiora", "Delete data on remove" : "Ezabatu datuak kentzean", @@ -82,9 +75,17 @@ "Results from other categories" : "Beste kategoriatako emaitzak", "_%n ExApp has an update available_::_%n apps have an update available_" : ["Aplikazio %nek eguneraketa dauka prest","%n aplikaziok eguneraketa daukate prest."], "_Update_::_Update all_" : ["Eguneratu","Eguneratu denak"], + "Deploy Daemon" : "Zabaldu daimona", "Type" : "Mota", "Display Name" : "Izena erakutsi", + "GPUs support" : "GPUen bateragarritasuna", + "Deploy config" : "Zabaldu konfigurazioa", + "Verify connection" : "Egiaztatu konexioa", + "Register Daemon" : "Erregistratu daimona", + "More info" : "Informazio gehiago", + "Enable https" : "Gaitu https", "Network" : "Sarea", + "Additional option" : "Aukera gehiago", "by {author}\n{license}" : "{autor}-(e)k egina\n{license}", "Your apps" : "Zure aplikazioak", "Documentation" : "Dokumentazioa", diff --git a/l10n/fa.js b/l10n/fa.js index 20ac1c04..6d6d521d 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -10,6 +10,7 @@ OC.L10N.register( "Host" : "میزبان", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", + "More information" : "اطلاعات بیشتر", "Remove" : "حذف", "From" : "از", "To" : "به", diff --git a/l10n/fa.json b/l10n/fa.json index 5c8df12d..e0afa987 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -8,6 +8,7 @@ "Host" : "میزبان", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "فعال شده", + "More information" : "اطلاعات بیشتر", "Remove" : "حذف", "From" : "از", "To" : "به", diff --git a/l10n/fi.js b/l10n/fi.js index 7a0b4ceb..9fe19396 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloudin URL-osoite", "Memory limit" : "Muistin raja", "Enabled" : "Käytössä", + "More information" : "Lisää tietoa", "Remove" : "Poista", "From" : "Lähettäjä", "To" : "Vastaanottaja", diff --git a/l10n/fi.json b/l10n/fi.json index ae67410d..8a544010 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "Nextcloudin URL-osoite", "Memory limit" : "Muistin raja", "Enabled" : "Käytössä", + "More information" : "Lisää tietoa", "Remove" : "Poista", "From" : "Lähettäjä", "To" : "Vastaanottaja", diff --git a/l10n/fr.js b/l10n/fr.js index 4550c07f..bfe70bee 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -22,23 +22,12 @@ OC.L10N.register( "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", - "Deploy Daemons" : "Déployer Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Le Daemon de déploiement par défaut n'est pas accessible. Veuillez vérifier sa configuration", "ExApp init timeout (minutes)" : "Temp initial d'ExApp (minutes)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Délai d'expiration du processus d'initialisation ExApp, après quoi AppAPI le marquera comme ayant échoué", "ExApp init timeout" : "ExApp initialisation expirer", "ExApp container restart policy" : "Politique de redémarrage du conteneur ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", - "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", - "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", - "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", - "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", "Cancel" : "Annuler", "Delete" : "Supprimer", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", - "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", @@ -46,30 +35,20 @@ OC.L10N.register( "Docker registries" : "Registres Docker", "Edit" : "Modifier", "Daemon connection successful" : "Connexion au Deamon réussie", - "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", - "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Unlimited" : "Illimité", - "Deploy daemon config details" : "Déployer les détails de la configuration du service", - "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", "ExApps installed" : "ExApps installés", "Name" : "Nom", "Protocol" : "Protocole", "Host" : "Hôte", - "Deploy config" : "Déployer la configuration", + "Deploy options" : "Options de déploiement", "Docker network" : "Réseau Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", - "GPUs support" : "Prise en charge des cartes graphiques", - "Compute device" : "Equipement de calcul", "Memory limit" : "Limite de mémoire", "Additional options" : "Options supplémentaires", - "Verify connection" : "Vérifier la connexion", + "Check connection" : "Vérifier la connexion", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", - "No Deploy daemons configured" : "Aucun service de déploiement configuré", - "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", - "Register Daemon" : "Inscrire Daemon", "Register ExApp in Nextcloud" : "Enregistrez ExApp dans Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Vérifiez si l'ExApp est enregistré dans Nextcloud avant le déploiement", "Image pull" : "Extraction d'image", @@ -85,52 +64,31 @@ OC.L10N.register( "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", "Deploy test passed successfully!" : "Test de déploiement réussi !", "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", - "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", - "More info" : "Plus d'informations", + "More information" : "Plus d'informations", "Download ExApp logs" : "Télécharger les logs d'ExApp", - "Remove test ExApp" : "Supprimer le test ExApp", - "Start Deploy test" : "Démarrer le test de déploiement", - "Stop Deploy test" : "Arrêt du test de déploiement", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", "Please enter a registry domain" : "Veuillez saisir un domaine de registre", "Remove" : "Retirer", "From" : "De", "To" : "À", "Add" : "Ajouter", - "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", - "Daemon with this name already exists" : "Un service du même nom existe déjà", "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", - "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", - "Edit Deploy Daemon" : "Modifier le déploiement Daemon", - "Register Deploy Daemon" : "Enregistrer le service de déploiement", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Daemon configuration template" : "Modèle de configuration de Daemon", - "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", "Daemon registration form" : "Formulaire d'inscription du service", - "Unique Deploy Daemon Name" : "Nom unique de déploiement du service", "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", - "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", "HaRP host" : "Hôte HaRP", "Daemon host" : "Hôte du Deamon", - "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "Set daemon as default" : "Définir comme service par défaut", - "Set as default daemon" : "Définir ce deamon par défaut", - "Enable https" : "Activer https", - "Show deploy config" : "Afficher la configuration de déploiement", - "Hide deploy config" : "Masquer la configuration de déploiement", "Enable HaRP" : "Activer HaRP", "FRP server address" : "Adresse du serveur FRP", "Disable FRP" : "Désactiver FRP", "Disabled" : "Désactivé", - "Additional option" : "Option supplémentaire", + "Compute device" : "Equipement de calcul", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", "Option key (unique, e.g. my_key)" : "Clé d'option (unique, par exemple my_key)", @@ -140,9 +98,14 @@ OC.L10N.register( "Confirm" : "Confirmer", "Save" : "Enregistrer", "Register" : "S’inscrire", - "Check connection" : "Vérifier la connexion", "External Apps" : "Applications externes", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", + "Deploy Daemons" : "Déployer Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Le Daemon de déploiement par défaut n'est pas accessible. Veuillez vérifier sa configuration", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", + "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", "Delete data on remove" : "Supprimer les données lors de la désinstallation", @@ -172,12 +135,51 @@ OC.L10N.register( "No apps found" : "Aucune application trouvée", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp a une mise à jour disponible","%n applications ont une mise à jour disponible","%n applications ont une mise à jour disponible"], "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], + "Deploy Daemon" : "Deamon de déploiement", "Type" : "Type", "Display Name" : "Nom affiché", + "GPUs support" : "Prise en charge des cartes graphiques", + "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", + "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", + "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", + "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", + "Deploy daemon config details" : "Déployer les détails de la configuration du service", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", + "Deploy config" : "Déployer la configuration", + "Verify connection" : "Vérifier la connexion", + "No Deploy daemons configured" : "Aucun service de déploiement configuré", + "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", + "Register Daemon" : "Inscrire Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", + "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", + "More info" : "Plus d'informations", + "Remove test ExApp" : "Supprimer le test ExApp", + "Start Deploy test" : "Démarrer le test de déploiement", + "Stop Deploy test" : "Arrêt du test de déploiement", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un service du même nom existe déjà", + "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", + "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", + "Edit Deploy Daemon" : "Modifier le déploiement Daemon", + "Register Deploy Daemon" : "Enregistrer le service de déploiement", + "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", + "Unique Deploy Daemon Name" : "Nom unique de déploiement du service", + "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", + "Set daemon as default" : "Définir comme service par défaut", + "Set as default daemon" : "Définir ce deamon par défaut", + "Enable https" : "Activer https", + "Show deploy config" : "Afficher la configuration de déploiement", + "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", + "Additional option" : "Option supplémentaire", "by {author}\n{license}" : "par {author}\n{license}", "Your apps" : "Vos applications", "Documentation" : "Documentation", diff --git a/l10n/fr.json b/l10n/fr.json index 48b77305..1a6bca33 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -20,23 +20,12 @@ "External Apps management" : "Gestion des applications externes", "Admin options saved" : "Options d'administration sauvegardées", "Failed to save admin options" : "Échec de l'enregistrement des options d'administration", - "Deploy Daemons" : "Déployer Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Le Daemon de déploiement par défaut n'est pas accessible. Veuillez vérifier sa configuration", "ExApp init timeout (minutes)" : "Temp initial d'ExApp (minutes)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Délai d'expiration du processus d'initialisation ExApp, après quoi AppAPI le marquera comme ayant échoué", "ExApp init timeout" : "ExApp initialisation expirer", "ExApp container restart policy" : "Politique de redémarrage du conteneur ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", - "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", - "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", - "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", - "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", "Cancel" : "Annuler", "Delete" : "Supprimer", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", - "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", "Password confirmation failed" : "Échec de la confirmation du mot de passe", "Default" : "Défaut", "Set as default" : "Définir comme valeur par défaut", @@ -44,30 +33,20 @@ "Docker registries" : "Registres Docker", "Edit" : "Modifier", "Daemon connection successful" : "Connexion au Deamon réussie", - "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", - "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Unlimited" : "Illimité", - "Deploy daemon config details" : "Déployer les détails de la configuration du service", - "Deploy Daemon" : "Deamon de déploiement", "Default daemon. ExApps will be installed on it" : "Service par défaut. ExApps y sera installé", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", "ExApps installed" : "ExApps installés", "Name" : "Nom", "Protocol" : "Protocole", "Host" : "Hôte", - "Deploy config" : "Déployer la configuration", + "Deploy options" : "Options de déploiement", "Docker network" : "Réseau Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Mot de passe HAProxy", - "GPUs support" : "Prise en charge des cartes graphiques", - "Compute device" : "Equipement de calcul", "Memory limit" : "Limite de mémoire", "Additional options" : "Options supplémentaires", - "Verify connection" : "Vérifier la connexion", + "Check connection" : "Vérifier la connexion", "Registered Deploy daemons list" : "Liste des services de déploiement enregistrés", - "No Deploy daemons configured" : "Aucun service de déploiement configuré", - "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", - "Register Daemon" : "Inscrire Daemon", "Register ExApp in Nextcloud" : "Enregistrez ExApp dans Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Vérifiez si l'ExApp est enregistré dans Nextcloud avant le déploiement", "Image pull" : "Extraction d'image", @@ -83,52 +62,31 @@ "Only if ExApp container is preset" : "Seulement si le conteneur ExApp est prérégler", "Deploy test passed successfully!" : "Test de déploiement réussi !", "Deploy test failed at step \"{step}\"" : "Le test de déploiement échoue à l'étape \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", - "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", - "More info" : "Plus d'informations", + "More information" : "Plus d'informations", "Download ExApp logs" : "Télécharger les logs d'ExApp", - "Remove test ExApp" : "Supprimer le test ExApp", - "Start Deploy test" : "Démarrer le test de déploiement", - "Stop Deploy test" : "Arrêt du test de déploiement", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", "Please enter a registry domain" : "Veuillez saisir un domaine de registre", "Remove" : "Retirer", "From" : "De", "To" : "À", "Add" : "Ajouter", - "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", - "Daemon with this name already exists" : "Un service du même nom existe déjà", "AppAPI Docker Socket Proxy authentication password" : "Mot de passe d'authentification du proxy AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", - "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", "DaemonConfig successfully registered" : "DaemonConfig enregistré avec succès", "Failed to register DaemonConfig. Check the logs" : "Échec de l'enregistrement de DaemonConfig. Vérifiez les logs", "DaemonConfig successfully updated" : "DaemonConfig mis à jour avec succès", "Failed to update DaemonConfig. Check the logs" : "Échec de la mise à jour de DaemonConfig. Vérifiez les logs", - "Edit Deploy Daemon" : "Modifier le déploiement Daemon", - "Register Deploy Daemon" : "Enregistrer le service de déploiement", + "Failed to connect to Daemon. Check the logs" : "Échec de la connexion au Daemon. Vérifiez les logs", + "Failed to check connection to Daemon. Check the logs" : "Échec de la vérification de la connexion au Daemon. Vérifiez les logs", "Daemon configuration template" : "Modèle de configuration de Daemon", - "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", "Daemon registration form" : "Formulaire d'inscription du service", - "Unique Deploy Daemon Name" : "Nom unique de déploiement du service", "Display name" : "Nom d’affichage", "Deployment method" : "Méthode de déploiement", - "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", "HaRP host" : "Hôte HaRP", "Daemon host" : "Hôte du Deamon", - "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", - "Set daemon as default" : "Définir comme service par défaut", - "Set as default daemon" : "Définir ce deamon par défaut", - "Enable https" : "Activer https", - "Show deploy config" : "Afficher la configuration de déploiement", - "Hide deploy config" : "Masquer la configuration de déploiement", "Enable HaRP" : "Activer HaRP", "FRP server address" : "Adresse du serveur FRP", "Disable FRP" : "Désactiver FRP", "Disabled" : "Désactivé", - "Additional option" : "Option supplémentaire", + "Compute device" : "Equipement de calcul", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", "Option key (unique, e.g. my_key)" : "Clé d'option (unique, par exemple my_key)", @@ -138,9 +96,14 @@ "Confirm" : "Confirmer", "Save" : "Enregistrer", "Register" : "S’inscrire", - "Check connection" : "Vérifier la connexion", "External Apps" : "Applications externes", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Le projet AppAPI est une initiative passionnante qui vise à révolutionner la manière dont les applications sont développées pour Nextcloud.", + "Deploy Daemons" : "Déployer Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Déployez Daemons. Deploy Daemon (DaemonConfig) est un service d'orchestration ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Le Daemon de déploiement par défaut n'est pas accessible. Veuillez vérifier sa configuration", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spécifiez la politique de redémarrage du conteneur, par ex. \"toujours\" pour garantir qu'ExApp fonctionne après le redémarrage du serveur daemon", + "This settings changes are reflected only for newly created containers" : "Ces modifications de paramètres reflètes uniquement les conteneurs nouvellement créés", "{license}-licensed" : "Sous licence {license}", "Update to {version}" : "Mettre à jour vers {version}", "Delete data on remove" : "Supprimer les données lors de la désinstallation", @@ -170,12 +133,51 @@ "No apps found" : "Aucune application trouvée", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp a une mise à jour disponible","%n applications ont une mise à jour disponible","%n applications ont une mise à jour disponible"], "_Update_::_Update all_" : ["Mettre à jour","Tout mettre à jour","Tout mettre à jour"], + "Deploy Daemon" : "Deamon de déploiement", "Type" : "Type", "Display Name" : "Nom affiché", + "GPUs support" : "Prise en charge des cartes graphiques", + "Are you sure you want delete Deploy Daemon" : "Êtes-vous sûr de vouloir supprimer le service de déploiement?", + "All ExApps on this daemon will be removed" : "Tous les ExApps sur ce service seront supprimés", + "All ExApps installed on this daemon will be removed" : "Tous les ExApps installés sur ce service seront supprimés", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Le service de déploiement \"installation manuelle\" ne peut pas être défini par défaut", + "Failed to save admin options. Check the logs" : "Échec de l'enregistrement des options d'administration. Vérifiez les logs", + "Deploy daemon config details" : "Déployer les détails de la configuration du service", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Service d'installation manuelle généralement utilisé pour le développement. Il ne peut pas être défini comme service par défaut.", + "Deploy config" : "Déployer la configuration", + "Verify connection" : "Vérifier la connexion", + "No Deploy daemons configured" : "Aucun service de déploiement configuré", + "Register a custom one or setup from available templates" : "Enregistrez-en un personnalisé ou une configuration à partir des modèles disponibles", + "Register Daemon" : "Inscrire Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentera d'installer le petit squelette ExApp pour vérifier que le Daemon est correctement configuré et que les étapes de déploiement sont en cours.", + "The following Deploy test checks must be passed to succeed:" : "Le test de déploiement suivant les contrôles doivent être passés en réussi:", + "More info" : "Plus d'informations", + "Remove test ExApp" : "Supprimer le test ExApp", + "Start Deploy test" : "Démarrer le test de déploiement", + "Stop Deploy test" : "Arrêt du test de déploiement", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp n'est pas enregistré et le conteneur est supprimé lors de l' \"Arrêt du test de déploiement\"", + "Hostname to access ExApps" : "Nom d'hôte pour accéder à ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nom d’hôte ou chemin d’accès au daemon Docker (par ex. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Un service du même nom existe déjà", + "Password must be at least 12 characters long" : "Le mot de passe doit comporter au moins 12 caractères", "With https enabled network is set to host" : "Avec https activé, le réseau est en mode « hôte »", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Les modifications seraient appliquées uniquement aux ExApps nouvellement installées. Pour les ExApps existantes, les conteneurs Docker doivent être recréés.", + "URL should start with http:// or https://" : "L'URL doit commencer par http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pour le service HTTPS, l'URL Nextcloud doit être HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Tous les périphériques GPU disponibles sur le service d'hôte devront être activés dans les conteneurs ExApp par Docker.", + "Edit Deploy Daemon" : "Modifier le déploiement Daemon", + "Register Deploy Daemon" : "Enregistrer le service de déploiement", + "Select daemon configuration template" : "Sélectionnez le modèle de configuration du service", + "Unique Deploy Daemon Name" : "Nom unique de déploiement du service", + "Select daemon deploy method" : "Sélectionner la méthode de déploiement du service", + "Set daemon as default" : "Définir comme service par défaut", + "Set as default daemon" : "Définir ce deamon par défaut", + "Enable https" : "Activer https", + "Show deploy config" : "Afficher la configuration de déploiement", + "Hide deploy config" : "Masquer la configuration de déploiement", "Network" : "Réseau", "Docker network name" : "Nom du réseau Docker", + "Additional option" : "Option supplémentaire", "by {author}\n{license}" : "par {author}\n{license}", "Your apps" : "Vos applications", "Documentation" : "Documentation", diff --git a/l10n/ga.js b/l10n/ga.js index e3419e4f..98ca923d 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Deamhan imscaradh AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Níl deamhan imlonnaithe réamhshocraithe AppAPI ag baint úsáide as HaRP. Déan machnamh le do thoil ar uasghrádú a dhéanamh air le haghaidh feidhmíochta níos fearr.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige réabhlóid a dhéanamh ar an gcaoi a bhforbraítear feidhmchláir do Nextcloud trí úsáid a bhaint as coimeádáin docker. Rud a cheadaíonn rogha níos mó teangacha ríomhchlárúcháin agus a ligeann do thascanna costasacha ó thaobh ríomhaireachta de a dhíluchtú chuig freastalaí difriúil.", - "Deploy Daemons" : "Imscaradh Deamhain", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Níl an Deamhan Imlonnaithe Réamhshocraithe inrochtana. Fíoraigh a chumraíocht le do thoil", "ExApp init timeout (minutes)" : "Teorainn ama init ExApp (nóiméid)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Teorainn ama phróiseas tosaithe ExApp agus marcálfaidh AppAPI é mar theip ar ina dhiaidh sin", "ExApp init timeout" : "Teorainn ama init ExApp", "ExApp container restart policy" : "Beartas atosú coimeádán ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Sonraigh polasaí atosú coimeádán, e.g. 'i gcónaí' chun a chinntiú go ritheann ExApp tar éis atosaigh an fhreastalaí deamhan", - "This settings changes are reflected only for newly created containers" : "Ní léirítear na hathruithe socruithe seo ach le haghaidh coimeádáin nuachruthaithe", - "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", - "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", - "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", "Cancel" : "Cealaigh", "Delete" : "Scrios", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", - "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", "Daemon connection successful" : "D'éirigh le nasc deamhan", - "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", - "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Unlimited" : "Gan teorainn", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 LAP", - "{cpus} CPUs" : "{cpus}LAPanna", - "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", - "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Deamhan suiteála láimhe a úsáidtear de ghnáth le haghaidh forbartha. Ní féidir é a shocrú mar dheamhan réamhshocraithe.", "ExApps installed" : "ExApps suiteáilte", "Name" : "Ainm", "Protocol" : "Prótacal", "Host" : "Óstach", "ExApp direct communication (FRP disabled)" : "Cumarsáid dhíreach ExApp (FRP díchumasaithe)", - "Deploy config" : "Imscaradh config", + "Deploy options" : "Roghanna imscaradh", "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Pasfhocal HaProxy", - "GPUs support" : "Tacaíocht GPUs", - "Compute device" : "Gléas ríomh", "Memory limit" : "Teorainn chuimhne", "CPU limit" : "Teorainn LAP", "Additional options" : "Roghanna breise", - "Verify connection" : "Fíoraigh ceangal", + "Check connection" : "Seiceáil an nasc", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", - "No Deploy daemons configured" : "Níl aon deamhan Imscaradh cumraithe", - "Register a custom one or setup from available templates" : "Cláraigh ceann nó socrú saincheaptha ó na teimpléid atá ar fáil", - "Register Daemon" : "Clár Deamhan", "Register ExApp in Nextcloud" : "Cláraigh ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Seiceáil an bhfuil an ExApp cláraithe in Nextcloud roimh imscaradh", "Image pull" : "Tarraingt íomhá", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Ach amháin má tá coimeádán ExApp réamhshocraithe", "Deploy test passed successfully!" : "D'éirigh leis an triail a imscaradh!", "Deploy test failed at step \"{step}\"" : "Theip ar an tástáil a chur i bhfeidhm ag céim \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", - "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", - "More info" : "Tuilleadh eolais", + "More information" : "Tuilleadh eolais", "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", - "Remove test ExApp" : "Bain tástáil ExApp", - "Start Deploy test" : "Tosaigh Imscaradh tástála", - "Stop Deploy test" : "Stop an tástáil Imscaradh", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Please enter a registry domain" : "Cuir isteach fearann ​​clárlainne", - "From cannot be \"local\"" : "Ní féidir ó bheith \"áitiúil\"", "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", - "From and To cannot be the same" : "Ní féidir le Ó agus Chun a bheith mar an gcéanna", "Docker registry mapping added" : "Mapáil chlárlainne Docker curtha leis", "Error adding Docker registry mapping" : "Earráid ag cur mapáil chlárlainne Docker leis", "Docker registry mapping removed" : "Baineadh mapáil chlárlainne Docker", "Error removing Docker registry mapping" : "Earráid agus mapáil chlárlainne Docker á baint", "Override Docker registries" : "Sáraigh clárlanna Docker", - "Configure Docker registry override mappings for selected daemon." : "Cumraigh mapálacha sáraithe clárlainne Docker don deamhan roghnaithe.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Déanfar an chlár foinse meaitseála in ExApp info.xml a fhorscríobh le linn an imscartha (céim tarraingthe íomhá).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Tá sé seo úsáideach más mian leat clárlann saincheaptha Docker a úsáid, mar shampla, chun clár Docker príobháideach a úsáid, nó chun clár Docker eile a úsáid le haghaidh tástála.", "Image pull will be skipped" : "Léireofar tarraingt íomhá", "Remove" : "Bain", - "No custom Docker registries configured" : "Níl aon chlárlanna saincheaptha Docker cumraithe", "Add registry override mapping" : "Cuir léarscáiliú sáraithe na clárlainne leis", "From" : "Ó", "registry URL (e.g. ghcr.io)" : "URL na clárlainne (m.sh. ghcr.io)", "To" : "Chun", "registry URL (e.g. docker.io)" : "URL na clárlainne (m.sh. docker.io)", "Add" : "Cuir", - "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An óstainm (agus port) nó conair ag a bhfuil an {name}Nextcloudar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air. Is féidir leis a bheith ina chonair chuig an soicéad docker freisin. (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "An eochair rúnda don chumarsáid coimeádáin HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", - "The docker network that the deployed ex-apps would use." : "An líonra docker a d'úsáidfeadh na sean-aipeanna imlonnaithe.", - "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", - "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", - "Register Deploy Daemon" : "Clár Imscaradh Deamhan", + "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", + "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", - "Select daemon configuration template" : "Roghnaigh teimpléad cumraíochta deamhan", "Daemon registration form" : "Foirm chláraithe daemon", - "Unique Deploy Daemon Name" : "Ainm Deamhain Uathúil Imscaradh", "Display name" : "Ainm taispeána", "Deployment method" : "Modh imscaradh", - "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", "HaRP host" : "HaRP óstach", "Daemon host" : "Deamhan óstach", "HaRP shared key" : "Eochair roinnte HaRP", - "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", - "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", - "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", - "Enable https" : "Cumasaigh https", - "Show deploy config" : "Taispeáin cumraíocht imscaradh", - "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", "Enable HaRP" : "Cumasaigh HaRP", "FRP server address" : "Seoladh freastalaí FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", "Disable FRP" : "Díchumasaigh FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach do na hardsocruithe amháin. Díchumasaítear an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", + "Compute device" : "Gléas ríomh", "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", "Must be a positive number" : "Ní mór gur uimhir dhearfach í", - "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", "Option key (unique, e.g. my_key)" : "Eochair rogha (uathúil, m.sh. my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Deimhnigh", "Save" : "Sábháil", "Register" : "Clár", - "Check connection" : "Seiceáil an nasc", "External Apps" : "Aipeanna Seachtrach", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", + "Deploy Daemons" : "Imscaradh Deamhain", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Níl an Deamhan Imlonnaithe Réamhshocraithe inrochtana. Fíoraigh a chumraíocht le do thoil", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Sonraigh polasaí atosú coimeádán, e.g. 'i gcónaí' chun a chinntiú go ritheann ExApp tar éis atosaigh an fhreastalaí deamhan", + "This settings changes are reflected only for newly created containers" : "Ní léirítear na hathruithe socruithe seo ach le haghaidh coimeádáin nuachruthaithe", "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", "Delete data on remove" : "Scrios sonraí ar bhaint", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Níor aimsíodh aon aipeanna", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n Tá nuashonrú ar fáil ag ExApp","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip"], "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], + "Deploy Daemon" : "Imscaradh Deamhan", "Type" : "Cineál", "Display Name" : "Ainm taispeána", + "GPUs support" : "Tacaíocht GPUs", + "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", + "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", + "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", + "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", + "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Deamhan suiteála láimhe a úsáidtear de ghnáth le haghaidh forbartha. Ní féidir é a shocrú mar dheamhan réamhshocraithe.", + "Deploy config" : "Imscaradh config", + "Verify connection" : "Fíoraigh ceangal", + "No Deploy daemons configured" : "Níl aon deamhan Imscaradh cumraithe", + "Register a custom one or setup from available templates" : "Cláraigh ceann nó socrú saincheaptha ó na teimpléid atá ar fáil", + "Register Daemon" : "Clár Deamhan", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", + "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", + "More info" : "Tuilleadh eolais", + "Remove test ExApp" : "Bain tástáil ExApp", + "Start Deploy test" : "Tosaigh Imscaradh tástála", + "Stop Deploy test" : "Stop an tástáil Imscaradh", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", + "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", + "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", + "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", + "Register Deploy Daemon" : "Clár Imscaradh Deamhan", + "Select daemon configuration template" : "Roghnaigh teimpléad cumraíochta deamhan", + "Unique Deploy Daemon Name" : "Ainm Deamhain Uathúil Imscaradh", + "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", + "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", + "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", + "Enable https" : "Cumasaigh https", + "Show deploy config" : "Taispeáin cumraíocht imscaradh", + "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", "Network" : "Líonra", "Docker network name" : "Ainm líonra docker", + "Additional option" : "Rogha breise", "by {author}\n{license}" : "le {author}\n{license}", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", diff --git a/l10n/ga.json b/l10n/ga.json index d25616b1..b6e89834 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Deamhan imscaradh AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Níl deamhan imlonnaithe réamhshocraithe AppAPI ag baint úsáide as HaRP. Déan machnamh le do thoil ar uasghrádú a dhéanamh air le haghaidh feidhmíochta níos fearr.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige réabhlóid a dhéanamh ar an gcaoi a bhforbraítear feidhmchláir do Nextcloud trí úsáid a bhaint as coimeádáin docker. Rud a cheadaíonn rogha níos mó teangacha ríomhchlárúcháin agus a ligeann do thascanna costasacha ó thaobh ríomhaireachta de a dhíluchtú chuig freastalaí difriúil.", - "Deploy Daemons" : "Imscaradh Deamhain", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Níl an Deamhan Imlonnaithe Réamhshocraithe inrochtana. Fíoraigh a chumraíocht le do thoil", "ExApp init timeout (minutes)" : "Teorainn ama init ExApp (nóiméid)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Teorainn ama phróiseas tosaithe ExApp agus marcálfaidh AppAPI é mar theip ar ina dhiaidh sin", "ExApp init timeout" : "Teorainn ama init ExApp", "ExApp container restart policy" : "Beartas atosú coimeádán ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Sonraigh polasaí atosú coimeádán, e.g. 'i gcónaí' chun a chinntiú go ritheann ExApp tar éis atosaigh an fhreastalaí deamhan", - "This settings changes are reflected only for newly created containers" : "Ní léirítear na hathruithe socruithe seo ach le haghaidh coimeádáin nuachruthaithe", - "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", - "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", - "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", "Cancel" : "Cealaigh", "Delete" : "Scrios", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", - "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", @@ -54,36 +42,24 @@ "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", "Daemon connection successful" : "D'éirigh le nasc deamhan", - "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", - "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Unlimited" : "Gan teorainn", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 LAP", - "{cpus} CPUs" : "{cpus}LAPanna", - "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", - "Deploy Daemon" : "Imscaradh Deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Deamhan suiteála láimhe a úsáidtear de ghnáth le haghaidh forbartha. Ní féidir é a shocrú mar dheamhan réamhshocraithe.", "ExApps installed" : "ExApps suiteáilte", "Name" : "Ainm", "Protocol" : "Prótacal", "Host" : "Óstach", "ExApp direct communication (FRP disabled)" : "Cumarsáid dhíreach ExApp (FRP díchumasaithe)", - "Deploy config" : "Imscaradh config", + "Deploy options" : "Roghanna imscaradh", "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Pasfhocal HaProxy", - "GPUs support" : "Tacaíocht GPUs", - "Compute device" : "Gléas ríomh", "Memory limit" : "Teorainn chuimhne", "CPU limit" : "Teorainn LAP", "Additional options" : "Roghanna breise", - "Verify connection" : "Fíoraigh ceangal", + "Check connection" : "Seiceáil an nasc", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", - "No Deploy daemons configured" : "Níl aon deamhan Imscaradh cumraithe", - "Register a custom one or setup from available templates" : "Cláraigh ceann nó socrú saincheaptha ó na teimpléid atá ar fáil", - "Register Daemon" : "Clár Deamhan", "Register ExApp in Nextcloud" : "Cláraigh ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Seiceáil an bhfuil an ExApp cláraithe in Nextcloud roimh imscaradh", "Image pull" : "Tarraingt íomhá", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Ach amháin má tá coimeádán ExApp réamhshocraithe", "Deploy test passed successfully!" : "D'éirigh leis an triail a imscaradh!", "Deploy test failed at step \"{step}\"" : "Theip ar an tástáil a chur i bhfeidhm ag céim \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", - "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", - "More info" : "Tuilleadh eolais", + "More information" : "Tuilleadh eolais", "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", - "Remove test ExApp" : "Bain tástáil ExApp", - "Start Deploy test" : "Tosaigh Imscaradh tástála", - "Stop Deploy test" : "Stop an tástáil Imscaradh", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", "Please enter a registry domain" : "Cuir isteach fearann ​​clárlainne", - "From cannot be \"local\"" : "Ní féidir ó bheith \"áitiúil\"", "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", - "From and To cannot be the same" : "Ní féidir le Ó agus Chun a bheith mar an gcéanna", "Docker registry mapping added" : "Mapáil chlárlainne Docker curtha leis", "Error adding Docker registry mapping" : "Earráid ag cur mapáil chlárlainne Docker leis", "Docker registry mapping removed" : "Baineadh mapáil chlárlainne Docker", "Error removing Docker registry mapping" : "Earráid agus mapáil chlárlainne Docker á baint", "Override Docker registries" : "Sáraigh clárlanna Docker", - "Configure Docker registry override mappings for selected daemon." : "Cumraigh mapálacha sáraithe clárlainne Docker don deamhan roghnaithe.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Déanfar an chlár foinse meaitseála in ExApp info.xml a fhorscríobh le linn an imscartha (céim tarraingthe íomhá).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Tá sé seo úsáideach más mian leat clárlann saincheaptha Docker a úsáid, mar shampla, chun clár Docker príobháideach a úsáid, nó chun clár Docker eile a úsáid le haghaidh tástála.", "Image pull will be skipped" : "Léireofar tarraingt íomhá", "Remove" : "Bain", - "No custom Docker registries configured" : "Níl aon chlárlanna saincheaptha Docker cumraithe", "Add registry override mapping" : "Cuir léarscáiliú sáraithe na clárlainne leis", "From" : "Ó", "registry URL (e.g. ghcr.io)" : "URL na clárlainne (m.sh. ghcr.io)", "To" : "Chun", "registry URL (e.g. docker.io)" : "URL na clárlainne (m.sh. docker.io)", "Add" : "Cuir", - "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An óstainm (agus port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air, m.sh.{host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An óstainm (agus port) nó conair ag a bhfuil an {name}Nextcloudar fáil. Ní gá gur óstach poiblí é seo, ach ósta a bhfuil rochtain ag freastalaí Nextcloud air. Is féidir leis a bheith ina chonair chuig an soicéad docker freisin. (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "An eochair rúnda don chumarsáid coimeádáin HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", - "The docker network that the deployed ex-apps would use." : "An líonra docker a d'úsáidfeadh na sean-aipeanna imlonnaithe.", - "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", - "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", - "Register Deploy Daemon" : "Clár Imscaradh Deamhan", + "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", + "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", - "Select daemon configuration template" : "Roghnaigh teimpléad cumraíochta deamhan", "Daemon registration form" : "Foirm chláraithe daemon", - "Unique Deploy Daemon Name" : "Ainm Deamhain Uathúil Imscaradh", "Display name" : "Ainm taispeána", "Deployment method" : "Modh imscaradh", - "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", "HaRP host" : "HaRP óstach", "Daemon host" : "Deamhan óstach", "HaRP shared key" : "Eochair roinnte HaRP", - "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", - "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", - "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", - "Enable https" : "Cumasaigh https", - "Show deploy config" : "Taispeáin cumraíocht imscaradh", - "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", "Enable HaRP" : "Cumasaigh HaRP", "FRP server address" : "Seoladh freastalaí FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart go mbeadh rochtain ag an sean-aip air sa líonra atá sainithe i 'líonra Docker'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An calafort i HaRP a nascann seachfhreastalaí an tsoicéid duga leis. Ba chóir go mbeadh sé seo nochtaithe ach don cheann ionsuite, ní gá é a nochtadh nó a athrú.", "Disable FRP" : "Díchumasaigh FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach do na hardsocruithe amháin. Díchumasaítear an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", + "Compute device" : "Gléas ríomh", "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", "Must be a positive number" : "Ní mór gur uimhir dhearfach í", - "Additional option" : "Rogha breise", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", "Option key (unique, e.g. my_key)" : "Eochair rogha (uathúil, m.sh. my_key)", @@ -186,10 +128,15 @@ "Confirm" : "Deimhnigh", "Save" : "Sábháil", "Register" : "Clár", - "Check connection" : "Seiceáil an nasc", "External Apps" : "Aipeanna Seachtrach", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n### Aip Chuachta\n\n** Ag tosú le Nextcloud 30.0.1, tá an feidhmchlár seo san áireamh sa phacáiste réamhshocraithe Nextcloud.**\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige an bealach a fhorbraítear feidhmchláir do Nextcloud a athrú ó bhonn.", + "Deploy Daemons" : "Imscaradh Deamhain", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Imscaradh Deamhain. Is deamhan le haghaidh ceolfhoirne de chuid ExApps é Imscaradh Deamhan (DaemonConfig).", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Níl an Deamhan Imlonnaithe Réamhshocraithe inrochtana. Fíoraigh a chumraíocht le do thoil", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Sonraigh polasaí atosú coimeádán, e.g. 'i gcónaí' chun a chinntiú go ritheann ExApp tar éis atosaigh an fhreastalaí deamhan", + "This settings changes are reflected only for newly created containers" : "Ní léirítear na hathruithe socruithe seo ach le haghaidh coimeádáin nuachruthaithe", "{license}-licensed" : "{license}-cheadúnaithe", "Update to {version}" : "Nuashonraigh go {version}", "Delete data on remove" : "Scrios sonraí ar bhaint", @@ -219,12 +166,51 @@ "No apps found" : "Níor aimsíodh aon aipeanna", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n Tá nuashonrú ar fáil ag ExApp","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip","Tá nuashonrú ar fáil ag %n aip"], "_Update_::_Update all_" : ["Nuashonrú","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir","Nuashonraigh go léir"], + "Deploy Daemon" : "Imscaradh Deamhan", "Type" : "Cineál", "Display Name" : "Ainm taispeána", + "GPUs support" : "Tacaíocht GPUs", + "Are you sure you want delete Deploy Daemon" : "An bhfuil tú cinnte gur mhaith leat Deploy Deploy a scriosadh", + "All ExApps on this daemon will be removed" : "Bainfear gach ExApp ar an deamhan seo", + "All ExApps installed on this daemon will be removed" : "Bainfear gach ExApp atá suiteáilte ar an deamhan seo", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"láimhe-shuiteáil\" Ní féidir Deploy Deploy a shocrú mar réamhshocraithe", + "Failed to save admin options. Check the logs" : "Theip ar shábháil na roghanna riaracháin. Seiceáil na logs", + "Deploy daemon config details" : "Imscaradh sonraí cumraíochta deamhan", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Deamhan suiteála láimhe a úsáidtear de ghnáth le haghaidh forbartha. Ní féidir é a shocrú mar dheamhan réamhshocraithe.", + "Deploy config" : "Imscaradh config", + "Verify connection" : "Fíoraigh ceangal", + "No Deploy daemons configured" : "Níl aon deamhan Imscaradh cumraithe", + "Register a custom one or setup from available templates" : "Cláraigh ceann nó socrú saincheaptha ó na teimpléid atá ar fáil", + "Register Daemon" : "Clár Deamhan", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "Déanfaidh AppAPI iarracht ExApp cnámharlach beag a shuiteáil chun a fhíorú go bhfuil Deamhan cumraithe i gceart agus céimeanna imlonnaithe ag dul thar.", + "The following Deploy test checks must be passed to succeed:" : "Ní mór na seiceálacha tástála Imlon seo a leanas a rith le go n-éireoidh leat:", + "More info" : "Tuilleadh eolais", + "Remove test ExApp" : "Bain tástáil ExApp", + "Start Deploy test" : "Tosaigh Imscaradh tástála", + "Stop Deploy test" : "Stop an tástáil Imscaradh", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "Tá ExApp neamhchláraithe agus baintear an coimeádán ar \"Stop deploy test\"", + "Hostname to access ExApps" : "Óstainm chun rochtain a fháil ar ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Óstainm nó cosán chun rochtain a fháil ar dheamhan Docker (m.sh. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Deamhan leis an ainm seo ann cheana", + "Password must be at least 12 characters long" : "Caithfidh pasfhocal a bheith 12 charachtar ar a laghad ar fad", "With https enabled network is set to host" : "Le https cumasaithe líonra socraithe chun óstáil", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Ní chuirfí athruithe i bhfeidhm ach amháin i gcás ExApps nua-shuiteáilte. I gcás ExApps atá ann cheana féin, ba cheart coimeádáin Docker a athchruthú.", + "URL should start with http:// or https://" : "Ba cheart go dtosódh an URL le http:// nó https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Maidir le deamhan HTTPS, ba cheart go mbeadh URL Nextcloud mar HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Iarrfar ar gach feiste GPU atá ar fáil ar óstach deamhan a bheith cumasaithe i gcoimeádáin ExApp ag Docker.", + "Edit Deploy Daemon" : "Cuir Deploy Daemon in eagar", + "Register Deploy Daemon" : "Clár Imscaradh Deamhan", + "Select daemon configuration template" : "Roghnaigh teimpléad cumraíochta deamhan", + "Unique Deploy Daemon Name" : "Ainm Deamhain Uathúil Imscaradh", + "Select daemon deploy method" : "Roghnaigh modh imscaradh deamhan", + "Set daemon as default" : "Socraigh deamhan mar réamhshocrú", + "Set as default daemon" : "Socraigh mar dheamhan réamhshocraithe", + "Enable https" : "Cumasaigh https", + "Show deploy config" : "Taispeáin cumraíocht imscaradh", + "Hide deploy config" : "Folaigh cumraíocht imlonnaithe", "Network" : "Líonra", "Docker network name" : "Ainm líonra docker", + "Additional option" : "Rogha breise", "by {author}\n{license}" : "le {author}\n{license}", "Your apps" : "D'aipeanna", "Documentation" : "Doiciméadúchán", diff --git a/l10n/gl.js b/l10n/gl.js index f81c75d8..81e34579 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Sevizo de despregadura AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere actualizalo para obter un mellor rendemento.", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O proxecto AppAPI é unha iniciativa emocionante que ten como obxectivo revolucionar a forma na que se desenvolven as aplicacións para Nextcloud a través do uso de contedores docker. Permitindo unha maior escolla de linguaxe de programación e permitindo que as tarefas computacionalmente custosas sexan descargadas a un servidor diferente.", - "Deploy Daemons" : "Servizos de despregadura", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de preparación da ExApp após do cal AppAPI marcarao como fallado", "ExApp init timeout" : "Tempo de espera de inicio da ExApp", "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", - "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", - "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", - "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", - "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", - "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Rexistros de Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Unlimited" : "Sen límites", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPU", - "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", - "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "ExApps installed" : "ExApps instaladas", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicación directa coa ExApp (FRP desactivado)", - "Deploy config" : "Configuración da despregadura", + "Deploy options" : "Opcións de despregadura", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contrasinal de HaProxy", - "GPUs support" : "Compatibilidade con GPU", - "Compute device" : "Dispositivo de computación", "Memory limit" : "Límite de memoria", "CPU limit" : "Límite de CPU", "Additional options" : "Opcións adicionais", - "Verify connection" : "Verificar a conexión", + "Check connection" : "Comprobar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", - "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", - "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", - "Register Daemon" : "Rexistrar o servizo", "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a ExApp está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", - "More info" : "Máis información", + "More information" : "Máis información", "Download ExApp logs" : "Descargar os rexistros da ExApp", - "Remove test ExApp" : "Retirar a proba da ExApp", - "Start Deploy test" : "Iniciar a proba de despregadura", - "Stop Deploy test" : "Deter a proba de despregadura", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Please enter a registry domain" : "Introduza un dominio de rexistro", - "From cannot be \"local\"" : "Desde non pode ser «local»", "This registry mapping already exists" : "Xa existe esta asignación de rexistro", - "From and To cannot be the same" : "Desde e Ata non poden ser o mesmo", "Docker registry mapping added" : "Engadiuse a asignación do rexistro de Docker", "Error adding Docker registry mapping" : "Produciuse un erro ao engadir a asignación do rexistro de Docker", "Docker registry mapping removed" : "Foi retirada a asignación do rexistro de Docker", "Error removing Docker registry mapping" : "Produciuse un erro ao retirar a asignación do rexistro de Docker", "Override Docker registries" : "Anular os rexistros de Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar as asignacións de anulación do rexistro de Docker para o servizo seleccionado.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O rexistro de orixe correspondente en ExApp info.xml sobrescribirase durante a despregadura (paso de extracción de imaxe).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isto é útil se quere usar un rexistro Docker personalizado, por exemplo, para usar un rexistro Docker privado, ou para usar un rexistro Docker diferente para probas.", "Image pull will be skipped" : "Omitirase a extracción da imaxe", "Remove" : "Retirar", - "No custom Docker registries configured" : "Non hai rexistros Docker personalizados configurados", "Add registry override mapping" : "Engadir a asignación de anulación do rexistro", "From" : "Desde", "registry URL (e.g. ghcr.io)" : "URL do rexistro (p. ex., ghcr.io)", "To" : "Ata", "registry URL (e.g. docker.io)" : "URL do rexistro (p. ex., docker.io)", "Add" : "Engadir", - "Hostname to access ExApps" : "Nome de servidor para acceder a ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do servidor (e o porto) no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud, p. ex. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do servidor (e o porto) ou ruta no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud. Tamén pode ser unha ruta para o conectador docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicación de contedores HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás ExApps instaladas recentemente. Para as ExApps existentes, deberían volver crearse os contedores Docker.", - "The docker network that the deployed ex-apps would use." : "A rede docker que empregarían as ExApps despregadas.", - "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de ExApp.", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", - "Edit Deploy Daemon" : "Editar os servizos de despregadura", - "Register Deploy Daemon" : "Servizos de despregadura rexistrados", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Daemon configuration template" : "Modelo de configuración do servizo", - "Select daemon configuration template" : "Seleccione o modelo de configuración do servizo", "Daemon registration form" : "Formulario de rexistro do servizo", - "Unique Deploy Daemon Name" : "Nome único do servizo de despregadura", "Display name" : "Nome para amosar", "Deployment method" : "Método de despregadura", - "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor do servizo", "HaRP shared key" : "Chave compartida de HaRP", - "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", - "Set daemon as default" : "Definir o servizo como predeterminado", - "Set as default daemon" : "Definir como servizo predeterminado", - "Enable https" : "Activar https", - "Show deploy config" : "Amosar a configuración da despregadura", - "Hide deploy config" : "Agochar a configuración da despregadura", "Enable HaRP" : "Activar HaRP", "FRP server address" : "Enderezo do servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O enderezo (máquina:porto) do servidor FRP que debe ser alcanzado pola ExApp na rede definida en «Rede Docker».", "Docker socket proxy port" : "Porto do proxy do conectador Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", + "Compute device" : "Dispositivo de computación", "Memory limit (in MiB)" : "Límite de memoria (en MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Memoria máxima que o contedor ExApp pode usar en mebibytes", "Must be a positive integer" : "Debe ser un número enteiro positivo.", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Máximo de núcleos de CPU que o contedor ExApp pode usar (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", "CPU limit as decimal value" : "Límite da CPU como valor decimal", "Must be a positive number" : "Debe ser un número positivo.", - "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", "Option key (unique, e.g. my_key)" : "Clave de opción (única, p. ex., a_miña_clave)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Gardar", "Register" : "Rexistrarse", - "Check connection" : "Comprobar a conexión", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", + "Deploy Daemons" : "Servizos de despregadura", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", + "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Non se atopou ningunha aplicación", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], + "Deploy Daemon" : "Servizo de despregadura", "Type" : "Escribir", "Display Name" : "Nome para amosar", + "GPUs support" : "Compatibilidade con GPU", + "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", + "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", + "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", + "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", + "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", + "Deploy config" : "Configuración da despregadura", + "Verify connection" : "Verificar a conexión", + "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", + "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", + "Register Daemon" : "Rexistrar o servizo", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", + "More info" : "Máis información", + "Remove test ExApp" : "Retirar a proba da ExApp", + "Start Deploy test" : "Iniciar a proba de despregadura", + "Stop Deploy test" : "Deter a proba de despregadura", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Hostname to access ExApps" : "Nome de servidor para acceder a ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Xa existe un servizo con ese nome", + "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás ExApps instaladas recentemente. Para as ExApps existentes, deberían volver crearse os contedores Docker.", + "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de ExApp.", + "Edit Deploy Daemon" : "Editar os servizos de despregadura", + "Register Deploy Daemon" : "Servizos de despregadura rexistrados", + "Select daemon configuration template" : "Seleccione o modelo de configuración do servizo", + "Unique Deploy Daemon Name" : "Nome único do servizo de despregadura", + "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", + "Set daemon as default" : "Definir o servizo como predeterminado", + "Set as default daemon" : "Definir como servizo predeterminado", + "Enable https" : "Activar https", + "Show deploy config" : "Amosar a configuración da despregadura", + "Hide deploy config" : "Agochar a configuración da despregadura", "Network" : "Rede", "Docker network name" : "Nome da rede Docker", + "Additional option" : "Opción adicional", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", diff --git a/l10n/gl.json b/l10n/gl.json index b1e345ba..a7cc8ffc 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Sevizo de despregadura AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere actualizalo para obter un mellor rendemento.", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O proxecto AppAPI é unha iniciativa emocionante que ten como obxectivo revolucionar a forma na que se desenvolven as aplicacións para Nextcloud a través do uso de contedores docker. Permitindo unha maior escolla de linguaxe de programación e permitindo que as tarefas computacionalmente custosas sexan descargadas a un servidor diferente.", - "Deploy Daemons" : "Servizos de despregadura", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de preparación da ExApp após do cal AppAPI marcarao como fallado", "ExApp init timeout" : "Tempo de espera de inicio da ExApp", "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", - "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", - "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", - "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", - "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", - "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", @@ -54,36 +42,24 @@ "Docker registries" : "Rexistros de Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión satisfactoria do servizo", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", - "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Unlimited" : "Sen límites", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPU", - "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", - "Deploy Daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "ExApps installed" : "ExApps instaladas", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicación directa coa ExApp (FRP desactivado)", - "Deploy config" : "Configuración da despregadura", + "Deploy options" : "Opcións de despregadura", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contrasinal de HaProxy", - "GPUs support" : "Compatibilidade con GPU", - "Compute device" : "Dispositivo de computación", "Memory limit" : "Límite de memoria", "CPU limit" : "Límite de CPU", "Additional options" : "Opcións adicionais", - "Verify connection" : "Verificar a conexión", + "Check connection" : "Comprobar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", - "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", - "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", - "Register Daemon" : "Rexistrar o servizo", "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a ExApp está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", - "More info" : "Máis información", + "More information" : "Máis información", "Download ExApp logs" : "Descargar os rexistros da ExApp", - "Remove test ExApp" : "Retirar a proba da ExApp", - "Start Deploy test" : "Iniciar a proba de despregadura", - "Stop Deploy test" : "Deter a proba de despregadura", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Please enter a registry domain" : "Introduza un dominio de rexistro", - "From cannot be \"local\"" : "Desde non pode ser «local»", "This registry mapping already exists" : "Xa existe esta asignación de rexistro", - "From and To cannot be the same" : "Desde e Ata non poden ser o mesmo", "Docker registry mapping added" : "Engadiuse a asignación do rexistro de Docker", "Error adding Docker registry mapping" : "Produciuse un erro ao engadir a asignación do rexistro de Docker", "Docker registry mapping removed" : "Foi retirada a asignación do rexistro de Docker", "Error removing Docker registry mapping" : "Produciuse un erro ao retirar a asignación do rexistro de Docker", "Override Docker registries" : "Anular os rexistros de Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar as asignacións de anulación do rexistro de Docker para o servizo seleccionado.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O rexistro de orixe correspondente en ExApp info.xml sobrescribirase durante a despregadura (paso de extracción de imaxe).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isto é útil se quere usar un rexistro Docker personalizado, por exemplo, para usar un rexistro Docker privado, ou para usar un rexistro Docker diferente para probas.", "Image pull will be skipped" : "Omitirase a extracción da imaxe", "Remove" : "Retirar", - "No custom Docker registries configured" : "Non hai rexistros Docker personalizados configurados", "Add registry override mapping" : "Engadir a asignación de anulación do rexistro", "From" : "Desde", "registry URL (e.g. ghcr.io)" : "URL do rexistro (p. ex., ghcr.io)", "To" : "Ata", "registry URL (e.g. docker.io)" : "URL do rexistro (p. ex., docker.io)", "Add" : "Engadir", - "Hostname to access ExApps" : "Nome de servidor para acceder a ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do servidor (e o porto) no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud, p. ex. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do servidor (e o porto) ou ruta no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud. Tamén pode ser unha ruta para o conectador docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Xa existe un servizo con ese nome", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicación de contedores HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás ExApps instaladas recentemente. Para as ExApps existentes, deberían volver crearse os contedores Docker.", - "The docker network that the deployed ex-apps would use." : "A rede docker que empregarían as ExApps despregadas.", - "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de ExApp.", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", - "Edit Deploy Daemon" : "Editar os servizos de despregadura", - "Register Deploy Daemon" : "Servizos de despregadura rexistrados", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Daemon configuration template" : "Modelo de configuración do servizo", - "Select daemon configuration template" : "Seleccione o modelo de configuración do servizo", "Daemon registration form" : "Formulario de rexistro do servizo", - "Unique Deploy Daemon Name" : "Nome único do servizo de despregadura", "Display name" : "Nome para amosar", "Deployment method" : "Método de despregadura", - "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor do servizo", "HaRP shared key" : "Chave compartida de HaRP", - "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", - "Set daemon as default" : "Definir o servizo como predeterminado", - "Set as default daemon" : "Definir como servizo predeterminado", - "Enable https" : "Activar https", - "Show deploy config" : "Amosar a configuración da despregadura", - "Hide deploy config" : "Agochar a configuración da despregadura", "Enable HaRP" : "Activar HaRP", "FRP server address" : "Enderezo do servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O enderezo (máquina:porto) do servidor FRP que debe ser alcanzado pola ExApp na rede definida en «Rede Docker».", "Docker socket proxy port" : "Porto do proxy do conectador Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", + "Compute device" : "Dispositivo de computación", "Memory limit (in MiB)" : "Límite de memoria (en MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Memoria máxima que o contedor ExApp pode usar en mebibytes", "Must be a positive integer" : "Debe ser un número enteiro positivo.", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Máximo de núcleos de CPU que o contedor ExApp pode usar (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", "CPU limit as decimal value" : "Límite da CPU como valor decimal", "Must be a positive number" : "Debe ser un número positivo.", - "Additional option" : "Opción adicional", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", "Option key (unique, e.g. my_key)" : "Clave de opción (única, p. ex., a_miña_clave)", @@ -186,10 +128,15 @@ "Confirm" : "Confirmar", "Save" : "Gardar", "Register" : "Rexistrarse", - "Check connection" : "Comprobar a conexión", "External Apps" : "Aplicacións externas", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", + "Deploy Daemons" : "Servizos de despregadura", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", + "This settings changes are reflected only for newly created containers" : "Os cambios destes axustes só se reflícten nos contedores creados recentemente", "{license}-licensed" : "Licenciado baixo a {license}", "Update to {version}" : "Actualizar a {version}", "Delete data on remove" : "Eliminar os datos ao retirar", @@ -219,12 +166,51 @@ "No apps found" : "Non se atopou ningunha aplicación", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplicación externa (ExApp) ten unha actualización dispoñíbel","%n aplicacións teñen unha actualización dispoñíbel"], "_Update_::_Update all_" : ["Actualizar","Actualizar todo"], + "Deploy Daemon" : "Servizo de despregadura", "Type" : "Escribir", "Display Name" : "Nome para amosar", + "GPUs support" : "Compatibilidade con GPU", + "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", + "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", + "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", + "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", + "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", + "Deploy config" : "Configuración da despregadura", + "Verify connection" : "Verificar a conexión", + "No Deploy daemons configured" : "Non hai ningún servizo de despregadura configurado", + "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", + "Register Daemon" : "Rexistrar o servizo", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", + "More info" : "Máis información", + "Remove test ExApp" : "Retirar a proba da ExApp", + "Start Deploy test" : "Iniciar a proba de despregadura", + "Stop Deploy test" : "Deter a proba de despregadura", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", + "Hostname to access ExApps" : "Nome de servidor para acceder a ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome da máquina ou ruta para acceder ao servizo Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Xa existe un servizo con ese nome", + "Password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", "With https enabled network is set to host" : "Con https activado, a rede defínese como servidor", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Os cambios aplicaranse só ás ExApps instaladas recentemente. Para as ExApps existentes, deberían volver crearse os contedores Docker.", + "URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o servizo HTTPS, o URL de Nextcloud debe ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker solicitará que todos os dispositivos GPU dispoñíbeis no servidor do servizo estean activados nos contedores de ExApp.", + "Edit Deploy Daemon" : "Editar os servizos de despregadura", + "Register Deploy Daemon" : "Servizos de despregadura rexistrados", + "Select daemon configuration template" : "Seleccione o modelo de configuración do servizo", + "Unique Deploy Daemon Name" : "Nome único do servizo de despregadura", + "Select daemon deploy method" : "Seleccione o método de despregadura do servizo", + "Set daemon as default" : "Definir o servizo como predeterminado", + "Set as default daemon" : "Definir como servizo predeterminado", + "Enable https" : "Activar https", + "Show deploy config" : "Amosar a configuración da despregadura", + "Hide deploy config" : "Agochar a configuración da despregadura", "Network" : "Rede", "Docker network name" : "Nome da rede Docker", + "Additional option" : "Opción adicional", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "As súas aplicacións", "Documentation" : "Documentación", diff --git a/l10n/he.js b/l10n/he.js index 5e2c314a..369915f5 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -10,6 +10,7 @@ OC.L10N.register( "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", + "More information" : "מידע נוסף", "Remove" : "הסרה", "From" : "מאת", "To" : "אל", diff --git a/l10n/he.json b/l10n/he.json index fcc0fa6b..5c325278 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -8,6 +8,7 @@ "Host" : "מארח", "Nextcloud URL" : "כתובת Nextcloud", "Enabled" : "מופעל", + "More information" : "מידע נוסף", "Remove" : "הסרה", "From" : "מאת", "To" : "אל", diff --git a/l10n/hr.js b/l10n/hr.js index cc36a585..a424b642 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -10,6 +10,7 @@ OC.L10N.register( "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", + "More information" : "Više informacija", "Remove" : "Ukloni", "From" : "Od", "To" : "Do", diff --git a/l10n/hr.json b/l10n/hr.json index 6585da43..54061a93 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -8,6 +8,7 @@ "Host" : "Glavno računalo", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Omogućeno", + "More information" : "Više informacija", "Remove" : "Ukloni", "From" : "Od", "To" : "Do", diff --git a/l10n/hu.js b/l10n/hu.js index cc502ad4..c6063917 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -12,6 +12,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Memory limit" : "Memória korlát", "Enabled" : "Engedélyezve", + "More information" : "További információk", "Remove" : "Eltávolítás", "From" : "Feladó", "To" : "Címzett", diff --git a/l10n/hu.json b/l10n/hu.json index 08262ba9..46cd5e5e 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -10,6 +10,7 @@ "Nextcloud URL" : "Nextcloud URL", "Memory limit" : "Memória korlát", "Enabled" : "Engedélyezve", + "More information" : "További információk", "Remove" : "Eltávolítás", "From" : "Feladó", "To" : "Címzett", diff --git a/l10n/is.js b/l10n/is.js index 6a2f6d2c..c73bc911 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -6,18 +6,17 @@ OC.L10N.register( "Default" : "Sjálfgefið", "Edit" : "Breyta", "Unlimited" : "Ótakmarkað", - "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Name" : "Heiti", "Host" : "Þjónn", - "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", - "Compute device" : "Reiknitæki", "Enabled" : "Virkt", + "More information" : "Nánari upplýsingar", "Remove" : "Fjarlægja", "From" : "Frá", "To" : "Til", "Add" : "Bæta við", "Display name" : "Birtingarnafn", "Disabled" : "Óvirkt", + "Compute device" : "Reiknitæki", "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", @@ -45,8 +44,10 @@ OC.L10N.register( "Actions" : "Aðgerðir", "Results from other categories" : "Niðurstöður úr öðrum flokkum", "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], + "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Type" : "Tegund", "Display Name" : "Birtingarnafn", + "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", "Network" : "Netkerfi", "by {author}\n{license}" : "frá {author}\n{license}", "Your apps" : "Forritin þín", diff --git a/l10n/is.json b/l10n/is.json index b7f0e99a..375e87c4 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -4,18 +4,17 @@ "Default" : "Sjálfgefið", "Edit" : "Breyta", "Unlimited" : "Ótakmarkað", - "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Name" : "Heiti", "Host" : "Þjónn", - "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", - "Compute device" : "Reiknitæki", "Enabled" : "Virkt", + "More information" : "Nánari upplýsingar", "Remove" : "Fjarlægja", "From" : "Frá", "To" : "Til", "Add" : "Bæta við", "Display name" : "Birtingarnafn", "Disabled" : "Óvirkt", + "Compute device" : "Reiknitæki", "Confirm" : "Staðfesta", "Save" : "Vista", "Register" : "Nýskráning", @@ -43,8 +42,10 @@ "Actions" : "Aðgerðir", "Results from other categories" : "Niðurstöður úr öðrum flokkum", "_Update_::_Update all_" : ["Uppfæra","Uppfæra allt"], + "Deploy Daemon" : "Setja bakgrunnsþjónustu (daemon) í gang", "Type" : "Tegund", "Display Name" : "Birtingarnafn", + "GPUs support" : "Stuðningur við GPUs-skjáörgjörva", "Network" : "Netkerfi", "by {author}\n{license}" : "frá {author}\n{license}", "Your apps" : "Forritin þín", diff --git a/l10n/it.js b/l10n/it.js index 05304138..e3a058f1 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "URL Nextcloud", "Memory limit" : "Limite di memoria", "Enabled" : "Abilitata", + "More information" : "Altre informazioni", "Remove" : "Rimuovi", "From" : "Da", "To" : "A", diff --git a/l10n/it.json b/l10n/it.json index 5ff13b0e..e8cf2a2a 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "URL Nextcloud", "Memory limit" : "Limite di memoria", "Enabled" : "Abilitata", + "More information" : "Altre informazioni", "Remove" : "Rimuovi", "From" : "Da", "To" : "A", diff --git a/l10n/ja.js b/l10n/ja.js index 9a4e4f5d..8bf765e1 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPIデプロイデーモン", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPIデフォルトのデプロイデーモンが設定されていません。外部アプリ(Ex-Apps)をインストールするための設定で、デフォルトのデプロイデーモンを登録してください。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPIデフォルトのデプロイデーモン\"%s\"にアクセスできません。デーモンの設定を確認してください。", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPIデフォルトのデプロイデーモンはHaRPを使用していません。パフォーマンス向上のため、アップグレードをご検討ください。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIとその特別に設計されたアプリケーションでNextcloudを強化しましょう。\n\n\nAppAPIは、アプリケーション開発、デプロイ、管理のプロセスを合理化し、強化するために設計された\nNextcloudエコシステム内のプロジェクトです。\n\n従来Nextcloudの開発で使われてきたPHPに限らず、さまざまなプログラミング言語を使って\nアプリケーションを開発できるようにする新しい手法を導入しています。\n\n_アプリケーションを開発したい場合は、喜んでお手伝いします。_\n\n### サポート\n\n本プロジェクトへのご支援をお願いいたします:\n\n- GitHubにスターをつける\n- ❗ 課題または機能要求を作成する\n- 💁 Issueの解決とPull Requestの作成\n- 🧑‍💻 AppAPIを使用した独自のアプリケーションの開発\n\n私たちは、AppAPIプロジェクトの将来と、Nextcloud内でアプリケーションを開発し体験する方法を\n変革する可能性に心から期待しています。\n\nこの旅に乗り出すにあたり、開発者、思想家、創造者、先見者である皆さんに、より多機能で、安定した、\n安全なアプリの環境を形作るために、私たちに加わっていただくことを温かく歓迎します。\n\n*あなたの洞察、提案、貢献は、私たちにとってかけがえのないものです。*", "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPIプロジェクトは、Dockerコンテナーの活用によりNextcloud用のアプリケーション開発に革新をもたらすことを目的とした画期的な取り組みです。これによりプログラミング言語の選択肢が広がり、計算負荷の高いタスクを別のサーバーにオフロードできるようになります。", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "デフォルトのDeploy Daemonにアクセスできません。 設定を確認してください。", "ExApp init timeout (minutes)" : "ExApp initタイムアウト(分)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "AppAPIが失敗とマークするExApp初期化プロセスのタイムアウト", "ExApp init timeout" : "ExApp initタイムアウト", "ExApp container restart policy" : "ExAppコンテナ再起動ポリシー", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "コンテナの再起動ポリシーを指定します。たとえば、デーモンサーバーの再起動後にExAppが確実に実行されるようにするには 'always' を指定します。", - "This settings changes are reflected only for newly created containers" : "この設定の変更は新しく作成されたコンテナにのみ反映されます", - "Are you sure you want delete Deploy Daemon" : "本当にDeploy Daemonを削除しますか?", - "All ExApps on this daemon will be removed" : "このデーモン上のすべてのExAppsが削除されます", - "All ExApps installed on this daemon will be removed" : "このデーモンにインストールされているすべてのExAppsが削除されます", "Cancel" : "キャンセル", "Delete" : "削除", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemonをデフォルトとして設定できません", - "Failed to save admin options. Check the logs" : "管理者オプションを保存できませんでした。ログを確認する", "Password confirmation failed" : "パスワードの確認に失敗しました", "Default" : "デフォルト", "Set as default" : "デフォルトとして設定", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Dockerレジストリ", "Edit" : "編集", "Daemon connection successful" : "バックグラウンドデーモンに接続できました", - "Failed to connect to Daemon. Check the logs" : "バックグラウンドデーモンに接続できません。ログを確認してください。", - "Failed to check connection to Daemon. Check the logs" : "バックグラウンドデーモンへ接続確認できませんでした。ログを確認してください。", "Unlimited" : "無制限", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "デプロイデーモンの設定詳細", - "Deploy Daemon" : "デーモンのデプロイ", "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "開発に通常使用される手動インストールデーモン。デフォルトデーモンとして設定できません。", "ExApps installed" : "ExAppsがインストールされました", "Name" : "名前", "Protocol" : "プロトコル", "Host" : "ホスト", "ExApp direct communication (FRP disabled)" : "ExAppダイレクト通信(FRP無効)", - "Deploy config" : "デプロイ設定", + "Deploy options" : "デプロイオプション", "Docker network" : "Dockerネットワーク", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxyパスワード", - "GPUs support" : "GPUサポート", - "Compute device" : "計算デバイス", "Memory limit" : "メモリ制限", "CPU limit" : "CPU制限", "Additional options" : "追加オプション", - "Verify connection" : "接続の確認", + "Check connection" : "接続を確認", "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", - "No Deploy daemons configured" : "デプロイデーモンが設定されていません", - "Register a custom one or setup from available templates" : "カスタムのものを登録するか利用可能なテンプレートから設定する", - "Register Daemon" : "デーモンを登録", "Register ExApp in Nextcloud" : "ExAppをNextcloudに登録する", "Check if the ExApp is registered in Nextcloud before deployment" : "デプロイ前にExAppがNextcloudに登録されているか確認する", "Image pull" : "イメージダウンロード", @@ -99,55 +75,46 @@ OC.L10N.register( "Enabled" : "有効", "Deploy test passed successfully!" : "テストデプロイは成功しました", "Deploy test failed at step \"{step}\"" : "ステップ\"{step}\"でテストデプロイに失敗しました", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPIはバックグラウンドデーモンが正しく構成され、デプロイが成功していることを確認するために、小さなスケルトンExAppをインストールします。", - "The following Deploy test checks must be passed to succeed:" : "以下のデプロイテストチェックに合格する必要があります:", - "More info" : "追加情報", + "More information" : "詳細情報", "Download ExApp logs" : "ExAppログをダウンロード", - "Remove test ExApp" : "テスト用ExAppを削除", - "Start Deploy test" : "デプロイテストの開始", - "Stop Deploy test" : "デプロイテストの終了", "Please enter a registry domain" : "レジストリドメインを入力してください", "Override Docker registries" : "Dockerレジストリを上書き", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "カスタムDockerレジストリを使用する場合(たとえば、プライベートDockerレジストリを使用する場合や、テストに別のDockerレジストリを使用する場合) に便利です。", "Image pull will be skipped" : "イメージダウンロードは省略されました", "Remove" : "削除", - "No custom Docker registries configured" : "No custom Docker registries configured", "From" : "開始", "registry URL (e.g. ghcr.io)" : "レジストリーURL(例: ghcr.io)", "To" : "宛先", "registry URL (e.g. docker.io)" : "レジストリーURL(例:docker.io)", "Add" : "追加", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "ホスト名(およびポート){name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホスト{host}であれば構いません。", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ホスト名(およびポート)またはパス{name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホストであれば構いません。Dockerソケットへのパスとしても指定できます(例: nextcloud-appapi-dsp:2375や/var/run/docker.sock)", - "Edit Deploy Daemon" : "バックグラウンドデプロイデーモン設定を修正", - "Register Deploy Daemon" : "バックグラウンドデプロイサーバーを登録", + "Failed to connect to Daemon. Check the logs" : "バックグラウンドデーモンに接続できません。ログを確認してください。", + "Failed to check connection to Daemon. Check the logs" : "バックグラウンドデーモンへ接続確認できませんでした。ログを確認してください。", "Display name" : "表示名", "Deployment method" : "デプロイ手法", "HaRP host" : "HaRPホスト", "Daemon host" : "バックグラウンドデーモンホスト", "HaRP shared key" : "HaRP共有鍵", - "Password must be at least 12 characters long" : "パスワードは12字以上である必要があります", - "Enable https" : "httpsを有効化", - "Show deploy config" : "デプロイ設定を表示", - "Hide deploy config" : "デプロイ設定を隠す", "Enable HaRP" : "HaRPを有効化", "FRP server address" : "FRPサーバーアドレス", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "「Docker ネットワーク」で定義されたネットワーク内の元アプリからアクセスできるFRPサーバーのアドレス(ホスト:ポート)。", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Dockerソケットプロキシーへ接続するHaRPのポート。これは公開される必要がありますが、組み込みの場合は公開または変更する必要はありません。", "Disable FRP" : "FRPを無効化", "Disabled" : "無効", + "Compute device" : "計算デバイス", "Must be a positive integer" : "正の整数である必要があります", "Must be a positive number" : "正の数である必要があります", - "Additional option" : "追加オプション", "Add additional option" : "オプションを追加", "Option value" : "オプション", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", - "Check connection" : "接続を確認", "External Apps" : "外部アプリ", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIと専用設計アプリケーションでNextcloudを強化\n\n\nAppAPIはNextcloudエコシステム内のプロジェクトで、\nアプリケーションの開発、デプロイ、管理のプロセスを効率化・強化することを目的としています。\n\n従来Nextcloud開発で用いられてきたPHPに限定されない、\n様々なプログラミング言語を用いたアプリケーション開発を可能にする新たな手法を導入します。\n\n### バンドルアプリ\n\n**Nextcloud 30.0.1以降、このアプリケーションはデフォルトのNextcloudパッケージに含まれています。**\n\n### サポート\n\n本プロジェクトへのご支援を心よりお待ちしております:\n\n- ⭐ GitHubでスターを付ける\n- ❗ イシューまたは機能リクエストを作成\n- 💁 イシューを解決しプルリクエストを作成\n- 🧑‍💻 AppAPIを使用して独自のアプリケーションを開発\n\nAppAPIプロジェクトの将来性と、Nextcloud内でのアプリケーション開発・体験の方法を変革する可能性に、私たちは心から期待しています。\n\nこの道に踏み出すにあたり、より多様で安定した安全なアプリ環境の構築を構築するために\n開発者、思想家、創造者、そして先見の明を持つ皆様を温かく迎え入れたいと思います。\n\n*皆様の洞察、提案、貢献は私たちにとってとても有意義なものです。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "デフォルトのDeploy Daemonにアクセスできません。 設定を確認してください。", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "コンテナの再起動ポリシーを指定します。たとえば、デーモンサーバーの再起動後にExAppが確実に実行されるようにするには 'always' を指定します。", + "This settings changes are reflected only for newly created containers" : "この設定の変更は新しく作成されたコンテナにのみ反映されます", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", "Delete data on remove" : "削除時にデータを消去する", @@ -175,10 +142,37 @@ OC.L10N.register( "Results from other categories" : "他のカテゴリからの結果", "No apps found" : "アプリが見つかりませんでした", "_Update_::_Update all_" : ["全て更新"], + "Deploy Daemon" : "デーモンのデプロイ", "Type" : "タイプ", "Display Name" : "表示名", + "GPUs support" : "GPUサポート", + "Are you sure you want delete Deploy Daemon" : "本当にDeploy Daemonを削除しますか?", + "All ExApps on this daemon will be removed" : "このデーモン上のすべてのExAppsが削除されます", + "All ExApps installed on this daemon will be removed" : "このデーモンにインストールされているすべてのExAppsが削除されます", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemonをデフォルトとして設定できません", + "Failed to save admin options. Check the logs" : "管理者オプションを保存できませんでした。ログを確認する", + "Deploy daemon config details" : "デプロイデーモンの設定詳細", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "開発に通常使用される手動インストールデーモン。デフォルトデーモンとして設定できません。", + "Deploy config" : "デプロイ設定", + "Verify connection" : "接続の確認", + "No Deploy daemons configured" : "デプロイデーモンが設定されていません", + "Register a custom one or setup from available templates" : "カスタムのものを登録するか利用可能なテンプレートから設定する", + "Register Daemon" : "デーモンを登録", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPIはバックグラウンドデーモンが正しく構成され、デプロイが成功していることを確認するために、小さなスケルトンExAppをインストールします。", + "The following Deploy test checks must be passed to succeed:" : "以下のデプロイテストチェックに合格する必要があります:", + "More info" : "追加情報", + "Remove test ExApp" : "テスト用ExAppを削除", + "Start Deploy test" : "デプロイテストの開始", + "Stop Deploy test" : "デプロイテストの終了", + "Password must be at least 12 characters long" : "パスワードは12字以上である必要があります", + "Edit Deploy Daemon" : "バックグラウンドデプロイデーモン設定を修正", + "Register Deploy Daemon" : "バックグラウンドデプロイサーバーを登録", + "Enable https" : "httpsを有効化", + "Show deploy config" : "デプロイ設定を表示", + "Hide deploy config" : "デプロイ設定を隠す", "Network" : "ネットワーク", "Docker network name" : "Dockerネットワーク名", + "Additional option" : "追加オプション", "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", diff --git a/l10n/ja.json b/l10n/ja.json index 6b152c84..bb91b0e5 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPIデプロイデーモン", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPIデフォルトのデプロイデーモンが設定されていません。外部アプリ(Ex-Apps)をインストールするための設定で、デフォルトのデプロイデーモンを登録してください。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPIデフォルトのデプロイデーモン\"%s\"にアクセスできません。デーモンの設定を確認してください。", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPIデフォルトのデプロイデーモンはHaRPを使用していません。パフォーマンス向上のため、アップグレードをご検討ください。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIとその特別に設計されたアプリケーションでNextcloudを強化しましょう。\n\n\nAppAPIは、アプリケーション開発、デプロイ、管理のプロセスを合理化し、強化するために設計された\nNextcloudエコシステム内のプロジェクトです。\n\n従来Nextcloudの開発で使われてきたPHPに限らず、さまざまなプログラミング言語を使って\nアプリケーションを開発できるようにする新しい手法を導入しています。\n\n_アプリケーションを開発したい場合は、喜んでお手伝いします。_\n\n### サポート\n\n本プロジェクトへのご支援をお願いいたします:\n\n- GitHubにスターをつける\n- ❗ 課題または機能要求を作成する\n- 💁 Issueの解決とPull Requestの作成\n- 🧑‍💻 AppAPIを使用した独自のアプリケーションの開発\n\n私たちは、AppAPIプロジェクトの将来と、Nextcloud内でアプリケーションを開発し体験する方法を\n変革する可能性に心から期待しています。\n\nこの旅に乗り出すにあたり、開発者、思想家、創造者、先見者である皆さんに、より多機能で、安定した、\n安全なアプリの環境を形作るために、私たちに加わっていただくことを温かく歓迎します。\n\n*あなたの洞察、提案、貢献は、私たちにとってかけがえのないものです。*", "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPIプロジェクトは、Dockerコンテナーの活用によりNextcloud用のアプリケーション開発に革新をもたらすことを目的とした画期的な取り組みです。これによりプログラミング言語の選択肢が広がり、計算負荷の高いタスクを別のサーバーにオフロードできるようになります。", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "デフォルトのDeploy Daemonにアクセスできません。 設定を確認してください。", "ExApp init timeout (minutes)" : "ExApp initタイムアウト(分)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "AppAPIが失敗とマークするExApp初期化プロセスのタイムアウト", "ExApp init timeout" : "ExApp initタイムアウト", "ExApp container restart policy" : "ExAppコンテナ再起動ポリシー", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "コンテナの再起動ポリシーを指定します。たとえば、デーモンサーバーの再起動後にExAppが確実に実行されるようにするには 'always' を指定します。", - "This settings changes are reflected only for newly created containers" : "この設定の変更は新しく作成されたコンテナにのみ反映されます", - "Are you sure you want delete Deploy Daemon" : "本当にDeploy Daemonを削除しますか?", - "All ExApps on this daemon will be removed" : "このデーモン上のすべてのExAppsが削除されます", - "All ExApps installed on this daemon will be removed" : "このデーモンにインストールされているすべてのExAppsが削除されます", "Cancel" : "キャンセル", "Delete" : "削除", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemonをデフォルトとして設定できません", - "Failed to save admin options. Check the logs" : "管理者オプションを保存できませんでした。ログを確認する", "Password confirmation failed" : "パスワードの確認に失敗しました", "Default" : "デフォルト", "Set as default" : "デフォルトとして設定", @@ -54,36 +42,24 @@ "Docker registries" : "Dockerレジストリ", "Edit" : "編集", "Daemon connection successful" : "バックグラウンドデーモンに接続できました", - "Failed to connect to Daemon. Check the logs" : "バックグラウンドデーモンに接続できません。ログを確認してください。", - "Failed to check connection to Daemon. Check the logs" : "バックグラウンドデーモンへ接続確認できませんでした。ログを確認してください。", "Unlimited" : "無制限", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "デプロイデーモンの設定詳細", - "Deploy Daemon" : "デーモンのデプロイ", "Default daemon. ExApps will be installed on it" : "デフォルトデーモン。ExAppsがインストールされます", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "開発に通常使用される手動インストールデーモン。デフォルトデーモンとして設定できません。", "ExApps installed" : "ExAppsがインストールされました", "Name" : "名前", "Protocol" : "プロトコル", "Host" : "ホスト", "ExApp direct communication (FRP disabled)" : "ExAppダイレクト通信(FRP無効)", - "Deploy config" : "デプロイ設定", + "Deploy options" : "デプロイオプション", "Docker network" : "Dockerネットワーク", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxyパスワード", - "GPUs support" : "GPUサポート", - "Compute device" : "計算デバイス", "Memory limit" : "メモリ制限", "CPU limit" : "CPU制限", "Additional options" : "追加オプション", - "Verify connection" : "接続の確認", + "Check connection" : "接続を確認", "Registered Deploy daemons list" : "登録済みデプロイデーモンリスト", - "No Deploy daemons configured" : "デプロイデーモンが設定されていません", - "Register a custom one or setup from available templates" : "カスタムのものを登録するか利用可能なテンプレートから設定する", - "Register Daemon" : "デーモンを登録", "Register ExApp in Nextcloud" : "ExAppをNextcloudに登録する", "Check if the ExApp is registered in Nextcloud before deployment" : "デプロイ前にExAppがNextcloudに登録されているか確認する", "Image pull" : "イメージダウンロード", @@ -97,55 +73,46 @@ "Enabled" : "有効", "Deploy test passed successfully!" : "テストデプロイは成功しました", "Deploy test failed at step \"{step}\"" : "ステップ\"{step}\"でテストデプロイに失敗しました", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPIはバックグラウンドデーモンが正しく構成され、デプロイが成功していることを確認するために、小さなスケルトンExAppをインストールします。", - "The following Deploy test checks must be passed to succeed:" : "以下のデプロイテストチェックに合格する必要があります:", - "More info" : "追加情報", + "More information" : "詳細情報", "Download ExApp logs" : "ExAppログをダウンロード", - "Remove test ExApp" : "テスト用ExAppを削除", - "Start Deploy test" : "デプロイテストの開始", - "Stop Deploy test" : "デプロイテストの終了", "Please enter a registry domain" : "レジストリドメインを入力してください", "Override Docker registries" : "Dockerレジストリを上書き", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "カスタムDockerレジストリを使用する場合(たとえば、プライベートDockerレジストリを使用する場合や、テストに別のDockerレジストリを使用する場合) に便利です。", "Image pull will be skipped" : "イメージダウンロードは省略されました", "Remove" : "削除", - "No custom Docker registries configured" : "No custom Docker registries configured", "From" : "開始", "registry URL (e.g. ghcr.io)" : "レジストリーURL(例: ghcr.io)", "To" : "宛先", "registry URL (e.g. docker.io)" : "レジストリーURL(例:docker.io)", "Add" : "追加", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "ホスト名(およびポート){name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホスト{host}であれば構いません。", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ホスト名(およびポート)またはパス{name}が利用できます。これはパブリックホストである必要はなく、Nextcloudサーバーからアクセス可能なホストであれば構いません。Dockerソケットへのパスとしても指定できます(例: nextcloud-appapi-dsp:2375や/var/run/docker.sock)", - "Edit Deploy Daemon" : "バックグラウンドデプロイデーモン設定を修正", - "Register Deploy Daemon" : "バックグラウンドデプロイサーバーを登録", + "Failed to connect to Daemon. Check the logs" : "バックグラウンドデーモンに接続できません。ログを確認してください。", + "Failed to check connection to Daemon. Check the logs" : "バックグラウンドデーモンへ接続確認できませんでした。ログを確認してください。", "Display name" : "表示名", "Deployment method" : "デプロイ手法", "HaRP host" : "HaRPホスト", "Daemon host" : "バックグラウンドデーモンホスト", "HaRP shared key" : "HaRP共有鍵", - "Password must be at least 12 characters long" : "パスワードは12字以上である必要があります", - "Enable https" : "httpsを有効化", - "Show deploy config" : "デプロイ設定を表示", - "Hide deploy config" : "デプロイ設定を隠す", "Enable HaRP" : "HaRPを有効化", "FRP server address" : "FRPサーバーアドレス", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "「Docker ネットワーク」で定義されたネットワーク内の元アプリからアクセスできるFRPサーバーのアドレス(ホスト:ポート)。", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Dockerソケットプロキシーへ接続するHaRPのポート。これは公開される必要がありますが、組み込みの場合は公開または変更する必要はありません。", "Disable FRP" : "FRPを無効化", "Disabled" : "無効", + "Compute device" : "計算デバイス", "Must be a positive integer" : "正の整数である必要があります", "Must be a positive number" : "正の数である必要があります", - "Additional option" : "追加オプション", "Add additional option" : "オプションを追加", "Option value" : "オプション", "Confirm" : "承認", "Save" : "保存する", "Register" : "登録", - "Check connection" : "接続を確認", "External Apps" : "外部アプリ", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIと専用設計アプリケーションでNextcloudを強化\n\n\nAppAPIはNextcloudエコシステム内のプロジェクトで、\nアプリケーションの開発、デプロイ、管理のプロセスを効率化・強化することを目的としています。\n\n従来Nextcloud開発で用いられてきたPHPに限定されない、\n様々なプログラミング言語を用いたアプリケーション開発を可能にする新たな手法を導入します。\n\n### バンドルアプリ\n\n**Nextcloud 30.0.1以降、このアプリケーションはデフォルトのNextcloudパッケージに含まれています。**\n\n### サポート\n\n本プロジェクトへのご支援を心よりお待ちしております:\n\n- ⭐ GitHubでスターを付ける\n- ❗ イシューまたは機能リクエストを作成\n- 💁 イシューを解決しプルリクエストを作成\n- 🧑‍💻 AppAPIを使用して独自のアプリケーションを開発\n\nAppAPIプロジェクトの将来性と、Nextcloud内でのアプリケーション開発・体験の方法を変革する可能性に、私たちは心から期待しています。\n\nこの道に踏み出すにあたり、より多様で安定した安全なアプリ環境の構築を構築するために\n開発者、思想家、創造者、そして先見の明を持つ皆様を温かく迎え入れたいと思います。\n\n*皆様の洞察、提案、貢献は私たちにとってとても有意義なものです。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPIプロジェクトは、Nextcloud向けアプリケーションの開発方法に革命を起こすことを目的としたエキサイティングなイニシアチブです。", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon(DaemonConfig)はExAppsのオーケストレーションデーモンです。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "デフォルトのDeploy Daemonにアクセスできません。 設定を確認してください。", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "コンテナの再起動ポリシーを指定します。たとえば、デーモンサーバーの再起動後にExAppが確実に実行されるようにするには 'always' を指定します。", + "This settings changes are reflected only for newly created containers" : "この設定の変更は新しく作成されたコンテナにのみ反映されます", "{license}-licensed" : "{license}-に許諾されています", "Update to {version}" : "{version} にアップデート", "Delete data on remove" : "削除時にデータを消去する", @@ -173,10 +140,37 @@ "Results from other categories" : "他のカテゴリからの結果", "No apps found" : "アプリが見つかりませんでした", "_Update_::_Update all_" : ["全て更新"], + "Deploy Daemon" : "デーモンのデプロイ", "Type" : "タイプ", "Display Name" : "表示名", + "GPUs support" : "GPUサポート", + "Are you sure you want delete Deploy Daemon" : "本当にDeploy Daemonを削除しますか?", + "All ExApps on this daemon will be removed" : "このデーモン上のすべてのExAppsが削除されます", + "All ExApps installed on this daemon will be removed" : "このデーモンにインストールされているすべてのExAppsが削除されます", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemonをデフォルトとして設定できません", + "Failed to save admin options. Check the logs" : "管理者オプションを保存できませんでした。ログを確認する", + "Deploy daemon config details" : "デプロイデーモンの設定詳細", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "開発に通常使用される手動インストールデーモン。デフォルトデーモンとして設定できません。", + "Deploy config" : "デプロイ設定", + "Verify connection" : "接続の確認", + "No Deploy daemons configured" : "デプロイデーモンが設定されていません", + "Register a custom one or setup from available templates" : "カスタムのものを登録するか利用可能なテンプレートから設定する", + "Register Daemon" : "デーモンを登録", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPIはバックグラウンドデーモンが正しく構成され、デプロイが成功していることを確認するために、小さなスケルトンExAppをインストールします。", + "The following Deploy test checks must be passed to succeed:" : "以下のデプロイテストチェックに合格する必要があります:", + "More info" : "追加情報", + "Remove test ExApp" : "テスト用ExAppを削除", + "Start Deploy test" : "デプロイテストの開始", + "Stop Deploy test" : "デプロイテストの終了", + "Password must be at least 12 characters long" : "パスワードは12字以上である必要があります", + "Edit Deploy Daemon" : "バックグラウンドデプロイデーモン設定を修正", + "Register Deploy Daemon" : "バックグラウンドデプロイサーバーを登録", + "Enable https" : "httpsを有効化", + "Show deploy config" : "デプロイ設定を表示", + "Hide deploy config" : "デプロイ設定を隠す", "Network" : "ネットワーク", "Docker network name" : "Dockerネットワーク名", + "Additional option" : "追加オプション", "by {author}\n{license}" : "作者 {author}\n{license}", "Your apps" : "あなたのアプリ", "Documentation" : "ドキュメント", diff --git a/l10n/ka.js b/l10n/ka.js index 558c7543..07d03af0 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -10,6 +10,7 @@ OC.L10N.register( "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", + "More information" : "More information", "Remove" : "Remove", "From" : "From", "To" : "To", diff --git a/l10n/ka.json b/l10n/ka.json index abd3f083..1add7e15 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -8,6 +8,7 @@ "Host" : "Host", "Nextcloud URL" : "Nextcloud URL", "Enabled" : "Enabled", + "More information" : "More information", "Remove" : "Remove", "From" : "From", "To" : "To", diff --git a/l10n/ko.js b/l10n/ko.js index c442861a..3c266358 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -22,51 +22,29 @@ OC.L10N.register( "External Apps management" : "외부 응용 프로그램 관리", "Admin options saved" : "관리자 옵션이 저장됨", "Failed to save admin options" : "관리자 옵션 저장 실패", - "Deploy Daemons" : "배포 데몬", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬. 배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "기본 배포 데몬에 액세스할 수 없습니다. 구성을 확인해주세요.", "ExApp init timeout (minutes)" : "외부 응용 프로그램 초기화 시간 초과 (분)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "외부 응용 프로그램 초기화 과정 시간 초과 후 AppAPI가 이를 실패한 것으로 표시합니다.", "ExApp init timeout" : "외부 응용 프로그램 초기화 시간 초과", "ExApp container restart policy" : "외부 응용 프로그램 컨테이너 재시작 정책", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "컨테이너 재시작 정책을 지정합니다, 예: 데몬 서버 재부팅 후 '항상' 외부 응용 프로그램이 동작하도록 보장", - "This settings changes are reflected only for newly created containers" : "해당 설정 변경 사항은 새로 생성된 컨테이너에만 적용됩니다.", - "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", - "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", - "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", "Cancel" : "취소", "Delete" : "삭제", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", - "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", "Password confirmation failed" : "암호 확인에 실패했습니다.", "Default" : "디폴트", "Set as default" : "디폴트로 설정", "Test deploy" : "테스트 배포", "Edit" : "편집", "Daemon connection successful" : "데몬 연결 성공", - "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", - "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", - "Deploy daemon config details" : "데몬 구성 세부 정보 배포", - "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "일반적으로 개발에 사용되는 수동 설치 데몬입니다. 기본 데몬으로 설정할 수 없습니다.", "ExApps installed" : "외부 응용 프로그램이 설치됨", "Name" : "이름", "Protocol" : "프로토콜", "Host" : "호스트", - "Deploy config" : "구성 배포", "Docker network" : "Docker 네트워크", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 비밀번호", - "GPUs support" : "GPU 지원
", - "Compute device" : "컴퓨팅 장치", "Additional options" : "추가 옵션", - "Verify connection" : "연결 확인", + "Check connection" : "연결 확인", "Registered Deploy daemons list" : "등록된 배포 데몬 목록", - "No Deploy daemons configured" : "배포 데몬이 구성되지 않았습니다.", - "Register a custom one or setup from available templates" : "사용자 정의 항목을 등록하거나 사용 가능한 템플릿에서 설정", - "Register Daemon" : "데몬 등록", "Register ExApp in Nextcloud" : "외부 응용 프로그램을 Nextcloud에 등록하기", "Check if the ExApp is registered in Nextcloud before deployment" : "배포를 시작하기 전에 외부 응용 프로그램이 Nextcloud에 등록되어 있는지 확인하세요.", "Image pull" : "이미지 가져오기", @@ -82,42 +60,24 @@ OC.L10N.register( "Only if ExApp container is preset" : "외부 응용 프로그램 컨테이너가 사전 설정된 경우에만 해당", "Deploy test passed successfully!" : "배포 테스트를 성공적으로 통과했습니다!", "Deploy test failed at step \"{step}\"" : "배포 테스트 중 \"{step}\" 단계에 문제가 있습니다", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", - "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", - "More info" : "더 많은 정보", + "More information" : "더 많은 정보", "Download ExApp logs" : "외부 응용 프로그램 로그 다운로드", - "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", - "Start Deploy test" : "배포 테스트 시작", - "Stop Deploy test" : "배포 테스트 중단", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", "Remove" : "삭제", "From" : "시작", "To" : "종료", "Add" : "추가", - "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", - "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", - "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", - "Register Deploy Daemon" : "배포 데몬 등록", + "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", + "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Daemon configuration template" : "데몬 구성 템플릿", - "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", "Daemon registration form" : "데몬 등록 형식", - "Unique Deploy Daemon Name" : "고유한 배포 데몬 이름", "Display name" : "표시 이름", "Deployment method" : "배포 방식", - "Select daemon deploy method" : "데몬 배포 방식 선택", "Daemon host" : "데몬 호스트", - "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", - "Set daemon as default" : "데몬을 기본값으로 설정", - "Set as default daemon" : "기본 데몬으로 설정", - "Enable https" : "https 활성화", - "Show deploy config" : "배포 구성 표시", - "Hide deploy config" : "배포 구성 숨기기", "Disabled" : "비활성화됨", - "Additional option" : "부가 옵션", + "Compute device" : "컴퓨팅 장치", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", "Option key (unique, e.g. my_key)" : "옵션 키(고유, 예: my_key)", @@ -127,9 +87,14 @@ OC.L10N.register( "Confirm" : "확인", "Save" : "저장", "Register" : "등록", - "Check connection" : "연결 확인", "External Apps" : "외부 응용 프로그램", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", + "Deploy Daemons" : "배포 데몬", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬. 배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "기본 배포 데몬에 액세스할 수 없습니다. 구성을 확인해주세요.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "컨테이너 재시작 정책을 지정합니다, 예: 데몬 서버 재부팅 후 '항상' 외부 응용 프로그램이 동작하도록 보장", + "This settings changes are reflected only for newly created containers" : "해당 설정 변경 사항은 새로 생성된 컨테이너에만 적용됩니다.", "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", "Delete data on remove" : "제거 시 데이터 삭제", @@ -159,12 +124,48 @@ OC.L10N.register( "No apps found" : "앱이 발견되지 않음", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n개의 앱에 가능한 업데이트가 있음"], "_Update_::_Update all_" : ["모두 업데이트"], + "Deploy Daemon" : "배포 데몬", "Type" : "종류", "Display Name" : "표시 이름", + "GPUs support" : "GPU 지원
", + "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", + "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", + "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", + "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", + "Deploy daemon config details" : "데몬 구성 세부 정보 배포", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "일반적으로 개발에 사용되는 수동 설치 데몬입니다. 기본 데몬으로 설정할 수 없습니다.", + "Deploy config" : "구성 배포", + "Verify connection" : "연결 확인", + "No Deploy daemons configured" : "배포 데몬이 구성되지 않았습니다.", + "Register a custom one or setup from available templates" : "사용자 정의 항목을 등록하거나 사용 가능한 템플릿에서 설정", + "Register Daemon" : "데몬 등록", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", + "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", + "More info" : "더 많은 정보", + "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", + "Start Deploy test" : "배포 테스트 시작", + "Stop Deploy test" : "배포 테스트 중단", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", + "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", + "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", + "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", + "Register Deploy Daemon" : "배포 데몬 등록", + "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", + "Unique Deploy Daemon Name" : "고유한 배포 데몬 이름", + "Select daemon deploy method" : "데몬 배포 방식 선택", + "Set daemon as default" : "데몬을 기본값으로 설정", + "Set as default daemon" : "기본 데몬으로 설정", + "Enable https" : "https 활성화", + "Show deploy config" : "배포 구성 표시", + "Hide deploy config" : "배포 구성 숨기기", "Network" : "네트워크", "Docker network name" : "Docker 네트워크 이름", + "Additional option" : "부가 옵션", "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Your apps" : "내 앱", "Documentation" : "문서", diff --git a/l10n/ko.json b/l10n/ko.json index 395fad0c..b8ef80eb 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -20,51 +20,29 @@ "External Apps management" : "외부 응용 프로그램 관리", "Admin options saved" : "관리자 옵션이 저장됨", "Failed to save admin options" : "관리자 옵션 저장 실패", - "Deploy Daemons" : "배포 데몬", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬. 배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "기본 배포 데몬에 액세스할 수 없습니다. 구성을 확인해주세요.", "ExApp init timeout (minutes)" : "외부 응용 프로그램 초기화 시간 초과 (분)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "외부 응용 프로그램 초기화 과정 시간 초과 후 AppAPI가 이를 실패한 것으로 표시합니다.", "ExApp init timeout" : "외부 응용 프로그램 초기화 시간 초과", "ExApp container restart policy" : "외부 응용 프로그램 컨테이너 재시작 정책", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "컨테이너 재시작 정책을 지정합니다, 예: 데몬 서버 재부팅 후 '항상' 외부 응용 프로그램이 동작하도록 보장", - "This settings changes are reflected only for newly created containers" : "해당 설정 변경 사항은 새로 생성된 컨테이너에만 적용됩니다.", - "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", - "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", - "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", "Cancel" : "취소", "Delete" : "삭제", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", - "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", "Password confirmation failed" : "암호 확인에 실패했습니다.", "Default" : "디폴트", "Set as default" : "디폴트로 설정", "Test deploy" : "테스트 배포", "Edit" : "편집", "Daemon connection successful" : "데몬 연결 성공", - "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", - "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", - "Deploy daemon config details" : "데몬 구성 세부 정보 배포", - "Deploy Daemon" : "배포 데몬", "Default daemon. ExApps will be installed on it" : "기본 데몬. 외부 응용 프로그램이 설치됩니다.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "일반적으로 개발에 사용되는 수동 설치 데몬입니다. 기본 데몬으로 설정할 수 없습니다.", "ExApps installed" : "외부 응용 프로그램이 설치됨", "Name" : "이름", "Protocol" : "프로토콜", "Host" : "호스트", - "Deploy config" : "구성 배포", "Docker network" : "Docker 네트워크", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 비밀번호", - "GPUs support" : "GPU 지원
", - "Compute device" : "컴퓨팅 장치", "Additional options" : "추가 옵션", - "Verify connection" : "연결 확인", + "Check connection" : "연결 확인", "Registered Deploy daemons list" : "등록된 배포 데몬 목록", - "No Deploy daemons configured" : "배포 데몬이 구성되지 않았습니다.", - "Register a custom one or setup from available templates" : "사용자 정의 항목을 등록하거나 사용 가능한 템플릿에서 설정", - "Register Daemon" : "데몬 등록", "Register ExApp in Nextcloud" : "외부 응용 프로그램을 Nextcloud에 등록하기", "Check if the ExApp is registered in Nextcloud before deployment" : "배포를 시작하기 전에 외부 응용 프로그램이 Nextcloud에 등록되어 있는지 확인하세요.", "Image pull" : "이미지 가져오기", @@ -80,42 +58,24 @@ "Only if ExApp container is preset" : "외부 응용 프로그램 컨테이너가 사전 설정된 경우에만 해당", "Deploy test passed successfully!" : "배포 테스트를 성공적으로 통과했습니다!", "Deploy test failed at step \"{step}\"" : "배포 테스트 중 \"{step}\" 단계에 문제가 있습니다", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", - "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", - "More info" : "더 많은 정보", + "More information" : "더 많은 정보", "Download ExApp logs" : "외부 응용 프로그램 로그 다운로드", - "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", - "Start Deploy test" : "배포 테스트 시작", - "Stop Deploy test" : "배포 테스트 중단", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", "Remove" : "삭제", "From" : "시작", "To" : "종료", "Add" : "추가", - "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", - "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker 소켓 프록시 인증 비밀번호", - "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", "DaemonConfig successfully registered" : "데몬Config가 성공적으로 등록되었습니다.", "Failed to register DaemonConfig. Check the logs" : "데몬Config를 등록하지 못했습니다. 로그를 확인하세요.", - "Register Deploy Daemon" : "배포 데몬 등록", + "Failed to connect to Daemon. Check the logs" : "데몬 연결에 실패했습니다. 로그를 확인하세요.", + "Failed to check connection to Daemon. Check the logs" : "데몬 연결을 확인하지 못했습니다. 로그를 확인하세요.", "Daemon configuration template" : "데몬 구성 템플릿", - "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", "Daemon registration form" : "데몬 등록 형식", - "Unique Deploy Daemon Name" : "고유한 배포 데몬 이름", "Display name" : "표시 이름", "Deployment method" : "배포 방식", - "Select daemon deploy method" : "데몬 배포 방식 선택", "Daemon host" : "데몬 호스트", - "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", - "Set daemon as default" : "데몬을 기본값으로 설정", - "Set as default daemon" : "기본 데몬으로 설정", - "Enable https" : "https 활성화", - "Show deploy config" : "배포 구성 표시", - "Hide deploy config" : "배포 구성 숨기기", "Disabled" : "비활성화됨", - "Additional option" : "부가 옵션", + "Compute device" : "컴퓨팅 장치", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", "Option key (unique, e.g. my_key)" : "옵션 키(고유, 예: my_key)", @@ -125,9 +85,14 @@ "Confirm" : "확인", "Save" : "저장", "Register" : "등록", - "Check connection" : "연결 확인", "External Apps" : "외부 응용 프로그램", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 프로젝트는 Nextcloud용 응용 프로그램 개발 방식을 혁신하는 것을 목표로 하는 흥미로운 계획입니다.", + "Deploy Daemons" : "배포 데몬", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "배포 데몬. 배포 데몬 (데몬 구성)은 외부 응용 프로그램 오케스트레이션 데몬입니다.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "기본 배포 데몬에 액세스할 수 없습니다. 구성을 확인해주세요.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "컨테이너 재시작 정책을 지정합니다, 예: 데몬 서버 재부팅 후 '항상' 외부 응용 프로그램이 동작하도록 보장", + "This settings changes are reflected only for newly created containers" : "해당 설정 변경 사항은 새로 생성된 컨테이너에만 적용됩니다.", "{license}-licensed" : "{license} 라이선스", "Update to {version}" : "{version}(으)로 업데이트", "Delete data on remove" : "제거 시 데이터 삭제", @@ -157,12 +122,48 @@ "No apps found" : "앱이 발견되지 않음", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n개의 앱에 가능한 업데이트가 있음"], "_Update_::_Update all_" : ["모두 업데이트"], + "Deploy Daemon" : "배포 데몬", "Type" : "종류", "Display Name" : "표시 이름", + "GPUs support" : "GPU 지원
", + "Are you sure you want delete Deploy Daemon" : "배포 데몬을 삭제하시겠습니까?", + "All ExApps on this daemon will be removed" : "이 데몬의 모든 외부 응용 프로그램들이 삭제됩니다.", + "All ExApps installed on this daemon will be removed" : "이 데몬에 설치되어있는 모든 외부 응용 프로그램들이 삭제됩니다.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"수동-설치\" 배포 데몬을 기본값으로 설정할 수 없음", + "Failed to save admin options. Check the logs" : "관리자 설정을 저장하는데 실패했습니다. 로그 확인", + "Deploy daemon config details" : "데몬 구성 세부 정보 배포", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "일반적으로 개발에 사용되는 수동 설치 데몬입니다. 기본 데몬으로 설정할 수 없습니다.", + "Deploy config" : "구성 배포", + "Verify connection" : "연결 확인", + "No Deploy daemons configured" : "배포 데몬이 구성되지 않았습니다.", + "Register a custom one or setup from available templates" : "사용자 정의 항목을 등록하거나 사용 가능한 템플릿에서 설정", + "Register Daemon" : "데몬 등록", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI는 데몬이 올바르게 구성되었고 배포 단계가 통과되었는지 확인하기 위해 작은 스켈레톤 외부 응용 프로그램 설치를 시도합니다.", + "The following Deploy test checks must be passed to succeed:" : "성공하려면 다음 배포 테스트 검사를 통과해야 합니다.", + "More info" : "더 많은 정보", + "Remove test ExApp" : "테스트용 외부 응용 프로그램 삭제", + "Start Deploy test" : "배포 테스트 시작", + "Stop Deploy test" : "배포 테스트 중단", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "\"배포 테스트 중지\" 시 외부 응용 프로그램 등록이 취소되고 컨테이너가 제거됩니다.", + "Hostname to access ExApps" : "외부 응용 프로그램에 접근하기 위한 호스트명", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker 데몬에 접근하기 위한 호스트명 혹은 경로 (예. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "해당 이름을 가진 데몬이 이미 존재합니다.", + "Password must be at least 12 characters long" : "비밀번호는 12자 이상이어야 합니다.", "With https enabled network is set to host" : "https가 활성화된 네트워크가 호스트로 설정된 경우", + "URL should start with http:// or https://" : "URL은 http:// 혹은 https:// 로 시작해야합니다.", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker는 데몬 호스트에서 사용 가능한 모든 GPU 장치를 외부 응용 프로그램 컨테이너에서 활성화하도록 요청합니다.", + "Register Deploy Daemon" : "배포 데몬 등록", + "Select daemon configuration template" : "데몬 구성 템플릿 선택하기", + "Unique Deploy Daemon Name" : "고유한 배포 데몬 이름", + "Select daemon deploy method" : "데몬 배포 방식 선택", + "Set daemon as default" : "데몬을 기본값으로 설정", + "Set as default daemon" : "기본 데몬으로 설정", + "Enable https" : "https 활성화", + "Show deploy config" : "배포 구성 표시", + "Hide deploy config" : "배포 구성 숨기기", "Network" : "네트워크", "Docker network name" : "Docker 네트워크 이름", + "Additional option" : "부가 옵션", "by {author}\n{license}" : "{author} 님이 작성\n{license}", "Your apps" : "내 앱", "Documentation" : "문서", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 999a130c..a059dbfb 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -11,8 +11,9 @@ OC.L10N.register( "Protocol" : "Protokolas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", + "Check connection" : "Tikrinti ryšį", "Enabled" : "Įjungta", - "More info" : "Daugiau informacijos", + "More information" : "Daugiau informacijos", "Remove" : "Šalinti", "From" : "Nuo", "To" : "Kam", @@ -21,7 +22,6 @@ OC.L10N.register( "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", - "Check connection" : "Tikrinti ryšį", "{license}-licensed" : "Licencijuota pagal {license}", "Update to {version}" : "Atnaujinti į versiją {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", @@ -47,6 +47,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", + "More info" : "Daugiau informacijos", "Network" : "Tinklas", "by {author}\n{license}" : "pagal {author}\n{license}", "Your apps" : "Jūsų programėlės", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index bb71f28f..c9346b3e 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -9,8 +9,9 @@ "Protocol" : "Protokolas", "Host" : "Serveris", "Nextcloud URL" : "Nextcloud URL", + "Check connection" : "Tikrinti ryšį", "Enabled" : "Įjungta", - "More info" : "Daugiau informacijos", + "More information" : "Daugiau informacijos", "Remove" : "Šalinti", "From" : "Nuo", "To" : "Kam", @@ -19,7 +20,6 @@ "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", - "Check connection" : "Tikrinti ryšį", "{license}-licensed" : "Licencijuota pagal {license}", "Update to {version}" : "Atnaujinti į versiją {version}", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ši programėlė neturi priskirtos žemiausios „Nextcloud“ versijos. Ateityje tai bus klaida.", @@ -45,6 +45,7 @@ "_Update_::_Update all_" : ["Atnaujinti","Atnaujinti visas","Atnaujinti visas","Atnaujinti visas"], "Type" : "Tipas", "Display Name" : "Rodomas vardas", + "More info" : "Daugiau informacijos", "Network" : "Tinklas", "by {author}\n{license}" : "pagal {author}\n{license}", "Your apps" : "Jūsų programėlės", diff --git a/l10n/lv.js b/l10n/lv.js index 373b57a1..a9a7417a 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Resursdators", "Memory limit" : "Atmiņas limits", "Enabled" : "Iespējots", - "More info" : "Vairāk informācijas", "Remove" : "Noņemt", "From" : "No", "To" : "Līdz", @@ -34,6 +33,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Atjaunināt visas","Atjaunināt","Atjaunināt visas"], "Type" : "Veids", "Display Name" : "Attēlojamais vārds", + "More info" : "Vairāk informācijas", "Network" : "Tīkls", "Your apps" : "Tavas lietotnes", "Documentation" : "Dokumentācija", diff --git a/l10n/lv.json b/l10n/lv.json index a800f2bc..80a57000 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -7,7 +7,6 @@ "Host" : "Resursdators", "Memory limit" : "Atmiņas limits", "Enabled" : "Iespējots", - "More info" : "Vairāk informācijas", "Remove" : "Noņemt", "From" : "No", "To" : "Līdz", @@ -32,6 +31,7 @@ "_Update_::_Update all_" : ["Atjaunināt visas","Atjaunināt","Atjaunināt visas"], "Type" : "Veids", "Display Name" : "Attēlojamais vārds", + "More info" : "Vairāk informācijas", "Network" : "Tīkls", "Your apps" : "Tavas lietotnes", "Documentation" : "Dokumentācija", diff --git a/l10n/mk.js b/l10n/mk.js index d3555953..5538b76c 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud URL", "Memory limit" : "Лимит на меморијата", "Enabled" : "Овозможено", + "More information" : "Повеќе информации", "Remove" : "Отстрани ", "From" : "Од", "To" : "До", diff --git a/l10n/mk.json b/l10n/mk.json index fc64628f..aaf6acc7 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "Nextcloud URL", "Memory limit" : "Лимит на меморијата", "Enabled" : "Овозможено", + "More information" : "Повеќе информации", "Remove" : "Отстрани ", "From" : "Од", "To" : "До", diff --git a/l10n/nb.js b/l10n/nb.js index b2573a53..6b9d5215 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -22,53 +22,31 @@ OC.L10N.register( "External Apps management" : "Administrasjon av eksterne apper", "Admin options saved" : "Administrasjonsalternativer lagret", "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", - "Deploy Daemons" : "Distribuer daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemons. Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard distribuerings-daemon er ikke tilgjengelig. Vennligst verifiser dens konfigurasjon.", "ExApp init timeout (minutes)" : "ExApp init tidsavbrudd (minutter)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tidsavbrudd for ExApp-initialiseringsprosessen, hvoretter AppAPI vil merke den som feilet", "ExApp init timeout" : "ExApp init tidsavbrudd", "ExApp container restart policy" : "Retningslinjer for omstart av ExApp-beholder", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spesifiser retningslinjer for omstart av beholder, f.eks. 'alltid' for å sikre at ExApp kjører etter omstart av daemonserveren.", - "This settings changes are reflected only for newly created containers" : "Disse endringene i innstillingene gjenspeiles bare for nyopprettede beholdere.", - "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", - "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", - "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", "Cancel" : "Avbryt", "Delete" : "Slett", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", - "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", "Password confirmation failed" : "Passordbekreftelse feilet", "Default" : "Forvalg", "Set as default" : "Angi som standard", "Test deploy" : "Test distribuering", "Edit" : "Rediger", "Daemon connection successful" : "Vellykket daemon-forbindelse", - "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", - "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Unlimited" : "Ubegrenset", - "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", - "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuell installasjon-daemon vanligvis brukt for utvikling. Den kan ikke angis som standard daemon.", "ExApps installed" : "ExApps installert", "Name" : "Navn", "Protocol" : "Protokoll", "Host" : "Server", - "Deploy config" : "Konfigurasjon for distribuering", "Docker network" : "Docker-nettverk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy-passord", - "GPUs support" : "Støtte for GPUer", - "Compute device" : "Beregningsenhet", "Memory limit" : "Minnegrense", "Additional options" : "Ytterligere alternativer", - "Verify connection" : "Verifiser forbindelse", + "Check connection" : "Sjekk forbindelsen", "Registered Deploy daemons list" : "Registrert liste over distribuerings-daemoner", - "No Deploy daemons configured" : "Ingen distribuerings-daemoner konfigurert", - "Register a custom one or setup from available templates" : "Registrer en tilpasset en eller sett opp fra tilgjengelige maler", - "Register Daemon" : "Registrer daemon", "Register ExApp in Nextcloud" : "Registrer ExApp i Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Sjekk om ExApp er registrert i Nextcloud før distribusjon", "Image pull" : "Bildetrekk", @@ -84,47 +62,26 @@ OC.L10N.register( "Only if ExApp container is preset" : "Bare hvis ExApp-konteineren er forhåndsinnstilt", "Deploy test passed successfully!" : "Distribusjonstesten bestått vellykket!", "Deploy test failed at step \"{step}\"" : "Distribusjonstesten feilet på trinn \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", - "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", - "More info" : "Mer info", + "More information" : "Mer informasjon", "Download ExApp logs" : "Last ned ExApp logger", - "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start distribusjonstest", - "Stop Deploy test" : "Stopp distribusjonstest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", "Remove" : "Fjern", "From" : "Fra", "To" : "Til", "Add" : "Legg til", - "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", - "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", - "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", "DaemonConfig successfully registered" : "DaemonKonfigurasjon registrert", "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", - "Edit Deploy Daemon" : "Rediger distribuerings-daemon", - "Register Deploy Daemon" : "Registrer distribuerings-daemon", + "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", + "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Daemon configuration template" : "Mal for konfigurasjon av daemon", - "Select daemon configuration template" : "Velg mal for konfigurasjon av daemon", "Daemon registration form" : "Registreringsskjema for daemon", - "Unique Deploy Daemon Name" : "Unikt navn på distribuerings-daemon", "Display name" : "Visningsnavn", "Deployment method" : "Distribueringsmetode", - "Select daemon deploy method" : "Velg metode for daemon-distribuering", "Daemon host" : "Daemon-vert", - "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", - "Set daemon as default" : "Angi daemon som standard", - "Set as default daemon" : "Angi som standard daemon", - "Enable https" : "Aktiver https", - "Show deploy config" : "Vis konfigurasjon for distribuering", - "Hide deploy config" : "Skjul konfigurasjon for distribuering", "Disabled" : "Deaktivert", - "Additional option" : "Ytterligere alternativ", + "Compute device" : "Beregningsenhet", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", "Option key (unique, e.g. my_key)" : "Alternativnøkkel (unik, f.eks. min_nøkkel)", @@ -134,9 +91,14 @@ OC.L10N.register( "Confirm" : "Bekreft", "Save" : "Lagre", "Register" : "Registrer", - "Check connection" : "Sjekk forbindelsen", "External Apps" : "Eksterne apper", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", + "Deploy Daemons" : "Distribuer daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemons. Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard distribuerings-daemon er ikke tilgjengelig. Vennligst verifiser dens konfigurasjon.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spesifiser retningslinjer for omstart av beholder, f.eks. 'alltid' for å sikre at ExApp kjører etter omstart av daemonserveren.", + "This settings changes are reflected only for newly created containers" : "Disse endringene i innstillingene gjenspeiles bare for nyopprettede beholdere.", "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", "Delete data on remove" : "Slett data ved fjerning", @@ -166,12 +128,51 @@ OC.L10N.register( "No apps found" : "Ingen apper funnet", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en oppdatering tilgjengelig","%n apper har en oppdatering tilgjengelig"], "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], + "Deploy Daemon" : "Distribuerings-daemon", "Type" : "Type", "Display Name" : "Visningsnavn", + "GPUs support" : "Støtte for GPUer", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", + "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", + "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", + "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", + "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuell installasjon-daemon vanligvis brukt for utvikling. Den kan ikke angis som standard daemon.", + "Deploy config" : "Konfigurasjon for distribuering", + "Verify connection" : "Verifiser forbindelse", + "No Deploy daemons configured" : "Ingen distribuerings-daemoner konfigurert", + "Register a custom one or setup from available templates" : "Registrer en tilpasset en eller sett opp fra tilgjengelige maler", + "Register Daemon" : "Registrer daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", + "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", + "More info" : "Mer info", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start distribusjonstest", + "Stop Deploy test" : "Stopp distribusjonstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", + "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", + "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", + "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", + "Edit Deploy Daemon" : "Rediger distribuerings-daemon", + "Register Deploy Daemon" : "Registrer distribuerings-daemon", + "Select daemon configuration template" : "Velg mal for konfigurasjon av daemon", + "Unique Deploy Daemon Name" : "Unikt navn på distribuerings-daemon", + "Select daemon deploy method" : "Velg metode for daemon-distribuering", + "Set daemon as default" : "Angi daemon som standard", + "Set as default daemon" : "Angi som standard daemon", + "Enable https" : "Aktiver https", + "Show deploy config" : "Vis konfigurasjon for distribuering", + "Hide deploy config" : "Skjul konfigurasjon for distribuering", "Network" : "Nettverk", "Docker network name" : "Docker-nettverksnavn", + "Additional option" : "Ytterligere alternativ", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", diff --git a/l10n/nb.json b/l10n/nb.json index c511bb5c..e2cf502b 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -20,53 +20,31 @@ "External Apps management" : "Administrasjon av eksterne apper", "Admin options saved" : "Administrasjonsalternativer lagret", "Failed to save admin options" : "Lagring av administrasjonsalternativer feilet", - "Deploy Daemons" : "Distribuer daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemons. Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard distribuerings-daemon er ikke tilgjengelig. Vennligst verifiser dens konfigurasjon.", "ExApp init timeout (minutes)" : "ExApp init tidsavbrudd (minutter)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tidsavbrudd for ExApp-initialiseringsprosessen, hvoretter AppAPI vil merke den som feilet", "ExApp init timeout" : "ExApp init tidsavbrudd", "ExApp container restart policy" : "Retningslinjer for omstart av ExApp-beholder", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spesifiser retningslinjer for omstart av beholder, f.eks. 'alltid' for å sikre at ExApp kjører etter omstart av daemonserveren.", - "This settings changes are reflected only for newly created containers" : "Disse endringene i innstillingene gjenspeiles bare for nyopprettede beholdere.", - "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", - "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", - "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", "Cancel" : "Avbryt", "Delete" : "Slett", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", - "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", "Password confirmation failed" : "Passordbekreftelse feilet", "Default" : "Forvalg", "Set as default" : "Angi som standard", "Test deploy" : "Test distribuering", "Edit" : "Rediger", "Daemon connection successful" : "Vellykket daemon-forbindelse", - "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", - "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Unlimited" : "Ubegrenset", - "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", - "Deploy Daemon" : "Distribuerings-daemon", "Default daemon. ExApps will be installed on it" : "Standard daemon. ExApps blir installert på den.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuell installasjon-daemon vanligvis brukt for utvikling. Den kan ikke angis som standard daemon.", "ExApps installed" : "ExApps installert", "Name" : "Navn", "Protocol" : "Protokoll", "Host" : "Server", - "Deploy config" : "Konfigurasjon for distribuering", "Docker network" : "Docker-nettverk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy-passord", - "GPUs support" : "Støtte for GPUer", - "Compute device" : "Beregningsenhet", "Memory limit" : "Minnegrense", "Additional options" : "Ytterligere alternativer", - "Verify connection" : "Verifiser forbindelse", + "Check connection" : "Sjekk forbindelsen", "Registered Deploy daemons list" : "Registrert liste over distribuerings-daemoner", - "No Deploy daemons configured" : "Ingen distribuerings-daemoner konfigurert", - "Register a custom one or setup from available templates" : "Registrer en tilpasset en eller sett opp fra tilgjengelige maler", - "Register Daemon" : "Registrer daemon", "Register ExApp in Nextcloud" : "Registrer ExApp i Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Sjekk om ExApp er registrert i Nextcloud før distribusjon", "Image pull" : "Bildetrekk", @@ -82,47 +60,26 @@ "Only if ExApp container is preset" : "Bare hvis ExApp-konteineren er forhåndsinnstilt", "Deploy test passed successfully!" : "Distribusjonstesten bestått vellykket!", "Deploy test failed at step \"{step}\"" : "Distribusjonstesten feilet på trinn \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", - "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", - "More info" : "Mer info", + "More information" : "Mer informasjon", "Download ExApp logs" : "Last ned ExApp logger", - "Remove test ExApp" : "Fjern test ExApp", - "Start Deploy test" : "Start distribusjonstest", - "Stop Deploy test" : "Stopp distribusjonstest", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", "Remove" : "Fjern", "From" : "Fra", "To" : "Til", "Add" : "Legg til", - "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", - "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy autentiseringspassord", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", - "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", "DaemonConfig successfully registered" : "DaemonKonfigurasjon registrert", "Failed to register DaemonConfig. Check the logs" : "Registrering av DaemonKonfigurasjon feilet. Sjekk loggene.", "DaemonConfig successfully updated" : "DaemonKonfigurasjon oppdatert", "Failed to update DaemonConfig. Check the logs" : "Oppdatering av DaemonKonfigurasjon feilet. Sjekk loggene.", - "Edit Deploy Daemon" : "Rediger distribuerings-daemon", - "Register Deploy Daemon" : "Registrer distribuerings-daemon", + "Failed to connect to Daemon. Check the logs" : "Kobling til daemonen feilet. Sjekk loggene.", + "Failed to check connection to Daemon. Check the logs" : "Sjekking av forbindelsen til daemonen feilet. Sjekk loggene.", "Daemon configuration template" : "Mal for konfigurasjon av daemon", - "Select daemon configuration template" : "Velg mal for konfigurasjon av daemon", "Daemon registration form" : "Registreringsskjema for daemon", - "Unique Deploy Daemon Name" : "Unikt navn på distribuerings-daemon", "Display name" : "Visningsnavn", "Deployment method" : "Distribueringsmetode", - "Select daemon deploy method" : "Velg metode for daemon-distribuering", "Daemon host" : "Daemon-vert", - "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", - "Set daemon as default" : "Angi daemon som standard", - "Set as default daemon" : "Angi som standard daemon", - "Enable https" : "Aktiver https", - "Show deploy config" : "Vis konfigurasjon for distribuering", - "Hide deploy config" : "Skjul konfigurasjon for distribuering", "Disabled" : "Deaktivert", - "Additional option" : "Ytterligere alternativ", + "Compute device" : "Beregningsenhet", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", "Option key (unique, e.g. my_key)" : "Alternativnøkkel (unik, f.eks. min_nøkkel)", @@ -132,9 +89,14 @@ "Confirm" : "Bekreft", "Save" : "Lagre", "Register" : "Registrer", - "Check connection" : "Sjekk forbindelsen", "External Apps" : "Eksterne apper", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI-prosjektet er et spennende initiativ som har som mål å revolusjonere måten applikasjoner utvikles for Nextcloud.", + "Deploy Daemons" : "Distribuer daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdaemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Distribuerings-daemons. Distribuerings-daemon (DaemonConfig) er en ExApps orkestreringsdemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standard distribuerings-daemon er ikke tilgjengelig. Vennligst verifiser dens konfigurasjon.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Spesifiser retningslinjer for omstart av beholder, f.eks. 'alltid' for å sikre at ExApp kjører etter omstart av daemonserveren.", + "This settings changes are reflected only for newly created containers" : "Disse endringene i innstillingene gjenspeiles bare for nyopprettede beholdere.", "{license}-licensed" : "{license}-lisensiert", "Update to {version}" : "Oppdater til {version}", "Delete data on remove" : "Slett data ved fjerning", @@ -164,12 +126,51 @@ "No apps found" : "Ingen apper funnet", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp har en oppdatering tilgjengelig","%n apper har en oppdatering tilgjengelig"], "_Update_::_Update all_" : ["Oppdater","Oppdater alle"], + "Deploy Daemon" : "Distribuerings-daemon", "Type" : "Type", "Display Name" : "Visningsnavn", + "GPUs support" : "Støtte for GPUer", + "Are you sure you want delete Deploy Daemon" : "Er du sikker på at du vil slette distribuerings-daemon?", + "All ExApps on this daemon will be removed" : "Alle ExApps på denne daemonen blir fjernet", + "All ExApps installed on this daemon will be removed" : "Alle ExApps installert på denne daemonen blir fjernet", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manuell-installasjon\" distribuerings-daemon kan ikke settes som standard", + "Failed to save admin options. Check the logs" : "Lagring av administrasjonsalternativer feilet. Se loggene.", + "Deploy daemon config details" : "Konfigurasjonsdetaljer for distribuerings-daemon", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manuell installasjon-daemon vanligvis brukt for utvikling. Den kan ikke angis som standard daemon.", + "Deploy config" : "Konfigurasjon for distribuering", + "Verify connection" : "Verifiser forbindelse", + "No Deploy daemons configured" : "Ingen distribuerings-daemoner konfigurert", + "Register a custom one or setup from available templates" : "Registrer en tilpasset en eller sett opp fra tilgjengelige maler", + "Register Daemon" : "Registrer daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI vil prøve å installere det lille skjelettet ExApp for å verifisere Daemon konfigurert riktig og distribusjonstrinnene passerer.", + "The following Deploy test checks must be passed to succeed:" : "Følgende distribusjonstestsjekker må bestås for å lykkes:", + "More info" : "Mer info", + "Remove test ExApp" : "Fjern test ExApp", + "Start Deploy test" : "Start distribusjonstest", + "Stop Deploy test" : "Stopp distribusjonstest", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp er uregistrert og konteineren fjernes på \"Stopp distribusjonstest\"", + "Hostname to access ExApps" : "Vertsnavn for å få tilgang til ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Vertsnavn eller bane for å få tilgang til Docker-bakgrunnsprosessen (f.eks. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "En daemon med dette navnet finnes allerede", + "Password must be at least 12 characters long" : "Passordet må bestå av minst 12 tegn", "With https enabled network is set to host" : "Med https aktivert er nettverk satt til å være vert", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Endringer vil bare bli brukt for nylig installerte ExApps. For eksisterende ExApps bør Docker-konteinere opprettes på nytt.", + "URL should start with http:// or https://" : "URL-adressen skal starte med http:// eller https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "For HTTPS-daemon bør Nextcloud URL være HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle tilgjengelige GPU-enheter på daemon-verten vil bli bedt om å bli aktivert i ExApp-beholdere av Docker.", + "Edit Deploy Daemon" : "Rediger distribuerings-daemon", + "Register Deploy Daemon" : "Registrer distribuerings-daemon", + "Select daemon configuration template" : "Velg mal for konfigurasjon av daemon", + "Unique Deploy Daemon Name" : "Unikt navn på distribuerings-daemon", + "Select daemon deploy method" : "Velg metode for daemon-distribuering", + "Set daemon as default" : "Angi daemon som standard", + "Set as default daemon" : "Angi som standard daemon", + "Enable https" : "Aktiver https", + "Show deploy config" : "Vis konfigurasjon for distribuering", + "Hide deploy config" : "Skjul konfigurasjon for distribuering", "Network" : "Nettverk", "Docker network name" : "Docker-nettverksnavn", + "Additional option" : "Ytterligere alternativ", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dine apper", "Documentation" : "Dokumentasjo", diff --git a/l10n/nl.js b/l10n/nl.js index ba19cff9..d1a668a7 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -25,29 +25,17 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI deploy daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Standaard AppAPI deploy daemon niet ingesteld. Registreer een standaard deploy daemon bij de instellingen om externe applicaties (ExApps) te installeren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standaard deploy daemon \"%s\" is niet toegankelijk. Controleer de daemon configuratie.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standaard deploy daemon gebruikt geen HaRP. Overweeg een upgrade van de deploy daemon voor betere prestaties.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbeter jouw Nextcloud met AppAPI en haar speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud ecosysteem bedoeld om het proces voor applicatie ontwikkeling, deployment en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie dat ontwikkelaars de mogelijkheid geeft applicaties te bouwen met andere programmeertalen dan het voor Nextcloud traditioneel gebruikte PHP.\n\n_We helpen je graag bij het ontwikkelen van een applicatie_\n\n### Ondersteuning\n\nElke ondersteuning van dit project wordt zeer op prijs gesteld:\n\n- ⭐ Star onze repository op GitHub\n- ❗ Meld een issue of maak een feature request aan\n- 💁 Los een issue op en maak een pull request aan\n- 🧑‍💻 Bouw je eigen applicatie met behulp van AppAPI.\n\nWe zijn heel opgetogen over de toekomst van het AppAPI project en haar potentie om de manier van applicatie ontwikkeling voor NextCloud te verbeteren. \n\nNu we beginnen aan deze uitdaging nodigen we jou - ontwikkelaar, denker, bouwer of visionair - graag uit om met ons een meer veelzijdig, stabiel en veilig app landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn van onschatbare waarde voor ons*", "External Apps management" : "External Apps beheer", "Admin options saved" : "Admin opties opgeslagen", "Failed to save admin options" : "Kon admin opties niet opslaan", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuraie.", "ExApp init timeout (minutes)" : "ExApp init timeout (minuten).", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialisatieproces timeout waarna AppAPI het proces zal markeren als gefaald.", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp container beleid voor herstart", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geef container herstart beleid op, bijv. 'altijd' om er zeker van te zijn dat ExApp draait na een reboot van de daemon server.", - "This settings changes are reflected only for newly created containers" : "Verandering van deze instellingen hebben alleen betrekking op nieuw aangemaakte containers", - "Are you sure you want delete Deploy Daemon" : "Weet je zeker dat je Deploy Daemon wilt verwijderen", - "All ExApps on this daemon will be removed" : "Alle ExApps van deze daemon worden verwijderd", - "All ExApps installed on this daemon will be removed" : "Alle ExApps geinstalleerd bij deze daemon zullen worden verwijderd", "Cancel" : "Annuleren", "Delete" : "Verwijder", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon kan niet als standaard worden ingesteld", - "Failed to save admin options. Check the logs" : "Kon admin opties niet opslaan. Check de logs", "Password confirmation failed" : "Wachtwoordbevestiging niet gelukt", "Default" : "Standaard", "Set as default" : "Stel in als standaard", @@ -55,31 +43,20 @@ OC.L10N.register( "Docker registries" : "Docker registries", "Edit" : "Bewerken", "Daemon connection successful" : "Verbinding maken met Daemon gelukt", - "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", - "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Unlimited" : "Ongelimiteerd", - "Deploy daemon config details" : "Deploy Daemon configuratie details", - "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon wordt voornamelijk gebruikt voor ontwikkelwerkzaamheden. Het kan niet worden ingesteld als standaard daemon.", "ExApps installed" : "ExApps geinstalleerd", "Name" : "Naam", "Protocol" : "Protocol", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "ExApp directie communicatie (FRP uitgeschakeld)", - "Deploy config" : "Deploy configuratie", "Docker network" : "Docker netwerk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy wachtwoord", - "GPUs support" : "GPUs support", - "Compute device" : "Compute apparaat", "Memory limit" : "Geheugenlimiet", "Additional options" : "Additionele opties", - "Verify connection" : "Verifieer verbinding", + "Check connection" : "Controleer verbinding", "Registered Deploy daemons list" : "Lijst van geregistreerde Deploy Daemons", - "No Deploy daemons configured" : "Geen Deploy Daemons geconfigureerd", - "Register a custom one or setup from available templates" : "Registreer met de hand of gebruik een van de beschikbare templates", - "Register Daemon" : "Registreer Daemon", "Register ExApp in Nextcloud" : "Registreer ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Controleer of de ExApp is geregistreerd bij Nextcloud voor deployment", "Image pull" : "Image pull", @@ -95,78 +72,46 @@ OC.L10N.register( "Only if ExApp container is preset" : "Alleen als de ExApp container vooraf is ingesteld", "Deploy test passed successfully!" : "Deploy test geslaagd!", "Deploy test failed at step \"{step}\"" : "Deploy test niet geslaagd. Fout bij stap \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI zal proberen een klein ExApp-je te installeren om te controleren of de Daemon goed is geconfigureerd en de deployment stappen goed worden doorlopen.", - "The following Deploy test checks must be passed to succeed:" : "De volgende Deploy test checks moeten slagen: ", - "More info" : "Meer info", + "More information" : "Meer informatie", "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Verwijder test ExApp", - "Start Deploy test" : "Start Deploy test", - "Stop Deploy test" : "Stop Deploy test", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp registratie en container zijn verwijderd bij \"Stop deploy test\"", "Please enter a registry domain" : "Vul een registry domain in", - "From cannot be \"local\"" : "\"Van\" mag niet \"local\" zijn", "This registry mapping already exists" : "Deze registry mapping bestaat al", - "From and To cannot be the same" : "Van en Naar mogen niet hetzelfde zijn", "Docker registry mapping added" : "Docker-registertoewijzing toegevoegd", "Error adding Docker registry mapping" : "Fout bij het toevoegen van Docker-registertoewijzing", "Docker registry mapping removed" : "Docker-registertoewijzing verwijderd", "Error removing Docker registry mapping" : "Fout bij het verwijderen van Docker-registertoewijzing", "Override Docker registries" : "Override Docker registries", - "Configure Docker registry override mappings for selected daemon." : "Configureer Docker registry override mappings voor de geselecteerde daemon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "De overeenkomende source registry in ExApp info.xml zal worden overschreven tijdens deploy (image pull stap).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dit is handig wanneer je een aangepaste Docker registry wilt gebruiken, zoals een private Docker registry of om een andere Docker registry te gebruiken voor (acceptatie)tests.", "Image pull will be skipped" : "Image pull zal worden overgeslagen", "Remove" : "Verwijderen", - "No custom Docker registries configured" : "Geen aangepaste Docker registries geconfigureerd", "Add registry override mapping" : "Voeg registry override mapping toe", "From" : "Van", "registry URL (e.g. ghcr.io)" : "registry URL (bijv. ghcr.io)", "To" : "Naar", "registry URL (e.g. docker.io)" : "registry URL (bijv. docker.io)", "Add" : "Toevoegen", - "Hostname to access ExApps" : "Hostname voor toegang tot ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "De hostname (en poortnummer) waarop {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server, bijv. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "De hostname (en poortnummer) of het pad waar {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server. Het kan ook het pad naar de docker socket zijn (bijv. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon met deze naam bestaat al", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "De geheime sleutel voor de HaRP container communicatie (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authenticatie wachtwoord", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Veranderingen zijn alleen van toepassing op nieuw geinstalleerde ExApps. Voor bestaande ExApps zullen de containers opnieuw moeten worden aangemaakt.", - "The docker network that the deployed ex-apps would use." : "Het docker netwerk dat de deployed ExApps zouden gebruiken", - "URL should start with http:// or https://" : "URL moet beginnen met http:// of https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Voor een HTTPS daemon moet de Nextcloud URL HTTPS gebaseerd zijn", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle beschikbare GPUs op de daemon host zullen door Docker worden opgevraagd om ingeschakeld te kunnen worden in ExApps.", "DaemonConfig successfully registered" : "DaemonConfig registratie gelukt", "Failed to register DaemonConfig. Check the logs" : "Registratie van DaemonConfig niet gelukt. Controleer de logs", "DaemonConfig successfully updated" : "Bijwerken van DaemonConfig gelukt ", "Failed to update DaemonConfig. Check the logs" : "Bijwerken van DaemonConfig niet gelukt. Controleer de logs", - "Edit Deploy Daemon" : "Deploy Demon aanpassen", - "Register Deploy Daemon" : "Deploy Daemon registreren", + "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", + "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Daemon configuration template" : "Daemon configuratie template", - "Select daemon configuration template" : "Selecteer daemon configuratie template", "Daemon registration form" : "Daemon registratie formulier", - "Unique Deploy Daemon Name" : "Unieke naam voor Deploy Daemon", "Display name" : "Weergave naam", "Deployment method" : "Deployment methode", - "Select daemon deploy method" : "Selecteer daemon deployment methode", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP gedeelde sleutel (shared key)", - "Password must be at least 12 characters long" : "Wachtwoord moet ten minste 12 tekens lang zijn", - "Set daemon as default" : "Stel daemon in als standaard", - "Set as default daemon" : "Stel in als standaard daemon", - "Enable https" : "HTTPS inschakelen", - "Show deploy config" : "Toon deploy configuratie", - "Hide deploy config" : "Verberg deploy configuratie", "Enable HaRP" : "HaRP inschakelen", "FRP server address" : "FRP server adres", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Het adres (host:poort) van de FRP server die bereikbaar zou moeten zijn voor de ExApp via het netwerk gedefinieerd in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy poort", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Het poortnummer in HaRP waar de docker socket proxy mee verbindt. Deze poort moet open staan. Alleen de ingebouwde poort hoeft niet open te staan of aangepast te worden.", "Disable FRP" : "FRB uitschakelen", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Vlag alleen voor geavanceerde installaties. Schakelt de FRP tunnel tussen ExApps en HaRP uit.", "Disabled" : "Uitgeschakeld", "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", - "Additional option" : "Additionele optie", + "Compute device" : "Compute apparaat", "Add additional option" : "Voeg additionele optie toe", "Option key (unique)" : "Optie key (uniek)", "Option key (unique, e.g. my_key)" : "Optie key (uniek, bijv. mijn_key)", @@ -176,10 +121,15 @@ OC.L10N.register( "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", - "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef je Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n### Gebundelde App\n\n**Vanaf Nextcloud 30.0.1 is deze applicatie opgenomen in het standaard Nextcloud-pakket.**\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werkeen ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak een Pull Request aan\n- 🧑‍💻 Ontwikkel een eigen applicatie met AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuraie.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geef container herstart beleid op, bijv. 'altijd' om er zeker van te zijn dat ExApp draait na een reboot van de daemon server.", + "This settings changes are reflected only for newly created containers" : "Verandering van deze instellingen hebben alleen betrekking op nieuw aangemaakte containers", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Delete data on remove" : "Bij verwijderen ook data verwijderen", @@ -209,12 +159,51 @@ OC.L10N.register( "No apps found" : "Geen apps gevonden", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp heeft een update beschikbaar","%n apps hebben een update beschikbaar"], "_Update_::_Update all_" : ["Update","Update alles"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "Type", "Display Name" : "Weergavenaam", + "GPUs support" : "GPUs support", + "Are you sure you want delete Deploy Daemon" : "Weet je zeker dat je Deploy Daemon wilt verwijderen", + "All ExApps on this daemon will be removed" : "Alle ExApps van deze daemon worden verwijderd", + "All ExApps installed on this daemon will be removed" : "Alle ExApps geinstalleerd bij deze daemon zullen worden verwijderd", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon kan niet als standaard worden ingesteld", + "Failed to save admin options. Check the logs" : "Kon admin opties niet opslaan. Check de logs", + "Deploy daemon config details" : "Deploy Daemon configuratie details", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon wordt voornamelijk gebruikt voor ontwikkelwerkzaamheden. Het kan niet worden ingesteld als standaard daemon.", + "Deploy config" : "Deploy configuratie", + "Verify connection" : "Verifieer verbinding", + "No Deploy daemons configured" : "Geen Deploy Daemons geconfigureerd", + "Register a custom one or setup from available templates" : "Registreer met de hand of gebruik een van de beschikbare templates", + "Register Daemon" : "Registreer Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI zal proberen een klein ExApp-je te installeren om te controleren of de Daemon goed is geconfigureerd en de deployment stappen goed worden doorlopen.", + "The following Deploy test checks must be passed to succeed:" : "De volgende Deploy test checks moeten slagen: ", + "More info" : "Meer info", + "Remove test ExApp" : "Verwijder test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp registratie en container zijn verwijderd bij \"Stop deploy test\"", + "Hostname to access ExApps" : "Hostname voor toegang tot ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname of pad naar Docker daemon socket (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon met deze naam bestaat al", + "Password must be at least 12 characters long" : "Wachtwoord moet ten minste 12 tekens lang zijn", "With https enabled network is set to host" : "Met https ingeschakeld netwerk is ingesteld op host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Veranderingen zijn alleen van toepassing op nieuw geinstalleerde ExApps. Voor bestaande ExApps zullen de containers opnieuw moeten worden aangemaakt.", + "URL should start with http:// or https://" : "URL moet beginnen met http:// of https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Voor een HTTPS daemon moet de Nextcloud URL HTTPS gebaseerd zijn", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle beschikbare GPUs op de daemon host zullen door Docker worden opgevraagd om ingeschakeld te kunnen worden in ExApps.", + "Edit Deploy Daemon" : "Deploy Demon aanpassen", + "Register Deploy Daemon" : "Deploy Daemon registreren", + "Select daemon configuration template" : "Selecteer daemon configuratie template", + "Unique Deploy Daemon Name" : "Unieke naam voor Deploy Daemon", + "Select daemon deploy method" : "Selecteer daemon deployment methode", + "Set daemon as default" : "Stel daemon in als standaard", + "Set as default daemon" : "Stel in als standaard daemon", + "Enable https" : "HTTPS inschakelen", + "Show deploy config" : "Toon deploy configuratie", + "Hide deploy config" : "Verberg deploy configuratie", "Network" : "Netwerk", "Docker network name" : "Docker netwerk naam", + "Additional option" : "Additionele optie", "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", diff --git a/l10n/nl.json b/l10n/nl.json index ed0ecfc8..c984039f 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -23,29 +23,17 @@ "AppAPI deploy daemon" : "AppAPI deploy daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Standaard AppAPI deploy daemon niet ingesteld. Registreer een standaard deploy daemon bij de instellingen om externe applicaties (ExApps) te installeren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standaard deploy daemon \"%s\" is niet toegankelijk. Controleer de daemon configuratie.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI standaard deploy daemon gebruikt geen HaRP. Overweeg een upgrade van de deploy daemon voor betere prestaties.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbeter jouw Nextcloud met AppAPI en haar speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud ecosysteem bedoeld om het proces voor applicatie ontwikkeling, deployment en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie dat ontwikkelaars de mogelijkheid geeft applicaties te bouwen met andere programmeertalen dan het voor Nextcloud traditioneel gebruikte PHP.\n\n_We helpen je graag bij het ontwikkelen van een applicatie_\n\n### Ondersteuning\n\nElke ondersteuning van dit project wordt zeer op prijs gesteld:\n\n- ⭐ Star onze repository op GitHub\n- ❗ Meld een issue of maak een feature request aan\n- 💁 Los een issue op en maak een pull request aan\n- 🧑‍💻 Bouw je eigen applicatie met behulp van AppAPI.\n\nWe zijn heel opgetogen over de toekomst van het AppAPI project en haar potentie om de manier van applicatie ontwikkeling voor NextCloud te verbeteren. \n\nNu we beginnen aan deze uitdaging nodigen we jou - ontwikkelaar, denker, bouwer of visionair - graag uit om met ons een meer veelzijdig, stabiel en veilig app landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn van onschatbare waarde voor ons*", "External Apps management" : "External Apps beheer", "Admin options saved" : "Admin opties opgeslagen", "Failed to save admin options" : "Kon admin opties niet opslaan", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuraie.", "ExApp init timeout (minutes)" : "ExApp init timeout (minuten).", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialisatieproces timeout waarna AppAPI het proces zal markeren als gefaald.", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp container beleid voor herstart", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geef container herstart beleid op, bijv. 'altijd' om er zeker van te zijn dat ExApp draait na een reboot van de daemon server.", - "This settings changes are reflected only for newly created containers" : "Verandering van deze instellingen hebben alleen betrekking op nieuw aangemaakte containers", - "Are you sure you want delete Deploy Daemon" : "Weet je zeker dat je Deploy Daemon wilt verwijderen", - "All ExApps on this daemon will be removed" : "Alle ExApps van deze daemon worden verwijderd", - "All ExApps installed on this daemon will be removed" : "Alle ExApps geinstalleerd bij deze daemon zullen worden verwijderd", "Cancel" : "Annuleren", "Delete" : "Verwijder", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon kan niet als standaard worden ingesteld", - "Failed to save admin options. Check the logs" : "Kon admin opties niet opslaan. Check de logs", "Password confirmation failed" : "Wachtwoordbevestiging niet gelukt", "Default" : "Standaard", "Set as default" : "Stel in als standaard", @@ -53,31 +41,20 @@ "Docker registries" : "Docker registries", "Edit" : "Bewerken", "Daemon connection successful" : "Verbinding maken met Daemon gelukt", - "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", - "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Unlimited" : "Ongelimiteerd", - "Deploy daemon config details" : "Deploy Daemon configuratie details", - "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Standaard daemon. ExApp zal hierop worden geinstalleerd", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon wordt voornamelijk gebruikt voor ontwikkelwerkzaamheden. Het kan niet worden ingesteld als standaard daemon.", "ExApps installed" : "ExApps geinstalleerd", "Name" : "Naam", "Protocol" : "Protocol", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "ExApp directie communicatie (FRP uitgeschakeld)", - "Deploy config" : "Deploy configuratie", "Docker network" : "Docker netwerk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy wachtwoord", - "GPUs support" : "GPUs support", - "Compute device" : "Compute apparaat", "Memory limit" : "Geheugenlimiet", "Additional options" : "Additionele opties", - "Verify connection" : "Verifieer verbinding", + "Check connection" : "Controleer verbinding", "Registered Deploy daemons list" : "Lijst van geregistreerde Deploy Daemons", - "No Deploy daemons configured" : "Geen Deploy Daemons geconfigureerd", - "Register a custom one or setup from available templates" : "Registreer met de hand of gebruik een van de beschikbare templates", - "Register Daemon" : "Registreer Daemon", "Register ExApp in Nextcloud" : "Registreer ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Controleer of de ExApp is geregistreerd bij Nextcloud voor deployment", "Image pull" : "Image pull", @@ -93,78 +70,46 @@ "Only if ExApp container is preset" : "Alleen als de ExApp container vooraf is ingesteld", "Deploy test passed successfully!" : "Deploy test geslaagd!", "Deploy test failed at step \"{step}\"" : "Deploy test niet geslaagd. Fout bij stap \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI zal proberen een klein ExApp-je te installeren om te controleren of de Daemon goed is geconfigureerd en de deployment stappen goed worden doorlopen.", - "The following Deploy test checks must be passed to succeed:" : "De volgende Deploy test checks moeten slagen: ", - "More info" : "Meer info", + "More information" : "Meer informatie", "Download ExApp logs" : "Download ExApp logs", - "Remove test ExApp" : "Verwijder test ExApp", - "Start Deploy test" : "Start Deploy test", - "Stop Deploy test" : "Stop Deploy test", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp registratie en container zijn verwijderd bij \"Stop deploy test\"", "Please enter a registry domain" : "Vul een registry domain in", - "From cannot be \"local\"" : "\"Van\" mag niet \"local\" zijn", "This registry mapping already exists" : "Deze registry mapping bestaat al", - "From and To cannot be the same" : "Van en Naar mogen niet hetzelfde zijn", "Docker registry mapping added" : "Docker-registertoewijzing toegevoegd", "Error adding Docker registry mapping" : "Fout bij het toevoegen van Docker-registertoewijzing", "Docker registry mapping removed" : "Docker-registertoewijzing verwijderd", "Error removing Docker registry mapping" : "Fout bij het verwijderen van Docker-registertoewijzing", "Override Docker registries" : "Override Docker registries", - "Configure Docker registry override mappings for selected daemon." : "Configureer Docker registry override mappings voor de geselecteerde daemon.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "De overeenkomende source registry in ExApp info.xml zal worden overschreven tijdens deploy (image pull stap).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dit is handig wanneer je een aangepaste Docker registry wilt gebruiken, zoals een private Docker registry of om een andere Docker registry te gebruiken voor (acceptatie)tests.", "Image pull will be skipped" : "Image pull zal worden overgeslagen", "Remove" : "Verwijderen", - "No custom Docker registries configured" : "Geen aangepaste Docker registries geconfigureerd", "Add registry override mapping" : "Voeg registry override mapping toe", "From" : "Van", "registry URL (e.g. ghcr.io)" : "registry URL (bijv. ghcr.io)", "To" : "Naar", "registry URL (e.g. docker.io)" : "registry URL (bijv. docker.io)", "Add" : "Toevoegen", - "Hostname to access ExApps" : "Hostname voor toegang tot ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "De hostname (en poortnummer) waarop {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server, bijv. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "De hostname (en poortnummer) of het pad waar {name} te vinden is. Dit hoeft geen publieke host te zijn, enkel een host die bereikbaar is voor de Nextcloud server. Het kan ook het pad naar de docker socket zijn (bijv. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon met deze naam bestaat al", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "De geheime sleutel voor de HaRP container communicatie (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authenticatie wachtwoord", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Veranderingen zijn alleen van toepassing op nieuw geinstalleerde ExApps. Voor bestaande ExApps zullen de containers opnieuw moeten worden aangemaakt.", - "The docker network that the deployed ex-apps would use." : "Het docker netwerk dat de deployed ExApps zouden gebruiken", - "URL should start with http:// or https://" : "URL moet beginnen met http:// of https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Voor een HTTPS daemon moet de Nextcloud URL HTTPS gebaseerd zijn", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle beschikbare GPUs op de daemon host zullen door Docker worden opgevraagd om ingeschakeld te kunnen worden in ExApps.", "DaemonConfig successfully registered" : "DaemonConfig registratie gelukt", "Failed to register DaemonConfig. Check the logs" : "Registratie van DaemonConfig niet gelukt. Controleer de logs", "DaemonConfig successfully updated" : "Bijwerken van DaemonConfig gelukt ", "Failed to update DaemonConfig. Check the logs" : "Bijwerken van DaemonConfig niet gelukt. Controleer de logs", - "Edit Deploy Daemon" : "Deploy Demon aanpassen", - "Register Deploy Daemon" : "Deploy Daemon registreren", + "Failed to connect to Daemon. Check the logs" : "Verbinden met Daemon niet gelukt. Controleer de logs", + "Failed to check connection to Daemon. Check the logs" : "Controleren van verbinding met Daemon niet gelukt. Controleer de logs", "Daemon configuration template" : "Daemon configuratie template", - "Select daemon configuration template" : "Selecteer daemon configuratie template", "Daemon registration form" : "Daemon registratie formulier", - "Unique Deploy Daemon Name" : "Unieke naam voor Deploy Daemon", "Display name" : "Weergave naam", "Deployment method" : "Deployment methode", - "Select daemon deploy method" : "Selecteer daemon deployment methode", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP gedeelde sleutel (shared key)", - "Password must be at least 12 characters long" : "Wachtwoord moet ten minste 12 tekens lang zijn", - "Set daemon as default" : "Stel daemon in als standaard", - "Set as default daemon" : "Stel in als standaard daemon", - "Enable https" : "HTTPS inschakelen", - "Show deploy config" : "Toon deploy configuratie", - "Hide deploy config" : "Verberg deploy configuratie", "Enable HaRP" : "HaRP inschakelen", "FRP server address" : "FRP server adres", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Het adres (host:poort) van de FRP server die bereikbaar zou moeten zijn voor de ExApp via het netwerk gedefinieerd in 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy poort", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Het poortnummer in HaRP waar de docker socket proxy mee verbindt. Deze poort moet open staan. Alleen de ingebouwde poort hoeft niet open te staan of aangepast te worden.", "Disable FRP" : "FRB uitschakelen", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Vlag alleen voor geavanceerde installaties. Schakelt de FRP tunnel tussen ExApps en HaRP uit.", "Disabled" : "Uitgeschakeld", "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", - "Additional option" : "Additionele optie", + "Compute device" : "Compute apparaat", "Add additional option" : "Voeg additionele optie toe", "Option key (unique)" : "Optie key (uniek)", "Option key (unique, e.g. my_key)" : "Optie key (uniek, bijv. mijn_key)", @@ -174,10 +119,15 @@ "Confirm" : "Bevestigen", "Save" : "Opslaan", "Register" : "Aanmelden", - "Check connection" : "Controleer verbinding", "External Apps" : "Externe apps", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Geef je Nextcloud een boost met AppAPI en zijn speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud-ecosysteem dat is ontworpen om het proces van applicatieontwikkeling, implementatie en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie waarmee ontwikkelaars applicaties kunnen maken met behulp van een verscheidenheid aan programmeertalen, niet beperkt tot PHP, dat traditioneel werd gebruikt bij de ontwikkeling van Nextcloud.\n\n### Gebundelde App\n\n**Vanaf Nextcloud 30.0.1 is deze applicatie opgenomen in het standaard Nextcloud-pakket.**\n\n### Ondersteuning\n\nWij waarderen elke steun voor dit project:\n\n- ⭐ Geef ons werkeen ster op GitHub\n- ❗ Meld een probleem- of functieverzoek\n- 💁 Los een probleem op en maak een Pull Request aan\n- 🧑‍💻 Ontwikkel een eigen applicatie met AppAPI\n\nWe zijn oprecht enthousiast over de toekomst van het AppAPI-project en het potentieel ervan om de manier waarop applicaties worden ontwikkeld en ervaren binnen Nextcloud te transformeren.\n\nTerwijl we aan deze reis beginnen, nodigen we jullie - ontwikkelaars, denkers, makers en visionairs - van harte uit om samen met ons een veelzijdiger, stabieler en veiliger app-landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn voor ons van onschatbare waarde.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Het AppAPI project is een uitdagend initiatief dat zich als doel heeft gesteld de manier waarop applicaties voor Nextcloud worden ontwikkeld revolutionair te veranderen.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) is een ExApps orchestratie daemon.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Standaard Deploy Daemon is niet toegankelijk. Controleer de configuraie.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Geef container herstart beleid op, bijv. 'altijd' om er zeker van te zijn dat ExApp draait na een reboot van de daemon server.", + "This settings changes are reflected only for newly created containers" : "Verandering van deze instellingen hebben alleen betrekking op nieuw aangemaakte containers", "{license}-licensed" : "{license}-gelicenseerd", "Update to {version}" : "Update naar {version}", "Delete data on remove" : "Bij verwijderen ook data verwijderen", @@ -207,12 +157,51 @@ "No apps found" : "Geen apps gevonden", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp heeft een update beschikbaar","%n apps hebben een update beschikbaar"], "_Update_::_Update all_" : ["Update","Update alles"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "Type", "Display Name" : "Weergavenaam", + "GPUs support" : "GPUs support", + "Are you sure you want delete Deploy Daemon" : "Weet je zeker dat je Deploy Daemon wilt verwijderen", + "All ExApps on this daemon will be removed" : "Alle ExApps van deze daemon worden verwijderd", + "All ExApps installed on this daemon will be removed" : "Alle ExApps geinstalleerd bij deze daemon zullen worden verwijderd", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Deploy Daemon kan niet als standaard worden ingesteld", + "Failed to save admin options. Check the logs" : "Kon admin opties niet opslaan. Check de logs", + "Deploy daemon config details" : "Deploy Daemon configuratie details", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Manual install daemon wordt voornamelijk gebruikt voor ontwikkelwerkzaamheden. Het kan niet worden ingesteld als standaard daemon.", + "Deploy config" : "Deploy configuratie", + "Verify connection" : "Verifieer verbinding", + "No Deploy daemons configured" : "Geen Deploy Daemons geconfigureerd", + "Register a custom one or setup from available templates" : "Registreer met de hand of gebruik een van de beschikbare templates", + "Register Daemon" : "Registreer Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI zal proberen een klein ExApp-je te installeren om te controleren of de Daemon goed is geconfigureerd en de deployment stappen goed worden doorlopen.", + "The following Deploy test checks must be passed to succeed:" : "De volgende Deploy test checks moeten slagen: ", + "More info" : "Meer info", + "Remove test ExApp" : "Verwijder test ExApp", + "Start Deploy test" : "Start Deploy test", + "Stop Deploy test" : "Stop Deploy test", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp registratie en container zijn verwijderd bij \"Stop deploy test\"", + "Hostname to access ExApps" : "Hostname voor toegang tot ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Hostname of pad naar Docker daemon socket (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon met deze naam bestaat al", + "Password must be at least 12 characters long" : "Wachtwoord moet ten minste 12 tekens lang zijn", "With https enabled network is set to host" : "Met https ingeschakeld netwerk is ingesteld op host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Veranderingen zijn alleen van toepassing op nieuw geinstalleerde ExApps. Voor bestaande ExApps zullen de containers opnieuw moeten worden aangemaakt.", + "URL should start with http:// or https://" : "URL moet beginnen met http:// of https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Voor een HTTPS daemon moet de Nextcloud URL HTTPS gebaseerd zijn", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Alle beschikbare GPUs op de daemon host zullen door Docker worden opgevraagd om ingeschakeld te kunnen worden in ExApps.", + "Edit Deploy Daemon" : "Deploy Demon aanpassen", + "Register Deploy Daemon" : "Deploy Daemon registreren", + "Select daemon configuration template" : "Selecteer daemon configuratie template", + "Unique Deploy Daemon Name" : "Unieke naam voor Deploy Daemon", + "Select daemon deploy method" : "Selecteer daemon deployment methode", + "Set daemon as default" : "Stel daemon in als standaard", + "Set as default daemon" : "Stel in als standaard daemon", + "Enable https" : "HTTPS inschakelen", + "Show deploy config" : "Toon deploy configuratie", + "Hide deploy config" : "Verberg deploy configuratie", "Network" : "Netwerk", "Docker network name" : "Docker netwerk naam", + "Additional option" : "Additionele optie", "by {author}\n{license}" : "door {author}\n{license}", "Your apps" : "Jouw apps", "Documentation" : "Documentatie", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index afeaf29b..b8007d5a 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -7,6 +7,7 @@ OC.L10N.register( "Unlimited" : "Ubegrensa", "Name" : "Namn", "Host" : "Tenar", + "More information" : "Meir informasjon", "Disabled" : "Deaktivert", "Save" : "Lagre", "Visit website" : "Besøk nettstaden", diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index da134478..55d46bd6 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -5,6 +5,7 @@ "Unlimited" : "Ubegrensa", "Name" : "Namn", "Host" : "Tenar", + "More information" : "Meir informasjon", "Disabled" : "Deaktivert", "Save" : "Lagre", "Visit website" : "Besøk nettstaden", diff --git a/l10n/oc.js b/l10n/oc.js index cfefdd83..5c452dea 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Activada", + "More information" : "Mai d’informacions", "Remove" : "Suprimir", "From" : "De", "Add" : "Apondre", diff --git a/l10n/oc.json b/l10n/oc.json index c8849d08..40874689 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -7,6 +7,7 @@ "Host" : "Òste", "Nextcloud URL" : "URL Nextcloud", "Enabled" : "Activada", + "More information" : "Mai d’informacions", "Remove" : "Suprimir", "From" : "De", "Add" : "Apondre", diff --git a/l10n/pl.js b/l10n/pl.js index 9e3f3cf6..147e507a 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Demon wdrożeniowy AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Domyślny demon wdrożeniowy AppAPI nie jest ustawiony. Zarejestruj domyślny demon wdrożeniowy w ustawieniach, aby zainstalować aplikacje zewnętrzne (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Domyślny demon wdrożeniowy AppAPI \"%s\" jest niedostępny. Sprawdź konfigurację demona.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Domyślny demon wdrożeniowy AppAPI nie używa HaRP. Rozważ uaktualnienie do niego, aby uzyskać lepszą wydajność.", "Nextcloud AppAPI" : "AppAPI Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zwiększ możliwości swojego Nextclouda dzięki AppAPI i specjalnie zaprojektowanym aplikacjom.\n\n\nAppAPI to projekt w ekosystemie Nextcloud, którego celem jest usprawnienie i ulepszenie procesu\ntworzenia, wdrażania i zarządzania aplikacjami.\n\nWprowadza on nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, który tradycyjnie był używany w rozwoju Nextcloud.\n\nJeśli chcesz stworzyć aplikację, chętnie pomożemy i wesprzemy Cię.\n\n### Wsparcie\n\nDoceniamy wszelkie wsparcie dla tego projektu:\n- ⭐Dodaj gwiazdkę naszemu repozytorium na GitHub.\n- ❗Utwórz zgłoszenie lub prośbę o nową funkcję.\n- 💁 Rozwiąż zgłoszenie i wyślij Pull Request.\n- 🧑‍💻 Rozwijaj własną aplikację przy użyciu AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do transformacji sposobu, w jaki aplikacje są rozwijane i używane w Nextcloud.\n\nZapraszamy deweloperów, pomysłodawców, twórców i wizjonerów, aby dołączyli do nas w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego ekosystemu aplikacji.\n\n*Twoje pomysły, sugestie i wkład są dla nas niezwykle cenne.*", "External Apps management" : "Zarządzanie aplikacjami zewnętrznymi", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu, w jaki aplikacje są rozwijane dla Nextcloud poprzez wykorzystanie kontenerów Dockera.\nPozwala to na większy wybór języków programowania oraz przeniesienie kosztownych obliczeniowo zadań na inny serwer.", - "Deploy Daemons" : "Demony wdrożeniowe", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demony wdrożeniowe. Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Domyślny demon wdrożeniowy jest niedostępny. Sprawdź jego konfigurację.", "ExApp init timeout (minutes)" : "Limit czasu inicjalizacji ExApp (w minutach)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "ExApp init timeout" : "Limit czasu inicjalizacji ExApp", "ExApp container restart policy" : "Polityka ponownego uruchamiania kontenera ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Określ politykę ponownego uruchamiania kontenera, np. „always”, aby zapewnić działanie ExApp po restarcie serwera demona", - "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", - "Are you sure you want delete Deploy Daemon" : "Czy na pewno chcesz usunąć demona wdrożeniowego", - "All ExApps on this daemon will be removed" : "Wszystkie ExAppy na tym demonie zostaną usunięte", - "All ExApps installed on this daemon will be removed" : "Wszystkie ExAppy zainstalowane na tym demonie zostaną usunięte", "Cancel" : "Anuluj", "Delete" : "Usuń", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Demon wdrożeniowy „manual-install” nie może być ustawiony jako domyślny", - "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Rejestry Dockera", "Edit" : "Edycja", "Daemon connection successful" : "Połączenie z demonem powiodło się", - "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", - "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", "Unlimited" : "Bez limitu", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPU", - "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", - "Deploy Daemon" : "Uruchom demona", "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Ręczny demon instalacyjny zwykle używany do rozwoju. Nie może być ustawiony jako domyślny demon.", "ExApps installed" : "ExAppy zainstalowane", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Bezpośrednia komunikacja ExApp (FRP wyłączona)", - "Deploy config" : "Konfiguracja wdrożenia", + "Deploy options" : "Opcje wdrażania", "Docker network" : "Sieć Dockera", "Nextcloud URL" : "Adres URL Nextcloud", "HaProxy password" : "Hasło HaProxy", - "GPUs support" : "Obsługa procesorów graficznych", - "Compute device" : "Urządzenie obliczeniowe", "Memory limit" : "Limit pamięci", "CPU limit" : "Limit CPU ", "Additional options" : "Dodatkowe opcje", - "Verify connection" : "Sprawdź połączenie", + "Check connection" : "Sprawdź połączenie", "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", - "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", - "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", - "Register Daemon" : "Zarejestruj demona", "Register ExApp in Nextcloud" : "Zarejestruj ExApp w Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Sprawdź, czy ExApp jest zarejestrowany w Nextcloud przed wdrożeniem", "Image pull" : "Pobieranie obrazu", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Tylko jeśli kontener ExApp jest wstępnie ustawiony", "Deploy test passed successfully!" : "Test wdrożenia zakończony pomyślnie!", "Deploy test failed at step \"{step}\"" : "Test wdrożenia nie powiódł się na kroku \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", - "The following Deploy test checks must be passed to succeed:" : "Następujące testy wdrożenia muszą zostać zaliczone, aby zakończyć sukcesem:", - "More info" : "Więcej informacji", + "More information" : "Więcej informacji", "Download ExApp logs" : "Pobierz logi ExApp", - "Remove test ExApp" : "Usuń testowy ExApp", - "Start Deploy test" : "Rozpocznij test wdrożenia", - "Stop Deploy test" : "Zatrzymaj test wdrożenia", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp zostaje wyrejestrowany, a kontener usunięty przy „Zatrzymaj test wdrożenia”", "Please enter a registry domain" : "Proszę wprowadzić domenę rejestru", - "From cannot be \"local\"" : "Pole \"From\" nie może być ustawione na „local”", "This registry mapping already exists" : "To mapowanie rejestru już istnieje", - "From and To cannot be the same" : "\"From\" i \"To\" nie mogą być takie same", "Docker registry mapping added" : "Mapowanie rejestru Dockera zostało dodane", "Error adding Docker registry mapping" : "Błąd podczas dodawania mapowania rejestru Dockera", "Docker registry mapping removed" : "Mapowanie rejestru Dockera zostało usunięte", "Error removing Docker registry mapping" : "Błąd podczas usuwania mapowania rejestru Dockera", "Override Docker registries" : "Nadpisz rejestry Dockera", - "Configure Docker registry override mappings for selected daemon." : "Skonfiguruj nadpisanie mapowań rejestru Dockera dla wybranego demona", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Pasujący rejestr źródłowy w pliku info.xml ExApp zostanie nadpisany podczas wdrożenia (krok pobierania obrazu)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "To jest przydatne, jeśli chcesz użyć własnego rejestru Dockera, np. prywatnego rejestru Dockera lub innego rejestru Dockera do testów.", "Image pull will be skipped" : "Pobieranie obrazu zostanie pominięte", "Remove" : "Usuń", - "No custom Docker registries configured" : "Brak skonfigurowanych niestandardowych rejestrów Dockera", "Add registry override mapping" : "Dodaj mapowanie nadpisania rejestru", "From" : "Od", "registry URL (e.g. ghcr.io)" : "Adres URL rejestru (np. ghcr.io)", "To" : "Do", "registry URL (e.g. docker.io)" : "Adres URL rejestru (np. docker.io)", "Add" : "Dodaj", - "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Nazwa hosta (i port), pod którym dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud, np. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta (i port) lub ścieżka, pod którą dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud. Może to być również ścieżka do gniazda Dockera (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", - "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Klucz tajny do komunikacji kontenerów HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmiany zostaną zastosowane tylko do nowo zainstalowanych ExApp. Dla istniejących ExApps kontenery Dockera powinny zostać odtworzone.", - "The docker network that the deployed ex-apps would use." : "Sieć Dockera, której używałyby wdrożone ExApps.", - "URL should start with http:// or https://" : "Adres URL powinien zaczynać się od http:// lub https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Dla demona HTTPS adres URL Nextcloud powinien być HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Wszystkie dostępne urządzenia GPU na hoście demona zostaną poproszone o włączenie w kontenerach ExApp przez Dockera.", "DaemonConfig successfully registered" : "DaemonConfig został pomyślnie zarejestrowany", "Failed to register DaemonConfig. Check the logs" : "Nie udało się zarejestrować DaemonConfig. Sprawdź logi", "DaemonConfig successfully updated" : "DaemonConfig został pomyślnie zaktualizowany", "Failed to update DaemonConfig. Check the logs" : "Nie udało się zaktualizować DaemonConfig. Sprawdź logi", - "Edit Deploy Daemon" : "Edytuj Deploy Daemon", - "Register Deploy Daemon" : "Zarejestruj Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", + "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", "Daemon configuration template" : "Szablon konfiguracji Daemon", - "Select daemon configuration template" : "Wybierz szablon konfiguracji Daemon", "Daemon registration form" : "Formularz rejestracji Daemon", - "Unique Deploy Daemon Name" : "Unikalna nazwa Deploy Daemon", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", - "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "HaRP host" : "Host HaRP", "Daemon host" : "Host Daemon", "HaRP shared key" : "Klucz współdzielony HaRP", - "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", - "Set daemon as default" : "Ustaw demona jako domyślnego", - "Set as default daemon" : "Ustaw jako domyślnego demona", - "Enable https" : "Włącz https", - "Show deploy config" : "Pokaż konfigurację wdrożenia", - "Hide deploy config" : "Ukryj konfigurację wdrożenia", "Enable HaRP" : "Włącz HaRP", "FRP server address" : "Adres serwera FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adres (host:port) serwera FRP, który powinien być osiągalny przez ex-app w sieci zdefiniowanej w „Docker network”.", "Docker socket proxy port" : "Port proxy gniazda Dockera", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port w HaRP, do którego łączy się proxy gniazda Dockera. Powinien być wystawiony, ale dla wbudowanego nie jest to wymagane ani konieczne do zmiany.", "Disable FRP" : "Wyłącz FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flaga tylko dla zaawansowanych konfiguracji. Wyłącza tunel FRP pomiędzy ExApps a HaRP.", "Disabled" : "Wyłączone", "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", + "Compute device" : "Urządzenie obliczeniowe", "Memory limit (in MiB)" : "Limit pamięci (w MB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maksymalna pamięć, jaką kontener ExApp może używać w mebibajtach", "Must be a positive integer" : "Musi być liczbą całkowitą dodatnią", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maksymalna liczba rdzeni CPU, jaką kontener ExApp może używać (np. 0.5 dla połowy rdzenia, 2 dla dwóch rdzeni)", "CPU limit as decimal value" : "Limit CPU jako wartość dziesiętna", "Must be a positive number" : "Musi być liczbą dodatnią", - "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key (unique)" : "Klucz opcji (unikalny)", "Option key (unique, e.g. my_key)" : "Klucz opcji (unikalny, np. my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Potwierdź", "Save" : "Zapisz", "Register" : "Zarejestruj się", - "Check connection" : "Sprawdź połączenie", "External Apps" : "Aplikacje zewnętrzne", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Wzmocnij swojego Nextclouda dzięki AppAPI i jego specjalnie zaprojektowanym aplikacjom. \n\n\nProjekt AppAPI w ekosystemie Nextcloud został zaprojektowany, aby usprawnić i ulepszyć proces \ntworzenia, wdrażania i zarządzania aplikacjami. \n\nWprowadza nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, które tradycyjnie było używane w Nextcloudzie.\n\n### Dołączona aplikacja\n\n**Począwszy od Nextcloud 30.0.1, aplikacja ta jest zawarta w domyślnym pakiecie Nextclouda.**\n\n### Wsparcie\n\nDoceniamy każde wsparcie dla tego projektu:\n- ⭐ Oznacz nasze repozytorium na GitHubie \n- ❗Zgłoś problem lub propozycję funkcji \n- 💁 Rozwiąż problem i utwórz Pull Request \n- 🧑‍💻 Rozwijaj własną aplikację używając AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do przekształcenia sposobu, w jaki aplikacje są tworzone i używane w Nextcloudzie. \n\nZapraszamy serdecznie do udziału – deweloperów, myślicieli, twórców i wizjonerów – aby pomóc w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego środowiska aplikacji. \n\n*Twoje pomysły, sugestie i wkład są dla nas bezcenne.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", + "Deploy Daemons" : "Demony wdrożeniowe", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demony wdrożeniowe. Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Domyślny demon wdrożeniowy jest niedostępny. Sprawdź jego konfigurację.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Określ politykę ponownego uruchamiania kontenera, np. „always”, aby zapewnić działanie ExApp po restarcie serwera demona", + "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", "Delete data on remove" : "Usuń dane przy usuwaniu", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Nie znaleziono aplikacji", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp ma dostępne aktualizacje","%n aplikacje mają dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje"], "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], + "Deploy Daemon" : "Uruchom demona", "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", + "GPUs support" : "Obsługa procesorów graficznych", + "Are you sure you want delete Deploy Daemon" : "Czy na pewno chcesz usunąć demona wdrożeniowego", + "All ExApps on this daemon will be removed" : "Wszystkie ExAppy na tym demonie zostaną usunięte", + "All ExApps installed on this daemon will be removed" : "Wszystkie ExAppy zainstalowane na tym demonie zostaną usunięte", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Demon wdrożeniowy „manual-install” nie może być ustawiony jako domyślny", + "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", + "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Ręczny demon instalacyjny zwykle używany do rozwoju. Nie może być ustawiony jako domyślny demon.", + "Deploy config" : "Konfiguracja wdrożenia", + "Verify connection" : "Sprawdź połączenie", + "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", + "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", + "Register Daemon" : "Zarejestruj demona", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", + "The following Deploy test checks must be passed to succeed:" : "Następujące testy wdrożenia muszą zostać zaliczone, aby zakończyć sukcesem:", + "More info" : "Więcej informacji", + "Remove test ExApp" : "Usuń testowy ExApp", + "Start Deploy test" : "Rozpocznij test wdrożenia", + "Stop Deploy test" : "Zatrzymaj test wdrożenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp zostaje wyrejestrowany, a kontener usunięty przy „Zatrzymaj test wdrożenia”", + "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmiany zostaną zastosowane tylko do nowo zainstalowanych ExApp. Dla istniejących ExApps kontenery Dockera powinny zostać odtworzone.", + "URL should start with http:// or https://" : "Adres URL powinien zaczynać się od http:// lub https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Dla demona HTTPS adres URL Nextcloud powinien być HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Wszystkie dostępne urządzenia GPU na hoście demona zostaną poproszone o włączenie w kontenerach ExApp przez Dockera.", + "Edit Deploy Daemon" : "Edytuj Deploy Daemon", + "Register Deploy Daemon" : "Zarejestruj Deploy Daemon", + "Select daemon configuration template" : "Wybierz szablon konfiguracji Daemon", + "Unique Deploy Daemon Name" : "Unikalna nazwa Deploy Daemon", + "Select daemon deploy method" : "Wybierz metodę wdrażania demona", + "Set daemon as default" : "Ustaw demona jako domyślnego", + "Set as default daemon" : "Ustaw jako domyślnego demona", + "Enable https" : "Włącz https", + "Show deploy config" : "Pokaż konfigurację wdrożenia", + "Hide deploy config" : "Ukryj konfigurację wdrożenia", "Network" : "Sieć", "Docker network name" : "Nazwa sieci Dockera", + "Additional option" : "Opcja dodatkowa", "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", diff --git a/l10n/pl.json b/l10n/pl.json index 64c00e17..363921c9 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Demon wdrożeniowy AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Domyślny demon wdrożeniowy AppAPI nie jest ustawiony. Zarejestruj domyślny demon wdrożeniowy w ustawieniach, aby zainstalować aplikacje zewnętrzne (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Domyślny demon wdrożeniowy AppAPI \"%s\" jest niedostępny. Sprawdź konfigurację demona.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Domyślny demon wdrożeniowy AppAPI nie używa HaRP. Rozważ uaktualnienie do niego, aby uzyskać lepszą wydajność.", "Nextcloud AppAPI" : "AppAPI Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zwiększ możliwości swojego Nextclouda dzięki AppAPI i specjalnie zaprojektowanym aplikacjom.\n\n\nAppAPI to projekt w ekosystemie Nextcloud, którego celem jest usprawnienie i ulepszenie procesu\ntworzenia, wdrażania i zarządzania aplikacjami.\n\nWprowadza on nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, który tradycyjnie był używany w rozwoju Nextcloud.\n\nJeśli chcesz stworzyć aplikację, chętnie pomożemy i wesprzemy Cię.\n\n### Wsparcie\n\nDoceniamy wszelkie wsparcie dla tego projektu:\n- ⭐Dodaj gwiazdkę naszemu repozytorium na GitHub.\n- ❗Utwórz zgłoszenie lub prośbę o nową funkcję.\n- 💁 Rozwiąż zgłoszenie i wyślij Pull Request.\n- 🧑‍💻 Rozwijaj własną aplikację przy użyciu AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do transformacji sposobu, w jaki aplikacje są rozwijane i używane w Nextcloud.\n\nZapraszamy deweloperów, pomysłodawców, twórców i wizjonerów, aby dołączyli do nas w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego ekosystemu aplikacji.\n\n*Twoje pomysły, sugestie i wkład są dla nas niezwykle cenne.*", "External Apps management" : "Zarządzanie aplikacjami zewnętrznymi", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu, w jaki aplikacje są rozwijane dla Nextcloud poprzez wykorzystanie kontenerów Dockera.\nPozwala to na większy wybór języków programowania oraz przeniesienie kosztownych obliczeniowo zadań na inny serwer.", - "Deploy Daemons" : "Demony wdrożeniowe", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demony wdrożeniowe. Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Domyślny demon wdrożeniowy jest niedostępny. Sprawdź jego konfigurację.", "ExApp init timeout (minutes)" : "Limit czasu inicjalizacji ExApp (w minutach)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Upłynął limit czasu procesu inicjalizacji ExApp, po którym AppAPI oznaczy go jako zakończony niepowodzeniem", "ExApp init timeout" : "Limit czasu inicjalizacji ExApp", "ExApp container restart policy" : "Polityka ponownego uruchamiania kontenera ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Określ politykę ponownego uruchamiania kontenera, np. „always”, aby zapewnić działanie ExApp po restarcie serwera demona", - "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", - "Are you sure you want delete Deploy Daemon" : "Czy na pewno chcesz usunąć demona wdrożeniowego", - "All ExApps on this daemon will be removed" : "Wszystkie ExAppy na tym demonie zostaną usunięte", - "All ExApps installed on this daemon will be removed" : "Wszystkie ExAppy zainstalowane na tym demonie zostaną usunięte", "Cancel" : "Anuluj", "Delete" : "Usuń", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Demon wdrożeniowy „manual-install” nie może być ustawiony jako domyślny", - "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", "Password confirmation failed" : "Potwierdzenie hasła nie powiodło się", "Default" : "Domyślny", "Set as default" : "Ustaw jako domyślny", @@ -54,36 +42,24 @@ "Docker registries" : "Rejestry Dockera", "Edit" : "Edycja", "Daemon connection successful" : "Połączenie z demonem powiodło się", - "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", - "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", "Unlimited" : "Bez limitu", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPU", - "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", - "Deploy Daemon" : "Uruchom demona", "Default daemon. ExApps will be installed on it" : "Demon domyślny. ExAppy będą na nim instalowane", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Ręczny demon instalacyjny zwykle używany do rozwoju. Nie może być ustawiony jako domyślny demon.", "ExApps installed" : "ExAppy zainstalowane", "Name" : "Nazwa", "Protocol" : "Protokół", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Bezpośrednia komunikacja ExApp (FRP wyłączona)", - "Deploy config" : "Konfiguracja wdrożenia", + "Deploy options" : "Opcje wdrażania", "Docker network" : "Sieć Dockera", "Nextcloud URL" : "Adres URL Nextcloud", "HaProxy password" : "Hasło HaProxy", - "GPUs support" : "Obsługa procesorów graficznych", - "Compute device" : "Urządzenie obliczeniowe", "Memory limit" : "Limit pamięci", "CPU limit" : "Limit CPU ", "Additional options" : "Dodatkowe opcje", - "Verify connection" : "Sprawdź połączenie", + "Check connection" : "Sprawdź połączenie", "Registered Deploy daemons list" : "Lista zarejestrowanych demonów wdrożeniowych", - "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", - "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", - "Register Daemon" : "Zarejestruj demona", "Register ExApp in Nextcloud" : "Zarejestruj ExApp w Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Sprawdź, czy ExApp jest zarejestrowany w Nextcloud przed wdrożeniem", "Image pull" : "Pobieranie obrazu", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Tylko jeśli kontener ExApp jest wstępnie ustawiony", "Deploy test passed successfully!" : "Test wdrożenia zakończony pomyślnie!", "Deploy test failed at step \"{step}\"" : "Test wdrożenia nie powiódł się na kroku \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", - "The following Deploy test checks must be passed to succeed:" : "Następujące testy wdrożenia muszą zostać zaliczone, aby zakończyć sukcesem:", - "More info" : "Więcej informacji", + "More information" : "Więcej informacji", "Download ExApp logs" : "Pobierz logi ExApp", - "Remove test ExApp" : "Usuń testowy ExApp", - "Start Deploy test" : "Rozpocznij test wdrożenia", - "Stop Deploy test" : "Zatrzymaj test wdrożenia", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp zostaje wyrejestrowany, a kontener usunięty przy „Zatrzymaj test wdrożenia”", "Please enter a registry domain" : "Proszę wprowadzić domenę rejestru", - "From cannot be \"local\"" : "Pole \"From\" nie może być ustawione na „local”", "This registry mapping already exists" : "To mapowanie rejestru już istnieje", - "From and To cannot be the same" : "\"From\" i \"To\" nie mogą być takie same", "Docker registry mapping added" : "Mapowanie rejestru Dockera zostało dodane", "Error adding Docker registry mapping" : "Błąd podczas dodawania mapowania rejestru Dockera", "Docker registry mapping removed" : "Mapowanie rejestru Dockera zostało usunięte", "Error removing Docker registry mapping" : "Błąd podczas usuwania mapowania rejestru Dockera", "Override Docker registries" : "Nadpisz rejestry Dockera", - "Configure Docker registry override mappings for selected daemon." : "Skonfiguruj nadpisanie mapowań rejestru Dockera dla wybranego demona", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Pasujący rejestr źródłowy w pliku info.xml ExApp zostanie nadpisany podczas wdrożenia (krok pobierania obrazu)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "To jest przydatne, jeśli chcesz użyć własnego rejestru Dockera, np. prywatnego rejestru Dockera lub innego rejestru Dockera do testów.", "Image pull will be skipped" : "Pobieranie obrazu zostanie pominięte", "Remove" : "Usuń", - "No custom Docker registries configured" : "Brak skonfigurowanych niestandardowych rejestrów Dockera", "Add registry override mapping" : "Dodaj mapowanie nadpisania rejestru", "From" : "Od", "registry URL (e.g. ghcr.io)" : "Adres URL rejestru (np. ghcr.io)", "To" : "Do", "registry URL (e.g. docker.io)" : "Adres URL rejestru (np. docker.io)", "Add" : "Dodaj", - "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Nazwa hosta (i port), pod którym dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud, np. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta (i port) lub ścieżka, pod którą dostępny jest {name}. Nie musi to być host publiczny, wystarczy, że będzie dostępny dla serwera Nextcloud. Może to być również ścieżka do gniazda Dockera (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", - "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Klucz tajny do komunikacji kontenerów HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Hasło uwierzytelniające AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmiany zostaną zastosowane tylko do nowo zainstalowanych ExApp. Dla istniejących ExApps kontenery Dockera powinny zostać odtworzone.", - "The docker network that the deployed ex-apps would use." : "Sieć Dockera, której używałyby wdrożone ExApps.", - "URL should start with http:// or https://" : "Adres URL powinien zaczynać się od http:// lub https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Dla demona HTTPS adres URL Nextcloud powinien być HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Wszystkie dostępne urządzenia GPU na hoście demona zostaną poproszone o włączenie w kontenerach ExApp przez Dockera.", "DaemonConfig successfully registered" : "DaemonConfig został pomyślnie zarejestrowany", "Failed to register DaemonConfig. Check the logs" : "Nie udało się zarejestrować DaemonConfig. Sprawdź logi", "DaemonConfig successfully updated" : "DaemonConfig został pomyślnie zaktualizowany", "Failed to update DaemonConfig. Check the logs" : "Nie udało się zaktualizować DaemonConfig. Sprawdź logi", - "Edit Deploy Daemon" : "Edytuj Deploy Daemon", - "Register Deploy Daemon" : "Zarejestruj Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "Nie udało się połączyć z demonem. Sprawdź logi", + "Failed to check connection to Daemon. Check the logs" : "Nie udało się sprawdzić połączenia z demonem. Sprawdź logi", "Daemon configuration template" : "Szablon konfiguracji Daemon", - "Select daemon configuration template" : "Wybierz szablon konfiguracji Daemon", "Daemon registration form" : "Formularz rejestracji Daemon", - "Unique Deploy Daemon Name" : "Unikalna nazwa Deploy Daemon", "Display name" : "Wyświetlana nazwa", "Deployment method" : "Metoda wdrażania", - "Select daemon deploy method" : "Wybierz metodę wdrażania demona", "HaRP host" : "Host HaRP", "Daemon host" : "Host Daemon", "HaRP shared key" : "Klucz współdzielony HaRP", - "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", - "Set daemon as default" : "Ustaw demona jako domyślnego", - "Set as default daemon" : "Ustaw jako domyślnego demona", - "Enable https" : "Włącz https", - "Show deploy config" : "Pokaż konfigurację wdrożenia", - "Hide deploy config" : "Ukryj konfigurację wdrożenia", "Enable HaRP" : "Włącz HaRP", "FRP server address" : "Adres serwera FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adres (host:port) serwera FRP, który powinien być osiągalny przez ex-app w sieci zdefiniowanej w „Docker network”.", "Docker socket proxy port" : "Port proxy gniazda Dockera", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port w HaRP, do którego łączy się proxy gniazda Dockera. Powinien być wystawiony, ale dla wbudowanego nie jest to wymagane ani konieczne do zmiany.", "Disable FRP" : "Wyłącz FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flaga tylko dla zaawansowanych konfiguracji. Wyłącza tunel FRP pomiędzy ExApps a HaRP.", "Disabled" : "Wyłączone", "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", + "Compute device" : "Urządzenie obliczeniowe", "Memory limit (in MiB)" : "Limit pamięci (w MB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Maksymalna pamięć, jaką kontener ExApp może używać w mebibajtach", "Must be a positive integer" : "Musi być liczbą całkowitą dodatnią", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maksymalna liczba rdzeni CPU, jaką kontener ExApp może używać (np. 0.5 dla połowy rdzenia, 2 dla dwóch rdzeni)", "CPU limit as decimal value" : "Limit CPU jako wartość dziesiętna", "Must be a positive number" : "Musi być liczbą dodatnią", - "Additional option" : "Opcja dodatkowa", "Add additional option" : "Dodaj dodatkową opcję", "Option key (unique)" : "Klucz opcji (unikalny)", "Option key (unique, e.g. my_key)" : "Klucz opcji (unikalny, np. my_key)", @@ -186,10 +128,15 @@ "Confirm" : "Potwierdź", "Save" : "Zapisz", "Register" : "Zarejestruj się", - "Check connection" : "Sprawdź połączenie", "External Apps" : "Aplikacje zewnętrzne", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Wzmocnij swojego Nextclouda dzięki AppAPI i jego specjalnie zaprojektowanym aplikacjom. \n\n\nProjekt AppAPI w ekosystemie Nextcloud został zaprojektowany, aby usprawnić i ulepszyć proces \ntworzenia, wdrażania i zarządzania aplikacjami. \n\nWprowadza nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, które tradycyjnie było używane w Nextcloudzie.\n\n### Dołączona aplikacja\n\n**Począwszy od Nextcloud 30.0.1, aplikacja ta jest zawarta w domyślnym pakiecie Nextclouda.**\n\n### Wsparcie\n\nDoceniamy każde wsparcie dla tego projektu:\n- ⭐ Oznacz nasze repozytorium na GitHubie \n- ❗Zgłoś problem lub propozycję funkcji \n- 💁 Rozwiąż problem i utwórz Pull Request \n- 🧑‍💻 Rozwijaj własną aplikację używając AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do przekształcenia sposobu, w jaki aplikacje są tworzone i używane w Nextcloudzie. \n\nZapraszamy serdecznie do udziału – deweloperów, myślicieli, twórców i wizjonerów – aby pomóc w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego środowiska aplikacji. \n\n*Twoje pomysły, sugestie i wkład są dla nas bezcenne.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Projekt AppAPI to ekscytująca inicjatywa, której celem jest zrewolucjonizowanie sposobu tworzenia aplikacji dla Nextcloud.", + "Deploy Daemons" : "Demony wdrożeniowe", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Demony wdrożeniowe. Demon wdrożeniowy (DaemonConfig) to demon orkiestracji ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Domyślny demon wdrożeniowy jest niedostępny. Sprawdź jego konfigurację.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Określ politykę ponownego uruchamiania kontenera, np. „always”, aby zapewnić działanie ExApp po restarcie serwera demona", + "This settings changes are reflected only for newly created containers" : "Zmiany tych ustawień zostaną odzwierciedlone tylko w przypadku nowo utworzonych kontenerów", "{license}-licensed" : "na licencji {license}", "Update to {version}" : "Zaktualizuj do {version}", "Delete data on remove" : "Usuń dane przy usuwaniu", @@ -219,12 +166,51 @@ "No apps found" : "Nie znaleziono aplikacji", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp ma dostępne aktualizacje","%n aplikacje mają dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje","%n aplikacji ma dostępne aktualizacje"], "_Update_::_Update all_" : ["Zaktualizuj","Zaktualizuj","Zaktualizuj","Zaktualizuj wszystko"], + "Deploy Daemon" : "Uruchom demona", "Type" : "Rodzaj", "Display Name" : "Wyświetlana nazwa", + "GPUs support" : "Obsługa procesorów graficznych", + "Are you sure you want delete Deploy Daemon" : "Czy na pewno chcesz usunąć demona wdrożeniowego", + "All ExApps on this daemon will be removed" : "Wszystkie ExAppy na tym demonie zostaną usunięte", + "All ExApps installed on this daemon will be removed" : "Wszystkie ExAppy zainstalowane na tym demonie zostaną usunięte", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Demon wdrożeniowy „manual-install” nie może być ustawiony jako domyślny", + "Failed to save admin options. Check the logs" : "Nie udało się zapisać opcji administratora. Sprawdź dzienniki", + "Deploy daemon config details" : "Szczegóły konfiguracji demona wdrożeniowego", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Ręczny demon instalacyjny zwykle używany do rozwoju. Nie może być ustawiony jako domyślny demon.", + "Deploy config" : "Konfiguracja wdrożenia", + "Verify connection" : "Sprawdź połączenie", + "No Deploy daemons configured" : "Brak skonfigurowanych demonów wdrożeniowych", + "Register a custom one or setup from available templates" : "Zarejestruj własnego lub skonfiguruj z dostępnych szablonów", + "Register Daemon" : "Zarejestruj demona", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI spróbuje zainstalować mały szkielet ExApp, aby sprawdzić, czy demon jest poprawnie skonfigurowany i czy etapy wdrażania zostały wykonane.", + "The following Deploy test checks must be passed to succeed:" : "Następujące testy wdrożenia muszą zostać zaliczone, aby zakończyć sukcesem:", + "More info" : "Więcej informacji", + "Remove test ExApp" : "Usuń testowy ExApp", + "Start Deploy test" : "Rozpocznij test wdrożenia", + "Stop Deploy test" : "Zatrzymaj test wdrożenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp zostaje wyrejestrowany, a kontener usunięty przy „Zatrzymaj test wdrożenia”", + "Hostname to access ExApps" : "Nazwa hosta umożliwiająca dostęp do ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nazwa hosta lub ścieżka dostępu do demona Docker (np. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Demon o tej nazwie już istnieje", + "Password must be at least 12 characters long" : "Hasło musi mieć co najmniej 12 znaków", "With https enabled network is set to host" : "Przy włączonym https sieć jest ustawiona na host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmiany zostaną zastosowane tylko do nowo zainstalowanych ExApp. Dla istniejących ExApps kontenery Dockera powinny zostać odtworzone.", + "URL should start with http:// or https://" : "Adres URL powinien zaczynać się od http:// lub https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Dla demona HTTPS adres URL Nextcloud powinien być HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Wszystkie dostępne urządzenia GPU na hoście demona zostaną poproszone o włączenie w kontenerach ExApp przez Dockera.", + "Edit Deploy Daemon" : "Edytuj Deploy Daemon", + "Register Deploy Daemon" : "Zarejestruj Deploy Daemon", + "Select daemon configuration template" : "Wybierz szablon konfiguracji Daemon", + "Unique Deploy Daemon Name" : "Unikalna nazwa Deploy Daemon", + "Select daemon deploy method" : "Wybierz metodę wdrażania demona", + "Set daemon as default" : "Ustaw demona jako domyślnego", + "Set as default daemon" : "Ustaw jako domyślnego demona", + "Enable https" : "Włącz https", + "Show deploy config" : "Pokaż konfigurację wdrożenia", + "Hide deploy config" : "Ukryj konfigurację wdrożenia", "Network" : "Sieć", "Docker network name" : "Nazwa sieci Dockera", + "Additional option" : "Opcja dodatkowa", "by {author}\n{license}" : "wykonane przez {author}\n{license}", "Your apps" : "Twoje aplikacje", "Documentation" : "Dokumentacja", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 97618116..fd35259a 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Deploy daemon de AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O deploy daemon padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", - "This settings changes are reflected only for newly created containers" : "Estas alterações nas configurações são refletidas apenas para contêineres recém-criados", - "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", - "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", - "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", "Cancel" : "Cancelar", "Delete" : "Excluir", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O Deploy Daemon \"manual-install\" (instalação manual) não pode ser definido como padrão", - "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", "Set as default" : "Definir como padrão", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Registros do Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexão do daemon bem-sucedida", - "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", - "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Unlimited" : "Ilimitado", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", - "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "O daemon de instalação manual é geralmente usado para desenvolvimento. Não pode ser definido como daemon padrão.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", - "Deploy config" : "Configuração de implantação", + "Deploy options" : "Opções de implantação", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha do HaProxy", - "GPUs support" : "Suporte a GPUs", - "Compute device" : "Dispositivo de computação", "Memory limit" : "Limite de memória", "CPU limit" : "Limite da CPU", "Additional options" : "Opções adicionais", - "Verify connection" : "Verificar conexão", + "Check connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", - "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", - "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", - "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Image pull", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "O teste de implantação foi concluído com êxito!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser concluídas para sucesso:", - "More info" : "Mais informações", + "More information" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", - "Remove test ExApp" : "Remover ExApp de teste", - "Start Deploy test" : "Iniciar teste de Implantação", - "Stop Deploy test" : "Parar teste de Implantação", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp está desregistrado e o contêiner é removido em \"Parar teste de implantação\"", "Please enter a registry domain" : "Por favor, digite um domínio de registro", - "From cannot be \"local\"" : "De não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", - "From and To cannot be the same" : "De e Para não podem ser iguais", "Docker registry mapping added" : "Adicionado o mapeamento do registro do Docker", "Error adding Docker registry mapping" : "Erro ao adicionar o mapeamento do registro do Docker", "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", "Error removing Docker registry mapping" : "Erro ao remover o mapeamento do registro do Docker", "Override Docker registries" : "Substituir os registros do Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar mapeamentos de substituição de registro do Docker para o daemon selecionado.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O registro de origem correspondente no info.xml do ExApp será substituído durante a implantação (etapa de image pull).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isso é útil se você quiser usar um registro personalizado do Docker, por exemplo, para usar um registro privado do Docker ou para usar um registro diferente do Docker para testes.", "Image pull will be skipped" : "O image pull será pulado", "Remove" : "Remover", - "No custom Docker registries configured" : "Nenhum registro personalizado do Docker configurado", "Add registry override mapping" : "Adicionar mapeamento de substituição de registro", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL do registro (p. ex., ghcr.io)", "To" : "Para", "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", - "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, p. ex., {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon com este nome já existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", - "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", - "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", - "Edit Deploy Daemon" : "Editar Deploy Daemon", - "Register Deploy Daemon" : "Registrar Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", + "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Daemon configuration template" : "Modelo de configuração do daemon", - "Select daemon configuration template" : "Selecione o modelo de configuração do daemon", "Daemon registration form" : "Formulário de registro do Daemon", - "Unique Deploy Daemon Name" : "Nome Exclusivo do Deploy Daemon", "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", - "Select daemon deploy method" : "Selecione o método de implantação do daemon", "HaRP host" : "Host HaRP", "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", - "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", - "Set daemon as default" : "Definir daemon como padrão", - "Set as default daemon" : "Definir como daemon padrão", - "Enable https" : "Ativar https", - "Show deploy config" : "Mostrar configuração de deploy", - "Hide deploy config" : "Ocultar configuração de deploy", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", "Disable FRP" : "Desativar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", + "Compute device" : "Dispositivo de computação", "Memory limit (in MiB)" : "Limite de memória (em MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Memória máxima que o contêiner ExApp pode usar em mebibytes", "Must be a positive integer" : "Deve ser um número inteiro positivo", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0.5 para meio núcleo, 2 para dois núcleos)", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", - "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave da opção (exclusiva)", "Option key (unique, e.g. my_key)" : "Chave da opção (exclusiva, p. ex., my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Confirmar", "Save" : "Salvar", "Register" : "Registrar", - "Check connection" : "Verificar conexão", "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", + "This settings changes are reflected only for newly created containers" : "Estas alterações nas configurações são refletidas apenas para contêineres recém-criados", "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Nenhum aplicativo encontrado", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n aplicativos têm uma atualização disponível","%n aplicativos têm uma atualização disponível"], "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "Tipo", "Display Name" : "Nome de Exibição", + "GPUs support" : "Suporte a GPUs", + "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", + "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", + "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O Deploy Daemon \"manual-install\" (instalação manual) não pode ser definido como padrão", + "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", + "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "O daemon de instalação manual é geralmente usado para desenvolvimento. Não pode ser definido como daemon padrão.", + "Deploy config" : "Configuração de implantação", + "Verify connection" : "Verificar conexão", + "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", + "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", + "Register Daemon" : "Registrar Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser concluídas para sucesso:", + "More info" : "Mais informações", + "Remove test ExApp" : "Remover ExApp de teste", + "Start Deploy test" : "Iniciar teste de Implantação", + "Stop Deploy test" : "Parar teste de Implantação", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp está desregistrado e o contêiner é removido em \"Parar teste de implantação\"", + "Hostname to access ExApps" : "Nome do host para acessar ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon do Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon com este nome já existe", + "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "With https enabled network is set to host" : "Com https habilitado, a rede é definida como host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", + "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", + "Edit Deploy Daemon" : "Editar Deploy Daemon", + "Register Deploy Daemon" : "Registrar Deploy Daemon", + "Select daemon configuration template" : "Selecione o modelo de configuração do daemon", + "Unique Deploy Daemon Name" : "Nome Exclusivo do Deploy Daemon", + "Select daemon deploy method" : "Selecione o método de implantação do daemon", + "Set daemon as default" : "Definir daemon como padrão", + "Set as default daemon" : "Definir como daemon padrão", + "Enable https" : "Ativar https", + "Show deploy config" : "Mostrar configuração de deploy", + "Hide deploy config" : "Ocultar configuração de deploy", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", + "Additional option" : "Opção adicional", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index ce08243c..a546c756 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Deploy daemon de AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "O deploy daemon padrão de AppAPI não está usando o HaRP. Considere a possibilidade de atualizá-lo para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", - "Deploy Daemons" : "Deploy Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", - "This settings changes are reflected only for newly created containers" : "Estas alterações nas configurações são refletidas apenas para contêineres recém-criados", - "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", - "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", - "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", "Cancel" : "Cancelar", "Delete" : "Excluir", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O Deploy Daemon \"manual-install\" (instalação manual) não pode ser definido como padrão", - "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", "Set as default" : "Definir como padrão", @@ -54,36 +42,24 @@ "Docker registries" : "Registros do Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexão do daemon bem-sucedida", - "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", - "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Unlimited" : "Ilimitado", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", - "Deploy Daemon" : "Deploy Daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "O daemon de instalação manual é geralmente usado para desenvolvimento. Não pode ser definido como daemon padrão.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Comunicação direta ExApp (FRP desativado)", - "Deploy config" : "Configuração de implantação", + "Deploy options" : "Opções de implantação", "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha do HaProxy", - "GPUs support" : "Suporte a GPUs", - "Compute device" : "Dispositivo de computação", "Memory limit" : "Limite de memória", "CPU limit" : "Limite da CPU", "Additional options" : "Opções adicionais", - "Verify connection" : "Verificar conexão", + "Check connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", - "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", - "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", - "Register Daemon" : "Registrar Daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Image pull", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "O teste de implantação foi concluído com êxito!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser concluídas para sucesso:", - "More info" : "Mais informações", + "More information" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", - "Remove test ExApp" : "Remover ExApp de teste", - "Start Deploy test" : "Iniciar teste de Implantação", - "Stop Deploy test" : "Parar teste de Implantação", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp está desregistrado e o contêiner é removido em \"Parar teste de implantação\"", "Please enter a registry domain" : "Por favor, digite um domínio de registro", - "From cannot be \"local\"" : "De não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", - "From and To cannot be the same" : "De e Para não podem ser iguais", "Docker registry mapping added" : "Adicionado o mapeamento do registro do Docker", "Error adding Docker registry mapping" : "Erro ao adicionar o mapeamento do registro do Docker", "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", "Error removing Docker registry mapping" : "Erro ao remover o mapeamento do registro do Docker", "Override Docker registries" : "Substituir os registros do Docker", - "Configure Docker registry override mappings for selected daemon." : "Configurar mapeamentos de substituição de registro do Docker para o daemon selecionado.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "O registro de origem correspondente no info.xml do ExApp será substituído durante a implantação (etapa de image pull).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isso é útil se você quiser usar um registro personalizado do Docker, por exemplo, para usar um registro privado do Docker ou para usar um registro diferente do Docker para testes.", "Image pull will be skipped" : "O image pull será pulado", "Remove" : "Remover", - "No custom Docker registries configured" : "Nenhum registro personalizado do Docker configurado", "Add registry override mapping" : "Adicionar mapeamento de substituição de registro", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL do registro (p. ex., ghcr.io)", "To" : "Para", "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", - "Hostname to access ExApps" : "Nome do host para acessar ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e a porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, p. ex., {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e a porta) ou o caminho no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser um caminho para o soquete de docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon com este nome já existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", - "The docker network that the deployed ex-apps would use." : "A rede do docker que os ex-apps implantados usariam.", - "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", - "Edit Deploy Daemon" : "Editar Deploy Daemon", - "Register Deploy Daemon" : "Registrar Deploy Daemon", + "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", + "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", "Daemon configuration template" : "Modelo de configuração do daemon", - "Select daemon configuration template" : "Selecione o modelo de configuração do daemon", "Daemon registration form" : "Formulário de registro do Daemon", - "Unique Deploy Daemon Name" : "Nome Exclusivo do Deploy Daemon", "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", - "Select daemon deploy method" : "Selecione o método de implantação do daemon", "HaRP host" : "Host HaRP", "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", - "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", - "Set daemon as default" : "Definir daemon como padrão", - "Set as default daemon" : "Definir como daemon padrão", - "Enable https" : "Ativar https", - "Show deploy config" : "Mostrar configuração de deploy", - "Hide deploy config" : "Ocultar configuração de deploy", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "O endereço (host:porta) do servidor FRP que deve ser acessado pelo ex-app na rede definida em 'Rede Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta em HaRP à qual o proxy de soquete do docker se conecta. Ela deve ser exposta, mas para a porta incorporada, não é necessário que seja exposta ou alterada.", "Disable FRP" : "Desativar FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador somente para configurações avançadas. Desativa o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", + "Compute device" : "Dispositivo de computação", "Memory limit (in MiB)" : "Limite de memória (em MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Memória máxima que o contêiner ExApp pode usar em mebibytes", "Must be a positive integer" : "Deve ser um número inteiro positivo", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0.5 para meio núcleo, 2 para dois núcleos)", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", - "Additional option" : "Opção adicional", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave da opção (exclusiva)", "Option key (unique, e.g. my_key)" : "Chave da opção (exclusiva, p. ex., my_key)", @@ -186,10 +128,15 @@ "Confirm" : "Confirmar", "Save" : "Salvar", "Register" : "Registrar", - "Check connection" : "Verificar conexão", "External Apps" : "Aplicativos Externos", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n### Aplicativo incluído no pacote\n\n**A partir do Nextcloud 30.0.1, este aplicativo está incluído no pacote padrão do Nextcloud.**\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Projeto AppAPI é uma iniciativa empolgante que tem como objetivo revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud.", + "Deploy Daemons" : "Deploy Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "O Deploy Daemon padrão não está acessível. Por favor, verifique sua configuração.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApp seja executado após a reinicialização do servidor daemon", + "This settings changes are reflected only for newly created containers" : "Estas alterações nas configurações são refletidas apenas para contêineres recém-criados", "{license}-licensed" : "Licenciado por {license}", "Update to {version}" : "Atualizar para {version}", "Delete data on remove" : "Excluir dados ao remover", @@ -219,12 +166,51 @@ "No apps found" : "Nenhum aplicativo encontrado", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp tem uma atualização disponível.","%n aplicativos têm uma atualização disponível","%n aplicativos têm uma atualização disponível"], "_Update_::_Update all_" : ["Atualizar","Atualizar todos","Atualizar todos"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "Tipo", "Display Name" : "Nome de Exibição", + "GPUs support" : "Suporte a GPUs", + "Are you sure you want delete Deploy Daemon" : "Tem certeza de que deseja excluir o Deploy Daemon", + "All ExApps on this daemon will be removed" : "Todos os ExApps neste daemon serão removidos", + "All ExApps installed on this daemon will be removed" : "Todos os ExApps instalados neste daemon serão removidos", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O Deploy Daemon \"manual-install\" (instalação manual) não pode ser definido como padrão", + "Failed to save admin options. Check the logs" : "Falha ao salvar as opções do administrador. Verifique os logs.", + "Deploy daemon config details" : "Detalhes da configuração do Deploy daemon", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "O daemon de instalação manual é geralmente usado para desenvolvimento. Não pode ser definido como daemon padrão.", + "Deploy config" : "Configuração de implantação", + "Verify connection" : "Verificar conexão", + "No Deploy daemons configured" : "Nenhum Deploy daemon configurado", + "Register a custom one or setup from available templates" : "Registre um personalizado ou configure a partir dos modelos disponíveis", + "Register Daemon" : "Registrar Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar o esqueleto pequeno do ExApp para verificar se o Daemon está configurado corretamente e se as etapas de implantação estão funcionando.", + "The following Deploy test checks must be passed to succeed:" : "As seguintes verificações de teste de implantação devem ser concluídas para sucesso:", + "More info" : "Mais informações", + "Remove test ExApp" : "Remover ExApp de teste", + "Start Deploy test" : "Iniciar teste de Implantação", + "Stop Deploy test" : "Parar teste de Implantação", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp está desregistrado e o contêiner é removido em \"Parar teste de implantação\"", + "Hostname to access ExApps" : "Nome do host para acessar ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nome do host ou caminho para acessar o daemon do Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon com este nome já existe", + "Password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", "With https enabled network is set to host" : "Com https habilitado, a rede é definida como host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "As alterações seriam aplicadas somente para ExApps recém-instalados. Para ExApps existentes, os contêineres Docker devem ser recriados.", + "URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Para o daemon HTTPS, o URL do Nextcloud deve ser HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon serão solicitados a serem habilitados em contêineres ExApp pelo Docker.", + "Edit Deploy Daemon" : "Editar Deploy Daemon", + "Register Deploy Daemon" : "Registrar Deploy Daemon", + "Select daemon configuration template" : "Selecione o modelo de configuração do daemon", + "Unique Deploy Daemon Name" : "Nome Exclusivo do Deploy Daemon", + "Select daemon deploy method" : "Selecione o método de implantação do daemon", + "Set daemon as default" : "Definir daemon como padrão", + "Set as default daemon" : "Definir como daemon padrão", + "Enable https" : "Ativar https", + "Show deploy config" : "Mostrar configuração de deploy", + "Hide deploy config" : "Ocultar configuração de deploy", "Network" : "Rede", "Docker network name" : "Nome da rede do Docker", + "Additional option" : "Opção adicional", "by {author}\n{license}" : "por {author}\n{license}", "Your apps" : "Seus aplicativos", "Documentation" : "Documentação", diff --git a/l10n/ro.js b/l10n/ro.js index 382805bc..ed1a6094 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -9,6 +9,7 @@ OC.L10N.register( "Name" : "Nume", "Host" : "Gazdă", "Enabled" : "Activat", + "More information" : "Mai multe informații", "Remove" : "Elimină", "From" : "De la", "To" : "Către", diff --git a/l10n/ro.json b/l10n/ro.json index c02b6ff1..b20e8dd6 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -7,6 +7,7 @@ "Name" : "Nume", "Host" : "Gazdă", "Enabled" : "Activat", + "More information" : "Mai multe informații", "Remove" : "Elimină", "From" : "De la", "To" : "Către", diff --git a/l10n/ru.js b/l10n/ru.js index ac708c0c..33f5549d 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Сервис развертывания AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Служба развертывания AppAPI по умолчанию не установлена. Пожалуйста, зарегистрируйте службу развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проект AppAPI — это многообещающая инициатива, призванная кардинально изменить подход к разработке приложений для Nextcloud посредством использования Docker-контейнеров. Это расширяет выбор языков программирования и позволяет переносить ресурсоёмкие задачи на другой сервер.", - "Deploy Daemons" : "Службы публикации", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "По умолчанию служба публикации недоступна. Проверьте его конфигурацию", "ExApp init timeout (minutes)" : "Время ожидания инициализации ExApp (минуты)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Время ожидания процесса инициализации ExApp, по истечении которого AppAPI отметит его как неудачный", "ExApp init timeout" : "Время ожидания инициализации ExApp", "ExApp container restart policy" : "Политика перезапуска контейнера ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", - "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", - "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", - "All ExApps on this daemon will be removed" : "Все ExApps на этой службе будут удалены.", - "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этой службе, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", - "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", "Password confirmation failed" : "Подтверждение пароля не удалось", "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", @@ -56,31 +44,21 @@ OC.L10N.register( "Docker registries" : "Регистры Docker", "Edit" : "Редактирование", "Daemon connection successful" : "Служба успешно установлена", - "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", - "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Unlimited" : "Неограничено", - "Deploy daemon config details" : "Подробности конфигурации службы публикации", - "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", "ExApps installed" : "ExApps установлены", "Name" : "Имя", "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", "ExApp direct communication (FRP disabled)" : "Прямая связь ExApp (FRP выключено)", - "Deploy config" : "Развертывание конфигурации", + "Deploy options" : "Варианты развертывания", "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", "HaProxy password" : "HaProxy пароль ", - "GPUs support" : "Поддержка графических процессоров", - "Compute device" : "Вычислительное устройство", "Memory limit" : "Лимит памяти", "Additional options" : "Дополнительные возможности", - "Verify connection" : "Проверить соединение", + "Check connection" : "Проверить подключение", "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", - "No Deploy daemons configured" : "Службы развертывания не настроены", - "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", - "Register Daemon" : "Регистрация службы", "Register ExApp in Nextcloud" : "Зарегистрировать ExApp в Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверьте, зарегистрирован ли ExApp в Nextcloud перед развертыванием.", "Image pull" : "Извлечение изображения", @@ -96,78 +74,46 @@ OC.L10N.register( "Only if ExApp container is preset" : "Только если контейнер ExApp предварительно настроен", "Deploy test passed successfully!" : "Тест на развертывание пройден успешно!", "Deploy test failed at step \"{step}\"" : "Тест развертывания не пройден на шаге \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", - "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", - "More info" : "Дополнительная информация", + "More information" : "Дополнительные сведения", "Download ExApp logs" : "Загрузить журналы ExApp", - "Remove test ExApp" : "Удалить тест ExApp", - "Start Deploy test" : "Начать тест развертывания", - "Stop Deploy test" : "Остановить тест развертывания", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", "Please enter a registry domain" : "Войдите в домен регистра", - "From cannot be \"local\"" : "\"От\" не может быть \"локальным\"", "This registry mapping already exists" : "Отображение регистра уже существует", - "From and To cannot be the same" : "\"От\" и \"К\" не могут быть одинаковыми", "Docker registry mapping added" : "Добавлено отображение регистра", "Error adding Docker registry mapping" : "Ошибка добавления отображения регистра", "Docker registry mapping removed" : "Удалено отображение регистра", "Error removing Docker registry mapping" : "Ошибка удаления отображения регистра", "Override Docker registries" : "Перезаписать регистры Docker", - "Configure Docker registry override mappings for selected daemon." : "Настроить переопределение отображений регистра для выбранного сервиса.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Подходящий регистр-источник в файле ExApp info.xml будет перезаписан во время развертывания (на шаге вызова образа).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Это полезно, если вы хотите использовать пользовательский регистр, например, приватный регистр, или использовать другой регистр для тестирования.", "Image pull will be skipped" : "Вызов образа будет пропущен", "Remove" : "Удалить", - "No custom Docker registries configured" : "Не настроены пользовательские регистры", "Add registry override mapping" : "Добавить переопределение отображения регистра", "From" : "От", "registry URL (e.g. ghcr.io)" : "URL регистра (например, ghcr.io)", "To" : "По", "registry URL (e.g. docker.io)" : "URL регистра (например, docker.io)", "Add" : "Добавить", - "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Хостнейм (и порт), на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud, т е {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Хостнейм (и порт) или путь, на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud. Это также может быть путем к сокету Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Служба с таким названием уже существует", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретный ключ для связи с контейнером HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", - "The docker network that the deployed ex-apps would use." : "Сеть Docker, которую будут использовать развернутые ex-apps.", - "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте службы в контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", - "Edit Deploy Daemon" : "Изменить службу развертывания", - "Register Deploy Daemon" : "Регистрация службы развертывания", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Daemon configuration template" : "Шаблон конфигурации службы", - "Select daemon configuration template" : "Выберите шаблон конфигурации службы", "Daemon registration form" : "Форма регистрации службы", - "Unique Deploy Daemon Name" : "Уникальное имя службы развертывания", "Display name" : "Отображаемое имя", "Deployment method" : "Метод развертывания", - "Select daemon deploy method" : "Выберите метод развертывания службы", "HaRP host" : "Хост HaRP", "Daemon host" : "Хост службы", "HaRP shared key" : "Общий ключ HaRP", - "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", - "Set daemon as default" : "Использовать службу по умолчанию", - "Set as default daemon" : "Использовать службу по умолчанию", - "Enable https" : "Использовать HTTPS", - "Show deploy config" : "Показать конфигурацию развёртывания", - "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Enable HaRP" : "Включить HaRP", "FRP server address" : "Адрес сервера FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адрес (хост:порт) FRP сервера, который должен быть доступен для ex-app в сети, определенной в \"сети Docker\".", "Docker socket proxy port" : "Порт прокси-сокета Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт HaRP, к которому подключится прокси-сокет Docker. Он должен быть открыт, но не для внутренних служб, не требуется, чтобы он был открыт или изменен.", "Disable FRP" : "Отключить FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Переключатель только для расширенных настроек. Отключает FRP-туннель между ExApps и HaRP.", "Disabled" : "Отключено", "Docker network for ex-app deployment must be defined" : "Сеть Docker для развертывания ex-app должна быть определена", - "Additional option" : "Дополнительный вариант", + "Compute device" : "Вычислительное устройство", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", "Option key (unique, e.g. my_key)" : "Ключ параметра (уникальный, например my_key)", @@ -177,10 +123,15 @@ OC.L10N.register( "Confirm" : "Подтвердить", "Save" : "Сохранить", "Register" : "Регистрация", - "Check connection" : "Проверить подключение", "External Apps" : "Внешние приложения", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Приложения в комплекте\n\n**Начиная с Nextcloud 30.0.1, это приложение включено в поставку Nextcloud  по-умолчанию.**\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", + "Deploy Daemons" : "Службы публикации", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "По умолчанию служба публикации недоступна. Проверьте его конфигурацию", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", + "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", "Delete data on remove" : "Удалить данные при удалении", @@ -210,12 +161,51 @@ OC.L10N.register( "No apps found" : "Приложения не найдены", "_%n ExApp has an update available_::_%n apps have an update available_" : ["Для %n приложения доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление"], "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], + "Deploy Daemon" : "Служба публикации", "Type" : "Тип", "Display Name" : "Отображаемое имя", + "GPUs support" : "Поддержка графических процессоров", + "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", + "All ExApps on this daemon will be removed" : "Все ExApps на этой службе будут удалены.", + "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этой службе, будут удалены.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", + "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", + "Deploy daemon config details" : "Подробности конфигурации службы публикации", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", + "Deploy config" : "Развертывание конфигурации", + "Verify connection" : "Проверить соединение", + "No Deploy daemons configured" : "Службы развертывания не настроены", + "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", + "Register Daemon" : "Регистрация службы", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", + "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", + "More info" : "Дополнительная информация", + "Remove test ExApp" : "Удалить тест ExApp", + "Start Deploy test" : "Начать тест развертывания", + "Stop Deploy test" : "Остановить тест развертывания", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Служба с таким названием уже существует", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "With https enabled network is set to host" : "При включенном https сеть настроена на хост", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте службы в контейнерах ExApp.", + "Edit Deploy Daemon" : "Изменить службу развертывания", + "Register Deploy Daemon" : "Регистрация службы развертывания", + "Select daemon configuration template" : "Выберите шаблон конфигурации службы", + "Unique Deploy Daemon Name" : "Уникальное имя службы развертывания", + "Select daemon deploy method" : "Выберите метод развертывания службы", + "Set daemon as default" : "Использовать службу по умолчанию", + "Set as default daemon" : "Использовать службу по умолчанию", + "Enable https" : "Использовать HTTPS", + "Show deploy config" : "Показать конфигурацию развёртывания", + "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Network" : "Сеть", "Docker network name" : "Имя в сети Docker", + "Additional option" : "Дополнительный вариант", "by {author}\n{license}" : "автор: {author}\n{license}", "Your apps" : "Ваши приложения", "Documentation" : "Документация", diff --git a/l10n/ru.json b/l10n/ru.json index e318330e..6939bf06 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Сервис развертывания AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Служба развертывания AppAPI по умолчанию не установлена. Пожалуйста, зарегистрируйте службу развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Сервис развертывания AppAPI по-умолчанию не использует HaRP. Задумайтесь об обновлении до него для улучшения производительности.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проект AppAPI — это многообещающая инициатива, призванная кардинально изменить подход к разработке приложений для Nextcloud посредством использования Docker-контейнеров. Это расширяет выбор языков программирования и позволяет переносить ресурсоёмкие задачи на другой сервер.", - "Deploy Daemons" : "Службы публикации", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "По умолчанию служба публикации недоступна. Проверьте его конфигурацию", "ExApp init timeout (minutes)" : "Время ожидания инициализации ExApp (минуты)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Время ожидания процесса инициализации ExApp, по истечении которого AppAPI отметит его как неудачный", "ExApp init timeout" : "Время ожидания инициализации ExApp", "ExApp container restart policy" : "Политика перезапуска контейнера ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", - "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", - "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", - "All ExApps on this daemon will be removed" : "Все ExApps на этой службе будут удалены.", - "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этой службе, будут удалены.", "Cancel" : "Отмена", "Delete" : "Удалить", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", - "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", "Password confirmation failed" : "Подтверждение пароля не удалось", "Default" : "По умолчанию", "Set as default" : "Использовать по умолчанию", @@ -54,31 +42,21 @@ "Docker registries" : "Регистры Docker", "Edit" : "Редактирование", "Daemon connection successful" : "Служба успешно установлена", - "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", - "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Unlimited" : "Неограничено", - "Deploy daemon config details" : "Подробности конфигурации службы публикации", - "Deploy Daemon" : "Служба публикации", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", "ExApps installed" : "ExApps установлены", "Name" : "Имя", "Protocol" : "Протокол", "Host" : "Имя или адрес сервера", "ExApp direct communication (FRP disabled)" : "Прямая связь ExApp (FRP выключено)", - "Deploy config" : "Развертывание конфигурации", + "Deploy options" : "Варианты развертывания", "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", "HaProxy password" : "HaProxy пароль ", - "GPUs support" : "Поддержка графических процессоров", - "Compute device" : "Вычислительное устройство", "Memory limit" : "Лимит памяти", "Additional options" : "Дополнительные возможности", - "Verify connection" : "Проверить соединение", + "Check connection" : "Проверить подключение", "Registered Deploy daemons list" : "Список зарегистрированных служб развертывания", - "No Deploy daemons configured" : "Службы развертывания не настроены", - "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", - "Register Daemon" : "Регистрация службы", "Register ExApp in Nextcloud" : "Зарегистрировать ExApp в Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверьте, зарегистрирован ли ExApp в Nextcloud перед развертыванием.", "Image pull" : "Извлечение изображения", @@ -94,78 +72,46 @@ "Only if ExApp container is preset" : "Только если контейнер ExApp предварительно настроен", "Deploy test passed successfully!" : "Тест на развертывание пройден успешно!", "Deploy test failed at step \"{step}\"" : "Тест развертывания не пройден на шаге \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", - "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", - "More info" : "Дополнительная информация", + "More information" : "Дополнительные сведения", "Download ExApp logs" : "Загрузить журналы ExApp", - "Remove test ExApp" : "Удалить тест ExApp", - "Start Deploy test" : "Начать тест развертывания", - "Stop Deploy test" : "Остановить тест развертывания", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", "Please enter a registry domain" : "Войдите в домен регистра", - "From cannot be \"local\"" : "\"От\" не может быть \"локальным\"", "This registry mapping already exists" : "Отображение регистра уже существует", - "From and To cannot be the same" : "\"От\" и \"К\" не могут быть одинаковыми", "Docker registry mapping added" : "Добавлено отображение регистра", "Error adding Docker registry mapping" : "Ошибка добавления отображения регистра", "Docker registry mapping removed" : "Удалено отображение регистра", "Error removing Docker registry mapping" : "Ошибка удаления отображения регистра", "Override Docker registries" : "Перезаписать регистры Docker", - "Configure Docker registry override mappings for selected daemon." : "Настроить переопределение отображений регистра для выбранного сервиса.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Подходящий регистр-источник в файле ExApp info.xml будет перезаписан во время развертывания (на шаге вызова образа).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Это полезно, если вы хотите использовать пользовательский регистр, например, приватный регистр, или использовать другой регистр для тестирования.", "Image pull will be skipped" : "Вызов образа будет пропущен", "Remove" : "Удалить", - "No custom Docker registries configured" : "Не настроены пользовательские регистры", "Add registry override mapping" : "Добавить переопределение отображения регистра", "From" : "От", "registry URL (e.g. ghcr.io)" : "URL регистра (например, ghcr.io)", "To" : "По", "registry URL (e.g. docker.io)" : "URL регистра (например, docker.io)", "Add" : "Добавить", - "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Хостнейм (и порт), на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud, т е {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Хостнейм (и порт) или путь, на котором доступен {name}. Этот хост не должен быть общедоступен, к нему должен иметь доступ только сервер Nextcloud. Это также может быть путем к сокету Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Служба с таким названием уже существует", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретный ключ для связи с контейнером HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Пароль аутентификации AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", - "The docker network that the deployed ex-apps would use." : "Сеть Docker, которую будут использовать развернутые ex-apps.", - "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте службы в контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успешно зарегистрирован", "Failed to register DaemonConfig. Check the logs" : "Не удалось зарегистрировать DaemonConfig. Проверьте журнал", "DaemonConfig successfully updated" : "DaemonConfig успешно обновлен", "Failed to update DaemonConfig. Check the logs" : "Не удалось обновить DaemonConfig. Проверьте журнал", - "Edit Deploy Daemon" : "Изменить службу развертывания", - "Register Deploy Daemon" : "Регистрация службы развертывания", + "Failed to connect to Daemon. Check the logs" : "Не удалось подключиться к службе. Проверьте логи", + "Failed to check connection to Daemon. Check the logs" : "Не удалось проверить подключение к службе. Проверьте логи", "Daemon configuration template" : "Шаблон конфигурации службы", - "Select daemon configuration template" : "Выберите шаблон конфигурации службы", "Daemon registration form" : "Форма регистрации службы", - "Unique Deploy Daemon Name" : "Уникальное имя службы развертывания", "Display name" : "Отображаемое имя", "Deployment method" : "Метод развертывания", - "Select daemon deploy method" : "Выберите метод развертывания службы", "HaRP host" : "Хост HaRP", "Daemon host" : "Хост службы", "HaRP shared key" : "Общий ключ HaRP", - "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", - "Set daemon as default" : "Использовать службу по умолчанию", - "Set as default daemon" : "Использовать службу по умолчанию", - "Enable https" : "Использовать HTTPS", - "Show deploy config" : "Показать конфигурацию развёртывания", - "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Enable HaRP" : "Включить HaRP", "FRP server address" : "Адрес сервера FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адрес (хост:порт) FRP сервера, который должен быть доступен для ex-app в сети, определенной в \"сети Docker\".", "Docker socket proxy port" : "Порт прокси-сокета Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт HaRP, к которому подключится прокси-сокет Docker. Он должен быть открыт, но не для внутренних служб, не требуется, чтобы он был открыт или изменен.", "Disable FRP" : "Отключить FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Переключатель только для расширенных настроек. Отключает FRP-туннель между ExApps и HaRP.", "Disabled" : "Отключено", "Docker network for ex-app deployment must be defined" : "Сеть Docker для развертывания ex-app должна быть определена", - "Additional option" : "Дополнительный вариант", + "Compute device" : "Вычислительное устройство", "Add additional option" : "Добавить дополнительную опцию", "Option key (unique)" : "Ключевой параметр (уникальный)", "Option key (unique, e.g. my_key)" : "Ключ параметра (уникальный, например my_key)", @@ -175,10 +121,15 @@ "Confirm" : "Подтвердить", "Save" : "Сохранить", "Register" : "Регистрация", - "Check connection" : "Проверить подключение", "External Apps" : "Внешние приложения", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n### Приложения в комплекте\n\n**Начиная с Nextcloud 30.0.1, это приложение включено в поставку Nextcloud  по-умолчанию.**\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI — это захватывающая инициатива, цель которой — произвести революцию в способах разработки приложений для Nextcloud.", + "Deploy Daemons" : "Службы публикации", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания (DaemonConfig) - это служба оркестровки ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Служба развертывания. Служба развертывания (DaemonConfig) — это служба оркестровки ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "По умолчанию служба публикации недоступна. Проверьте его конфигурацию", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Укажите политику перезапуска контейнера, например «всегда», чтобы обеспечить работу ExApp после перезагрузки сервера-демона.", + "This settings changes are reflected only for newly created containers" : "Эти изменения настроек отражаются только для вновь созданных контейнеров", "{license}-licensed" : "Лицензия: {license}", "Update to {version}" : "Обновление до версии {version}", "Delete data on remove" : "Удалить данные при удалении", @@ -208,12 +159,51 @@ "No apps found" : "Приложения не найдены", "_%n ExApp has an update available_::_%n apps have an update available_" : ["Для %n приложения доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление","Для %n приложений доступно обновление"], "_Update_::_Update all_" : ["Обновить","Обновить все","Обновить все","Обновить все"], + "Deploy Daemon" : "Служба публикации", "Type" : "Тип", "Display Name" : "Отображаемое имя", + "GPUs support" : "Поддержка графических процессоров", + "Are you sure you want delete Deploy Daemon" : "Вы уверены, что хотите удалить Deploy Daemon?", + "All ExApps on this daemon will be removed" : "Все ExApps на этой службе будут удалены.", + "All ExApps installed on this daemon will be removed" : "Все ExApps, установленные на этой службе, будут удалены.", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Служба развертывания \"manual-install\" не может быть установлен по умолчанию", + "Failed to save admin options. Check the logs" : "Не удалось сохранить параметры администратора. Проверьте журналы", + "Deploy daemon config details" : "Подробности конфигурации службы публикации", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Служба ручной установки, обычно используемый для разработки. Её нельзя установить как службу по умолчанию.", + "Deploy config" : "Развертывание конфигурации", + "Verify connection" : "Проверить соединение", + "No Deploy daemons configured" : "Службы развертывания не настроены", + "Register a custom one or setup from available templates" : "Зарегистрируйте индивидуальный шаблон или настройте его из доступных шаблонов", + "Register Daemon" : "Регистрация службы", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI попытается установить небольшой скелет ExApp, чтобы проверить правильность настройки службы и прохождение этапов развертывания.", + "The following Deploy test checks must be passed to succeed:" : "Для успешного развертывания необходимо пройти следующие тестовые проверки:", + "More info" : "Дополнительная информация", + "Remove test ExApp" : "Удалить тест ExApp", + "Start Deploy test" : "Начать тест развертывания", + "Stop Deploy test" : "Остановить тест развертывания", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp не зарегистрирован, и контейнер удален при «Остановке теста развертывания»", + "Hostname to access ExApps" : "Имя хоста для доступа к ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Имя хоста или путь для доступа к службе Docker (например, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Служба с таким названием уже существует", + "Password must be at least 12 characters long" : "Пароль должен быть длиной не менее 12 символов.", "With https enabled network is set to host" : "При включенном https сеть настроена на хост", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Изменения будут применены только к недавно установленным ExApps. Для существующих ExApps следует заново создать контейнеры Docker.", + "URL should start with http:// or https://" : "URL должен начинаться с http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS службы URL-адрес Nextcloud должен быть HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker запросит включение всех доступных устройств GPU на хосте службы в контейнерах ExApp.", + "Edit Deploy Daemon" : "Изменить службу развертывания", + "Register Deploy Daemon" : "Регистрация службы развертывания", + "Select daemon configuration template" : "Выберите шаблон конфигурации службы", + "Unique Deploy Daemon Name" : "Уникальное имя службы развертывания", + "Select daemon deploy method" : "Выберите метод развертывания службы", + "Set daemon as default" : "Использовать службу по умолчанию", + "Set as default daemon" : "Использовать службу по умолчанию", + "Enable https" : "Использовать HTTPS", + "Show deploy config" : "Показать конфигурацию развёртывания", + "Hide deploy config" : "Скрыть конфигурацию развёртывания", "Network" : "Сеть", "Docker network name" : "Имя в сети Docker", + "Additional option" : "Дополнительный вариант", "by {author}\n{license}" : "автор: {author}\n{license}", "Your apps" : "Ваши приложения", "Documentation" : "Документация", diff --git a/l10n/sc.js b/l10n/sc.js index 002bb388..45da6239 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Retzidore", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", + "More information" : "Àteras informatziones", "Remove" : "Boga", "From" : "Dae", "To" : "A", diff --git a/l10n/sc.json b/l10n/sc.json index a160f4fe..30f02be3 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -7,6 +7,7 @@ "Host" : "Retzidore", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Ativadu", + "More information" : "Àteras informatziones", "Remove" : "Boga", "From" : "Dae", "To" : "A", diff --git a/l10n/sk.js b/l10n/sk.js index a14e2765..4abf8d37 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -23,59 +23,37 @@ OC.L10N.register( "AppAPI deploy daemon" : "Démon nasadenia AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Predvolený démon nasadenia AppAPI nie je nastavený. Ak chcete nainštalovať externé aplikácie (Ex-Apps), zaregistrujte si v nastaveniach predvoleného démona nasadenia.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Predvolený démon nasadenia AppAPI \"%s\" nie je prístupný. Skontrolujte konfiguráciu démona.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Predvolený démon nasadenia AppAPI nepoužíva HaRP. Zvážte jeho aktualizáciu pre lepší výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", "Admin options saved" : "Nastavenia administrátora boli uložené", "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", - "Deploy Daemons" : "Nasadenie démonov", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Predvolený Deploy Daemon nie je prístupný. Skontrolujte jeho konfiguráciu", "ExApp init timeout (minutes)" : "Časový limit inicializácie ExApp (minúty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit inicializačného procesu ExApp, po ktorom ho AppAPI označí ako neúspešný", "ExApp init timeout" : "Časový limit inicializácie ExApp", "ExApp container restart policy" : "Zásady reštartovania kontajnera ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", - "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", - "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", - "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", - "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", "Cancel" : "Zrušiť", "Delete" : "Vymazať", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", - "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", "Password confirmation failed" : "Overenie hesla zlyhalo", "Default" : "Predvolené", "Set as default" : "Nastaviť ako predvolené", "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", "Daemon connection successful" : "Pripojenie démona bolo úspešné", - "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", - "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Unlimited" : "Neobmedzené", - "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", - "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Démon manuálnej inštalácie sa zvyčajne používa pre vývoj. Nemožno ho nastaviť ako predvoleného démona.", "ExApps installed" : "ExApps boli nainštalované", "Name" : "Názov", "Protocol" : "Protokol", "Host" : "Adresa servera", - "Deploy config" : "Nastavenie nasadenia", + "Deploy options" : "Možnosti nasadenia", "Docker network" : "Sieť dockeru", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "Heslo HaProxy", - "GPUs support" : "Podpora GPU", - "Compute device" : "Výpočetné zariadenie", "Memory limit" : "Obmedzenie pamäte", "Additional options" : "Ďalšie nastavenia", - "Verify connection" : "Overiť spojenie", + "Check connection" : "Skontrolovať pripojenie", "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", - "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", - "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", - "Register Daemon" : "Zaregistrovať Démona", "Register ExApp in Nextcloud" : "Zaregistrovať ExApp v Nextcloude", "Check if the ExApp is registered in Nextcloud before deployment" : "Pred nasadením skontrolujte, či je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Stiahnutie obrazu", @@ -91,59 +69,33 @@ OC.L10N.register( "Only if ExApp container is preset" : "Iba ak je prednastavený kontajner ExApp", "Deploy test passed successfully!" : "Test nasadenia skončil úspešne!", "Deploy test failed at step \"{step}\"" : "Test nasadenia zlyhal na kroku \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", - "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", - "More info" : "Viac informácií", + "More information" : "Viac informácií", "Download ExApp logs" : "Stiahnuť logy ExApp", - "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", - "Start Deploy test" : "Spustiť test nasadenia", - "Stop Deploy test" : "Zastaviť test nasadenia", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Remove" : "Odobrať", "From" : "Od", "To" : "Pre", "Add" : "Pridať", - "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Názov hostiteľa (a port), na ktorom je k dispozícii {name}. Nemusí to byť verejný hostiteľ, len hostiteľ prístupný zo servera Nextcloud, napr. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa (a port) alebo cesta, na ktorej je k dispozícii {name}. Nemusí to byť verejný hostiteľ, iba hostiteľ prístupný zo servera Nextcloud. Môže to byť aj cesta k docker socketu. (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Démon s týmto názvom už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Tajný kľúč pre komunikáciu kontajnera HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", - "The docker network that the deployed ex-apps would use." : "Sieť dockera, ktorú použijú nasadené ex-app.", - "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", - "Edit Deploy Daemon" : "Upraviť Démona nasadenia", - "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Daemon configuration template" : "Šablóna konfigurácie démona", - "Select daemon configuration template" : "Vybrať šablónu konfigurácie démona", "Daemon registration form" : "Registračný formulár Démona", - "Unique Deploy Daemon Name" : "Unikátny názov Démona nasadenia", "Display name" : "Zobrazované meno", "Deployment method" : "Metóda nasadenia", - "Select daemon deploy method" : "Vybrať metódu nasadenia démona", "HaRP host" : "HaRP hostiteľ", "Daemon host" : "Hostiteľ démona", "HaRP shared key" : "HaRP zdieľaný kľúč", - "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", - "Set daemon as default" : "Nastaviť démona ako predvoleného", - "Set as default daemon" : "Nastaviť ako predvoleného démona", - "Enable https" : "Povoliť https", - "Show deploy config" : "Zobraziť konfiguráciu nasadenia", - "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Enable HaRP" : "Zapnúť HaRP", "FRP server address" : "HaRP adresa servera", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (host:port) servera FRP, ktorý by mal byť dosiahnuteľný pre ex-app v sieti definovanej v 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ku ktorému sa pripája docker socket proxy. Ten by mal byť otvorený, ale v prípade vstavaného sa nevyžaduje, aby bol prístupný alebo zmenený.", "Disabled" : "Vypnuté", "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", - "Additional option" : "Ďalšia voľba", + "Compute device" : "Výpočetné zariadenie", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", "Option key (unique, e.g. my_key)" : "Kľúč voľby (jedinečný, napr. moj_kluc)", @@ -153,10 +105,15 @@ OC.L10N.register( "Confirm" : "Potvrdiť", "Save" : "Uložiť", "Register" : "Registrovať", - "Check connection" : "Skontrolovať pripojenie", "External Apps" : "Externé aplikácie", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", + "Deploy Daemons" : "Nasadenie démonov", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Predvolený Deploy Daemon nie je prístupný. Skontrolujte jeho konfiguráciu", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", + "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", "Delete data on remove" : "Pri odobraní zmazať dáta", @@ -186,12 +143,51 @@ OC.L10N.register( "No apps found" : "Nenašli sa žiadne aplikácie", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplikácia má dostupnú aktualizáciu","%n aplikácie majú dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu"], "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], + "Deploy Daemon" : "Nasadiť proces služby", "Type" : "Typ", "Display Name" : "Zobrazované meno", + "GPUs support" : "Podpora GPU", + "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", + "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", + "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", + "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", + "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Démon manuálnej inštalácie sa zvyčajne používa pre vývoj. Nemožno ho nastaviť ako predvoleného démona.", + "Deploy config" : "Nastavenie nasadenia", + "Verify connection" : "Overiť spojenie", + "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", + "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", + "Register Daemon" : "Zaregistrovať Démona", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", + "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", + "More info" : "Viac informácií", + "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", + "Start Deploy test" : "Spustiť test nasadenia", + "Stop Deploy test" : "Zastaviť test nasadenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", + "Edit Deploy Daemon" : "Upraviť Démona nasadenia", + "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", + "Select daemon configuration template" : "Vybrať šablónu konfigurácie démona", + "Unique Deploy Daemon Name" : "Unikátny názov Démona nasadenia", + "Select daemon deploy method" : "Vybrať metódu nasadenia démona", + "Set daemon as default" : "Nastaviť démona ako predvoleného", + "Set as default daemon" : "Nastaviť ako predvoleného démona", + "Enable https" : "Povoliť https", + "Show deploy config" : "Zobraziť konfiguráciu nasadenia", + "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Network" : "Sieť", "Docker network name" : "Meno siete dockeru", + "Additional option" : "Ďalšia voľba", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", diff --git a/l10n/sk.json b/l10n/sk.json index fffd17de..bd2c7d09 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -21,59 +21,37 @@ "AppAPI deploy daemon" : "Démon nasadenia AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Predvolený démon nasadenia AppAPI nie je nastavený. Ak chcete nainštalovať externé aplikácie (Ex-Apps), zaregistrujte si v nastaveniach predvoleného démona nasadenia.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Predvolený démon nasadenia AppAPI \"%s\" nie je prístupný. Skontrolujte konfiguráciu démona.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Predvolený démon nasadenia AppAPI nepoužíva HaRP. Zvážte jeho aktualizáciu pre lepší výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", "Admin options saved" : "Nastavenia administrátora boli uložené", "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", - "Deploy Daemons" : "Nasadenie démonov", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Predvolený Deploy Daemon nie je prístupný. Skontrolujte jeho konfiguráciu", "ExApp init timeout (minutes)" : "Časový limit inicializácie ExApp (minúty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit inicializačného procesu ExApp, po ktorom ho AppAPI označí ako neúspešný", "ExApp init timeout" : "Časový limit inicializácie ExApp", "ExApp container restart policy" : "Zásady reštartovania kontajnera ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", - "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", - "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", - "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", - "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", "Cancel" : "Zrušiť", "Delete" : "Vymazať", - "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", - "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", "Password confirmation failed" : "Overenie hesla zlyhalo", "Default" : "Predvolené", "Set as default" : "Nastaviť ako predvolené", "Test deploy" : "Testovať nasadenie", "Edit" : "Upraviť", "Daemon connection successful" : "Pripojenie démona bolo úspešné", - "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", - "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Unlimited" : "Neobmedzené", - "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", - "Deploy Daemon" : "Nasadiť proces služby", "Default daemon. ExApps will be installed on it" : "Predvolený démon. ExApps budú na neho nainštalované", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Démon manuálnej inštalácie sa zvyčajne používa pre vývoj. Nemožno ho nastaviť ako predvoleného démona.", "ExApps installed" : "ExApps boli nainštalované", "Name" : "Názov", "Protocol" : "Protokol", "Host" : "Adresa servera", - "Deploy config" : "Nastavenie nasadenia", + "Deploy options" : "Možnosti nasadenia", "Docker network" : "Sieť dockeru", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "Heslo HaProxy", - "GPUs support" : "Podpora GPU", - "Compute device" : "Výpočetné zariadenie", "Memory limit" : "Obmedzenie pamäte", "Additional options" : "Ďalšie nastavenia", - "Verify connection" : "Overiť spojenie", + "Check connection" : "Skontrolovať pripojenie", "Registered Deploy daemons list" : "Zoznam registrovaných démonov nasadenia", - "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", - "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", - "Register Daemon" : "Zaregistrovať Démona", "Register ExApp in Nextcloud" : "Zaregistrovať ExApp v Nextcloude", "Check if the ExApp is registered in Nextcloud before deployment" : "Pred nasadením skontrolujte, či je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Stiahnutie obrazu", @@ -89,59 +67,33 @@ "Only if ExApp container is preset" : "Iba ak je prednastavený kontajner ExApp", "Deploy test passed successfully!" : "Test nasadenia skončil úspešne!", "Deploy test failed at step \"{step}\"" : "Test nasadenia zlyhal na kroku \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", - "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", - "More info" : "Viac informácií", + "More information" : "Viac informácií", "Download ExApp logs" : "Stiahnuť logy ExApp", - "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", - "Start Deploy test" : "Spustiť test nasadenia", - "Stop Deploy test" : "Zastaviť test nasadenia", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", "Remove" : "Odobrať", "From" : "Od", "To" : "Pre", "Add" : "Pridať", - "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Názov hostiteľa (a port), na ktorom je k dispozícii {name}. Nemusí to byť verejný hostiteľ, len hostiteľ prístupný zo servera Nextcloud, napr. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa (a port) alebo cesta, na ktorej je k dispozícii {name}. Nemusí to byť verejný hostiteľ, iba hostiteľ prístupný zo servera Nextcloud. Môže to byť aj cesta k docker socketu. (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Démon s týmto názvom už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Tajný kľúč pre komunikáciu kontajnera HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy heslo autentifikácie", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", - "The docker network that the deployed ex-apps would use." : "Sieť dockera, ktorú použijú nasadené ex-app.", - "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", "DaemonConfig successfully registered" : "DaemonConfig bol úspešne zaregistrovaný", "Failed to register DaemonConfig. Check the logs" : "Nepodarilo sa zaregistrovať DeamonConfig. Skontrolujte logy", "DaemonConfig successfully updated" : "DaemonConfig bol úspešne aktualizovaný", "Failed to update DaemonConfig. Check the logs" : "Aktualizácia DaemonConfig zlyhala. Skontrolujte logy", - "Edit Deploy Daemon" : "Upraviť Démona nasadenia", - "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", + "Failed to connect to Daemon. Check the logs" : "Nepodarilo sa pripojiť k démonu. Skontrolujte logy", + "Failed to check connection to Daemon. Check the logs" : "Nepodarilo sa skontrolovať pripojenie k démonu. Skontrolujte logy", "Daemon configuration template" : "Šablóna konfigurácie démona", - "Select daemon configuration template" : "Vybrať šablónu konfigurácie démona", "Daemon registration form" : "Registračný formulár Démona", - "Unique Deploy Daemon Name" : "Unikátny názov Démona nasadenia", "Display name" : "Zobrazované meno", "Deployment method" : "Metóda nasadenia", - "Select daemon deploy method" : "Vybrať metódu nasadenia démona", "HaRP host" : "HaRP hostiteľ", "Daemon host" : "Hostiteľ démona", "HaRP shared key" : "HaRP zdieľaný kľúč", - "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", - "Set daemon as default" : "Nastaviť démona ako predvoleného", - "Set as default daemon" : "Nastaviť ako predvoleného démona", - "Enable https" : "Povoliť https", - "Show deploy config" : "Zobraziť konfiguráciu nasadenia", - "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Enable HaRP" : "Zapnúť HaRP", "FRP server address" : "HaRP adresa servera", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Adresa (host:port) servera FRP, ktorý by mal byť dosiahnuteľný pre ex-app v sieti definovanej v 'Docker network'.", "Docker socket proxy port" : "Docker socket proxy port", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ku ktorému sa pripája docker socket proxy. Ten by mal byť otvorený, ale v prípade vstavaného sa nevyžaduje, aby bol prístupný alebo zmenený.", "Disabled" : "Vypnuté", "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", - "Additional option" : "Ďalšia voľba", + "Compute device" : "Výpočetné zariadenie", "Add additional option" : "Pridať ďalšiu voľbu", "Option key (unique)" : "Kľúč voľby (jedinečný)", "Option key (unique, e.g. my_key)" : "Kľúč voľby (jedinečný, napr. moj_kluc)", @@ -151,10 +103,15 @@ "Confirm" : "Potvrdiť", "Save" : "Uložiť", "Register" : "Registrovať", - "Check connection" : "Skontrolovať pripojenie", "External Apps" : "Externé aplikácie", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoj, nasadenie a správa aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n### Pribalená aplikácia\n\n**Od verzie Nextcloud 30.0.1 je táto aplikácia zahrnutá v predvolenom balíku Nextcloud.**\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Dajte hviezdičku našej práci na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o zaradenie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Project je vzrušujúca iniciatíva, ktorej cieľom je revolúcia vo vývoji aplikácií pre Nextcloud.", + "Deploy Daemons" : "Nasadenie démonov", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Nasadenie démonov. Deploy Daemon (DaemonConfig) je orchestračný démon ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Predvolený Deploy Daemon nie je prístupný. Skontrolujte jeho konfiguráciu", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Zadajte politiku reštartovania kontajnera, napr. „vždy“, aby sa zabezpečilo spustenie ExApp po reštarte démon servera", + "This settings changes are reflected only for newly created containers" : "Tieto zmeny nastavení sa prejavia iba pri novovytvorených kontajneroch", "{license}-licensed" : "{license}-licencovaný", "Update to {version}" : "Aktualizovať na {version}", "Delete data on remove" : "Pri odobraní zmazať dáta", @@ -184,12 +141,51 @@ "No apps found" : "Nenašli sa žiadne aplikácie", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplikácia má dostupnú aktualizáciu","%n aplikácie majú dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu","%n aplikácií má dostupnú aktualizáciu"], "_Update_::_Update all_" : ["Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko","Aktualizovať všetko"], + "Deploy Daemon" : "Nasadiť proces služby", "Type" : "Typ", "Display Name" : "Zobrazované meno", + "GPUs support" : "Podpora GPU", + "Are you sure you want delete Deploy Daemon" : "Naozaj chcete vymazať Démona nasadenia", + "All ExApps on this daemon will be removed" : "Všetky ExApps na tomto démonovi budú odstránené", + "All ExApps installed on this daemon will be removed" : "Všetky ExApps nainštalované na tomto démonovi budú odstránené", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Démon nasadenia \"manual-install\" nemôže byť nastavený ako predvolený", + "Failed to save admin options. Check the logs" : "Nepodarilo sa uložiť nastavenia administrátora. Skontrolujte logy", + "Deploy daemon config details" : "Podprobnosti nastavenia Démona nasadenia", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Démon manuálnej inštalácie sa zvyčajne používa pre vývoj. Nemožno ho nastaviť ako predvoleného démona.", + "Deploy config" : "Nastavenie nasadenia", + "Verify connection" : "Overiť spojenie", + "No Deploy daemons configured" : "Neboli nastavené žiadne Démony nasadeia", + "Register a custom one or setup from available templates" : "Zaregistrujte si vlastný alebo ho nastavte z dostupných šablón", + "Register Daemon" : "Zaregistrovať Démona", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI sa pokúsi nainštalovať malú kostru aplikácie ExApp, aby overil, či je démon správne nakonfigurovaný a či prebehli kroky nasadenia.", + "The following Deploy test checks must be passed to succeed:" : "Pre úspech, musia prejsť nasledujúcé kontroly testu nasadenia:", + "More info" : "Viac informácií", + "Remove test ExApp" : "Odstrániť testovaciu aplikáciu ExApp", + "Start Deploy test" : "Spustiť test nasadenia", + "Stop Deploy test" : "Zastaviť test nasadenia", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp je neregistrovaný a kontajner je odstránený pri \"Zastaviť test nasadenia\"", + "Hostname to access ExApps" : "Hostiteľ pre prístup k ExApp", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Názov hostiteľa alebo cesta pre prístup k démonovi Docker (napr. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Démon s týmto názvom už existuje", + "Password must be at least 12 characters long" : "Heslo musí byť dlhé aspoň 12 znakov.", "With https enabled network is set to host" : "S povoleným https je sieť nastavená na hostiteľa", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Zmeny budú aplikované iba na novo nainštalované aplikácie ExApps. V prípade existujúcich aplikácií ExApp by sa mali znova vytvoriť kontajnery Docker.", + "URL should start with http:// or https://" : "URL musí začínať na http:// alebo https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Pre HTTPS démona, Nextcloud URL by malo byť HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker požiada o povolenie všetkých dostupných zariadení GPU na hostiteľovi démona v kontajneroch ExApp.", + "Edit Deploy Daemon" : "Upraviť Démona nasadenia", + "Register Deploy Daemon" : "Zaregistrovať Démona nasadenia", + "Select daemon configuration template" : "Vybrať šablónu konfigurácie démona", + "Unique Deploy Daemon Name" : "Unikátny názov Démona nasadenia", + "Select daemon deploy method" : "Vybrať metódu nasadenia démona", + "Set daemon as default" : "Nastaviť démona ako predvoleného", + "Set as default daemon" : "Nastaviť ako predvoleného démona", + "Enable https" : "Povoliť https", + "Show deploy config" : "Zobraziť konfiguráciu nasadenia", + "Hide deploy config" : "Skryť konfiguráciu nasadenia", "Network" : "Sieť", "Docker network name" : "Meno siete dockeru", + "Additional option" : "Ďalšia voľba", "by {author}\n{license}" : "od {author}\n{license}", "Your apps" : "Vaše aplikácie", "Documentation" : "Dokumentácia", diff --git a/l10n/sl.js b/l10n/sl.js index a25fe5c7..f2b3052a 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "Naslov URL Nextcloud", "Memory limit" : "Omejitev pomnilnika", "Enabled" : "Omogočeno", + "More information" : "Več podrobnosti", "Remove" : "Odstrani", "From" : "Od", "To" : "Za", diff --git a/l10n/sl.json b/l10n/sl.json index ac4f4bf0..1c16b462 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "Naslov URL Nextcloud", "Memory limit" : "Omejitev pomnilnika", "Enabled" : "Omogočeno", + "More information" : "Več podrobnosti", "Remove" : "Odstrani", "From" : "Od", "To" : "Za", diff --git a/l10n/sr.js b/l10n/sr.js index c3681017..7a8bf7e7 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI даемон за постављање", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Није постављен подразумевани AppAPI даемон за постављање. Да бисте инсталирали Спољне апликације (Ex-Apps), молимо вас да региструјете подразумевани даемон за постављање.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI подразумевани даемон за постављање „%s” није доступан. Молимо вас да проверите конфигурацију", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI подразумевани даемон за постављање не користи HaRP. Да бисте имали боље перформнсе, размотрите могућност да га ажурирате.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI пројекат је узбудљива иницијатива чији је циљ да се револуционира начин на који се развијају апликације за Nextcloud кроз употребу docker контејнера. Тако се дозвољава слободнији избор програмског језика и омогућава да се сложенији задаци који захтевају већу рачунарску снагу извршавају на неком другом серверу.", - "Deploy Daemons" : "Даемони за постављање", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Подразумевани даемон за постављање није доступан. Молимо вас да проверите његову конфигурацију", "ExApp init timeout (minutes)" : "Тајмаут иницијализације ExApp (минута)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Истекло је време иницијализације ExApp након којег ће је AppAPI означити као неуспешну", "ExApp init timeout" : "Тајмаут иницијализације ExApp", "ExApp container restart policy" : "Политика поновног покретања ExApp контејнера", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", - "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", - "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", - "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", - "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", "Cancel" : "Откажи", "Delete" : "Избриши", - "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", - "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", "Password confirmation failed" : "Није успело потврђивање лозинке", "Default" : "Подразумевано", "Set as default" : "Постави као подразумевано", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Docker регистратори", "Edit" : "Измени", "Daemon connection successful" : "Веза са даемоном је успела", - "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", - "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Unlimited" : "Неограничено", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPU-а", - "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", - "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Даемон за ручно инсталирање се обично користи за развој. Он не може да се постави као подразумевани даемон.", "ExApps installed" : "ExApp су инсталиране", "Name" : "Име", "Protocol" : "Протокол", "Host" : "Домаћин", "ExApp direct communication (FRP disabled)" : "ExApp директна комуникација (искључен FRP)", - "Deploy config" : "Конфигурација постављања", + "Deploy options" : "Опције постављања", "Docker network" : "Docker мрежа", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy лозинка", - "GPUs support" : "Подршка за GPU", - "Compute device" : "Рачунарски уређај", "Memory limit" : "Ограничење меморије", "CPU limit" : "CPU ограничење", "Additional options" : "Додатне опције", - "Verify connection" : "Провери везу", + "Check connection" : "Провера везе", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", - "No Deploy daemons configured" : "Није подешен ниједан Даемон за постављање", - "Register a custom one or setup from available templates" : "Региструјте произвољни или подесите неки према доступном шаблону", - "Register Daemon" : "Региструј Даемон", "Register ExApp in Nextcloud" : "Региструј ExApp у Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверава да ли је ExApp регистрована у Nextcloud пре постављања", "Image pull" : "Повлачење слике", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Само ако је присутан ExApp контејнер", "Deploy test passed successfully!" : "Тест постављања је успешно прошао!", "Deploy test failed at step \"{step}\"" : "Тест постављања је пао на кораку „{step}”", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", - "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", - "More info" : "Више информација", + "More information" : "Још информација", "Download ExApp logs" : "Преузми ExApp дневнике", - "Remove test ExApp" : "Уклони тест ExApp", - "Start Deploy test" : "Покрени тест постављања", - "Stop Deploy test" : "Заустави тест постављања", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Please enter a registry domain" : "Молимо вас да унесете домен регистратора", - "From cannot be \"local\"" : "Од не може да буде „local”", "This registry mapping already exists" : "Ово мапирање регистратора већ постоји", - "From and To cannot be the same" : "Од и На не могу да буду исто", "Docker registry mapping added" : "Додато је мапирање Docker регистратора", "Error adding Docker registry mapping" : "Грешка приликом додавања мапирања Docker регистратора", "Docker registry mapping removed" : "Уклоњено је мапирање Docker регистратора", "Error removing Docker registry mapping" : "Грешка приликом уклањања мапирања Docker регистратора", "Override Docker registries" : "Преиначи Docker регистраторе", - "Configure Docker registry override mappings for selected daemon." : "Конфигуришите мапирања преиначења Docker регистратора за изабрани даемон.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Одговарајући изворни регистратор у ExApp info.xml ће се преписати током постављања (у кораку повлачења слике).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Ово је корисни ако желите да користите произвољни Docker регистратор, на пример, да користите приватни Docker регистратор, или да за тестирање користите неки различити Docker регистратор.", "Image pull will be skipped" : "Прескочиће се повлачење слике", "Remove" : "Уклони", - "No custom Docker registries configured" : "Није конфигурисан ниједан произвољни Docker регистратор", "Add registry override mapping" : "Додај мапирање премошћавања регистратора", "From" : "Од", "registry URL (e.g. ghcr.io)" : "URL регистратора (нпр. ghcr.io)", "To" : "За", "registry URL (e.g. docker.io)" : "URL регистратора (нпр. docker.io)", "Add" : "Додај", - "Hostname to access ExApps" : "Име хоста за приступ ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста (и порт) или путања где је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи. Такође може да буде и путања до докер сокета. (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Даемон са овим именом већ постоји", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Тајни кључ за комуникацију HaRP контејнера (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", - "The docker network that the deployed ex-apps would use." : "Докер мрежа коју би користиле постављене ex-app.", - "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", "DaemonConfig successfully registered" : "DaemonConfig је успешно регистрована", "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", - "Edit Deploy Daemon" : "Уреди Даемона за постављање", - "Register Deploy Daemon" : "Региструје Даемон за постављање", + "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", + "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Daemon configuration template" : "Шаблон подешавања Даемона", - "Select daemon configuration template" : "Изаберите шаблон за даемон постављања", "Daemon registration form" : "Формулар за регистрацију Даемона", - "Unique Deploy Daemon Name" : "Јединствено име Даемона за постављање", "Display name" : "Име за приказ", "Deployment method" : "Метода постављања", - "Select daemon deploy method" : "Изаберте методу за постављање даемона", "HaRP host" : "HaRP хост", "Daemon host" : "Хост даемона", "HaRP shared key" : "HaRP дељени кључ", - "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", - "Set daemon as default" : "Постави даемон као подразумевани", - "Set as default daemon" : "Поставља даемон као подразумевани", - "Enable https" : "Укључи https", - "Show deploy config" : "Прикажи конфигурацију постављања", - "Hide deploy config" : "Сакриј конфигурацију постављања", "Enable HaRP" : "Укључи HaRP", "FRP server address" : "Адреса FRP сервера", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", "Docker socket proxy port" : "Порт проксија за докер сокет", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", "Disable FRP" : "Искључи FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Заставица само за напредне инсталације. Искључује FRP тунел између ExApp апликација и HaRP.", "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", + "Compute device" : "Рачунарски уређај", "Memory limit (in MiB)" : "Ограничење меморије (у MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Максимална количина меморије у мебибајтовима које ExApp контејнер може да употреби", "Must be a positive integer" : "Мора да буде позитиван цео број", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимални број CPU језгара које ExApp контејнер може да употреби (нпр. 0.5 за пола језгра, 2 за два језгра)", "CPU limit as decimal value" : "CPU ограничење као децимална вредност", "Must be a positive number" : "Мора да буде позитиван цео број", - "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", "Option key (unique, e.g. my_key)" : "Кључ опције (једиствен, нпр. my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Потврди", "Save" : "Сачувај", "Register" : "Региструј се", - "Check connection" : "Провера везе", "External Apps" : "Спољне апликације", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", + "Deploy Daemons" : "Даемони за постављање", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Подразумевани даемон за постављање није доступан. Молимо вас да проверите његову конфигурацију", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", + "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", "Delete data on remove" : "Обриши податке приликом уклањања", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Није пронађена ниједна апликација", "_%n ExApp has an update available_::_%n apps have an update available_" : ["Доступно је ажурирање за %n апликацију","Доступно је ажурирање за %n апликације","Доступно је ажурирање за %n апликација"], "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], + "Deploy Daemon" : "Даемон за постављање", "Type" : "Тип", "Display Name" : "Име за приказ", + "GPUs support" : "Подршка за GPU", + "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", + "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", + "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", + "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", + "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", + "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Даемон за ручно инсталирање се обично користи за развој. Он не може да се постави као подразумевани даемон.", + "Deploy config" : "Конфигурација постављања", + "Verify connection" : "Провери везу", + "No Deploy daemons configured" : "Није подешен ниједан Даемон за постављање", + "Register a custom one or setup from available templates" : "Региструјте произвољни или подесите неки према доступном шаблону", + "Register Daemon" : "Региструј Даемон", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", + "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", + "More info" : "Више информација", + "Remove test ExApp" : "Уклони тест ExApp", + "Start Deploy test" : "Покрени тест постављања", + "Stop Deploy test" : "Заустави тест постављања", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Hostname to access ExApps" : "Име хоста за приступ ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Даемон са овим именом већ постоји", + "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", + "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", + "Edit Deploy Daemon" : "Уреди Даемона за постављање", + "Register Deploy Daemon" : "Региструје Даемон за постављање", + "Select daemon configuration template" : "Изаберите шаблон за даемон постављања", + "Unique Deploy Daemon Name" : "Јединствено име Даемона за постављање", + "Select daemon deploy method" : "Изаберте методу за постављање даемона", + "Set daemon as default" : "Постави даемон као подразумевани", + "Set as default daemon" : "Поставља даемон као подразумевани", + "Enable https" : "Укључи https", + "Show deploy config" : "Прикажи конфигурацију постављања", + "Hide deploy config" : "Сакриј конфигурацију постављања", "Network" : "Мрежа", "Docker network name" : "Име Docker мреже: ", + "Additional option" : "Додатна опција", "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваше апликације", "Documentation" : "Документација", diff --git a/l10n/sr.json b/l10n/sr.json index f6e44ce6..bbd79563 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI даемон за постављање", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Није постављен подразумевани AppAPI даемон за постављање. Да бисте инсталирали Спољне апликације (Ex-Apps), молимо вас да региструјете подразумевани даемон за постављање.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI подразумевани даемон за постављање „%s” није доступан. Молимо вас да проверите конфигурацију", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI подразумевани даемон за постављање не користи HaRP. Да бисте имали боље перформнсе, размотрите могућност да га ажурирате.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI пројекат је узбудљива иницијатива чији је циљ да се револуционира начин на који се развијају апликације за Nextcloud кроз употребу docker контејнера. Тако се дозвољава слободнији избор програмског језика и омогућава да се сложенији задаци који захтевају већу рачунарску снагу извршавају на неком другом серверу.", - "Deploy Daemons" : "Даемони за постављање", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Подразумевани даемон за постављање није доступан. Молимо вас да проверите његову конфигурацију", "ExApp init timeout (minutes)" : "Тајмаут иницијализације ExApp (минута)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Истекло је време иницијализације ExApp након којег ће је AppAPI означити као неуспешну", "ExApp init timeout" : "Тајмаут иницијализације ExApp", "ExApp container restart policy" : "Политика поновног покретања ExApp контејнера", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", - "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", - "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", - "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", - "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", "Cancel" : "Откажи", "Delete" : "Избриши", - "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", - "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", "Password confirmation failed" : "Није успело потврђивање лозинке", "Default" : "Подразумевано", "Set as default" : "Постави као подразумевано", @@ -54,36 +42,24 @@ "Docker registries" : "Docker регистратори", "Edit" : "Измени", "Daemon connection successful" : "Веза са даемоном је успела", - "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", - "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Unlimited" : "Неограничено", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPU-а", - "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", - "Deploy Daemon" : "Даемон за постављање", "Default daemon. ExApps will be installed on it" : "Подразумевани даемон. ExApps ће се инсталиранти на њему.", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Даемон за ручно инсталирање се обично користи за развој. Он не може да се постави као подразумевани даемон.", "ExApps installed" : "ExApp су инсталиране", "Name" : "Име", "Protocol" : "Протокол", "Host" : "Домаћин", "ExApp direct communication (FRP disabled)" : "ExApp директна комуникација (искључен FRP)", - "Deploy config" : "Конфигурација постављања", + "Deploy options" : "Опције постављања", "Docker network" : "Docker мрежа", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy лозинка", - "GPUs support" : "Подршка за GPU", - "Compute device" : "Рачунарски уређај", "Memory limit" : "Ограничење меморије", "CPU limit" : "CPU ограничење", "Additional options" : "Додатне опције", - "Verify connection" : "Провери везу", + "Check connection" : "Провера везе", "Registered Deploy daemons list" : "Листа регистрованих Даемона за постављање", - "No Deploy daemons configured" : "Није подешен ниједан Даемон за постављање", - "Register a custom one or setup from available templates" : "Региструјте произвољни или подесите неки према доступном шаблону", - "Register Daemon" : "Региструј Даемон", "Register ExApp in Nextcloud" : "Региструј ExApp у Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Проверава да ли је ExApp регистрована у Nextcloud пре постављања", "Image pull" : "Повлачење слике", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Само ако је присутан ExApp контејнер", "Deploy test passed successfully!" : "Тест постављања је успешно прошао!", "Deploy test failed at step \"{step}\"" : "Тест постављања је пао на кораку „{step}”", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", - "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", - "More info" : "Више информација", + "More information" : "Још информација", "Download ExApp logs" : "Преузми ExApp дневнике", - "Remove test ExApp" : "Уклони тест ExApp", - "Start Deploy test" : "Покрени тест постављања", - "Stop Deploy test" : "Заустави тест постављања", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", "Please enter a registry domain" : "Молимо вас да унесете домен регистратора", - "From cannot be \"local\"" : "Од не може да буде „local”", "This registry mapping already exists" : "Ово мапирање регистратора већ постоји", - "From and To cannot be the same" : "Од и На не могу да буду исто", "Docker registry mapping added" : "Додато је мапирање Docker регистратора", "Error adding Docker registry mapping" : "Грешка приликом додавања мапирања Docker регистратора", "Docker registry mapping removed" : "Уклоњено је мапирање Docker регистратора", "Error removing Docker registry mapping" : "Грешка приликом уклањања мапирања Docker регистратора", "Override Docker registries" : "Преиначи Docker регистраторе", - "Configure Docker registry override mappings for selected daemon." : "Конфигуришите мапирања преиначења Docker регистратора за изабрани даемон.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Одговарајући изворни регистратор у ExApp info.xml ће се преписати током постављања (у кораку повлачења слике).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Ово је корисни ако желите да користите произвољни Docker регистратор, на пример, да користите приватни Docker регистратор, или да за тестирање користите неки различити Docker регистратор.", "Image pull will be skipped" : "Прескочиће се повлачење слике", "Remove" : "Уклони", - "No custom Docker registries configured" : "Није конфигурисан ниједан произвољни Docker регистратор", "Add registry override mapping" : "Додај мапирање премошћавања регистратора", "From" : "Од", "registry URL (e.g. ghcr.io)" : "URL регистратора (нпр. ghcr.io)", "To" : "За", "registry URL (e.g. docker.io)" : "URL регистратора (нпр. docker.io)", "Add" : "Додај", - "Hostname to access ExApps" : "Име хоста за приступ ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Име хоста (и порт) на којем је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи, нпр. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста (и порт) или путања где је {name} доступан. Ово не мора да буде јавни хост, просто хост којем Nextcloud сервер може да приступи. Такође може да буде и путања до докер сокета. (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Даемон са овим именом већ постоји", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Тајни кључ за комуникацију HaRP контејнера (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Лозинка за AppAPI Docker Socket Proxy потврђивање идентитета", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", - "The docker network that the deployed ex-apps would use." : "Докер мрежа коју би користиле постављене ex-app.", - "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", "DaemonConfig successfully registered" : "DaemonConfig је успешно регистрована", "Failed to register DaemonConfig. Check the logs" : "Није успело регистровање DaemonConfig. Погледајте дневнике", "DaemonConfig successfully updated" : "DaemonConfig је успешно ажуриран", "Failed to update DaemonConfig. Check the logs" : "Није успело ажурирање DaemonConfig. Погледајте дневнике", - "Edit Deploy Daemon" : "Уреди Даемона за постављање", - "Register Deploy Daemon" : "Региструје Даемон за постављање", + "Failed to connect to Daemon. Check the logs" : "Није успело повезивање са Даемоном. Погледајте дневнике", + "Failed to check connection to Daemon. Check the logs" : "Није успела провера везе са Даемоном. Погледајте дневнике", "Daemon configuration template" : "Шаблон подешавања Даемона", - "Select daemon configuration template" : "Изаберите шаблон за даемон постављања", "Daemon registration form" : "Формулар за регистрацију Даемона", - "Unique Deploy Daemon Name" : "Јединствено име Даемона за постављање", "Display name" : "Име за приказ", "Deployment method" : "Метода постављања", - "Select daemon deploy method" : "Изаберте методу за постављање даемона", "HaRP host" : "HaRP хост", "Daemon host" : "Хост даемона", "HaRP shared key" : "HaRP дељени кључ", - "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", - "Set daemon as default" : "Постави даемон као подразумевани", - "Set as default daemon" : "Поставља даемон као подразумевани", - "Enable https" : "Укључи https", - "Show deploy config" : "Прикажи конфигурацију постављања", - "Hide deploy config" : "Сакриј конфигурацију постављања", "Enable HaRP" : "Укључи HaRP", "FRP server address" : "Адреса FRP сервера", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) FRP сервера који би требало да буде доступан ex-app у мрежи дефинисаној у ’Докер мрежа’.", "Docker socket proxy port" : "Порт проксија за докер сокет", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт у HaRP на који се повезује прокси докер сокета. Ово би требало да буде изложено, али за уграђени, нема потребе да се излаже или мења.", "Disable FRP" : "Искључи FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Заставица само за напредне инсталације. Искључује FRP тунел између ExApp апликација и HaRP.", "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", + "Compute device" : "Рачунарски уређај", "Memory limit (in MiB)" : "Ограничење меморије (у MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Максимална количина меморије у мебибајтовима које ExApp контејнер може да употреби", "Must be a positive integer" : "Мора да буде позитиван цео број", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимални број CPU језгара које ExApp контејнер може да употреби (нпр. 0.5 за пола језгра, 2 за два језгра)", "CPU limit as decimal value" : "CPU ограничење као децимална вредност", "Must be a positive number" : "Мора да буде позитиван цео број", - "Additional option" : "Додатна опција", "Add additional option" : "Додај додатну опцију", "Option key (unique)" : "Кључ опције (јединствени)", "Option key (unique, e.g. my_key)" : "Кључ опције (једиствен, нпр. my_key)", @@ -186,10 +128,15 @@ "Confirm" : "Потврди", "Save" : "Сачувај", "Register" : "Региструј се", - "Check connection" : "Провера везе", "External Apps" : "Спољне апликације", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n### Испоручена апликација\n\n**Почевши са Nextcloud 30.0.1, ова апликација је део подразумеваног Nextcloud пакета.**\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Пројекат је узбудљива иницијатива која има циљ да уведе револуцију у начин на који се развијају апликације за Nextcloud.", + "Deploy Daemons" : "Даемони за постављање", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Даемони за постављање Даемон за постављање (DaemonConfig) је даемон за оркестрацију ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Подразумевани даемон за постављање није доступан. Молимо вас да проверите његову конфигурацију", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Наведите политику поновног покретања, нпр. ’увек’ тако да се обезбеди да се ExApp извршава након поновног покретања даемона сервера", + "This settings changes are reflected only for newly created containers" : "Ове измене подешавања се примењују само на контејнере који се креирају накнадно", "{license}-licensed" : "{license}-лиценцирано", "Update to {version}" : "Ажурирај на верзију {version}", "Delete data on remove" : "Обриши податке приликом уклањања", @@ -219,12 +166,51 @@ "No apps found" : "Није пронађена ниједна апликација", "_%n ExApp has an update available_::_%n apps have an update available_" : ["Доступно је ажурирање за %n апликацију","Доступно је ажурирање за %n апликације","Доступно је ажурирање за %n апликација"], "_Update_::_Update all_" : ["Ажурирај","Ажурирај све","Ажурирај све"], + "Deploy Daemon" : "Даемон за постављање", "Type" : "Тип", "Display Name" : "Име за приказ", + "GPUs support" : "Подршка за GPU", + "Are you sure you want delete Deploy Daemon" : "Да ли сте сигурни да желите да обришете Даемон за постављање", + "All ExApps on this daemon will be removed" : "Обрисаће се све ExApps на овом даемону", + "All ExApps installed on this daemon will be removed" : "Уклониће се све ExApps инсталиране на овом даемону", + "\"manual-install\" Deploy Daemon cannot be set as default" : "„manual-install” Даемон за постављање не може да се постави као подразумевани", + "Failed to save admin options. Check the logs" : "Није успело чување админ опција. Погледајте дневнике", + "Deploy daemon config details" : "Детаљи конфигурације даемона за постављање", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Даемон за ручно инсталирање се обично користи за развој. Он не може да се постави као подразумевани даемон.", + "Deploy config" : "Конфигурација постављања", + "Verify connection" : "Провери везу", + "No Deploy daemons configured" : "Није подешен ниједан Даемон за постављање", + "Register a custom one or setup from available templates" : "Региструјте произвољни или подесите неки према доступном шаблону", + "Register Daemon" : "Региструј Даемон", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ће покушати да инсталира малу костур ExApp да би се поверило да ли је Даемон исправно подешен и да ли се успешно пролазе кораци постављања.", + "The following Deploy test checks must be passed to succeed:" : "Да би се успело, потребно је да прођу следећи тестови постављања:", + "More info" : "Више информација", + "Remove test ExApp" : "Уклони тест ExApp", + "Start Deploy test" : "Покрени тест постављања", + "Stop Deploy test" : "Заустави тест постављања", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp више није регистрована и контејтер се брише приликом „Заустави тест постављања”", + "Hostname to access ExApps" : "Име хоста за приступ ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Име хоста или путања за приступ Docker даемону (нпр. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Даемон са овим именом већ постоји", + "Password must be at least 12 characters long" : "Дужина лозинке мора да буде барем 12 карактера", "With https enabled network is set to host" : "Са укљученим https мрежа се поставља на хост", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Измене би се примениле само на ExApps које се инсталирају касније. У случају постојећих ExApps, требало би да се рекреирају Docker контејнери.", + "URL should start with http:// or https://" : "URL би требало да почиње са http:// или https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Nextcloud URL би за HTTPS даемон требало да буде HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Захтеваће се да Docker укључи све доступне GPU уређаје у ExApp контејнерима.", + "Edit Deploy Daemon" : "Уреди Даемона за постављање", + "Register Deploy Daemon" : "Региструје Даемон за постављање", + "Select daemon configuration template" : "Изаберите шаблон за даемон постављања", + "Unique Deploy Daemon Name" : "Јединствено име Даемона за постављање", + "Select daemon deploy method" : "Изаберте методу за постављање даемона", + "Set daemon as default" : "Постави даемон као подразумевани", + "Set as default daemon" : "Поставља даемон као подразумевани", + "Enable https" : "Укључи https", + "Show deploy config" : "Прикажи конфигурацију постављања", + "Hide deploy config" : "Сакриј конфигурацију постављања", "Network" : "Мрежа", "Docker network name" : "Име Docker мреже: ", + "Additional option" : "Додатна опција", "by {author}\n{license}" : "од {author}\n{license}", "Your apps" : "Ваше апликације", "Documentation" : "Документација", diff --git a/l10n/sv.js b/l10n/sv.js index 767c2363..24cec8a7 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -12,6 +12,7 @@ OC.L10N.register( "Nextcloud URL" : "Nextcloud-URL", "Memory limit" : "Minnesgräns", "Enabled" : "Aktiverad", + "More information" : "Mer information", "Remove" : "Ta bort", "From" : "Från", "To" : "Till", diff --git a/l10n/sv.json b/l10n/sv.json index 8a36300b..becd0ab0 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -10,6 +10,7 @@ "Nextcloud URL" : "Nextcloud-URL", "Memory limit" : "Minnesgräns", "Enabled" : "Aktiverad", + "More information" : "Mer information", "Remove" : "Ta bort", "From" : "Från", "To" : "Till", diff --git a/l10n/sw.js b/l10n/sw.js index 4753974d..99ef1fef 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Tumia daemon ya AppAPI ", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuipandisha daraja kwa utendakazi bora.", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Mradi wa AppAPI ni mpango wa kufurahisha ambao unalenga kubadilisha jinsi programu zinavyotengenezwa kwa Nextcloud kupitia utumiaji wa kontena za docker. Kuruhusu chaguo kubwa zaidi la lugha ya upangaji na kuruhusu majukumu ya gharama ya hesabu kupakiwa kwa seva tofauti.", - "Deploy Daemons" : "Tumia Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemons. Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ya Kusambaza Chaguomsingi haipatikani. Tafadhali thibitisha usanidi wake", "ExApp init timeout (minutes)" : "Muda wa kuanzisha ExApp (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Muda wa mchakato wa uanzishaji wa ExApp umekwisha ambapo AppAPI itatia alama kuwa imeshindwa", "ExApp init timeout" : "Muda wa ExApp umekwisha", "ExApp container restart policy" : "Sera ya kuanzisha upya kontena la ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Bainisha sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApp inaendesha baada ya kuwasha tena seva ya daemon", - "This settings changes are reflected only for newly created containers" : "Mabadiliko haya ya mipangilio yanaonyeshwa kwa vyombo vipya pekee", - "Are you sure you want delete Deploy Daemon" : "Je, una uhakika unataka kufuta Deploy Daemon", - "All ExApps on this daemon will be removed" : "ExApps zote kwenye daemoni hii zitaondolewa", - "All ExApps installed on this daemon will be removed" : "ExApps zote zilizosakinishwa kwenye daemoni hii zitaondolewa", "Cancel" : "Ghairi", "Delete" : "Futa", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"sakinisha kwa mikono\" Deploy Daemon haiwezi kuwekwa kama chaguo-msingi", - "Failed to save admin options. Check the logs" : "Imeshindwa kuhifadhi chaguo za msimamizi. Angalia kumbukumbu", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Default" : "Chaguo msingi", "Set as default" : "Weka kama chaguomsingi", @@ -56,36 +44,23 @@ OC.L10N.register( "Docker registries" : "Usajili wa Docker", "Edit" : "Hariri", "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", - "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", - "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", "Unlimited" : "Isiyo na kikomo", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", - "Deploy Daemon" : "Tumia Daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ya usakinishaji kwa mikono kawaida hutumika kwa usanidi. Haiwezi kuwekwa kama daemon chaguo-msingi.", "ExApps installed" : "ExApps imesakinishwa", "Name" : "Jina", "Protocol" : "Itifaki", "Host" : "Mwenyeji", "ExApp direct communication (FRP disabled)" : "Mawasiliano ya moja kwa moja ya ExApp (FRP imezimwa)", - "Deploy config" : "Weka usanidi", "Docker network" : "Mtandao wa Docker ", "Nextcloud URL" : "URL ya Nextcloud ", "HaProxy password" : "Nenosiri la HaProxy", - "GPUs support" : "Usaidizi wa GPU", - "Compute device" : "Kuhesabu kifaa", "Memory limit" : "Kikomo cha kumbukumbu", "CPU limit" : "Kikomo cha CPU", "Additional options" : "Chaguzi za ziada", - "Verify connection" : "Thibitisha muunganisho", + "Check connection" : "Angalia muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", - "No Deploy daemons configured" : "Hakuna damoni za kutumia zilizosanidiwa", - "Register a custom one or setup from available templates" : "Sajili moja maalum au usanidi kutoka kwa violezo vinavyopatikana", - "Register Daemon" : "Sajili Daemon", "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Angalia ikiwa ExApp imesajiliwa katika Nextcloud kabla ya kupelekwa", "Image pull" : "Kuvuta picha", @@ -101,84 +76,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Ikiwa tu chombo cha ExApp kimewekwa mapema", "Deploy test passed successfully!" : "Jaribio la kutuma limefaulu!", "Deploy test failed at step \"{step}\"" : "Jaribio la kusambaza limeshindwa kwa hatua \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuthibitisha Daemon iliyosanidiwa ipasavyo na hatua za kupeleka zinapita.", - "The following Deploy test checks must be passed to succeed:" : "Ukaguzi ufuatao wa Tumia lazima upitishwe ili kufaulu:", - "More info" : "Maelezo zaidi", + "More information" : "Taarifa zaidi", "Download ExApp logs" : "Pakua kumbukumbu za ExApp", - "Remove test ExApp" : "Ondoa jaribio la ExApp", - "Start Deploy test" : "Anza jaribio la Kusambaza", - "Stop Deploy test" : "Acha Kujaribu Kuweka", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp haijasajiliwa na kontena linaondolewa kwenye \"Stop deploy test\"", "Please enter a registry domain" : "Tafadhali ingiza kikoa cha usajili", - "From cannot be \"local\"" : "Kutoka haiwezi kuwa \"ndani\"", "This registry mapping already exists" : "Upangaji huu wa usajili tayari upo", - "From and To cannot be the same" : "Kutoka na mpaka haiwezi kuwa sawa", "Docker registry mapping added" : "Uwekaji ramani wa usajili wa Docker umeongezwa", "Error adding Docker registry mapping" : "Hitilafu katika kuongeza ramani ya usajili wa Docker", "Docker registry mapping removed" : "Ramani ya Usajili wa Docker imeondolewa", "Error removing Docker registry mapping" : "Hitilafu katika kuondoa ramani ya usajili wa Docker", "Override Docker registries" : "Badilisha rejista za Docker", - "Configure Docker registry override mappings for selected daemon." : "Sanidi Usajili wa Docker kubatilisha upangaji wa daemon iliyochaguliwa.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Sajili ya chanzo inayolingana katika maelezo ya ExApp.xml itafutwa wakati wa kupeleka (hatua ya kuvuta picha).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Hii ni muhimu ikiwa unataka kutumia sajili maalum ya Docker, kwa mfano, kutumia sajili ya kibinafsi ya Docker, au kutumia sajili tofauti ya Docker kwa majaribio.", "Image pull will be skipped" : "Uvutaji wa picha utarukwa", "Remove" : "Ondoa", - "No custom Docker registries configured" : "Hakuna sajili maalum za Docker zilizosanidiwa", "Add registry override mapping" : "Ongeza ramani ya ubatilishaji wa usajili", "From" : "Tangu/ kutoka", "registry URL (e.g. ghcr.io)" : "URL ya usajili (e.g. ghcr.io)", "To" : "Mpaka/ hadi", "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", - "Hostname to access ExApps" : "Jina la mpangishaji ili kufikia ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Jina la mpangishaji (na lango) ambalo {name} linapatikana. Hii sio lazima iwe mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud, k.m. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Nenosiri la uthibitishaji la Soketi ya Wakala wa AppAPI Docker", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Mabadiliko yatatumika kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya.", - "The docker network that the deployed ex-apps would use." : "Mtandao wa docker ambao programu za zamani zilizotumwa zingetumia.", - "URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Kwa daemon ya HTTPS, Nextcloud URL inapaswa kuwa HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vitaombwa kuwashwa katika vyombo vya ExApp na Docker.", "DaemonConfig successfully registered" : "DaemonConfig imesajiliwa", "Failed to register DaemonConfig. Check the logs" : "Imeshindwa kusajili DaemonConfig. Angalia kumbukumbu", "DaemonConfig successfully updated" : "DaemonConfig imesasishwa", "Failed to update DaemonConfig. Check the logs" : "Imeshindwa kusasisha DaemonConfig. Angalia kumbukumbu", - "Edit Deploy Daemon" : "Hariri utumiaji wa Daemon", - "Register Deploy Daemon" : "Sajili utumiaji wa Daemon", + "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", + "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", - "Select daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", "Daemon registration form" : "Fomu ya usajili ya Daemon", - "Unique Deploy Daemon Name" : "Tumia Jina la Daemon la Kipekee", "Display name" : "Jina la kuonyesha", "Deployment method" : "Mbinu ya kupeleka", - "Select daemon deploy method" : "Chagua mbinu ya kutumia daemoni", "HaRP host" : "mwenyeji wa HaRP", "Daemon host" : "mwenyeji ni Daemon", "HaRP shared key" : "Ufunguo wa pamoja wa HaRP", - "Password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", - "Set daemon as default" : "Weka daemon kama chaguo-msingi", - "Set as default daemon" : "Weka kama daemoni chaguo-msingi", - "Enable https" : "Wezesha https", - "Show deploy config" : "Onyesha usanidi wa kupeleka", - "Hide deploy config" : "Ficha usanidi wa kupeleka", "Enable HaRP" : "Washa HaRP", "FRP server address" : "Anwani ya seva ya FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Anwani (mwenyeji: bandari) ya seva ya FRP ambayo inapaswa kufikiwa na programu ya zamani katika mtandao iliyofafanuliwa katika 'Docker network'.", "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango lililo katika HaRP ambalo proksi ya tundu la kizimbani inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Disabled" : "Zima", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", + "Compute device" : "Kuhesabu kifaa", "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "Must be a positive integer" : "Lazima iwe nambari chanya", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Upeo wa cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", "Must be a positive number" : "Lazima iwe nambari chanya", - "Additional option" : "Chaguo la ziada", "Add additional option" : "Ongeza chaguo la ziada", "Option key (unique)" : "Ufunguo mbadala (unique)", "Option key (unique, e.g. my_key)" : "Ufunguo mbadala (unique, e.g. my_key)", @@ -188,10 +129,15 @@ OC.L10N.register( "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", - "Check connection" : "Angalia muunganisho", "External Apps" : "Programu za Nje", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n### Programu Iliyounganishwa\n\n**Kuanzia na Nextcloud 30.0.1, programu tumizi hii imejumuishwa kwenye kifurushi chaguomsingi cha Nextcloud.**\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Mradi wa AppAPI ni mpango wa kusisimua ambao unalenga kuleta mageuzi katika jinsi programu zinavyoundwa kwa Nextcloud.", + "Deploy Daemons" : "Tumia Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemons. Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ya Kusambaza Chaguomsingi haipatikani. Tafadhali thibitisha usanidi wake", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Bainisha sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApp inaendesha baada ya kuwasha tena seva ya daemon", + "This settings changes are reflected only for newly created containers" : "Mabadiliko haya ya mipangilio yanaonyeshwa kwa vyombo vipya pekee", "{license}-licensed" : "{license}-iliyopewa leseni", "Update to {version}" : "Sasisha kwenda {version}", "Delete data on remove" : "Futa data juu ya kuondoa", @@ -221,12 +167,51 @@ OC.L10N.register( "No apps found" : "Hakuna programu zilizopatikana", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n programu zina sasisho linalopatikana "], "_Update_::_Update all_" : ["Update","Sasisha zote"], + "Deploy Daemon" : "Tumia Daemon", "Type" : "Aina", "Display Name" : "Jina la Kuonyesha", + "GPUs support" : "Usaidizi wa GPU", + "Are you sure you want delete Deploy Daemon" : "Je, una uhakika unataka kufuta Deploy Daemon", + "All ExApps on this daemon will be removed" : "ExApps zote kwenye daemoni hii zitaondolewa", + "All ExApps installed on this daemon will be removed" : "ExApps zote zilizosakinishwa kwenye daemoni hii zitaondolewa", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"sakinisha kwa mikono\" Deploy Daemon haiwezi kuwekwa kama chaguo-msingi", + "Failed to save admin options. Check the logs" : "Imeshindwa kuhifadhi chaguo za msimamizi. Angalia kumbukumbu", + "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ya usakinishaji kwa mikono kawaida hutumika kwa usanidi. Haiwezi kuwekwa kama daemon chaguo-msingi.", + "Deploy config" : "Weka usanidi", + "Verify connection" : "Thibitisha muunganisho", + "No Deploy daemons configured" : "Hakuna damoni za kutumia zilizosanidiwa", + "Register a custom one or setup from available templates" : "Sajili moja maalum au usanidi kutoka kwa violezo vinavyopatikana", + "Register Daemon" : "Sajili Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuthibitisha Daemon iliyosanidiwa ipasavyo na hatua za kupeleka zinapita.", + "The following Deploy test checks must be passed to succeed:" : "Ukaguzi ufuatao wa Tumia lazima upitishwe ili kufaulu:", + "More info" : "Maelezo zaidi", + "Remove test ExApp" : "Ondoa jaribio la ExApp", + "Start Deploy test" : "Anza jaribio la Kusambaza", + "Stop Deploy test" : "Acha Kujaribu Kuweka", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp haijasajiliwa na kontena linaondolewa kwenye \"Stop deploy test\"", + "Hostname to access ExApps" : "Jina la mpangishaji ili kufikia ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji au njia ya kufikia daemon ya Docker (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", + "Password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", "With https enabled network is set to host" : "Kwa kuwasha https, mtandao umewekwa kuwa mwenyeji", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Mabadiliko yatatumika kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya.", + "URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Kwa daemon ya HTTPS, Nextcloud URL inapaswa kuwa HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vitaombwa kuwashwa katika vyombo vya ExApp na Docker.", + "Edit Deploy Daemon" : "Hariri utumiaji wa Daemon", + "Register Deploy Daemon" : "Sajili utumiaji wa Daemon", + "Select daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", + "Unique Deploy Daemon Name" : "Tumia Jina la Daemon la Kipekee", + "Select daemon deploy method" : "Chagua mbinu ya kutumia daemoni", + "Set daemon as default" : "Weka daemon kama chaguo-msingi", + "Set as default daemon" : "Weka kama daemoni chaguo-msingi", + "Enable https" : "Wezesha https", + "Show deploy config" : "Onyesha usanidi wa kupeleka", + "Hide deploy config" : "Ficha usanidi wa kupeleka", "Network" : "Mtandao", "Docker network name" : "Jina la mtandao wa Docker", + "Additional option" : "Chaguo la ziada", "by {author}\n{license}" : "na {author}\n{license}", "Your apps" : "Programu zako", "Documentation" : "Uhifadhi wa nyaraka", diff --git a/l10n/sw.json b/l10n/sw.json index 1ce3f1d4..d0effef3 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Tumia daemon ya AppAPI ", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuipandisha daraja kwa utendakazi bora.", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Mradi wa AppAPI ni mpango wa kufurahisha ambao unalenga kubadilisha jinsi programu zinavyotengenezwa kwa Nextcloud kupitia utumiaji wa kontena za docker. Kuruhusu chaguo kubwa zaidi la lugha ya upangaji na kuruhusu majukumu ya gharama ya hesabu kupakiwa kwa seva tofauti.", - "Deploy Daemons" : "Tumia Daemons", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemons. Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ya Kusambaza Chaguomsingi haipatikani. Tafadhali thibitisha usanidi wake", "ExApp init timeout (minutes)" : "Muda wa kuanzisha ExApp (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Muda wa mchakato wa uanzishaji wa ExApp umekwisha ambapo AppAPI itatia alama kuwa imeshindwa", "ExApp init timeout" : "Muda wa ExApp umekwisha", "ExApp container restart policy" : "Sera ya kuanzisha upya kontena la ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Bainisha sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApp inaendesha baada ya kuwasha tena seva ya daemon", - "This settings changes are reflected only for newly created containers" : "Mabadiliko haya ya mipangilio yanaonyeshwa kwa vyombo vipya pekee", - "Are you sure you want delete Deploy Daemon" : "Je, una uhakika unataka kufuta Deploy Daemon", - "All ExApps on this daemon will be removed" : "ExApps zote kwenye daemoni hii zitaondolewa", - "All ExApps installed on this daemon will be removed" : "ExApps zote zilizosakinishwa kwenye daemoni hii zitaondolewa", "Cancel" : "Ghairi", "Delete" : "Futa", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"sakinisha kwa mikono\" Deploy Daemon haiwezi kuwekwa kama chaguo-msingi", - "Failed to save admin options. Check the logs" : "Imeshindwa kuhifadhi chaguo za msimamizi. Angalia kumbukumbu", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Default" : "Chaguo msingi", "Set as default" : "Weka kama chaguomsingi", @@ -54,36 +42,23 @@ "Docker registries" : "Usajili wa Docker", "Edit" : "Hariri", "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", - "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", - "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", "Unlimited" : "Isiyo na kikomo", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", - "Deploy Daemon" : "Tumia Daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ya usakinishaji kwa mikono kawaida hutumika kwa usanidi. Haiwezi kuwekwa kama daemon chaguo-msingi.", "ExApps installed" : "ExApps imesakinishwa", "Name" : "Jina", "Protocol" : "Itifaki", "Host" : "Mwenyeji", "ExApp direct communication (FRP disabled)" : "Mawasiliano ya moja kwa moja ya ExApp (FRP imezimwa)", - "Deploy config" : "Weka usanidi", "Docker network" : "Mtandao wa Docker ", "Nextcloud URL" : "URL ya Nextcloud ", "HaProxy password" : "Nenosiri la HaProxy", - "GPUs support" : "Usaidizi wa GPU", - "Compute device" : "Kuhesabu kifaa", "Memory limit" : "Kikomo cha kumbukumbu", "CPU limit" : "Kikomo cha CPU", "Additional options" : "Chaguzi za ziada", - "Verify connection" : "Thibitisha muunganisho", + "Check connection" : "Angalia muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", - "No Deploy daemons configured" : "Hakuna damoni za kutumia zilizosanidiwa", - "Register a custom one or setup from available templates" : "Sajili moja maalum au usanidi kutoka kwa violezo vinavyopatikana", - "Register Daemon" : "Sajili Daemon", "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Angalia ikiwa ExApp imesajiliwa katika Nextcloud kabla ya kupelekwa", "Image pull" : "Kuvuta picha", @@ -99,84 +74,50 @@ "Only if ExApp container is preset" : "Ikiwa tu chombo cha ExApp kimewekwa mapema", "Deploy test passed successfully!" : "Jaribio la kutuma limefaulu!", "Deploy test failed at step \"{step}\"" : "Jaribio la kusambaza limeshindwa kwa hatua \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuthibitisha Daemon iliyosanidiwa ipasavyo na hatua za kupeleka zinapita.", - "The following Deploy test checks must be passed to succeed:" : "Ukaguzi ufuatao wa Tumia lazima upitishwe ili kufaulu:", - "More info" : "Maelezo zaidi", + "More information" : "Taarifa zaidi", "Download ExApp logs" : "Pakua kumbukumbu za ExApp", - "Remove test ExApp" : "Ondoa jaribio la ExApp", - "Start Deploy test" : "Anza jaribio la Kusambaza", - "Stop Deploy test" : "Acha Kujaribu Kuweka", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp haijasajiliwa na kontena linaondolewa kwenye \"Stop deploy test\"", "Please enter a registry domain" : "Tafadhali ingiza kikoa cha usajili", - "From cannot be \"local\"" : "Kutoka haiwezi kuwa \"ndani\"", "This registry mapping already exists" : "Upangaji huu wa usajili tayari upo", - "From and To cannot be the same" : "Kutoka na mpaka haiwezi kuwa sawa", "Docker registry mapping added" : "Uwekaji ramani wa usajili wa Docker umeongezwa", "Error adding Docker registry mapping" : "Hitilafu katika kuongeza ramani ya usajili wa Docker", "Docker registry mapping removed" : "Ramani ya Usajili wa Docker imeondolewa", "Error removing Docker registry mapping" : "Hitilafu katika kuondoa ramani ya usajili wa Docker", "Override Docker registries" : "Badilisha rejista za Docker", - "Configure Docker registry override mappings for selected daemon." : "Sanidi Usajili wa Docker kubatilisha upangaji wa daemon iliyochaguliwa.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Sajili ya chanzo inayolingana katika maelezo ya ExApp.xml itafutwa wakati wa kupeleka (hatua ya kuvuta picha).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Hii ni muhimu ikiwa unataka kutumia sajili maalum ya Docker, kwa mfano, kutumia sajili ya kibinafsi ya Docker, au kutumia sajili tofauti ya Docker kwa majaribio.", "Image pull will be skipped" : "Uvutaji wa picha utarukwa", "Remove" : "Ondoa", - "No custom Docker registries configured" : "Hakuna sajili maalum za Docker zilizosanidiwa", "Add registry override mapping" : "Ongeza ramani ya ubatilishaji wa usajili", "From" : "Tangu/ kutoka", "registry URL (e.g. ghcr.io)" : "URL ya usajili (e.g. ghcr.io)", "To" : "Mpaka/ hadi", "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", - "Hostname to access ExApps" : "Jina la mpangishaji ili kufikia ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Jina la mpangishaji (na lango) ambalo {name} linapatikana. Hii sio lazima iwe mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud, k.m. {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Nenosiri la uthibitishaji la Soketi ya Wakala wa AppAPI Docker", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Mabadiliko yatatumika kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya.", - "The docker network that the deployed ex-apps would use." : "Mtandao wa docker ambao programu za zamani zilizotumwa zingetumia.", - "URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Kwa daemon ya HTTPS, Nextcloud URL inapaswa kuwa HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vitaombwa kuwashwa katika vyombo vya ExApp na Docker.", "DaemonConfig successfully registered" : "DaemonConfig imesajiliwa", "Failed to register DaemonConfig. Check the logs" : "Imeshindwa kusajili DaemonConfig. Angalia kumbukumbu", "DaemonConfig successfully updated" : "DaemonConfig imesasishwa", "Failed to update DaemonConfig. Check the logs" : "Imeshindwa kusasisha DaemonConfig. Angalia kumbukumbu", - "Edit Deploy Daemon" : "Hariri utumiaji wa Daemon", - "Register Deploy Daemon" : "Sajili utumiaji wa Daemon", + "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", + "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", - "Select daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", "Daemon registration form" : "Fomu ya usajili ya Daemon", - "Unique Deploy Daemon Name" : "Tumia Jina la Daemon la Kipekee", "Display name" : "Jina la kuonyesha", "Deployment method" : "Mbinu ya kupeleka", - "Select daemon deploy method" : "Chagua mbinu ya kutumia daemoni", "HaRP host" : "mwenyeji wa HaRP", "Daemon host" : "mwenyeji ni Daemon", "HaRP shared key" : "Ufunguo wa pamoja wa HaRP", - "Password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", - "Set daemon as default" : "Weka daemon kama chaguo-msingi", - "Set as default daemon" : "Weka kama daemoni chaguo-msingi", - "Enable https" : "Wezesha https", - "Show deploy config" : "Onyesha usanidi wa kupeleka", - "Hide deploy config" : "Ficha usanidi wa kupeleka", "Enable HaRP" : "Washa HaRP", "FRP server address" : "Anwani ya seva ya FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Anwani (mwenyeji: bandari) ya seva ya FRP ambayo inapaswa kufikiwa na programu ya zamani katika mtandao iliyofafanuliwa katika 'Docker network'.", "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango lililo katika HaRP ambalo proksi ya tundu la kizimbani inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Disabled" : "Zima", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", + "Compute device" : "Kuhesabu kifaa", "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "Must be a positive integer" : "Lazima iwe nambari chanya", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Upeo wa cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", "Must be a positive number" : "Lazima iwe nambari chanya", - "Additional option" : "Chaguo la ziada", "Add additional option" : "Ongeza chaguo la ziada", "Option key (unique)" : "Ufunguo mbadala (unique)", "Option key (unique, e.g. my_key)" : "Ufunguo mbadala (unique, e.g. my_key)", @@ -186,10 +127,15 @@ "Confirm" : "Thibitisha", "Save" : "Hifadhi", "Register" : "Sajiri", - "Check connection" : "Angalia muunganisho", "External Apps" : "Programu za Nje", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n### Programu Iliyounganishwa\n\n**Kuanzia na Nextcloud 30.0.1, programu tumizi hii imejumuishwa kwenye kifurushi chaguomsingi cha Nextcloud.**\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Mradi wa AppAPI ni mpango wa kusisimua ambao unalenga kuleta mageuzi katika jinsi programu zinavyoundwa kwa Nextcloud.", + "Deploy Daemons" : "Tumia Daemons", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Tumia Daemons. Tumia Daemon (DaemonConfig) ni daemon ya orchestration ya ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ya Kusambaza Chaguomsingi haipatikani. Tafadhali thibitisha usanidi wake", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Bainisha sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApp inaendesha baada ya kuwasha tena seva ya daemon", + "This settings changes are reflected only for newly created containers" : "Mabadiliko haya ya mipangilio yanaonyeshwa kwa vyombo vipya pekee", "{license}-licensed" : "{license}-iliyopewa leseni", "Update to {version}" : "Sasisha kwenda {version}", "Delete data on remove" : "Futa data juu ya kuondoa", @@ -219,12 +165,51 @@ "No apps found" : "Hakuna programu zilizopatikana", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp has an update available","%n programu zina sasisho linalopatikana "], "_Update_::_Update all_" : ["Update","Sasisha zote"], + "Deploy Daemon" : "Tumia Daemon", "Type" : "Aina", "Display Name" : "Jina la Kuonyesha", + "GPUs support" : "Usaidizi wa GPU", + "Are you sure you want delete Deploy Daemon" : "Je, una uhakika unataka kufuta Deploy Daemon", + "All ExApps on this daemon will be removed" : "ExApps zote kwenye daemoni hii zitaondolewa", + "All ExApps installed on this daemon will be removed" : "ExApps zote zilizosakinishwa kwenye daemoni hii zitaondolewa", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"sakinisha kwa mikono\" Deploy Daemon haiwezi kuwekwa kama chaguo-msingi", + "Failed to save admin options. Check the logs" : "Imeshindwa kuhifadhi chaguo za msimamizi. Angalia kumbukumbu", + "Deploy daemon config details" : "Tumia maelezo ya usanidi wa daemon", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ya usakinishaji kwa mikono kawaida hutumika kwa usanidi. Haiwezi kuwekwa kama daemon chaguo-msingi.", + "Deploy config" : "Weka usanidi", + "Verify connection" : "Thibitisha muunganisho", + "No Deploy daemons configured" : "Hakuna damoni za kutumia zilizosanidiwa", + "Register a custom one or setup from available templates" : "Sajili moja maalum au usanidi kutoka kwa violezo vinavyopatikana", + "Register Daemon" : "Sajili Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuthibitisha Daemon iliyosanidiwa ipasavyo na hatua za kupeleka zinapita.", + "The following Deploy test checks must be passed to succeed:" : "Ukaguzi ufuatao wa Tumia lazima upitishwe ili kufaulu:", + "More info" : "Maelezo zaidi", + "Remove test ExApp" : "Ondoa jaribio la ExApp", + "Start Deploy test" : "Anza jaribio la Kusambaza", + "Stop Deploy test" : "Acha Kujaribu Kuweka", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp haijasajiliwa na kontena linaondolewa kwenye \"Stop deploy test\"", + "Hostname to access ExApps" : "Jina la mpangishaji ili kufikia ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji au njia ya kufikia daemon ya Docker (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", + "Password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", "With https enabled network is set to host" : "Kwa kuwasha https, mtandao umewekwa kuwa mwenyeji", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Mabadiliko yatatumika kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya.", + "URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Kwa daemon ya HTTPS, Nextcloud URL inapaswa kuwa HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vitaombwa kuwashwa katika vyombo vya ExApp na Docker.", + "Edit Deploy Daemon" : "Hariri utumiaji wa Daemon", + "Register Deploy Daemon" : "Sajili utumiaji wa Daemon", + "Select daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", + "Unique Deploy Daemon Name" : "Tumia Jina la Daemon la Kipekee", + "Select daemon deploy method" : "Chagua mbinu ya kutumia daemoni", + "Set daemon as default" : "Weka daemon kama chaguo-msingi", + "Set as default daemon" : "Weka kama daemoni chaguo-msingi", + "Enable https" : "Wezesha https", + "Show deploy config" : "Onyesha usanidi wa kupeleka", + "Hide deploy config" : "Ficha usanidi wa kupeleka", "Network" : "Mtandao", "Docker network name" : "Jina la mtandao wa Docker", + "Additional option" : "Chaguo la ziada", "by {author}\n{license}" : "na {author}\n{license}", "Your apps" : "Programu zako", "Documentation" : "Uhifadhi wa nyaraka", diff --git a/l10n/tr.js b/l10n/tr.js index 48ba4ba5..67fdc07e 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım için yükseltmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI Projesi, docker kapsayıcılarının kullanılması ile Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir. Daha fazla programlama dili seçeneği sunar ve işlem gücü gereken görevlerin farklı bir sunucuya aktarılmasını sağlar.", - "Deploy Daemons" : "Dağıtım arka plan işlemleri", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmasını denetleyin", "ExApp init timeout (minutes)" : "ExApp hazırlanma süresi (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp başlatma işlemi zaman aşımından sonra AppAPI bunu başarısız olarak işaretler", "ExApp init timeout" : "ExApp başlatma zaman aşımı", "ExApp container restart policy" : "ExApp kapsayıcısı yeniden başlatma ilkesi", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini belirtin. Örnek: Daemon sunucusu yeniden başlatıldıktan sonra ExApp çalışması için 'her zaman'", - "This settings changes are reflected only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcılara uygulanır", - "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", - "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", - "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", "Cancel" : "İptal", "Delete" : "Sil", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", - "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Password confirmation failed" : "Parola doğrulanamadı", "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", - "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", - "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Unlimited" : "Sınırsız", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 işlemci", - "{cpus} CPUs" : "{cpus} işlemci", - "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", - "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", "ExApps installed" : "ExApp kuruldu", "Name" : "Ad", "Protocol" : "İletişim kuralı", "Host" : "Sunucu", "ExApp direct communication (FRP disabled)" : "ExApp doğrudan iletişim (FRP kapalı)", - "Deploy config" : "Yapılandırmayı dağıt", + "Deploy options" : "Dağıtım seçenekleri", "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", "HaProxy password" : "HaProxy parolası", - "GPUs support" : "Grafik işlemci desteği", - "Compute device" : "Hesaplama aygıtı", "Memory limit" : "Bellek sınırı", "CPU limit" : "İşlemci sayısı sınırı", "Additional options" : "Ek seçenekler", - "Verify connection" : "Bağlantı sına", + "Check connection" : "Bağlantıyı denetle", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", - "No Deploy daemons configured" : "Herhangi bir dağıtım arka plan işlemi yapılandırılmamış", - "Register a custom one or setup from available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan kurun", - "Register Daemon" : "Arka plan işlemini kaydet", "Register ExApp in Nextcloud" : "Nextcloud üzerinde ExApp kaydını yap ", "Check if the ExApp is registered in Nextcloud before deployment" : "Dağıtmadan önce Nextcloud üzerinde ExApp kaydının olup olmadığını sınar", "Image pull" : "Kalıp çekme", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", - "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", - "More info" : "Diğer bilgiler", + "More information" : "Diğer bilgiler", "Download ExApp logs" : "ExApp günlüklerini indir", - "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", - "Start Deploy test" : "Dağıtım sınamasını başlat", - "Stop Deploy test" : "Dağıtım sınamasını durdur", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", "Please enter a registry domain" : "Lütfen bir kayıt etki alanı yazın", - "From cannot be \"local\"" : "Nereden \"local\" olamaz", "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", - "From and To cannot be the same" : "Nerede ve Nereye aynı olamaz", "Docker registry mapping added" : "Docker kayıt eşleştirmesi eklendi", "Error adding Docker registry mapping" : "Docker kayıt eşleştirmesi eklenirken sorun çıktı", "Docker registry mapping removed" : "Docker kayıt eşleştirmesi kaldırıldı", "Error removing Docker registry mapping" : "Docker kayıt eşleştirmesi kaldırılırken sorun çıktı", "Override Docker registries" : "Docker kayıtlarını değiştir", - "Configure Docker registry override mappings for selected daemon." : "Seçilmiş işlem için Docket kaydı değişikliğini yapılandırın", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya deneme için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", "Image pull will be skipped" : "Kalıp çekme atlanacak", "Remove" : "Kaldır", - "No custom Docker registries configured" : "Özel bir Docker kaydı yapılandırılmamış", "Add registry override mapping" : "Kayıt değiştirme eşleştirmesi ekle", "From" : "Nereden", "registry URL (e.g. ghcr.io)" : "kayıt adresi (ghcr.io gibi)", "To" : "Nereye", "registry URL (e.g. docker.io)" : "kayıt adresi (docker.io gibi)", "Add" : "Ekle", - "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası). Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Örnek: {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası) veya yol. Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Ayrıca Docker soketine giden bir yol da olabilir. (Örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP kapsayıcısı iletişimi için gizli anahtar (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", - "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", - "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", - "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", - "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", + "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", - "Select daemon configuration template" : "Arka plan işlemi yapılandırma kalıbını seçin", "Daemon registration form" : "Arka plan işlemi kayıt formu", - "Unique Deploy Daemon Name" : "Benzersiz dağıtım arka plan işlemi adı", "Display name" : "Görüntülenecek ad", "Deployment method" : "Dağıtım yöntemi", - "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", "HaRP host" : "HaRP sunucusu", "Daemon host" : "Arka plan işlemi sunucusu", "HaRP shared key" : "HaRP paylaşılan anahtarı", - "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", - "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", - "Enable https" : "https kullanılsın", - "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", - "Hide deploy config" : "Dağıtım yapılandırmasını gizle", "Enable HaRP" : "HaRP kullanılsın", "FRP server address" : "FRP sunucusu adresi", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "'Docker ağı' üzerinde tanımlanmış ağdaki ExApp bileşeni tarafından ulaşılması gereken FRP sunucusunun adresi (Sunucu:BağlantıNoktası).", "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", + "Compute device" : "Hesaplama aygıtı", "Memory limit (in MiB)" : "Bellek sınırı (MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "ExApp kapsayıcısının mebibayt cinsinden kullanabileceği en fazla bellek", "Must be a positive integer" : "Bir pozitif tam sayı olmalıdır", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp kapsayıcısının kullanabileceği en fazla işlemci çekirdeği (yarım çekirdek için 0.5, iki çekirdek için 2)", "CPU limit as decimal value" : "Ondalık değer olarak işlemci sayısı sınırı", "Must be a positive number" : "Bir pozitif sayı olmalıdır", - "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", "Option key (unique, e.g. my_key)" : "Seçenek anahtarı (benzersiz, örnek: benim_anahtarım)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Onayla", "Save" : "Kaydet", "Register" : "Kaydet", - "Check connection" : "Bağlantıyı denetle", "External Apps" : "Dış uygulamalar", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", + "Deploy Daemons" : "Dağıtım arka plan işlemleri", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmasını denetleyin", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini belirtin. Örnek: Daemon sunucusu yeniden başlatıldıktan sonra ExApp çalışması için 'her zaman'", + "This settings changes are reflected only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcılara uygulanır", "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", "Delete data on remove" : "Kaldırıldığında veriler silinsin", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Herhangi bir uygulama bulunamadı", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n dış uygulama için güncelleme yayınlanmış","%n dış uygulama için güncelleme yayınlanmış"], "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], + "Deploy Daemon" : "Dağıtım arka plan işlemi", "Type" : "Tür", "Display Name" : "Görüntülenecek ad", + "GPUs support" : "Grafik işlemci desteği", + "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", + "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", + "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", + "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", + "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", + "Deploy config" : "Yapılandırmayı dağıt", + "Verify connection" : "Bağlantı sına", + "No Deploy daemons configured" : "Herhangi bir dağıtım arka plan işlemi yapılandırılmamış", + "Register a custom one or setup from available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan kurun", + "Register Daemon" : "Arka plan işlemini kaydet", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", + "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", + "More info" : "Diğer bilgiler", + "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", + "Start Deploy test" : "Dağıtım sınamasını başlat", + "Stop Deploy test" : "Dağıtım sınamasını durdur", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", + "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", + "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", + "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", + "Select daemon configuration template" : "Arka plan işlemi yapılandırma kalıbını seçin", + "Unique Deploy Daemon Name" : "Benzersiz dağıtım arka plan işlemi adı", + "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", + "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", + "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", + "Enable https" : "https kullanılsın", + "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", + "Hide deploy config" : "Dağıtım yapılandırmasını gizle", "Network" : "Ağ", "Docker network name" : "Docker ağı adı", + "Additional option" : "Ek seçenek", "by {author}\n{license}" : "{author} tarafından\n{license}", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", diff --git a/l10n/tr.json b/l10n/tr.json index 37f6f916..fd8464b4 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım için yükseltmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI Projesi, docker kapsayıcılarının kullanılması ile Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir. Daha fazla programlama dili seçeneği sunar ve işlem gücü gereken görevlerin farklı bir sunucuya aktarılmasını sağlar.", - "Deploy Daemons" : "Dağıtım arka plan işlemleri", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmasını denetleyin", "ExApp init timeout (minutes)" : "ExApp hazırlanma süresi (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp başlatma işlemi zaman aşımından sonra AppAPI bunu başarısız olarak işaretler", "ExApp init timeout" : "ExApp başlatma zaman aşımı", "ExApp container restart policy" : "ExApp kapsayıcısı yeniden başlatma ilkesi", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini belirtin. Örnek: Daemon sunucusu yeniden başlatıldıktan sonra ExApp çalışması için 'her zaman'", - "This settings changes are reflected only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcılara uygulanır", - "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", - "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", - "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", "Cancel" : "İptal", "Delete" : "Sil", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", - "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Password confirmation failed" : "Parola doğrulanamadı", "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", @@ -54,36 +42,24 @@ "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", - "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", - "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Unlimited" : "Sınırsız", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 işlemci", - "{cpus} CPUs" : "{cpus} işlemci", - "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", - "Deploy Daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", "ExApps installed" : "ExApp kuruldu", "Name" : "Ad", "Protocol" : "İletişim kuralı", "Host" : "Sunucu", "ExApp direct communication (FRP disabled)" : "ExApp doğrudan iletişim (FRP kapalı)", - "Deploy config" : "Yapılandırmayı dağıt", + "Deploy options" : "Dağıtım seçenekleri", "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", "HaProxy password" : "HaProxy parolası", - "GPUs support" : "Grafik işlemci desteği", - "Compute device" : "Hesaplama aygıtı", "Memory limit" : "Bellek sınırı", "CPU limit" : "İşlemci sayısı sınırı", "Additional options" : "Ek seçenekler", - "Verify connection" : "Bağlantı sına", + "Check connection" : "Bağlantıyı denetle", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", - "No Deploy daemons configured" : "Herhangi bir dağıtım arka plan işlemi yapılandırılmamış", - "Register a custom one or setup from available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan kurun", - "Register Daemon" : "Arka plan işlemini kaydet", "Register ExApp in Nextcloud" : "Nextcloud üzerinde ExApp kaydını yap ", "Check if the ExApp is registered in Nextcloud before deployment" : "Dağıtmadan önce Nextcloud üzerinde ExApp kaydının olup olmadığını sınar", "Image pull" : "Kalıp çekme", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", - "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", - "More info" : "Diğer bilgiler", + "More information" : "Diğer bilgiler", "Download ExApp logs" : "ExApp günlüklerini indir", - "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", - "Start Deploy test" : "Dağıtım sınamasını başlat", - "Stop Deploy test" : "Dağıtım sınamasını durdur", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", "Please enter a registry domain" : "Lütfen bir kayıt etki alanı yazın", - "From cannot be \"local\"" : "Nereden \"local\" olamaz", "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", - "From and To cannot be the same" : "Nerede ve Nereye aynı olamaz", "Docker registry mapping added" : "Docker kayıt eşleştirmesi eklendi", "Error adding Docker registry mapping" : "Docker kayıt eşleştirmesi eklenirken sorun çıktı", "Docker registry mapping removed" : "Docker kayıt eşleştirmesi kaldırıldı", "Error removing Docker registry mapping" : "Docker kayıt eşleştirmesi kaldırılırken sorun çıktı", "Override Docker registries" : "Docker kayıtlarını değiştir", - "Configure Docker registry override mappings for selected daemon." : "Seçilmiş işlem için Docket kaydı değişikliğini yapılandırın", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya deneme için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", "Image pull will be skipped" : "Kalıp çekme atlanacak", "Remove" : "Kaldır", - "No custom Docker registries configured" : "Özel bir Docker kaydı yapılandırılmamış", "Add registry override mapping" : "Kayıt değiştirme eşleştirmesi ekle", "From" : "Nereden", "registry URL (e.g. ghcr.io)" : "kayıt adresi (ghcr.io gibi)", "To" : "Nereye", "registry URL (e.g. docker.io)" : "kayıt adresi (docker.io gibi)", "Add" : "Ekle", - "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası). Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Örnek: {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası) veya yol. Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Ayrıca Docker soketine giden bir yol da olabilir. (Örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP kapsayıcısı iletişimi için gizli anahtar (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", - "The docker network that the deployed ex-apps would use." : "Dağıtılmış ExApp bileşenlerinin kullanacağı Docker ağı.", - "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", - "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", - "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", + "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", - "Select daemon configuration template" : "Arka plan işlemi yapılandırma kalıbını seçin", "Daemon registration form" : "Arka plan işlemi kayıt formu", - "Unique Deploy Daemon Name" : "Benzersiz dağıtım arka plan işlemi adı", "Display name" : "Görüntülenecek ad", "Deployment method" : "Dağıtım yöntemi", - "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", "HaRP host" : "HaRP sunucusu", "Daemon host" : "Arka plan işlemi sunucusu", "HaRP shared key" : "HaRP paylaşılan anahtarı", - "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", - "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", - "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", - "Enable https" : "https kullanılsın", - "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", - "Hide deploy config" : "Dağıtım yapılandırmasını gizle", "Enable HaRP" : "HaRP kullanılsın", "FRP server address" : "FRP sunucusu adresi", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "'Docker ağı' üzerinde tanımlanmış ağdaki ExApp bileşeni tarafından ulaşılması gereken FRP sunucusunun adresi (Sunucu:BağlantıNoktası).", "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", + "Compute device" : "Hesaplama aygıtı", "Memory limit (in MiB)" : "Bellek sınırı (MiB)", - "Maximum memory that the ExApp container can use in mebibytes" : "ExApp kapsayıcısının mebibayt cinsinden kullanabileceği en fazla bellek", "Must be a positive integer" : "Bir pozitif tam sayı olmalıdır", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp kapsayıcısının kullanabileceği en fazla işlemci çekirdeği (yarım çekirdek için 0.5, iki çekirdek için 2)", "CPU limit as decimal value" : "Ondalık değer olarak işlemci sayısı sınırı", "Must be a positive number" : "Bir pozitif sayı olmalıdır", - "Additional option" : "Ek seçenek", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", "Option key (unique, e.g. my_key)" : "Seçenek anahtarı (benzersiz, örnek: benim_anahtarım)", @@ -186,10 +128,15 @@ "Confirm" : "Onayla", "Save" : "Kaydet", "Register" : "Kaydet", - "Check connection" : "Bağlantıyı denetle", "External Apps" : "Dış uygulamalar", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\n**Bu uygulama, Nextcloud 30.0.1 sürümünden başlayarak varsayılan Nextcloud paketine eklenmiştir.**\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI Projesi, Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir.", + "Deploy Daemons" : "Dağıtım arka plan işlemleri", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemi (DaemonConfig) bir dış uygulamalar yönetimi arka plan işlemidir.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy Daemon (DaemonConfig) bir dış uygulamalar yönetim arka plan işlemidir.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmasını denetleyin", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini belirtin. Örnek: Daemon sunucusu yeniden başlatıldıktan sonra ExApp çalışması için 'her zaman'", + "This settings changes are reflected only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcılara uygulanır", "{license}-licensed" : "{license}-lisanslı", "Update to {version}" : "{version} sürümüne güncelleniyor", "Delete data on remove" : "Kaldırıldığında veriler silinsin", @@ -219,12 +166,51 @@ "No apps found" : "Herhangi bir uygulama bulunamadı", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n dış uygulama için güncelleme yayınlanmış","%n dış uygulama için güncelleme yayınlanmış"], "_Update_::_Update all_" : ["Güncelle","Tümünü güncelle"], + "Deploy Daemon" : "Dağıtım arka plan işlemi", "Type" : "Tür", "Display Name" : "Görüntülenecek ad", + "GPUs support" : "Grafik işlemci desteği", + "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", + "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", + "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", + "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", + "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", + "Deploy config" : "Yapılandırmayı dağıt", + "Verify connection" : "Bağlantı sına", + "No Deploy daemons configured" : "Herhangi bir dağıtım arka plan işlemi yapılandırılmamış", + "Register a custom one or setup from available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan kurun", + "Register Daemon" : "Arka plan işlemini kaydet", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", + "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", + "More info" : "Diğer bilgiler", + "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", + "Start Deploy test" : "Dağıtım sınamasını başlat", + "Stop Deploy test" : "Dağıtım sınamasını durdur", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", + "Hostname to access ExApps" : "ExApp erişimi için kullanılacak sunucu adı", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker arka plan işlemine erişilecek sunucu adı ya da yol (örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", + "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", + "Edit Deploy Daemon" : "Dağıtım arka plan işlemini düzenle", + "Register Deploy Daemon" : "Dağıtım arka plan işlemini kaydet", + "Select daemon configuration template" : "Arka plan işlemi yapılandırma kalıbını seçin", + "Unique Deploy Daemon Name" : "Benzersiz dağıtım arka plan işlemi adı", + "Select daemon deploy method" : "Arka plan işlemi dağıtma yöntemini seçin", + "Set daemon as default" : "Arka plan işlemini varsayılan olarak ayarla", + "Set as default daemon" : "Varsayılan arka plan işlemi olarak ayarla", + "Enable https" : "https kullanılsın", + "Show deploy config" : "Dağıtım yapılandırmasını görüntüle", + "Hide deploy config" : "Dağıtım yapılandırmasını gizle", "Network" : "Ağ", "Docker network name" : "Docker ağı adı", + "Additional option" : "Ek seçenek", "by {author}\n{license}" : "{author} tarafından\n{license}", "Your apps" : "Uygulamalarınız", "Documentation" : "Belgeler", diff --git a/l10n/ug.js b/l10n/ug.js index badad446..72c44653 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -23,52 +23,31 @@ OC.L10N.register( "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", - "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon نى زىيارەت قىلغىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", "ExApp init timeout (minutes)" : "ExApp init ۋاقتى (مىنۇت)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp باشلاش جەريانىنىڭ ۋاقتى ، ئۇنىڭدىن كېيىن AppAPI ئۇنى مەغلۇب دەپ بەلگە قويىدۇ", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", - "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", - "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", - "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", - "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", "Cancel" : "بىكار قىلىش", "Delete" : "ئۆچۈر", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", - "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Default" : "سۈكۈتتىكى", "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", "Edit" : "تەھرىر", "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", - "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Unlimited" : "چەكسىز", - "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", - "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "قولدا قاچىلاش daemon ئادەتتە ئېچىش ئۈچۈن ئىشلىتىلىدۇ. ئۇنى سۈكۈتتىكى daemon قىلىپ تەڭشىگىلى بولمايدۇ.", "ExApps installed" : "ExApps قاچىلاندى", "Name" : "ئاتى", "Protocol" : "كېلىشىم", "Host" : "باش ئاپپارات", - "Deploy config" : "سەپلىمە ئورۇنلاشتۇرۇڭ", + "Deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرى", "Docker network" : "Docker تورى", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy پارولى", - "GPUs support" : "GPUs نى قوللايدۇ", - "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Additional options" : "قوشۇمچە تاللاشلار", - "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", - "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", - "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", - "Register Daemon" : "Daemon نى تىزىملىتىڭ", "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", "Image pull" : "رەسىم تارتىش", @@ -84,47 +63,26 @@ OC.L10N.register( "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", - "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", - "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "More information" : "تېخىمۇ كۆپ ئۇچۇرلار", "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", - "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", - "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", - "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", "Remove" : "ئۆچۈرۈڭ", "From" : "From", "To" : "To", "Add" : "قوش", - "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", - "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", - "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", - "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", - "Select daemon configuration template" : "Daemon سەپلىمە قېلىپىنى تاللاڭ", "Daemon registration form" : "Daemon تىزىملىتىش جەدۋىلى", - "Unique Deploy Daemon Name" : "ئۆزگىچە ئورۇنلاشتۇرۇش Daemon ئىسمى", "Display name" : "كۆرسىتىش ئىسمى", "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", - "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", "Daemon host" : "Daemon host", - "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", - "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", - "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", - "Enable https" : "Https نى قوزغىتىڭ", - "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", - "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", "Disabled" : "چەكلەنگەن", - "Additional option" : "قوشۇمچە تاللاش", + "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", "Option key (unique, e.g. my_key)" : "تاللاش ئاچقۇچى (ئۆزگىچە ، مەسىلەن my_key)", @@ -134,9 +92,14 @@ OC.L10N.register( "Confirm" : "جەزملەشتۈرۈڭ", "Save" : "ساقلا", "Register" : "تىزىملىتىڭ", - "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", + "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon نى زىيارەت قىلغىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", + "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", @@ -165,12 +128,51 @@ OC.L10N.register( "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", "_Update_::_Update all_" : ["ھەممىنى يېڭىلا","ھەممىنى يېڭىلا"], + "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", + "GPUs support" : "GPUs نى قوللايدۇ", + "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", + "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", + "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "قولدا قاچىلاش daemon ئادەتتە ئېچىش ئۈچۈن ئىشلىتىلىدۇ. ئۇنى سۈكۈتتىكى daemon قىلىپ تەڭشىگىلى بولمايدۇ.", + "Deploy config" : "سەپلىمە ئورۇنلاشتۇرۇڭ", + "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", + "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", + "Register Daemon" : "Daemon نى تىزىملىتىڭ", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", + "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", + "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", + "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", + "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", + "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", + "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", + "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", + "Select daemon configuration template" : "Daemon سەپلىمە قېلىپىنى تاللاڭ", + "Unique Deploy Daemon Name" : "ئۆزگىچە ئورۇنلاشتۇرۇش Daemon ئىسمى", + "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", + "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", + "Enable https" : "Https نى قوزغىتىڭ", + "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", + "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", "Network" : "تور", "Docker network name" : "Docker تور ئىسمى", + "Additional option" : "قوشۇمچە تاللاش", "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", diff --git a/l10n/ug.json b/l10n/ug.json index d9da7229..1e234a7b 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -21,52 +21,31 @@ "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", - "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon نى زىيارەت قىلغىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", "ExApp init timeout (minutes)" : "ExApp init ۋاقتى (مىنۇت)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp باشلاش جەريانىنىڭ ۋاقتى ، ئۇنىڭدىن كېيىن AppAPI ئۇنى مەغلۇب دەپ بەلگە قويىدۇ", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", - "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", - "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", - "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", - "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", "Cancel" : "بىكار قىلىش", "Delete" : "ئۆچۈر", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", - "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Default" : "سۈكۈتتىكى", "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", "Edit" : "تەھرىر", "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", - "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Unlimited" : "چەكسىز", - "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", - "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "قولدا قاچىلاش daemon ئادەتتە ئېچىش ئۈچۈن ئىشلىتىلىدۇ. ئۇنى سۈكۈتتىكى daemon قىلىپ تەڭشىگىلى بولمايدۇ.", "ExApps installed" : "ExApps قاچىلاندى", "Name" : "ئاتى", "Protocol" : "كېلىشىم", "Host" : "باش ئاپپارات", - "Deploy config" : "سەپلىمە ئورۇنلاشتۇرۇڭ", + "Deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرى", "Docker network" : "Docker تورى", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy پارولى", - "GPUs support" : "GPUs نى قوللايدۇ", - "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Additional options" : "قوشۇمچە تاللاشلار", - "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", - "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", - "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", - "Register Daemon" : "Daemon نى تىزىملىتىڭ", "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", "Image pull" : "رەسىم تارتىش", @@ -82,47 +61,26 @@ "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", - "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", - "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "More information" : "تېخىمۇ كۆپ ئۇچۇرلار", "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", - "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", - "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", - "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", "Remove" : "ئۆچۈرۈڭ", "From" : "From", "To" : "To", "Add" : "قوش", - "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", - "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", - "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", - "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", - "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", + "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", - "Select daemon configuration template" : "Daemon سەپلىمە قېلىپىنى تاللاڭ", "Daemon registration form" : "Daemon تىزىملىتىش جەدۋىلى", - "Unique Deploy Daemon Name" : "ئۆزگىچە ئورۇنلاشتۇرۇش Daemon ئىسمى", "Display name" : "كۆرسىتىش ئىسمى", "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", - "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", "Daemon host" : "Daemon host", - "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", - "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", - "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", - "Enable https" : "Https نى قوزغىتىڭ", - "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", - "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", "Disabled" : "چەكلەنگەن", - "Additional option" : "قوشۇمچە تاللاش", + "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", "Option key (unique, e.g. my_key)" : "تاللاش ئاچقۇچى (ئۆزگىچە ، مەسىلەن my_key)", @@ -132,9 +90,14 @@ "Confirm" : "جەزملەشتۈرۈڭ", "Save" : "ساقلا", "Register" : "تىزىملىتىڭ", - "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "External Apps" : "سىرتقى ئەپلەر", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", + "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemons نى ئورۇنلاشتۇرۇڭ. ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش Daemon نى زىيارەت قىلغىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "قاچا قايتا قوزغىتىش سىياسىتىنى بەلگىلەڭ ، مەسىلەن. daemon مۇلازىمېتىرى قايتا قوزغىتىلغاندىن كېيىن ExApp نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىدۇ", + "This settings changes are reflected only for newly created containers" : "بۇ تەڭشەكلەرنىڭ ئۆزگىرىشى پەقەت يېڭىدىن ياسالغان قاچىلاردىلا ئىپادىلىنىدۇ", "{license}-licensed" : "لىك {license}", "Update to {version}" : "{version} يېڭىلاش", "Delete data on remove" : "ئۆچۈرۈش ھەققىدىكى سانلىق مەلۇماتلارنى ئۆچۈرۈڭ", @@ -163,12 +126,51 @@ "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", "_Update_::_Update all_" : ["ھەممىنى يېڭىلا","ھەممىنى يېڭىلا"], + "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Type" : "تىپ", "Display Name" : "كۆرسىتىش ئىسمى", + "GPUs support" : "GPUs نى قوللايدۇ", + "Are you sure you want delete Deploy Daemon" : "Deploy Daemon نى ئۆچۈرمەكچىمۇ؟", + "All ExApps on this daemon will be removed" : "بۇ daemon دىكى بارلىق ExApps ئۆچۈرۈلىدۇ", + "All ExApps installed on this daemon will be removed" : "بۇ دامونغا ئورنىتىلغان بارلىق ExApps ئۆچۈرۈلىدۇ", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"قولدا قاچىلاش\" ئورۇنلاشتۇرۇش Daemon نى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin options. Check the logs" : "باشقۇرۇش تاللانمىلىرىنى ساقلىيالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Deploy daemon config details" : "Daemon سەپلىمە تەپسىلاتلىرىنى ئورۇنلاشتۇرۇڭ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "قولدا قاچىلاش daemon ئادەتتە ئېچىش ئۈچۈن ئىشلىتىلىدۇ. ئۇنى سۈكۈتتىكى daemon قىلىپ تەڭشىگىلى بولمايدۇ.", + "Deploy config" : "سەپلىمە ئورۇنلاشتۇرۇڭ", + "Verify connection" : "ئۇلىنىشنى تەكشۈرۈڭ", + "No Deploy daemons configured" : "ھېچقانداق ئورۇنلاشتۇرۇش لايىھىسى سەپلەنمىگەن", + "Register a custom one or setup from available templates" : "ئىختىيارى قېلىپ ياكى تىزىملىتىڭ", + "Register Daemon" : "Daemon نى تىزىملىتىڭ", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI كىچىك ئىسكىلىت ExApp نى ئورنىتىپ ، Daemon نىڭ توغرا تەڭشەلگەنلىكىنى ۋە ئورۇنلاشتۇرۇش باسقۇچلىرىنىڭ ئۆتۈپ كەتكەنلىكىنى دەلىللەيدۇ.", + "The following Deploy test checks must be passed to succeed:" : "مۇۋەپپەقىيەت قازىنىش ئۈچۈن تۆۋەندىكى ئورۇنلاشتۇرۇش سىناق تەكشۈرۈشىدىن ئۆتۈشى كېرەك:", + "More info" : "تېخىمۇ كۆپ ئۇچۇرلار", + "Remove test ExApp" : "ExApp نى ئۆچۈرۈڭ", + "Start Deploy test" : "ئورۇنلاشتۇرۇشنى باشلاڭ", + "Stop Deploy test" : "ئورۇنلاشتۇرۇشنى توختىتىڭ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp تىزىملاتمىغان بولۇپ ، قاچا «ئورۇنلاشتۇرۇشنى توختىتىش» تا چىقىرىۋېتىلىدۇ", + "Hostname to access ExApps" : "ExApps نى زىيارەت قىلىدىغان ساھىبجامال", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Docker daemon نى زىيارەت قىلىدىغان ساھىبجامال ياكى يول (مەسىلەن nextcloud-appapi-dsp: 2375 ، /var/run/docker.sock)", + "Daemon with this name already exists" : "بۇ ئىسىم بىلەن Daemon ئاللىبۇرۇن مەۋجۇت", + "Password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپ بولۇشى كېرەك", "With https enabled network is set to host" : "Https قوزغىتىلغان تور مۇلازىمېتىرغا تەڭشەلدى", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ئۆزگەرتىش پەقەت يېڭى قاچىلانغان ExApps ئۈچۈنلا قوللىنىلىدۇ. ھازىر بار بولغان ExApps ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "URL should start with http:// or https://" : "URL http: // ياكى https: // دىن باشلىنىشى كېرەك", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS daemon ئۈچۈن Nextcloud URL HTTPS بولۇشى كېرەك", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Daemon مۇلازىمېتىرىدىكى بارلىق GPU ئۈسكۈنىلىرىنىڭ Docker تەرىپىدىن ExApp قاچىسىدا قوزغىتىلىشى تەلەپ قىلىنىدۇ.", + "Edit Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تەھرىرلەڭ", + "Register Deploy Daemon" : "ئورۇنلاشتۇرۇش Daemon نى تىزىملىتىڭ", + "Select daemon configuration template" : "Daemon سەپلىمە قېلىپىنى تاللاڭ", + "Unique Deploy Daemon Name" : "ئۆزگىچە ئورۇنلاشتۇرۇش Daemon ئىسمى", + "Select daemon deploy method" : "Daemon ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", + "Set daemon as default" : "Daemon نى سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Set as default daemon" : "سۈكۈتتىكى daemon قىلىپ تەڭشەڭ", + "Enable https" : "Https نى قوزغىتىڭ", + "Show deploy config" : "ئورۇنلاشتۇرۇش سەپلىمىسىنى كۆرسەت", + "Hide deploy config" : "ئورۇنلاشتۇرۇشنى يوشۇرۇش", "Network" : "تور", "Docker network name" : "Docker تور ئىسمى", + "Additional option" : "قوشۇمچە تاللاش", "by {author}\n{license}" : "تەرىپىدىن {author}\n{license}", "Your apps" : "ئەپلىرىڭىز", "Documentation" : "قوللانما", diff --git a/l10n/uk.js b/l10n/uk.js index 29759e2d..29cd842f 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "Демон розгортання AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Стандартний демон розгортання AppAPI не встановлено. Будь ласка, зареєструйте стандартний демон розгортання в налаштуваннях, щоб встановити зовнішні програми (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Демон розгортання AppAPI за замовчуванням \"%s\" недоступний. Будь ласка, перевірте конфігурацію демона.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Демон розгортання AppAPI за замовчуванням не використовує HaRP. Будь ласка, подумайте про його оновлення для кращої продуктивності.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проекту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проєкт AppAPI — це цікава ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud за допомогою контейнерів Docker. Це розширює вибір мов програмування та дозволяє переносити обчислювально ресурсоємні завдання на інший сервер.", - "Deploy Daemons" : "Розгортання демонів", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Демон розгортання за замовчуванням недоступний. Будь ласка, перевірте його конфігурацію", "ExApp init timeout (minutes)" : "Тайм-аут ініціалізації ExApp (хвилини)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Таймаут процесу ініціалізації ExApp, після якого AppAPI позначить його як невдалий", "ExApp init timeout" : "Тайм-аут ініціалізації ExApp", "ExApp container restart policy" : "Політика перезапуску контейнера ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Вкажіть політику перезапуску контейнера, наприклад, \"завжди\", щоб забезпечити роботу ExApp після перезавантаження сервера демона", - "This settings changes are reflected only for newly created containers" : "Ці зміни налаштувань відображаються тільки для новостворених контейнерів", - "Are you sure you want delete Deploy Daemon" : "Ви впевнені, що хочете видалити Демон розгортання", - "All ExApps on this daemon will be removed" : "Усі ExApps на цьому демоні буде видалено", - "All ExApps installed on this daemon will be removed" : "Всі ExApps, встановлені на цьому демоні, буде видалено", "Cancel" : "Скасувати", "Delete" : "Вилучати", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Демон розгортання не може бути встановлений за замовчуванням", - "Failed to save admin options. Check the logs" : "Не вдалося зберегти параметри адміністрування. Перевірте логи", "Password confirmation failed" : "Не вдалося підтвердити пароль", "Default" : "Типово", "Set as default" : "Встановлено за замовчуванням", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Реєстри докерів", "Edit" : "Редагувати", "Daemon connection successful" : "Підключення демона виконано успішно", - "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", - "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", "Unlimited" : "Необмежено", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 ПРОЦЕСОР", - "{cpus} CPUs" : "{cpus} Процесори", - "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", - "Deploy Daemon" : "Розгортання демона", "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Демон ручного встановлення, який зазвичай використовується для розробки. Він не може бути встановлений як демон за замовчуванням.", "ExApps installed" : "Встановлено ExApps", "Name" : "Назва", "Protocol" : "Протокол", "Host" : "Хост", "ExApp direct communication (FRP disabled)" : "Прямий зв'язок з ExApp (FRP вимкнено)", - "Deploy config" : "Розгортання конфігурації", + "Deploy options" : "Варіанти розгортання", "Docker network" : "Докерна мережа", "Nextcloud URL" : "URL-адреса наступної хмари", "HaProxy password" : "Пароль HaProxy", - "GPUs support" : "Підтримка GPU", - "Compute device" : "Обчислити пристрій", "Memory limit" : "Ліміт пам'яті", "CPU limit" : "Обмеження процесора", "Additional options" : "Додаткові опції", - "Verify connection" : "Перевірте з'єднання", + "Check connection" : "Перевірте з'єднання", "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", - "No Deploy daemons configured" : "Не налаштовано демонів розгортання", - "Register a custom one or setup from available templates" : "Зареєструвати власний або налаштувати з доступних шаблонів", - "Register Daemon" : "Зареєструвати демона", "Register ExApp in Nextcloud" : "Зареєструйте ExApp у Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Перед розгортанням перевірте, чи зареєстровано ExApp у Nextcloud", "Image pull" : "Витягування зображення", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "Тільки якщо попередньо встановлено контейнер ExApp", "Deploy test passed successfully!" : "Тест на розгортання успішно пройдено!", "Deploy test failed at step \"{step}\"" : "Не вдалося виконати тест розгортання на кроці \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", - "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", - "More info" : "Більше інформації", + "More information" : "Докладно", "Download ExApp logs" : "Звантажити журнали ExApp", - "Remove test ExApp" : "Видалити тестовий ExApp", - "Start Deploy test" : "Почніть тест на розгортання", - "Stop Deploy test" : "Тест на зупинку розгортання", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp скасовано, а контейнер видалено на \"Зупинити тест розгортання\"", "Please enter a registry domain" : "Будь ласка, введіть домен в реєстрі", - "From cannot be \"local\"" : "Від не може бути \"локальним\"", "This registry mapping already exists" : "Таке відображення реєстру вже існує", - "From and To cannot be the same" : "\"Від\" і \"До\" не можуть бути одним і тим самим", "Docker registry mapping added" : "Додано відображення реєстру докерів", "Error adding Docker registry mapping" : "Помилка додавання зіставлення реєстру Docker", "Docker registry mapping removed" : "Видалено відображення реєстру докерів", "Error removing Docker registry mapping" : "Помилка видалення зіставлення реєстру Docker", "Override Docker registries" : "Перевизначення реєстрів Docker", - "Configure Docker registry override mappings for selected daemon." : "Налаштуйте заміщення реєстру Docker для обраного демона.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Відповідний реєстр джерел у файлі ExApp info.xml буде перезаписано під час розгортання (крок витягування образу).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Це корисно, якщо ви хочете використовувати власний реєстр Docker, наприклад, для використання приватного реєстру Docker або для використання іншого реєстру Docker для тестування.", "Image pull will be skipped" : "Підтягування зображень буде пропущено", "Remove" : "Вилучити", - "No custom Docker registries configured" : "Не налаштовано користувацькі реєстри Docker", "Add registry override mapping" : "Додати відображення заміщення реєстру", "From" : "Від", "registry URL (e.g. ghcr.io)" : "URL-адресу реєстру (наприклад, ghcr.io)", "To" : "Кому", "registry URL (e.g. docker.io)" : "URL-адресу реєстру (наприклад, docker.io)", "Add" : "Додати", - "Hostname to access ExApps" : "Ім'я хоста для доступу до ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Ім'я хоста (та порт), на якому {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud, наприклад {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста (і порт) або шлях, за яким {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud. Це також може бути шлях до сокета Docker. (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Демон з таким ім'ям вже існує", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретний ключ для зв'язку з контейнером HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Пароль автентифікації AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Зміни будуть застосовані лише до нових встановлених ExApps. Для існуючих ExApps слід перестворити контейнери Docker.", - "The docker network that the deployed ex-apps would use." : "Мережа докерів, яку використовуватимуть розгорнуті ex-додатки.", - "URL should start with http:// or https://" : "URL-адреса повинна починатися з http:// або https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS-демона URL-адреса Nextcloud має бути HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker попросить увімкнути всі доступні графічні пристрої на хості демона у контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успішно зареєстровано", "Failed to register DaemonConfig. Check the logs" : "Не вдалося зареєструвати DaemonConfig. Перевірте логи", "DaemonConfig successfully updated" : "DaemonConfig успішно оновлено", "Failed to update DaemonConfig. Check the logs" : "Не вдалося оновити DaemonConfig. Перевірте логи", - "Edit Deploy Daemon" : "Редагування демона розгортання", - "Register Deploy Daemon" : "Реєстрація Розгортання демона", + "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", + "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", "Daemon configuration template" : "Шаблон конфігурації демона", - "Select daemon configuration template" : "Виберіть шаблон конфігурації демона", "Daemon registration form" : "Реєстраційна форма Daemon", - "Unique Deploy Daemon Name" : "Унікальне ім'я демона розгортання", "Display name" : "Ім'я для показу", "Deployment method" : "Спосіб розгортання", - "Select daemon deploy method" : "Вибір методу розгортання демона", "HaRP host" : "HaRP хост", "Daemon host" : "Носій демона", "HaRP shared key" : "Спільний ключ HaRP", - "Password must be at least 12 characters long" : "Пароль повинен мати довжину не менше 12 символів", - "Set daemon as default" : "Встановити демона за замовчуванням", - "Set as default daemon" : "Встановлюється як демон за замовчуванням", - "Enable https" : "Увімкнути https", - "Show deploy config" : "Показати конфігурацію розгортання", - "Hide deploy config" : "Приховати конфігурацію розгортання", "Enable HaRP" : "Увімкнути HaRP", "FRP server address" : "Адреса сервера FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) сервера FRP, який повинен бути доступний для ex-app у мережі, визначеній у «Мережі Docker».", "Docker socket proxy port" : "Проксі-порт докерного сокета", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт в HaRP, до якого підключається проксі-сервер Docker Socket. Він повинен бути відкритий, але для вбудованого проксі-сервера відкривати або змінювати його не потрібно.", "Disable FRP" : "Вимкнути FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Прапорець лише для розширених налаштувань. Вимикає тунель FRP між ExApps і HaRP.", "Disabled" : "Вимкнено", "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", + "Compute device" : "Обчислити пристрій", "Memory limit (in MiB)" : "Ліміт пам'яті (в Мбайт)", - "Maximum memory that the ExApp container can use in mebibytes" : "Максимальний обсяг пам'яті, який може використовувати контейнер ExApp в мегабайтах", "Must be a positive integer" : "Повинно бути натуральним числом", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимальна кількість ядер процесора, яку може використовувати контейнер ExApp (наприклад, 0.5 для половини ядра, 2 для двох ядер)", "CPU limit as decimal value" : "Обмеження процесора як десяткове значення", "Must be a positive number" : "Повинно бути додатнім числом", - "Additional option" : "Додаткова опція", "Add additional option" : "Додати додаткову опцію", "Option key (unique)" : "Ключ опції (унікальний)", "Option key (unique, e.g. my_key)" : "Ключ опції (унікальний, наприклад, my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", - "Check connection" : "Перевірте з'єднання", "External Apps" : "Зовнішні застосунки", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n### Вбудована програма\n\n**Починаючи з Nextcloud 30.0.1, ця програма входить до стандартного пакету Nextcloud.**\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", + "Deploy Daemons" : "Розгортання демонів", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Демон розгортання за замовчуванням недоступний. Будь ласка, перевірте його конфігурацію", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Вкажіть політику перезапуску контейнера, наприклад, \"завжди\", щоб забезпечити роботу ExApp після перезавантаження сервера демона", + "This settings changes are reflected only for newly created containers" : "Ці зміни налаштувань відображаються тільки для новостворених контейнерів", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", "Delete data on remove" : "Видалення даних при видаленні", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "Не знайдено жодної програми", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp має оновлення","%n додатків мають оновлення","%n додатків мають оновлення","%n додатків мають оновлення"], "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], + "Deploy Daemon" : "Розгортання демона", "Type" : "Тип", "Display Name" : "Назва для показу", + "GPUs support" : "Підтримка GPU", + "Are you sure you want delete Deploy Daemon" : "Ви впевнені, що хочете видалити Демон розгортання", + "All ExApps on this daemon will be removed" : "Усі ExApps на цьому демоні буде видалено", + "All ExApps installed on this daemon will be removed" : "Всі ExApps, встановлені на цьому демоні, буде видалено", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Демон розгортання не може бути встановлений за замовчуванням", + "Failed to save admin options. Check the logs" : "Не вдалося зберегти параметри адміністрування. Перевірте логи", + "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Демон ручного встановлення, який зазвичай використовується для розробки. Він не може бути встановлений як демон за замовчуванням.", + "Deploy config" : "Розгортання конфігурації", + "Verify connection" : "Перевірте з'єднання", + "No Deploy daemons configured" : "Не налаштовано демонів розгортання", + "Register a custom one or setup from available templates" : "Зареєструвати власний або налаштувати з доступних шаблонів", + "Register Daemon" : "Зареєструвати демона", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", + "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", + "More info" : "Більше інформації", + "Remove test ExApp" : "Видалити тестовий ExApp", + "Start Deploy test" : "Почніть тест на розгортання", + "Stop Deploy test" : "Тест на зупинку розгортання", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp скасовано, а контейнер видалено на \"Зупинити тест розгортання\"", + "Hostname to access ExApps" : "Ім'я хоста для доступу до ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста або шлях до демона Docker (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Демон з таким ім'ям вже існує", + "Password must be at least 12 characters long" : "Пароль повинен мати довжину не менше 12 символів", "With https enabled network is set to host" : "З увімкненим https мережа налаштована на хост", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Зміни будуть застосовані лише до нових встановлених ExApps. Для існуючих ExApps слід перестворити контейнери Docker.", + "URL should start with http:// or https://" : "URL-адреса повинна починатися з http:// або https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS-демона URL-адреса Nextcloud має бути HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker попросить увімкнути всі доступні графічні пристрої на хості демона у контейнерах ExApp.", + "Edit Deploy Daemon" : "Редагування демона розгортання", + "Register Deploy Daemon" : "Реєстрація Розгортання демона", + "Select daemon configuration template" : "Виберіть шаблон конфігурації демона", + "Unique Deploy Daemon Name" : "Унікальне ім'я демона розгортання", + "Select daemon deploy method" : "Вибір методу розгортання демона", + "Set daemon as default" : "Встановити демона за замовчуванням", + "Set as default daemon" : "Встановлюється як демон за замовчуванням", + "Enable https" : "Увімкнути https", + "Show deploy config" : "Показати конфігурацію розгортання", + "Hide deploy config" : "Приховати конфігурацію розгортання", "Network" : "Мережа", "Docker network name" : "Ім'я докерної мережі", + "Additional option" : "Додаткова опція", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", diff --git a/l10n/uk.json b/l10n/uk.json index 9b6ea3ab..93b834dd 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "Демон розгортання AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Стандартний демон розгортання AppAPI не встановлено. Будь ласка, зареєструйте стандартний демон розгортання в налаштуваннях, щоб встановити зовнішні програми (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Демон розгортання AppAPI за замовчуванням \"%s\" недоступний. Будь ласка, перевірте конфігурацію демона.", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "Демон розгортання AppAPI за замовчуванням не використовує HaRP. Будь ласка, подумайте про його оновлення для кращої продуктивності.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проекту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проєкт AppAPI — це цікава ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud за допомогою контейнерів Docker. Це розширює вибір мов програмування та дозволяє переносити обчислювально ресурсоємні завдання на інший сервер.", - "Deploy Daemons" : "Розгортання демонів", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "Демон розгортання за замовчуванням недоступний. Будь ласка, перевірте його конфігурацію", "ExApp init timeout (minutes)" : "Тайм-аут ініціалізації ExApp (хвилини)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Таймаут процесу ініціалізації ExApp, після якого AppAPI позначить його як невдалий", "ExApp init timeout" : "Тайм-аут ініціалізації ExApp", "ExApp container restart policy" : "Політика перезапуску контейнера ExApp", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Вкажіть політику перезапуску контейнера, наприклад, \"завжди\", щоб забезпечити роботу ExApp після перезавантаження сервера демона", - "This settings changes are reflected only for newly created containers" : "Ці зміни налаштувань відображаються тільки для новостворених контейнерів", - "Are you sure you want delete Deploy Daemon" : "Ви впевнені, що хочете видалити Демон розгортання", - "All ExApps on this daemon will be removed" : "Усі ExApps на цьому демоні буде видалено", - "All ExApps installed on this daemon will be removed" : "Всі ExApps, встановлені на цьому демоні, буде видалено", "Cancel" : "Скасувати", "Delete" : "Вилучати", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Демон розгортання не може бути встановлений за замовчуванням", - "Failed to save admin options. Check the logs" : "Не вдалося зберегти параметри адміністрування. Перевірте логи", "Password confirmation failed" : "Не вдалося підтвердити пароль", "Default" : "Типово", "Set as default" : "Встановлено за замовчуванням", @@ -54,36 +42,24 @@ "Docker registries" : "Реєстри докерів", "Edit" : "Редагувати", "Daemon connection successful" : "Підключення демона виконано успішно", - "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", - "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", "Unlimited" : "Необмежено", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 ПРОЦЕСОР", - "{cpus} CPUs" : "{cpus} Процесори", - "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", - "Deploy Daemon" : "Розгортання демона", "Default daemon. ExApps will be installed on it" : "Демон за замовчуванням. На ньому будуть встановлені ExApps", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "Демон ручного встановлення, який зазвичай використовується для розробки. Він не може бути встановлений як демон за замовчуванням.", "ExApps installed" : "Встановлено ExApps", "Name" : "Назва", "Protocol" : "Протокол", "Host" : "Хост", "ExApp direct communication (FRP disabled)" : "Прямий зв'язок з ExApp (FRP вимкнено)", - "Deploy config" : "Розгортання конфігурації", + "Deploy options" : "Варіанти розгортання", "Docker network" : "Докерна мережа", "Nextcloud URL" : "URL-адреса наступної хмари", "HaProxy password" : "Пароль HaProxy", - "GPUs support" : "Підтримка GPU", - "Compute device" : "Обчислити пристрій", "Memory limit" : "Ліміт пам'яті", "CPU limit" : "Обмеження процесора", "Additional options" : "Додаткові опції", - "Verify connection" : "Перевірте з'єднання", + "Check connection" : "Перевірте з'єднання", "Registered Deploy daemons list" : "Список зареєстрованих демонів розгортання", - "No Deploy daemons configured" : "Не налаштовано демонів розгортання", - "Register a custom one or setup from available templates" : "Зареєструвати власний або налаштувати з доступних шаблонів", - "Register Daemon" : "Зареєструвати демона", "Register ExApp in Nextcloud" : "Зареєструйте ExApp у Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Перед розгортанням перевірте, чи зареєстровано ExApp у Nextcloud", "Image pull" : "Витягування зображення", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "Тільки якщо попередньо встановлено контейнер ExApp", "Deploy test passed successfully!" : "Тест на розгортання успішно пройдено!", "Deploy test failed at step \"{step}\"" : "Не вдалося виконати тест розгортання на кроці \"{step}\"", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", - "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", - "More info" : "Більше інформації", + "More information" : "Докладно", "Download ExApp logs" : "Звантажити журнали ExApp", - "Remove test ExApp" : "Видалити тестовий ExApp", - "Start Deploy test" : "Почніть тест на розгортання", - "Stop Deploy test" : "Тест на зупинку розгортання", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp скасовано, а контейнер видалено на \"Зупинити тест розгортання\"", "Please enter a registry domain" : "Будь ласка, введіть домен в реєстрі", - "From cannot be \"local\"" : "Від не може бути \"локальним\"", "This registry mapping already exists" : "Таке відображення реєстру вже існує", - "From and To cannot be the same" : "\"Від\" і \"До\" не можуть бути одним і тим самим", "Docker registry mapping added" : "Додано відображення реєстру докерів", "Error adding Docker registry mapping" : "Помилка додавання зіставлення реєстру Docker", "Docker registry mapping removed" : "Видалено відображення реєстру докерів", "Error removing Docker registry mapping" : "Помилка видалення зіставлення реєстру Docker", "Override Docker registries" : "Перевизначення реєстрів Docker", - "Configure Docker registry override mappings for selected daemon." : "Налаштуйте заміщення реєстру Docker для обраного демона.", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "Відповідний реєстр джерел у файлі ExApp info.xml буде перезаписано під час розгортання (крок витягування образу).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Це корисно, якщо ви хочете використовувати власний реєстр Docker, наприклад, для використання приватного реєстру Docker або для використання іншого реєстру Docker для тестування.", "Image pull will be skipped" : "Підтягування зображень буде пропущено", "Remove" : "Вилучити", - "No custom Docker registries configured" : "Не налаштовано користувацькі реєстри Docker", "Add registry override mapping" : "Додати відображення заміщення реєстру", "From" : "Від", "registry URL (e.g. ghcr.io)" : "URL-адресу реєстру (наприклад, ghcr.io)", "To" : "Кому", "registry URL (e.g. docker.io)" : "URL-адресу реєстру (наприклад, docker.io)", "Add" : "Додати", - "Hostname to access ExApps" : "Ім'я хоста для доступу до ExApps", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Ім'я хоста (та порт), на якому {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud, наприклад {host}.", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста (і порт) або шлях, за яким {name} доступний . Це не обов'язково має бути публічний хост, достатньо хосту, доступного для сервера Nextcloud. Це також може бути шлях до сокета Docker. (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", - "Daemon with this name already exists" : "Демон з таким ім'ям вже існує", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Секретний ключ для зв'язку з контейнером HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Пароль автентифікації AppAPI Docker Socket Proxy", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Зміни будуть застосовані лише до нових встановлених ExApps. Для існуючих ExApps слід перестворити контейнери Docker.", - "The docker network that the deployed ex-apps would use." : "Мережа докерів, яку використовуватимуть розгорнуті ex-додатки.", - "URL should start with http:// or https://" : "URL-адреса повинна починатися з http:// або https://", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS-демона URL-адреса Nextcloud має бути HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker попросить увімкнути всі доступні графічні пристрої на хості демона у контейнерах ExApp.", "DaemonConfig successfully registered" : "DaemonConfig успішно зареєстровано", "Failed to register DaemonConfig. Check the logs" : "Не вдалося зареєструвати DaemonConfig. Перевірте логи", "DaemonConfig successfully updated" : "DaemonConfig успішно оновлено", "Failed to update DaemonConfig. Check the logs" : "Не вдалося оновити DaemonConfig. Перевірте логи", - "Edit Deploy Daemon" : "Редагування демона розгортання", - "Register Deploy Daemon" : "Реєстрація Розгортання демона", + "Failed to connect to Daemon. Check the logs" : "Не вдалося підключитися до Daemon. Перевір журнали.", + "Failed to check connection to Daemon. Check the logs" : "Не вдалося перевірити з'єднання з Daemon. Перевірте журнали.", "Daemon configuration template" : "Шаблон конфігурації демона", - "Select daemon configuration template" : "Виберіть шаблон конфігурації демона", "Daemon registration form" : "Реєстраційна форма Daemon", - "Unique Deploy Daemon Name" : "Унікальне ім'я демона розгортання", "Display name" : "Ім'я для показу", "Deployment method" : "Спосіб розгортання", - "Select daemon deploy method" : "Вибір методу розгортання демона", "HaRP host" : "HaRP хост", "Daemon host" : "Носій демона", "HaRP shared key" : "Спільний ключ HaRP", - "Password must be at least 12 characters long" : "Пароль повинен мати довжину не менше 12 символів", - "Set daemon as default" : "Встановити демона за замовчуванням", - "Set as default daemon" : "Встановлюється як демон за замовчуванням", - "Enable https" : "Увімкнути https", - "Show deploy config" : "Показати конфігурацію розгортання", - "Hide deploy config" : "Приховати конфігурацію розгортання", "Enable HaRP" : "Увімкнути HaRP", "FRP server address" : "Адреса сервера FRP", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "Адреса (хост:порт) сервера FRP, який повинен бути доступний для ex-app у мережі, визначеній у «Мережі Docker».", "Docker socket proxy port" : "Проксі-порт докерного сокета", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Порт в HaRP, до якого підключається проксі-сервер Docker Socket. Він повинен бути відкритий, але для вбудованого проксі-сервера відкривати або змінювати його не потрібно.", "Disable FRP" : "Вимкнути FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Прапорець лише для розширених налаштувань. Вимикає тунель FRP між ExApps і HaRP.", "Disabled" : "Вимкнено", "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", + "Compute device" : "Обчислити пристрій", "Memory limit (in MiB)" : "Ліміт пам'яті (в Мбайт)", - "Maximum memory that the ExApp container can use in mebibytes" : "Максимальний обсяг пам'яті, який може використовувати контейнер ExApp в мегабайтах", "Must be a positive integer" : "Повинно бути натуральним числом", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Максимальна кількість ядер процесора, яку може використовувати контейнер ExApp (наприклад, 0.5 для половини ядра, 2 для двох ядер)", "CPU limit as decimal value" : "Обмеження процесора як десяткове значення", "Must be a positive number" : "Повинно бути додатнім числом", - "Additional option" : "Додаткова опція", "Add additional option" : "Додати додаткову опцію", "Option key (unique)" : "Ключ опції (унікальний)", "Option key (unique, e.g. my_key)" : "Ключ опції (унікальний, наприклад, my_key)", @@ -186,10 +128,15 @@ "Confirm" : "Підтвердити", "Save" : "Зберегти", "Register" : "Зареєструватися", - "Check connection" : "Перевірте з'єднання", "External Apps" : "Зовнішні застосунки", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n### Вбудована програма\n\n**Починаючи з Nextcloud 30.0.1, ця програма входить до стандартного пакету Nextcloud.**\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проєкту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Проект AppAPI - це захоплююча ініціатива, яка має на меті революціонізувати спосіб розробки додатків для Nextcloud.", + "Deploy Daemons" : "Розгортання демонів", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Демон розгортання (DaemonConfig) - це демон оркестрування ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Розгортання демонів. Deploy Daemon (DaemonConfig) - це демон оркестрування ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Демон розгортання за замовчуванням недоступний. Будь ласка, перевірте його конфігурацію", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Вкажіть політику перезапуску контейнера, наприклад, \"завжди\", щоб забезпечити роботу ExApp після перезавантаження сервера демона", + "This settings changes are reflected only for newly created containers" : "Ці зміни налаштувань відображаються тільки для новостворених контейнерів", "{license}-licensed" : "Ліцензія: {license}", "Update to {version}" : "Оновити до {version}", "Delete data on remove" : "Видалення даних при видаленні", @@ -219,12 +166,51 @@ "No apps found" : "Не знайдено жодної програми", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ExApp має оновлення","%n додатків мають оновлення","%n додатків мають оновлення","%n додатків мають оновлення"], "_Update_::_Update all_" : ["Оновити","Оновити все","Оновити все","Оновити все"], + "Deploy Daemon" : "Розгортання демона", "Type" : "Тип", "Display Name" : "Назва для показу", + "GPUs support" : "Підтримка GPU", + "Are you sure you want delete Deploy Daemon" : "Ви впевнені, що хочете видалити Демон розгортання", + "All ExApps on this daemon will be removed" : "Усі ExApps на цьому демоні буде видалено", + "All ExApps installed on this daemon will be removed" : "Всі ExApps, встановлені на цьому демоні, буде видалено", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" Демон розгортання не може бути встановлений за замовчуванням", + "Failed to save admin options. Check the logs" : "Не вдалося зберегти параметри адміністрування. Перевірте логи", + "Deploy daemon config details" : "Деталі конфігурації демона для розгортання", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Демон ручного встановлення, який зазвичай використовується для розробки. Він не може бути встановлений як демон за замовчуванням.", + "Deploy config" : "Розгортання конфігурації", + "Verify connection" : "Перевірте з'єднання", + "No Deploy daemons configured" : "Не налаштовано демонів розгортання", + "Register a custom one or setup from available templates" : "Зареєструвати власний або налаштувати з доступних шаблонів", + "Register Daemon" : "Зареєструвати демона", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI спробує встановити невеликий скелет ExApp, щоб переконатися, що демон налаштовано правильно і кроки розгортання пройдено.", + "The following Deploy test checks must be passed to succeed:" : "Для успішного розгортання необхідно пройти наступні перевірки тесту розгортання:", + "More info" : "Більше інформації", + "Remove test ExApp" : "Видалити тестовий ExApp", + "Start Deploy test" : "Почніть тест на розгортання", + "Stop Deploy test" : "Тест на зупинку розгортання", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp скасовано, а контейнер видалено на \"Зупинити тест розгортання\"", + "Hostname to access ExApps" : "Ім'я хоста для доступу до ExApps", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Ім'я хоста або шлях до демона Docker (наприклад, nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Демон з таким ім'ям вже існує", + "Password must be at least 12 characters long" : "Пароль повинен мати довжину не менше 12 символів", "With https enabled network is set to host" : "З увімкненим https мережа налаштована на хост", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Зміни будуть застосовані лише до нових встановлених ExApps. Для існуючих ExApps слід перестворити контейнери Docker.", + "URL should start with http:// or https://" : "URL-адреса повинна починатися з http:// або https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Для HTTPS-демона URL-адреса Nextcloud має бути HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker попросить увімкнути всі доступні графічні пристрої на хості демона у контейнерах ExApp.", + "Edit Deploy Daemon" : "Редагування демона розгортання", + "Register Deploy Daemon" : "Реєстрація Розгортання демона", + "Select daemon configuration template" : "Виберіть шаблон конфігурації демона", + "Unique Deploy Daemon Name" : "Унікальне ім'я демона розгортання", + "Select daemon deploy method" : "Вибір методу розгортання демона", + "Set daemon as default" : "Встановити демона за замовчуванням", + "Set as default daemon" : "Встановлюється як демон за замовчуванням", + "Enable https" : "Увімкнути https", + "Show deploy config" : "Показати конфігурацію розгортання", + "Hide deploy config" : "Приховати конфігурацію розгортання", "Network" : "Мережа", "Docker network name" : "Ім'я докерної мережі", + "Additional option" : "Додаткова опція", "by {author}\n{license}" : "Автор: {author}\n{license}", "Your apps" : "Ваші застосунки", "Documentation" : "Документація", diff --git a/l10n/uz.js b/l10n/uz.js index 82f2acc9..7bdda785 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -8,15 +8,14 @@ OC.L10N.register( "Edit" : "Tahrirlash", "Unlimited" : "Unlimited", "Name" : "Name", + "Check connection" : "Ulanishni tekshiring", "Remove" : "O'chirish", "From" : "Dan", "To" : "Gacha", "Add" : "Qo'shish", - "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", "Confirm" : "Confirm", "Save" : "Saqlash", "Register" : "Roʻyxatdan oʻtish", - "Check connection" : "Ulanishni tekshiring", "Update to {version}" : "Update to {version}", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", @@ -26,6 +25,7 @@ OC.L10N.register( "Version" : "Versiya", "Actions" : "Actions", "Type" : "Turi", + "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", "Documentation" : "Hujjatlar", "Details" : "Details", "Enable" : "Enable", diff --git a/l10n/uz.json b/l10n/uz.json index 7945661f..40cd7d18 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -6,15 +6,14 @@ "Edit" : "Tahrirlash", "Unlimited" : "Unlimited", "Name" : "Name", + "Check connection" : "Ulanishni tekshiring", "Remove" : "O'chirish", "From" : "Dan", "To" : "Gacha", "Add" : "Qo'shish", - "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", "Confirm" : "Confirm", "Save" : "Saqlash", "Register" : "Roʻyxatdan oʻtish", - "Check connection" : "Ulanishni tekshiring", "Update to {version}" : "Update to {version}", "Visit website" : "Visit website", "User documentation" : "Foydalanuvchi hujjatlari", @@ -24,6 +23,7 @@ "Version" : "Versiya", "Actions" : "Actions", "Type" : "Turi", + "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", "Documentation" : "Hujjatlar", "Details" : "Details", "Enable" : "Enable", diff --git a/l10n/vi.js b/l10n/vi.js index bca9d739..be738758 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", "Enabled" : "Đá kích hoạt", + "More information" : "Thêm thông tin", "Remove" : "Xoá", "From" : "Từ", "To" : "Tới", diff --git a/l10n/vi.json b/l10n/vi.json index 830e65f9..4103aa75 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -7,6 +7,7 @@ "Host" : "Máy chủ", "Nextcloud URL" : "vWorkspace URL", "Enabled" : "Đá kích hoạt", + "More information" : "Thêm thông tin", "Remove" : "Xoá", "From" : "Từ", "To" : "Tới", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 0a5b7f30..c1acba0c 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -15,45 +15,41 @@ OC.L10N.register( "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", - "Deploy Daemons" : "部署守护进程", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", "ExApp init timeout (minutes)" : "外部应用初始化超时(分钟)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部应用初始化过程超时后,AppAPI 将其标记为已失败", "ExApp init timeout" : "外部应用初始化超时", "ExApp container restart policy" : "外部应用容器重启策略", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", - "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", "Cancel" : "取消", "Delete" : "删除", "Default" : "默认", "Edit" : "编辑", "Unlimited" : "无限制", - "Deploy Daemon" : "部署守护进程", "Name" : "名称", "Host" : "主机", + "Deploy options" : "部署选项", "Nextcloud URL" : "Nextcloud URL ", - "GPUs support" : "GPU 支持", - "Compute device" : "计算设备", "Memory limit" : "内存限制", "Registered Deploy daemons list" : "已注册的部署守护进程列表", - "No Deploy daemons configured" : "没有部署守护进程配置", - "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", - "Register Daemon" : "注册守护进程", "Enabled" : "已启用", + "More information" : "更多信息", "Remove" : "移除", "From" : "来自", "To" : "给", "Add" : "添加", - "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", "Disabled" : "已禁用", + "Compute device" : "计算设备", "Confirm" : "确认", "Save" : "保存", "Register" : "注册", "External Apps" : "外部应用", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", + "Deploy Daemons" : "部署守护进程", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", + "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", "Delete data on remove" : "移除时删除数据", @@ -79,8 +75,14 @@ OC.L10N.register( "Actions" : "操作", "Results from other categories" : "来自其他类别的结果", "_Update_::_Update all_" : ["全部更新"], + "Deploy Daemon" : "部署守护进程", "Type" : "类型", "Display Name" : "显示名称", + "GPUs support" : "GPU 支持", + "No Deploy daemons configured" : "没有部署守护进程配置", + "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", + "Register Daemon" : "注册守护进程", + "Register Deploy Daemon" : "注册部署守护进程", "Network" : "网络", "by {author}\n{license}" : "按照 {author}\n{license}", "Your apps" : "您的应用", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 6e095932..aa3571f9 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -13,45 +13,41 @@ "External Apps management" : "外部应用管理", "Admin options saved" : "已保存管理员选项", "Failed to save admin options" : "保存管理员选项失败", - "Deploy Daemons" : "部署守护进程", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", "ExApp init timeout (minutes)" : "外部应用初始化超时(分钟)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部应用初始化过程超时后,AppAPI 将其标记为已失败", "ExApp init timeout" : "外部应用初始化超时", "ExApp container restart policy" : "外部应用容器重启策略", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", - "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", "Cancel" : "取消", "Delete" : "删除", "Default" : "默认", "Edit" : "编辑", "Unlimited" : "无限制", - "Deploy Daemon" : "部署守护进程", "Name" : "名称", "Host" : "主机", + "Deploy options" : "部署选项", "Nextcloud URL" : "Nextcloud URL ", - "GPUs support" : "GPU 支持", - "Compute device" : "计算设备", "Memory limit" : "内存限制", "Registered Deploy daemons list" : "已注册的部署守护进程列表", - "No Deploy daemons configured" : "没有部署守护进程配置", - "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", - "Register Daemon" : "注册守护进程", "Enabled" : "已启用", + "More information" : "更多信息", "Remove" : "移除", "From" : "来自", "To" : "给", "Add" : "添加", - "Register Deploy Daemon" : "注册部署守护进程", "Display name" : "显示名称", "Deployment method" : "部署方式", "Disabled" : "已禁用", + "Compute device" : "计算设备", "Confirm" : "确认", "Save" : "保存", "Register" : "注册", "External Apps" : "外部应用", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 项目是一项令人兴奋的计划,旨在彻底改变为 Nextcloud 开发应用程序的方式。", + "Deploy Daemons" : "部署守护进程", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署守护进程。部署守护进程(DaemonConfig)是外部应用的编排守护进程。", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重启策略,例如“always”,以确保外部应用在守护进程服务重启后运行", + "This settings changes are reflected only for newly created containers" : "此设置更改仅适用于新创建的容器", "{license}-licensed" : "{license}-许可协议", "Update to {version}" : "更新至 {version}", "Delete data on remove" : "移除时删除数据", @@ -77,8 +73,14 @@ "Actions" : "操作", "Results from other categories" : "来自其他类别的结果", "_Update_::_Update all_" : ["全部更新"], + "Deploy Daemon" : "部署守护进程", "Type" : "类型", "Display Name" : "显示名称", + "GPUs support" : "GPU 支持", + "No Deploy daemons configured" : "没有部署守护进程配置", + "Register a custom one or setup from available templates" : "注册自定义模板或从可用模板进行安装", + "Register Daemon" : "注册守护进程", + "Register Deploy Daemon" : "注册部署守护进程", "Network" : "网络", "by {author}\n{license}" : "按照 {author}\n{license}", "Your apps" : "您的应用", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 9dab7520..4be930b9 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project 是一個令人興奮的計劃,旨在通過使用 Docker 容器來徹底改變 Nextcloud 應用程序的開發方式。這樣可以提供更大的編程語言選擇,並允許將計算密集型任務卸載到不同的伺服器上。", - "Deploy Daemons" : "部署幕後程式", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", "ExApp init timeout (minutes)" : "外部應用程式初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部應用程式初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "外部應用程式初始化逾時", "ExApp container restart policy" : "外部應用程式容器重新啟動政策", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保外部應用程式在幕後程式伺服器重新啟動後執行", - "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", - "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", - "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", "Cancel" : "取消", "Delete" : "刪除", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "默認", "Set as default" : "設定為默認值", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Docker 註冊表", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "部署幕後程式設定詳細資訊", - "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為默認幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名字", "Protocol" : "協定", "Host" : "主機", "ExApp direct communication (FRP disabled)" : "ExApp 直接通信(FRP 已禁用)", - "Deploy config" : "部署設定", + "Deploy options" : "部署選項", "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", - "GPUs support" : "GPUs 支援", - "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "附加選項", - "Verify connection" : "驗證連線", + "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", - "No Deploy daemons configured" : "未設定部署幕後程式", - "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", - "Register Daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "僅當 ExApp 容器已預設時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資料", + "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 記錄", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Please enter a registry domain" : "請輸入註冊表域名", - "From cannot be \"local\"" : "來源不能是「本地」", "This registry mapping already exists" : "此註冊表映射已存在", - "From and To cannot be the same" : "來源和目標不能相同", "Docker registry mapping added" : "已添加 Docker 註冊表映射", "Error adding Docker registry mapping" : "添加 Docker 註冊表映射時出錯", "Docker registry mapping removed" : "已移除了 Docker 註冊表映射", "Error removing Docker registry mapping" : "移除 Docker 註冊表映射時出錯", "Override Docker registries" : "覆蓋 Docker 註冊表", - "Configure Docker registry override mappings for selected daemon." : "為選定的守護進程配置 Docker 註冊表覆蓋映射。", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "在部署過程中(映像拉取步驟),ExApp info.xml 中的匹配源註冊表將被覆蓋。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", - "No custom Docker registries configured" : "未配置自定義 Docker 註冊表", "Add registry override mapping" : "添加註冊表覆蓋映射", "From" : "從", "registry URL (e.g. ghcr.io)" : "註冊表 URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "註冊表 URL(例如 docker.io)", "Add" : "添加", - "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Edit Deploy Daemon" : "編輯部署幕後程式", - "Register Deploy Daemon" : "註冊部署幕後程式", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Daemon configuration template" : "幕後程式設定範本", - "Select daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", - "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", - "Select daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用密鑰", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Set daemon as default" : "設定幕後程式為默認值", - "Set as default daemon" : "設定為默認 daemon", - "Enable https" : "啟用 https", - "Show deploy config" : "顯示部署設定", - "Hide deploy config" : "隱藏部署設定", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於高級設置的標誌。禁用 ExApps 和 HaRP 之間的 FRP 隧道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", - "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", "Option key (unique, e.g. my_key)" : "選項密鑰(獨一無二的,例如 my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "確認", "Save" : "保存", "Register" : "註冊", - "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", + "Deploy Daemons" : "部署幕後程式", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保外部應用程式在幕後程式伺服器重新啟動後執行", + "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "找不到應用程式", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], "_Update_::_Update all_" : ["更新全部"], + "Deploy Daemon" : "部署幕後程式", "Type" : "類型", "Display Name" : "顯示名稱", + "GPUs support" : "GPUs 支援", + "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", + "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", + "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為默認幕後程式。", + "Deploy config" : "部署設定", + "Verify connection" : "驗證連線", + "No Deploy daemons configured" : "未設定部署幕後程式", + "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", + "Register Daemon" : "註冊幕後程式", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資料", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "Edit Deploy Daemon" : "編輯部署幕後程式", + "Register Deploy Daemon" : "註冊部署幕後程式", + "Select daemon configuration template" : "選取幕後程式設定範本", + "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", + "Select daemon deploy method" : "選取幕後程式部署方法", + "Set daemon as default" : "設定幕後程式為默認值", + "Set as default daemon" : "設定為默認 daemon", + "Enable https" : "啟用 https", + "Show deploy config" : "顯示部署設定", + "Hide deploy config" : "隱藏部署設定", "Network" : "網絡", "Docker network name" : "Docker 網路名字", + "Additional option" : "附加選項", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "說明書", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index cfc25a06..845e2b91 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project 是一個令人興奮的計劃,旨在通過使用 Docker 容器來徹底改變 Nextcloud 應用程序的開發方式。這樣可以提供更大的編程語言選擇,並允許將計算密集型任務卸載到不同的伺服器上。", - "Deploy Daemons" : "部署幕後程式", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", "ExApp init timeout (minutes)" : "外部應用程式初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部應用程式初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "外部應用程式初始化逾時", "ExApp container restart policy" : "外部應用程式容器重新啟動政策", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保外部應用程式在幕後程式伺服器重新啟動後執行", - "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", - "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", - "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", "Cancel" : "取消", "Delete" : "刪除", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "默認", "Set as default" : "設定為默認值", @@ -54,36 +42,24 @@ "Docker registries" : "Docker 註冊表", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "部署幕後程式設定詳細資訊", - "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為默認幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名字", "Protocol" : "協定", "Host" : "主機", "ExApp direct communication (FRP disabled)" : "ExApp 直接通信(FRP 已禁用)", - "Deploy config" : "部署設定", + "Deploy options" : "部署選項", "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", - "GPUs support" : "GPUs 支援", - "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "附加選項", - "Verify connection" : "驗證連線", + "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", - "No Deploy daemons configured" : "未設定部署幕後程式", - "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", - "Register Daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "僅當 ExApp 容器已預設時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資料", + "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 記錄", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", "Please enter a registry domain" : "請輸入註冊表域名", - "From cannot be \"local\"" : "來源不能是「本地」", "This registry mapping already exists" : "此註冊表映射已存在", - "From and To cannot be the same" : "來源和目標不能相同", "Docker registry mapping added" : "已添加 Docker 註冊表映射", "Error adding Docker registry mapping" : "添加 Docker 註冊表映射時出錯", "Docker registry mapping removed" : "已移除了 Docker 註冊表映射", "Error removing Docker registry mapping" : "移除 Docker 註冊表映射時出錯", "Override Docker registries" : "覆蓋 Docker 註冊表", - "Configure Docker registry override mappings for selected daemon." : "為選定的守護進程配置 Docker 註冊表覆蓋映射。", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "在部署過程中(映像拉取步驟),ExApp info.xml 中的匹配源註冊表將被覆蓋。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", - "No custom Docker registries configured" : "未配置自定義 Docker 註冊表", "Add registry override mapping" : "添加註冊表覆蓋映射", "From" : "從", "registry URL (e.g. ghcr.io)" : "註冊表 URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "註冊表 URL(例如 docker.io)", "Add" : "添加", - "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Edit Deploy Daemon" : "編輯部署幕後程式", - "Register Deploy Daemon" : "註冊部署幕後程式", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Daemon configuration template" : "幕後程式設定範本", - "Select daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", - "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", - "Select daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用密鑰", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Set daemon as default" : "設定幕後程式為默認值", - "Set as default daemon" : "設定為默認 daemon", - "Enable https" : "啟用 https", - "Show deploy config" : "顯示部署設定", - "Hide deploy config" : "隱藏部署設定", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於高級設置的標誌。禁用 ExApps 和 HaRP 之間的 FRP 隧道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", - "Additional option" : "附加選項", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", "Option key (unique, e.g. my_key)" : "選項密鑰(獨一無二的,例如 my_key)", @@ -186,10 +128,15 @@ "Confirm" : "確認", "Save" : "保存", "Register" : "註冊", - "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "翻譯:## 為您的 Nextcloud 提升功能:AppAPI 及其專門設計的應用程式\n\nAppAPI 是 Nextcloud 生態系統中的一個專案,旨在簡化和增強應用程式的開發、部署和管理過程。\n\n它引入了一種新方法,允許開發者使用多種程式語言來創建應用程式,而不僅限於傳統的 PHP。\n\n### 捆綁應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在默認的 Nextcloud 包中。**\n\n### 支持\n\n我們非常感謝對此專案的任何支持:\n\n- ⭐ 在 GitHub 上為我們的工作點贊\n- ❗ 創建問題或功能請求\n- 💁 解決問題並創建拉取請求\n- 🧑‍💻 使用 AppAPI 開發自己的應用程式\n\n我們對 AppAPI 專案的未來感到非常興奮,並期待它能改變應用程式在 Nextcloud 中的開發和體驗方式。\n\n在這個旅程中,我們熱忱地邀請您——開發者、思想家、創造者和遠見者——加入我們,共同塑造一個更具多樣性、更穩定和更安全的應用程式環境。\n\n*您的見解、建議和貢獻對我們而言是無價的。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", + "Deploy Daemons" : "部署幕後程式", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是外部應用程式的協作幕後程式。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保外部應用程式在幕後程式伺服器重新啟動後執行", + "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", @@ -219,12 +166,51 @@ "No apps found" : "找不到應用程式", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], "_Update_::_Update all_" : ["更新全部"], + "Deploy Daemon" : "部署幕後程式", "Type" : "類型", "Display Name" : "顯示名稱", + "GPUs support" : "GPUs 支援", + "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除 Deploy Daemon 程式嗎", + "All ExApps on this daemon will be removed" : "所有在此幕後程式上的外部應用程式都將會被移除", + "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的外部應用程式都將會被移除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"人手安裝\" 部署 Daemon 不能設置為默認", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為默認幕後程式。", + "Deploy config" : "部署設定", + "Verify connection" : "驗證連線", + "No Deploy daemons configured" : "未設定部署幕後程式", + "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", + "Register Daemon" : "註冊幕後程式", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資料", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被註銷,其容器已在「停止部署測試」中刪除", + "Hostname to access ExApps" : "用來存取外部應用程式的主機名稱", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "With https enabled network is set to host" : "啟用 https 後,網絡設定為主機", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在外部應用程式容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "Edit Deploy Daemon" : "編輯部署幕後程式", + "Register Deploy Daemon" : "註冊部署幕後程式", + "Select daemon configuration template" : "選取幕後程式設定範本", + "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", + "Select daemon deploy method" : "選取幕後程式部署方法", + "Set daemon as default" : "設定幕後程式為默認值", + "Set as default daemon" : "設定為默認 daemon", + "Enable https" : "啟用 https", + "Show deploy config" : "顯示部署設定", + "Hide deploy config" : "隱藏部署設定", "Network" : "網絡", "Docker network name" : "Docker 網路名字", + "Additional option" : "附加選項", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "說明書", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 868e57f6..0d93983d 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -25,30 +25,18 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI 計畫是一項令人振奮的計畫,旨在透過使用 docker 容器,徹底改變 Nextcloud 應用程式的開發方式。允許更多的程式語言選擇,並允許將運算密集型的任務移轉到不同的伺服器。", - "Deploy Daemons" : "部署幕後程式", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", "ExApp init timeout (minutes)" : "ExApp 初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp 初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "ExApp 初始化逾時", "ExApp container restart policy" : "ExApp 容器重新啟動政策", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保 ExApp 在幕後程式伺服器重新啟動後執行", - "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", - "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", - "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", "Cancel" : "取消", "Delete" : "刪除", - "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "預設", "Set as default" : "設定為預設值", @@ -56,36 +44,24 @@ OC.L10N.register( "Docker registries" : "Docker registry", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "部署幕後程式設定詳細資訊", - "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名稱", "Protocol" : "協定", "Host" : "主機", "ExApp direct communication (FRP disabled)" : "ExApp 直接通訊(已停用 FRP)", - "Deploy config" : "部署設定", + "Deploy options" : "部署選項", "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", - "GPUs support" : "GPU 支援", - "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "額外選項", - "Verify connection" : "驗證連線", + "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", - "No Deploy daemons configured" : "未設定部署幕後程式", - "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", - "Register Daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -101,84 +77,50 @@ OC.L10N.register( "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試於「{step}」步驟失敗", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資訊", + "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 紀錄檔", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Please enter a registry domain" : "請輸入 registry 網域", - "From cannot be \"local\"" : "來源不能是「local」", "This registry mapping already exists" : "已存在此 registry 對映", - "From and To cannot be the same" : "來源與目的地不能相同", "Docker registry mapping added" : "已新增 Docker registry 對映", "Error adding Docker registry mapping" : "新增 Docker registry 對映時發生錯誤", "Docker registry mapping removed" : "已移除 Docker registry 對映", "Error removing Docker registry mapping" : "移除 Docker registry 對映時發生錯誤", "Override Docker registries" : "覆寫 Docker registry", - "Configure Docker registry override mappings for selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂的 Docker registry,例如使用私人 Docker registry,或使用不同的 Docker registry 進行測試,這將非常有用。", "Image pull will be skipped" : "將會略過映像檔拉取", "Remove" : "移除", - "No custom Docker registries configured" : "未設定自訂的 Docker registry", "Add registry override mapping" : "新增 registry 覆寫對映", "From" : "從", "registry URL (e.g. ghcr.io)" : "registry URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "registry URL(例如 docker.io)", "Add" : "新增", - "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Edit Deploy Daemon" : "編輯部署幕後程式", - "Register Deploy Daemon" : "註冊部署幕後程式", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Daemon configuration template" : "幕後程式設定範本", - "Select daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", - "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", - "Select daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用金鑰", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Set daemon as default" : "設定幕後程式為預設值", - "Set as default daemon" : "設定為預設幕後程式", - "Enable https" : "啟用 https", - "Show deploy config" : "顯示部署設定", - "Hide deploy config" : "隱藏部署設定", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApp 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", - "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", "Option key (unique, e.g. my_key)" : "選項鍵(唯一,例如 my_key)", @@ -188,10 +130,15 @@ OC.L10N.register( "Confirm" : "確認", "Save" : "儲存", "Register" : "註冊", - "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", + "Deploy Daemons" : "部署幕後程式", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保 ExApp 在幕後程式伺服器重新啟動後執行", + "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", @@ -221,12 +168,51 @@ OC.L10N.register( "No apps found" : "找不到應用程式", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], "_Update_::_Update all_" : ["更新全部"], + "Deploy Daemon" : "部署幕後程式", "Type" : "類型", "Display Name" : "顯示名稱", + "GPUs support" : "GPU 支援", + "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", + "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", + "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", + "Deploy config" : "部署設定", + "Verify connection" : "驗證連線", + "No Deploy daemons configured" : "未設定部署幕後程式", + "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", + "Register Daemon" : "註冊幕後程式", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資訊", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "Edit Deploy Daemon" : "編輯部署幕後程式", + "Register Deploy Daemon" : "註冊部署幕後程式", + "Select daemon configuration template" : "選取幕後程式設定範本", + "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", + "Select daemon deploy method" : "選取幕後程式部署方法", + "Set daemon as default" : "設定幕後程式為預設值", + "Set as default daemon" : "設定為預設幕後程式", + "Enable https" : "啟用 https", + "Show deploy config" : "顯示部署設定", + "Hide deploy config" : "隱藏部署設定", "Network" : "網路", "Docker network name" : "Docker 網路名稱", + "Additional option" : "其他選項", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "文件", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 6d36ec11..d77ac22b 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -23,30 +23,18 @@ "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", - "AppAPI default deploy daemon is not using HaRP. Please consider upgrading to it for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮升級為 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI 計畫是一項令人振奮的計畫,旨在透過使用 docker 容器,徹底改變 Nextcloud 應用程式的開發方式。允許更多的程式語言選擇,並允許將運算密集型的任務移轉到不同的伺服器。", - "Deploy Daemons" : "部署幕後程式", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", - "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", - "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", "ExApp init timeout (minutes)" : "ExApp 初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp 初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "ExApp 初始化逾時", "ExApp container restart policy" : "ExApp 容器重新啟動政策", - "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保 ExApp 在幕後程式伺服器重新啟動後執行", - "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", - "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", - "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", - "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", "Cancel" : "取消", "Delete" : "刪除", - "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", - "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "預設", "Set as default" : "設定為預設值", @@ -54,36 +42,24 @@ "Docker registries" : "Docker registry", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", - "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", - "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", - "1 CPU" : "1 CPU", - "{cpus} CPUs" : "{cpus} CPUs", - "Deploy daemon config details" : "部署幕後程式設定詳細資訊", - "Deploy Daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", - "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名稱", "Protocol" : "協定", "Host" : "主機", "ExApp direct communication (FRP disabled)" : "ExApp 直接通訊(已停用 FRP)", - "Deploy config" : "部署設定", + "Deploy options" : "部署選項", "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", - "GPUs support" : "GPU 支援", - "Compute device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "額外選項", - "Verify connection" : "驗證連線", + "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", - "No Deploy daemons configured" : "未設定部署幕後程式", - "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", - "Register Daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -99,84 +75,50 @@ "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試於「{step}」步驟失敗", - "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", - "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", - "More info" : "更多資訊", + "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 紀錄檔", - "Remove test ExApp" : "移除測試 ExApp", - "Start Deploy test" : "開始部署測試", - "Stop Deploy test" : "停止部署測試", - "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Please enter a registry domain" : "請輸入 registry 網域", - "From cannot be \"local\"" : "來源不能是「local」", "This registry mapping already exists" : "已存在此 registry 對映", - "From and To cannot be the same" : "來源與目的地不能相同", "Docker registry mapping added" : "已新增 Docker registry 對映", "Error adding Docker registry mapping" : "新增 Docker registry 對映時發生錯誤", "Docker registry mapping removed" : "已移除 Docker registry 對映", "Error removing Docker registry mapping" : "移除 Docker registry 對映時發生錯誤", "Override Docker registries" : "覆寫 Docker registry", - "Configure Docker registry override mappings for selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", - "The matching source registry in ExApp info.xml will be overwritten during deploy (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂的 Docker registry,例如使用私人 Docker registry,或使用不同的 Docker registry 進行測試,這將非常有用。", "Image pull will be skipped" : "將會略過映像檔拉取", "Remove" : "移除", - "No custom Docker registries configured" : "未設定自訂的 Docker registry", "Add registry override mapping" : "新增 registry 覆寫對映", "From" : "從", "registry URL (e.g. ghcr.io)" : "registry URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "registry URL(例如 docker.io)", "Add" : "新增", - "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", - "The hostname (and port) at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", - "The hostname (and port) or path at which the {name} is available. This need not be a public host, just a host accessible by the Nextcloud server. It can also be a path to the docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不一定是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", - "Daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", - "The docker network that the deployed ex-apps would use." : "部署的外部應用程式將會使用的 docker 網路。", - "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", - "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", - "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", - "Edit Deploy Daemon" : "編輯部署幕後程式", - "Register Deploy Daemon" : "註冊部署幕後程式", + "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Daemon configuration template" : "幕後程式設定範本", - "Select daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", - "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", - "Select daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用金鑰", - "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", - "Set daemon as default" : "設定幕後程式為預設值", - "Set as default daemon" : "設定為預設幕後程式", - "Enable https" : "啟用 https", - "Show deploy config" : "顯示部署設定", - "Hide deploy config" : "隱藏部署設定", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", - "The address (host:port) of the FRP server that should be reachable by the ex-app in the network defined in 'Docker network'." : "在「Docker network」中定義的網路裡,外部應用程式應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", - "The port in HaRP which the docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", - "Flag for the advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApp 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", + "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", - "Additional option" : "其他選項", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", "Option key (unique, e.g. my_key)" : "選項鍵(唯一,例如 my_key)", @@ -186,10 +128,15 @@ "Confirm" : "確認", "Save" : "儲存", "Register" : "註冊", - "Check connection" : "檢查連線", "External Apps" : "外部應用程式", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n\n### 內建應用程式\n\n**從 Nextcloud 30.0.1 開始,此應用程式已包含在預設的 Nextcloud 軟體包中。**\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI 專案是一項令人興奮的舉措,旨在徹底改變 Nextcloud 的應用程式開發方式。", + "Deploy Daemons" : "部署幕後程式", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApp 的協作幕後程式。", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "預設部署幕後程式無法使用。請驗證其設定", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "指定容器重新啟動政策,例如「一律」確保 ExApp 在幕後程式伺服器重新啟動後執行", + "This settings changes are reflected only for newly created containers" : "此設定變更僅反映在新建立的容器中", "{license}-licensed" : "以 {license} 授權", "Update to {version}" : "更新到 {version}", "Delete data on remove" : "移除時刪除資料", @@ -219,12 +166,51 @@ "No apps found" : "找不到應用程式", "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n 個應用程式有可用的更新"], "_Update_::_Update all_" : ["更新全部"], + "Deploy Daemon" : "部署幕後程式", "Type" : "類型", "Display Name" : "顯示名稱", + "GPUs support" : "GPU 支援", + "Are you sure you want delete Deploy Daemon" : "您確定您想要刪除部署幕後程式嗎", + "All ExApps on this daemon will be removed" : "所有在此幕後程式上的 ExApp 都將會被移除", + "All ExApps installed on this daemon will be removed" : "所有安裝在此幕後程式上的 ExApp 都將會被移除", + "\"manual-install\" Deploy Daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin options. Check the logs" : "儲存管理選項失敗。請檢查紀錄檔", + "Deploy daemon config details" : "部署幕後程式設定詳細資訊", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "手動安裝幕後程式通常用於開發。其不能被設定為預設幕後程式。", + "Deploy config" : "部署設定", + "Verify connection" : "驗證連線", + "No Deploy daemons configured" : "未設定部署幕後程式", + "Register a custom one or setup from available templates" : "從可用範本註冊自訂範本或設定", + "Register Daemon" : "註冊幕後程式", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI 將嘗試安裝小型 ExApp 骨架來驗證幕後程式是否正確設定以及部署步驟是否通過。", + "The following Deploy test checks must be passed to succeed:" : "必須通過以下部署測試檢查才能成功:", + "More info" : "更多資訊", + "Remove test ExApp" : "移除測試 ExApp", + "Start Deploy test" : "開始部署測試", + "Stop Deploy test" : "停止部署測試", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", + "Hostname to access ExApps" : "用來存取 ExApps 的主機名稱", "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "存取 Docker 幕後程式的主機名稱或路徑(例如 nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "同名幕後程式已存在", + "Password must be at least 12 characters long" : "密碼必須至少 12 個字元長", "With https enabled network is set to host" : "啟用 https 後,網路設定為主機", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "變更僅適用於新安裝的 ExApps。對於現有的 ExApps,應重新建立 Docker 容器。", + "URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Docker 將要求在 ExApp 容器中啟用幕後程式主機上的所有可用 GPU 裝置。", + "Edit Deploy Daemon" : "編輯部署幕後程式", + "Register Deploy Daemon" : "註冊部署幕後程式", + "Select daemon configuration template" : "選取幕後程式設定範本", + "Unique Deploy Daemon Name" : "獨一無二的部署幕後程式名稱", + "Select daemon deploy method" : "選取幕後程式部署方法", + "Set daemon as default" : "設定幕後程式為預設值", + "Set as default daemon" : "設定為預設幕後程式", + "Enable https" : "啟用 https", + "Show deploy config" : "顯示部署設定", + "Hide deploy config" : "隱藏部署設定", "Network" : "網路", "Docker network name" : "Docker 網路名稱", + "Additional option" : "其他選項", "by {author}\n{license}" : "作者為 {author}\n{license}", "Your apps" : "您的應用程式", "Documentation" : "文件", From b68f3d0e4972e007213a4a4f1f1b650dacd65709 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 19 Nov 2025 00:20:26 +0000 Subject: [PATCH 214/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 2 ++ l10n/ar.json | 2 ++ l10n/ast.js | 1 + l10n/ast.json | 1 + l10n/be.js | 2 ++ l10n/be.json | 2 ++ l10n/bg.js | 1 + l10n/bg.json | 1 + l10n/br.js | 1 + l10n/br.json | 1 + l10n/ca.js | 2 ++ l10n/ca.json | 2 ++ l10n/cs.js | 2 ++ l10n/cs.json | 2 ++ l10n/da.js | 2 ++ l10n/da.json | 2 ++ l10n/de.js | 62 ++++++++++++++++++++++++++++++++++++++++++ l10n/de.json | 62 ++++++++++++++++++++++++++++++++++++++++++ l10n/de_DE.js | 62 ++++++++++++++++++++++++++++++++++++++++++ l10n/de_DE.json | 62 ++++++++++++++++++++++++++++++++++++++++++ l10n/el.js | 2 ++ l10n/el.json | 2 ++ l10n/en_GB.js | 62 ++++++++++++++++++++++++++++++++++++++++++ l10n/en_GB.json | 62 ++++++++++++++++++++++++++++++++++++++++++ l10n/es.js | 2 ++ l10n/es.json | 2 ++ l10n/es_AR.js | 1 + l10n/es_AR.json | 1 + l10n/es_EC.js | 1 + l10n/es_EC.json | 1 + l10n/et_EE.js | 17 ++++++++++++ l10n/et_EE.json | 17 ++++++++++++ l10n/gl.js | 72 ++++++++++++++++++++++++++++++++++++++++++++----- l10n/gl.json | 72 ++++++++++++++++++++++++++++++++++++++++++++----- l10n/ru.js | 6 +++++ l10n/ru.json | 6 +++++ l10n/si.js | 18 ------------- l10n/si.json | 16 ----------- l10n/sw.js | 45 +++++++++++++++++++++++++++++++ l10n/sw.json | 45 +++++++++++++++++++++++++++++++ l10n/ta.js | 19 ------------- l10n/ta.json | 17 ------------ l10n/zh_HK.js | 60 +++++++++++++++++++++++++++++++++++++++++ l10n/zh_HK.json | 60 +++++++++++++++++++++++++++++++++++++++++ l10n/zh_TW.js | 60 +++++++++++++++++++++++++++++++++++++++++ l10n/zh_TW.json | 60 +++++++++++++++++++++++++++++++++++++++++ 46 files changed, 918 insertions(+), 82 deletions(-) delete mode 100644 l10n/si.js delete mode 100644 l10n/si.json delete mode 100644 l10n/ta.js delete mode 100644 l10n/ta.json diff --git a/l10n/ar.js b/l10n/ar.js index ea789e5a..c341548e 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -46,6 +46,7 @@ OC.L10N.register( "Name" : "الاسم", "Protocol" : "بروتوكول", "Host" : "المضيف", + "Deploy options" : "خيارات النشر", "Docker network" : "شبكة \"دوكر\" Docker", "Nextcloud URL" : "رابط الخادم السحابي نكست كلاود", "HaProxy password" : "كلمة مرور HaProxy", @@ -67,6 +68,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", + "More information" : "المزيد من المعلومات", "Download ExApp logs" : "تنزيل سجلات حركة ExApp", "Remove" : "حذف", "From" : "مِن :", diff --git a/l10n/ar.json b/l10n/ar.json index 77f93f6a..fc240f8e 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -44,6 +44,7 @@ "Name" : "الاسم", "Protocol" : "بروتوكول", "Host" : "المضيف", + "Deploy options" : "خيارات النشر", "Docker network" : "شبكة \"دوكر\" Docker", "Nextcloud URL" : "رابط الخادم السحابي نكست كلاود", "HaProxy password" : "كلمة مرور HaProxy", @@ -65,6 +66,7 @@ "Only if ExApp container is preset" : "فقط إذا كانت حاوية التطبيق الخارجي ExApp مُعدَّةٌ مُسبقاً", "Deploy test passed successfully!" : "النشر التجريبي تمّ اجتيازه بنجاح", "Deploy test failed at step \"{step}\"" : "النشر التجريبي أخفق و توقف في الخطوة \"{step}\"", + "More information" : "المزيد من المعلومات", "Download ExApp logs" : "تنزيل سجلات حركة ExApp", "Remove" : "حذف", "From" : "مِن :", diff --git a/l10n/ast.js b/l10n/ast.js index ba85c120..b2e04097 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -23,6 +23,7 @@ OC.L10N.register( "HaProxy password" : "Contraseña de HaProxy", "Check connection" : "Comprobar la conexón", "Enabled" : "Activóse", + "More information" : "Más información", "Remove" : "Quitar", "From" : "De", "To" : "Pa", diff --git a/l10n/ast.json b/l10n/ast.json index e067fb4f..808c695b 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -21,6 +21,7 @@ "HaProxy password" : "Contraseña de HaProxy", "Check connection" : "Comprobar la conexón", "Enabled" : "Activóse", + "More information" : "Más información", "Remove" : "Quitar", "From" : "De", "To" : "Pa", diff --git a/l10n/be.js b/l10n/be.js index 31dfb865..52088643 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -9,11 +9,13 @@ OC.L10N.register( "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", "Enabled" : "Уключаны", + "More information" : "Больш інфармацыі", "Remove" : "Выдаліць", "From" : "Ад", "To" : "Да", "Add" : "Дадаць", "Display name" : "Імя для паказу", + "Enable HTTPS" : "Уключыць HTTPS", "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", diff --git a/l10n/be.json b/l10n/be.json index 58d54554..1409fd83 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -7,11 +7,13 @@ "Host" : "Хост", "Nextcloud URL" : "URL-адрас NextCloud", "Enabled" : "Уключаны", + "More information" : "Больш інфармацыі", "Remove" : "Выдаліць", "From" : "Ад", "To" : "Да", "Add" : "Дадаць", "Display name" : "Імя для паказу", + "Enable HTTPS" : "Уключыць HTTPS", "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", diff --git a/l10n/bg.js b/l10n/bg.js index e9a427d6..ba342d56 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -11,6 +11,7 @@ OC.L10N.register( "Nextcloud URL" : "URL адрес на Nextcloud", "Memory limit" : "Лимит на паметта", "Enabled" : "Включено", + "More information" : "Повече информация", "Remove" : "Премахване", "From" : "От", "To" : "До", diff --git a/l10n/bg.json b/l10n/bg.json index 796e2aa3..65053507 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -9,6 +9,7 @@ "Nextcloud URL" : "URL адрес на Nextcloud", "Memory limit" : "Лимит на паметта", "Enabled" : "Включено", + "More information" : "Повече информация", "Remove" : "Премахване", "From" : "От", "To" : "До", diff --git a/l10n/br.js b/l10n/br.js index 59ff342e..66304d9a 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -7,6 +7,7 @@ OC.L10N.register( "Unlimited" : "Didermenet", "Name" : "Anv", "Host" : "Ostiz", + "More information" : "Muioc'h a ditouroù", "Display name" : "Anv ardivink", "Disabled" : "Disaotreañ", "Confirm" : "Kadarnañ", diff --git a/l10n/br.json b/l10n/br.json index 3afd7720..320be797 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -5,6 +5,7 @@ "Unlimited" : "Didermenet", "Name" : "Anv", "Host" : "Ostiz", + "More information" : "Muioc'h a ditouroù", "Display name" : "Anv ardivink", "Disabled" : "Disaotreañ", "Confirm" : "Kadarnañ", diff --git a/l10n/ca.js b/l10n/ca.js index 2d087075..7da7aa03 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -43,6 +43,7 @@ OC.L10N.register( "Name" : "Nom", "Protocol" : "Protocol", "Host" : "Servidor", + "Deploy options" : "Opcions de desplegament", "Docker network" : "Xarxa Docker", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "Contrasenya HaProxy", @@ -65,6 +66,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "Només si el contenidor ExApp està predefinit", "Deploy test passed successfully!" : "La prova de desplegament s'ha superat correctament!", "Deploy test failed at step \"{step}\"" : "La prova de desplegament ha fallat al pas \"{step}\"", + "More information" : "Més informació", "Download ExApp logs" : "Baixeu els registres d'ExApp", "Remove" : "Suprimeix", "From" : "De", diff --git a/l10n/ca.json b/l10n/ca.json index b0631b52..ce08f428 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -41,6 +41,7 @@ "Name" : "Nom", "Protocol" : "Protocol", "Host" : "Servidor", + "Deploy options" : "Opcions de desplegament", "Docker network" : "Xarxa Docker", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "Contrasenya HaProxy", @@ -63,6 +64,7 @@ "Only if ExApp container is preset" : "Només si el contenidor ExApp està predefinit", "Deploy test passed successfully!" : "La prova de desplegament s'ha superat correctament!", "Deploy test failed at step \"{step}\"" : "La prova de desplegament ha fallat al pas \"{step}\"", + "More information" : "Més informació", "Download ExApp logs" : "Baixeu els registres d'ExApp", "Remove" : "Suprimeix", "From" : "De", diff --git a/l10n/cs.js b/l10n/cs.js index ed44d620..3c65dc7c 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -52,6 +52,7 @@ OC.L10N.register( "Protocol" : "Protokol", "Host" : "Hostitel", "ExApp direct communication (FRP disabled)" : "Přímá komunikace ExAPP (FRP vypnuto)", + "Deploy options" : "Předvolby nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", @@ -75,6 +76,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", + "More information" : "Podrobnosti", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", "Please enter a registry domain" : "Zadejte doménu registru", "This registry mapping already exists" : "Toto mapování registru už existuje", diff --git a/l10n/cs.json b/l10n/cs.json index db60cb66..4ad81a6c 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -50,6 +50,7 @@ "Protocol" : "Protokol", "Host" : "Hostitel", "ExApp direct communication (FRP disabled)" : "Přímá komunikace ExAPP (FRP vypnuto)", + "Deploy options" : "Předvolby nasazení", "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", @@ -73,6 +74,7 @@ "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", + "More information" : "Podrobnosti", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", "Please enter a registry domain" : "Zadejte doménu registru", "This registry mapping already exists" : "Toto mapování registru už existuje", diff --git a/l10n/da.js b/l10n/da.js index 91418afe..e3f459e0 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -51,6 +51,7 @@ OC.L10N.register( "Protocol" : "Protokol", "Host" : "Vært", "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", + "Deploy options" : "Udrulningsindstillinger", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy adgangskode", @@ -72,6 +73,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", "Deploy test passed successfully!" : "Udrulningstest gennemført!", "Deploy test failed at step \"{step}\"" : "Udrulningstest fejlede ved trin \"{step}\"", + "More information" : "Mere information", "Download ExApp logs" : "Download ExApp logs", "Please enter a registry domain" : "Indtast venligst et register domæne", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", diff --git a/l10n/da.json b/l10n/da.json index 3c2eb868..b3117bda 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -49,6 +49,7 @@ "Protocol" : "Protokol", "Host" : "Vært", "ExApp direct communication (FRP disabled)" : "ExApp direkte kommunikation (FRP deaktiveret)", + "Deploy options" : "Udrulningsindstillinger", "Docker network" : "Docker netværk", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy adgangskode", @@ -70,6 +71,7 @@ "Only if ExApp container is preset" : "Kun hvis ExApp beholder er forudindstilliet", "Deploy test passed successfully!" : "Udrulningstest gennemført!", "Deploy test failed at step \"{step}\"" : "Udrulningstest fejlede ved trin \"{step}\"", + "More information" : "Mere information", "Download ExApp logs" : "Download ExApp logs", "Please enter a registry domain" : "Indtast venligst et register domæne", "This registry mapping already exists" : "Denne registreringstilknytning findes allerede", diff --git a/l10n/de.js b/l10n/de.js index 3d347b62..683de8a4 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", + "Deploy daemons" : "Bereitstellungsdaemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Ein Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default deploy daemon is not accessible. Please check its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte dessen Konfiguration überprüfen", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Bitte die Neustartrichtlinie für den Container auswählen, z. B. 'immer', um sicherzustellen, dass ExApps nach einem Neustart des Daemon-Servers ausgeführt werden", + "This settings changes are effective only for newly created containers" : "Diese Einstellungsänderungen gelten nur für neu erstellte Container.", + "Deploy daemon deletion confirmation" : "Bestätigung für Löschen des Bereitstellungsdaemons", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Soll der Bereitstellungsdaemon \"{name}\" gelöscht werden?", + "Remove all ExApps installed on this daemon" : "Alle auf diesem Daemon installierten ExApps entfernen", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "A \"manual-install\" deploy daemon cannot be set as default" : "Ein \"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin settings. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Bitte die Protokolle überprüfen.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -44,23 +56,35 @@ OC.L10N.register( "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to the daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Bitte die Protokolle überprüfen.", + "Failed to check connection to the daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Bitte die Protokolle überprüfen.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Konfiguration des Bereitstellungsdaemons", + "Deploy daemon configuration details" : "Konfigurationsdetails des Bereitstellungsdaemons", + "Deploy daemon" : "Bereitstellungsdaemon", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Der \"manual-install\" Daemon wird normalerweise für die Entwicklung verwendet. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", + "Deploy options" : "Bereitstellungsoptionen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPU support" : "GPU-Unterstützung", + "Computation device" : "Rechengerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", + "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -76,47 +100,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Daemon richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following deploy test checks must succeed:" : "Die folgenden Bereitstellungstests müssen bestanden werden:", + "More information" : "Weitere Informationen", "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove the test ExApp" : "Die Test-ExApp entfernen", + "Start the deploy test" : "Den Bereitstellungstest starten", + "Stop the deploy test" : "Den Bereitstellungstest anhalten", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Die Test-ExApp ist nicht registriert und der Container wird bei \"Den Bereitstellungstest anhalten\" entfernt", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "\"From\" cannot be \"local\"" : "\"Von\" darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "\"From\" and \"To\" cannot be the same" : "\"Von\" und \"An\" dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for the selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries are registered" : "Es sind keine benutzerdefinierten Docker-Register registriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", + "Hostname used by Nextcloud to access the ExApps" : "Hostname der von Nextcloud zum Zugriff auf ExApps verwendet wird", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Änderungen gelten nur für neu installierte ExApps. Bei bestehenden ExApps müssen die Docker-Container neu erstellt werden, damit die neuen Einstellungswerte übernommen werden.", + "The Docker network that the deployed ExApps will use." : "Das Docker-Netzwerk, das die bereitgestellten ExApps verwenden werden.", + "The URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Für einen HTTPS-Daemon muss die Nextcloud-URL HTTPS sein", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host müssen von Docker in ExApp-Containern aktiviert werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Edit the deploy daemon" : "Den Bereitstellungs-Daemon bearbeiten", + "Register a new deploy daemon" : "Einen neuen Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", + "Select a daemon configuration template" : "Eine Daemon-Konfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", + "Unique deploy daemon name" : "Einzigartiger Bereitstellungs-Daemonname", + "Unique deploy Daemon name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", + "Select the daemon deploy method" : "Daemon-Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Gemeinsamer HaRP-Schlüssel", + "The password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Set this daemon as the default one" : "Diesen Daemon als Standard festlegen", + "Set as the default daemon" : "Als Standard-Daemon festlegen", + "Enable HTTPS" : "HTTPS aktivieren", + "Show deploy options" : "Bereitstellungsoptionen anzeigen", + "Hide deploy options" : "Bereitstellungsoptionen verbergen", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Die Adresse (Host:Port) des FRP-Servers, die von der ExApp in dem im Abschnitt 'Docker-Netzwerk' definierten Netzwerk erreichbar sein sollte.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/de.json b/l10n/de.json index 8ce2ee7a..2151c278 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", + "Deploy daemons" : "Bereitstellungsdaemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Ein Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default deploy daemon is not accessible. Please check its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte dessen Konfiguration überprüfen", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Bitte die Neustartrichtlinie für den Container auswählen, z. B. 'immer', um sicherzustellen, dass ExApps nach einem Neustart des Daemon-Servers ausgeführt werden", + "This settings changes are effective only for newly created containers" : "Diese Einstellungsänderungen gelten nur für neu erstellte Container.", + "Deploy daemon deletion confirmation" : "Bestätigung für Löschen des Bereitstellungsdaemons", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Soll der Bereitstellungsdaemon \"{name}\" gelöscht werden?", + "Remove all ExApps installed on this daemon" : "Alle auf diesem Daemon installierten ExApps entfernen", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "A \"manual-install\" deploy daemon cannot be set as default" : "Ein \"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin settings. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Bitte die Protokolle überprüfen.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -42,23 +54,35 @@ "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to the daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Bitte die Protokolle überprüfen.", + "Failed to check connection to the daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Bitte die Protokolle überprüfen.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Konfiguration des Bereitstellungsdaemons", + "Deploy daemon configuration details" : "Konfigurationsdetails des Bereitstellungsdaemons", + "Deploy daemon" : "Bereitstellungsdaemon", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Der \"manual-install\" Daemon wird normalerweise für die Entwicklung verwendet. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", + "Deploy options" : "Bereitstellungsoptionen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPU support" : "GPU-Unterstützung", + "Computation device" : "Rechengerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", + "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfe vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -74,47 +98,85 @@ "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Daemon richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following deploy test checks must succeed:" : "Die folgenden Bereitstellungstests müssen bestanden werden:", + "More information" : "Weitere Informationen", "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove the test ExApp" : "Die Test-ExApp entfernen", + "Start the deploy test" : "Den Bereitstellungstest starten", + "Stop the deploy test" : "Den Bereitstellungstest anhalten", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Die Test-ExApp ist nicht registriert und der Container wird bei \"Den Bereitstellungstest anhalten\" entfernt", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "\"From\" cannot be \"local\"" : "\"Von\" darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "\"From\" and \"To\" cannot be the same" : "\"Von\" und \"An\" dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for the selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise ein benutzerdefiniertes Docker-Register zu verwenden, um ein privates Docker-Register zu verwenden oder ein anderes Docker-Register zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries are registered" : "Es sind keine benutzerdefinierten Docker-Register registriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", + "Hostname used by Nextcloud to access the ExApps" : "Hostname der von Nextcloud zum Zugriff auf ExApps verwendet wird", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Änderungen gelten nur für neu installierte ExApps. Bei bestehenden ExApps müssen die Docker-Container neu erstellt werden, damit die neuen Einstellungswerte übernommen werden.", + "The Docker network that the deployed ExApps will use." : "Das Docker-Netzwerk, das die bereitgestellten ExApps verwenden werden.", + "The URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Für einen HTTPS-Daemon muss die Nextcloud-URL HTTPS sein", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host müssen von Docker in ExApp-Containern aktiviert werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfe die Protokolle.", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Edit the deploy daemon" : "Den Bereitstellungs-Daemon bearbeiten", + "Register a new deploy daemon" : "Einen neuen Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", + "Select a daemon configuration template" : "Eine Daemon-Konfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", + "Unique deploy daemon name" : "Einzigartiger Bereitstellungs-Daemonname", + "Unique deploy Daemon name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", + "Select the daemon deploy method" : "Daemon-Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Gemeinsamer HaRP-Schlüssel", + "The password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Set this daemon as the default one" : "Diesen Daemon als Standard festlegen", + "Set as the default daemon" : "Als Standard-Daemon festlegen", + "Enable HTTPS" : "HTTPS aktivieren", + "Show deploy options" : "Bereitstellungsoptionen anzeigen", + "Hide deploy options" : "Bereitstellungsoptionen verbergen", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Die Adresse (Host:Port) des FRP-Servers, die von der ExApp in dem im Abschnitt 'Docker-Netzwerk' definierten Netzwerk erreichbar sein sollte.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 1fd366fc..8e6d8e50 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", + "Deploy daemons" : "Bereitstellungsdaemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Ein Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default deploy daemon is not accessible. Please check its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte dessen Konfiguration überprüfen", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Bitte die Neustartrichtlinie für den Container auswählen, z. B. 'immer', um sicherzustellen, dass ExApps nach einem Neustart des Daemon-Servers ausgeführt werden", + "This settings changes are effective only for newly created containers" : "Diese Einstellungsänderungen gelten nur für neu erstellte Container", + "Deploy daemon deletion confirmation" : "Bestätigung für Löschen des Bereitstellungsdaemons", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Soll der Bereitstellungsdaemon \"{name}\" gelöscht werden?", + "Remove all ExApps installed on this daemon" : "Alle auf diesem Daemon installierten ExApps entfernen", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "A \"manual-install\" deploy daemon cannot be set as default" : "Ein \"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin settings. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Bitte die Protokolle überprüfen.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -44,23 +56,35 @@ OC.L10N.register( "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to the daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Bitte die Protokolle überprüfen.", + "Failed to check connection to the daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Bitte die Protokolle überprüfen.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Konfiguration des Bereitstellungsdaemons", + "Deploy daemon configuration details" : "Konfigurationsdetails des Bereitstellungsdaemons", + "Deploy daemon" : "Bereitstellungsdaemon", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Der \"manual-install\" Daemon wird normalerweise für die Entwicklung verwendet. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", + "Deploy options" : "Bereitstellungsoptionen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPU support" : "GPU-Unterstützung", + "Computation device" : "Rechengerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", + "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -76,47 +100,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Daemon richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following deploy test checks must succeed:" : "Die folgenden Bereitstellungstests müssen bestanden werden:", + "More information" : "Weitere Informationen", "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove the test ExApp" : "Die Test-ExApp entfernen", + "Start the deploy test" : "Den Bereitstellungstest starten", + "Stop the deploy test" : "Den Bereitstellungstest anhalten", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Die Test-ExApp ist nicht registriert und der Container wird bei \"Den Bereitstellungstest anhalten\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "\"From\" cannot be \"local\"" : "\"Von\" darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "\"From\" and \"To\" cannot be the same" : "\"Von\" und \"An\" dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for the selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise eine benutzerdefinierte Docker-Registry, eine private Docker-Registry oder eine andere Docker-Registry zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries are registered" : "Es sind keine benutzerdefinierten Docker-Register registriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", + "Hostname used by Nextcloud to access the ExApps" : "Hostname der von Nextcloud zum Zugriff auf ExApps verwendet wird", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Änderungen gelten nur für neu installierte ExApps. Bei bestehenden ExApps müssen die Docker-Container neu erstellt werden, damit die neuen Einstellungswerte übernommen werden.", + "The Docker network that the deployed ExApps will use." : "Das Docker-Netzwerk, das die bereitgestellten ExApps verwenden werden.", + "The URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Für einen HTTPS-Daemon muss die Nextcloud-URL HTTPS sein", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host müssen von Docker in ExApp-Containern aktiviert werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Edit the deploy daemon" : "Den Bereitstellungsdaemon bearbeiten", + "Register a new deploy daemon" : "Einen neuen Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", + "Select a daemon configuration template" : "Eine Daemonenkonfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", + "Unique deploy daemon name" : "Einzigartiger Bereitstellungs-Daemonname", + "Unique deploy Daemon name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", + "Select the daemon deploy method" : "Daemon-Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Geteilter HaRP-Schlüssel", + "The password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Set this daemon as the default one" : "Diesen Daemon als Standard festlegen", + "Set as the default daemon" : "Als Standard-Daemon festlegen", + "Enable HTTPS" : "HTTPS aktivieren", + "Show deploy options" : "Bereitstellungsoptionen anzeigen", + "Hide deploy options" : "Bereitstellungsoptionen verbergen", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Die Adresse (Host:Port) des FRP-Servers, die von der ExApp in dem im Abschnitt 'Docker-Netzwerk' definierten Netzwerk erreichbar sein sollte.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 1f14ff11..1db3d827 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "AppAPI-Bereitstellungs-Daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Das AppAPI-Projekt ist eine spannende Initiative, die darauf abzielt, die Art und Weise, wie Anwendungen für Nextcloud entwickelt werden, durch den Einsatz von Docker-Containern zu revolutionieren. Es ermöglicht eine größere Auswahl an Programmiersprachen sowie das Auslagern rechenintensiver Aufgaben auf einen anderen Server.", + "Deploy daemons" : "Bereitstellungsdaemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Ein Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Deploy-Daemon (DaemonConfig) ist ein ExApps Orchestrierungs-Daemon.", + "Default deploy daemon is not accessible. Please check its configuration" : "Standard-Deploy-Daemon ist nicht zugänglich. Bitte dessen Konfiguration überprüfen", "ExApp init timeout (minutes)" : "ExApp Initialisierungs-Timeout (Minuten)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp Initialisierungsprozess-Timeout, nach der AppAPI ihn als fehlgeschlagen markiert", "ExApp init timeout" : "ExApp Initialisierungs-Timeout", "ExApp container restart policy" : "ExApp Container Neustartrichtlinie", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Bitte die Neustartrichtlinie für den Container auswählen, z. B. 'immer', um sicherzustellen, dass ExApps nach einem Neustart des Daemon-Servers ausgeführt werden", + "This settings changes are effective only for newly created containers" : "Diese Einstellungsänderungen gelten nur für neu erstellte Container", + "Deploy daemon deletion confirmation" : "Bestätigung für Löschen des Bereitstellungsdaemons", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Soll der Bereitstellungsdaemon \"{name}\" gelöscht werden?", + "Remove all ExApps installed on this daemon" : "Alle auf diesem Daemon installierten ExApps entfernen", "Cancel" : "Abbrechen", "Delete" : "Löschen", + "A \"manual-install\" deploy daemon cannot be set as default" : "Ein \"manual-install\" Bereitstellungsdaemon kann nicht als Standard festgelegt werden", + "Failed to save admin settings. Check the logs" : "Administrationseinstellungen konnten nicht gespeichert werden. Bitte die Protokolle überprüfen.", "Password confirmation failed" : "Fehler bei der Passwortbestätigung", "Default" : "Standard", "Set as default" : "Als Standard festlegen", @@ -42,23 +54,35 @@ "Docker registries" : "Docker-Registries", "Edit" : "Bearbeiten", "Daemon connection successful" : "Verbindung zum Daemon erfolgreich", + "Failed to connect to the daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Bitte die Protokolle überprüfen.", + "Failed to check connection to the daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Bitte die Protokolle überprüfen.", "Unlimited" : "Unbegrenzt", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Konfiguration des Bereitstellungsdaemons", + "Deploy daemon configuration details" : "Konfigurationsdetails des Bereitstellungsdaemons", + "Deploy daemon" : "Bereitstellungsdaemon", "Default daemon. ExApps will be installed on it" : "Standard-Daemon. ExApps werden hierauf installiert.", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Der \"manual-install\" Daemon wird normalerweise für die Entwicklung verwendet. Er kann nicht als Standard-Daemon festgelegt werden.", "ExApps installed" : "ExApps installiert", "Name" : "Name", "Protocol" : "Protokoll", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "Direkte ExApp-Kommunikation (FRP deaktiviert)", + "Deploy options" : "Bereitstellungsoptionen", "Docker network" : "Docker-Netzwerk", "Nextcloud URL" : "Nextcloud-URL", "HaProxy password" : "HaProxy-Passwort", + "GPU support" : "GPU-Unterstützung", + "Computation device" : "Rechengerät", "Memory limit" : "Speicherlimit", "CPU limit" : "CPU-Limit", "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", + "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", "Check if the ExApp is registered in Nextcloud before deployment" : "Überprüfen Sie vor der Bereitstellung, ob die ExApp in Nextcloud registriert ist", "Image pull" : "Image abrufen", @@ -74,47 +98,85 @@ "Only if ExApp container is preset" : "Nur wenn ExApp-Container voreingestellt ist", "Deploy test passed successfully!" : "Bereitstellungstest bestanden!", "Deploy test failed at step \"{step}\"" : "Der Bereitstellungstest ist bei Schritt \"{step}\" fehlgeschlagen", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI wird versuchen, ein kleines ExApp-Skelett zu installieren, um zu überprüfen, ob der Daemon richtig konfiguriert ist und die Bereitstellungsschritte erfolgreich sind.", + "The following deploy test checks must succeed:" : "Die folgenden Bereitstellungstests müssen bestanden werden:", + "More information" : "Weitere Informationen", "Download ExApp logs" : "ExApps-Protokolle herunterladen", + "Remove the test ExApp" : "Die Test-ExApp entfernen", + "Start the deploy test" : "Den Bereitstellungstest starten", + "Stop the deploy test" : "Den Bereitstellungstest anhalten", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Die Test-ExApp ist nicht registriert und der Container wird bei \"Den Bereitstellungstest anhalten\" entfernt.", "Please enter a registry domain" : "Bitte eine Registry-Domäne eingeben", + "\"From\" cannot be \"local\"" : "\"Von\" darf nicht \"lokal\" sein", "This registry mapping already exists" : "Diese Registry-Zuordnung ist bereits vorhanden", + "\"From\" and \"To\" cannot be the same" : "\"Von\" und \"An\" dürfen nicht identisch sein", "Docker registry mapping added" : "Docker Registry-Zuordnung hinzugefügt", "Error adding Docker registry mapping" : "Fehler beim Hinzufügen der Docker Registry-Zuordnung", "Docker registry mapping removed" : "Docker Registry-Zuordnung entfernt", "Error removing Docker registry mapping" : "Fehler beim Entfernen der Docker Registry-Zuordnung", "Override Docker registries" : "Docker-Registries überschreiben", + "Configure Docker registry override mappings for the selected daemon." : "Docker-Registry-Überschreibungszuordnungen für den ausgewählten Daemon konfigurieren.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Das passende Quellregister in ExApp info.xml wird während der Bereitstellung (Image-Pull-Schritt) überschrieben.", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Dies ist nützlich, um beispielsweise eine benutzerdefinierte Docker-Registry, eine private Docker-Registry oder eine andere Docker-Registry zum Testen zu verwenden.", "Image pull will be skipped" : "Imageabruf wird übersprungen", "Remove" : "Entfernen", + "No custom Docker registries are registered" : "Es sind keine benutzerdefinierten Docker-Register registriert", "Add registry override mapping" : "Registry-Überschreibungszuordnung hinzufügen", "From" : "Von", "registry URL (e.g. ghcr.io)" : "Registry-URL (z.B. ghcr.io)", "To" : "Bis", "registry URL (e.g. docker.io)" : "Registry-URL (z.B. docker.io)", "Add" : "Hinzufügen", + "Hostname used by Nextcloud to access the ExApps" : "Hostname der von Nextcloud zum Zugriff auf ExApps verwendet wird", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Der Hostname (und Port), unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann, z. B. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Der Hostname (und Port) oder Pfad, unter dem {name} verfügbar ist. Dies muss kein öffentlicher Host sein, sondern nur ein Host, auf den der Nextcloud-Server zugreifen kann. Es kann auch ein Pfad zum Docker-Socket sein. (z. B. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Ein Daemon mit diesem Namen existiert bereits", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Der geheime Schlüssel für die HaRP-Containerkommunikation (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy Authentifizierungs-Passwort", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Änderungen gelten nur für neu installierte ExApps. Bei bestehenden ExApps müssen die Docker-Container neu erstellt werden, damit die neuen Einstellungswerte übernommen werden.", + "The Docker network that the deployed ExApps will use." : "Das Docker-Netzwerk, das die bereitgestellten ExApps verwenden werden.", + "The URL should start with http:// or https://" : "Die URL muss mit http:// oder https:// beginnen", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Für einen HTTPS-Daemon muss die Nextcloud-URL HTTPS sein", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Alle verfügbaren GPU-Geräte auf dem Daemon-Host müssen von Docker in ExApp-Containern aktiviert werden.", "DaemonConfig successfully registered" : "Daemonkonfiguration registriert", "Failed to register DaemonConfig. Check the logs" : "Daemonkonfiguration konnte nicht registriert werden. Prüfen Sie die Protokolle.", "DaemonConfig successfully updated" : "DaemonConfig aktualisiert", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig konnte nicht aktualisiert werden. Überprüfen Sie die Protokolle.", "Failed to connect to Daemon. Check the logs" : "Verbindung zum Daemon fehlgeschlagen. Prüfen Sie die Protokolle.", "Failed to check connection to Daemon. Check the logs" : "Die Verbindung zum Daemon konnte nicht geprüft werden. Prüfen Sie die Protokolle.", + "Edit the deploy daemon" : "Den Bereitstellungsdaemon bearbeiten", + "Register a new deploy daemon" : "Einen neuen Bereitstellungsdaemon registrieren", "Daemon configuration template" : "Daemon-Konfigurationsvorlage", + "Select a daemon configuration template" : "Eine Daemonenkonfigurationsvorlage auswählen", "Daemon registration form" : "Formular zur Registrierung des Daemons", + "Unique deploy daemon name" : "Einzigartiger Bereitstellungs-Daemonname", + "Unique deploy Daemon name" : "Einzigartiger Bereitstellungs-Daemonname", "Display name" : "Anzeigename", "Deployment method" : "Bereitstellungsmethode", + "Select the daemon deploy method" : "Daemon-Bereitstellungsmethode auswählen", "HaRP host" : "HaRP-Host", "Daemon host" : "Daemon-Host", "HaRP shared key" : "Geteilter HaRP-Schlüssel", + "The password must be at least 12 characters long" : "Das Passwort muss mindestens 12 Zeichen lang sein", + "Set this daemon as the default one" : "Diesen Daemon als Standard festlegen", + "Set as the default daemon" : "Als Standard-Daemon festlegen", + "Enable HTTPS" : "HTTPS aktivieren", + "Show deploy options" : "Bereitstellungsoptionen anzeigen", + "Hide deploy options" : "Bereitstellungsoptionen verbergen", "Enable HaRP" : "HaRP aktivieren", "FRP server address" : "FRP-Serveradresse", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Die Adresse (Host:Port) des FRP-Servers, die von der ExApp in dem im Abschnitt 'Docker-Netzwerk' definierten Netzwerk erreichbar sein sollte.", "Docker socket proxy port" : "Docker-Socket-Proxy-Port", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", "Add additional option" : "Zusätzliche Option hinzufügen", diff --git a/l10n/el.js b/l10n/el.js index f9388e8d..998b670f 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -51,6 +51,7 @@ OC.L10N.register( "Protocol" : "Πρωτόκολλο", "Host" : "Διακομιστής", "ExApp direct communication (FRP disabled)" : "Άμεση επικοινωνία ExApp (FRP απενεργοποιημένο)", + "Deploy options" : "Επιλογές ανάπτυξης", "Docker network" : "Δίκτυο Docker", "Nextcloud URL" : "Διεύθυνση URL Nextcloud", "HaProxy password" : "Κωδικός πρόσβασης HaProxy", @@ -73,6 +74,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "Μόνο αν το container ExApp είναι προκαθορισμένο", "Deploy test passed successfully!" : "Η δοκιμαστική ανάπτυξη πέρασε με επιτυχία!", "Deploy test failed at step \"{step}\"" : "Η δοκιμαστική ανάπτυξη απέτυχε στο βήμα \"{step}\"", + "More information" : "Περισσότερες πληροφορίες", "Download ExApp logs" : "Λήψη αρχείων καταγραφής ExApp", "Please enter a registry domain" : "Παρακαλούμε εισάγετε ένα domain μητρώου", "This registry mapping already exists" : "Αυτή η αντιστοίχιση μητρώου υπάρχει ήδη", diff --git a/l10n/el.json b/l10n/el.json index 1b51ff67..746d5902 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -49,6 +49,7 @@ "Protocol" : "Πρωτόκολλο", "Host" : "Διακομιστής", "ExApp direct communication (FRP disabled)" : "Άμεση επικοινωνία ExApp (FRP απενεργοποιημένο)", + "Deploy options" : "Επιλογές ανάπτυξης", "Docker network" : "Δίκτυο Docker", "Nextcloud URL" : "Διεύθυνση URL Nextcloud", "HaProxy password" : "Κωδικός πρόσβασης HaProxy", @@ -71,6 +72,7 @@ "Only if ExApp container is preset" : "Μόνο αν το container ExApp είναι προκαθορισμένο", "Deploy test passed successfully!" : "Η δοκιμαστική ανάπτυξη πέρασε με επιτυχία!", "Deploy test failed at step \"{step}\"" : "Η δοκιμαστική ανάπτυξη απέτυχε στο βήμα \"{step}\"", + "More information" : "Περισσότερες πληροφορίες", "Download ExApp logs" : "Λήψη αρχείων καταγραφής ExApp", "Please enter a registry domain" : "Παρακαλούμε εισάγετε ένα domain μητρώου", "This registry mapping already exists" : "Αυτή η αντιστοίχιση μητρώου υπάρχει ήδη", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 1fcaaa3f..25f22e7d 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI deploy daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server.", + "Deploy daemons" : "Deploy daemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Default deploy daemon is not accessible. Please check its configuration" : "Default deploy daemon is not accessible. Please check its configuration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutes)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialization process timeout after which AppAPI will mark it as failed", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp container restart policy", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot", + "This settings changes are effective only for newly created containers" : "This settings changes are effective only for newly created containers", + "Deploy daemon deletion confirmation" : "Deploy daemon deletion confirmation", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Are you sure you want delete the \"{name}\" deploy daemon?", + "Remove all ExApps installed on this daemon" : "Remove all ExApps installed on this daemon", "Cancel" : "Cancel", "Delete" : "Delete", + "A \"manual-install\" deploy daemon cannot be set as default" : "A \"manual-install\" deploy daemon cannot be set as default", + "Failed to save admin settings. Check the logs" : "Failed to save admin settings. Check the logs", "Password confirmation failed" : "Password confirmation failed", "Default" : "Default", "Set as default" : "Set as default", @@ -44,23 +56,35 @@ OC.L10N.register( "Docker registries" : "Docker registries", "Edit" : "Edit", "Daemon connection successful" : "Daemon connection successful", + "Failed to connect to the daemon. Check the logs" : "Failed to connect to the daemon. Check the logs", + "Failed to check connection to the daemon. Check the logs" : "Failed to check connection to the daemon. Check the logs", "Unlimited" : "Unlimited", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Deploy daemon configuration", + "Deploy daemon configuration details" : "Deploy daemon configuration details", + "Deploy daemon" : "Deploy daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon.", "ExApps installed" : "ExApps installed", "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "ExApp direct communication (FRP disabled)", + "Deploy options" : "Deploy options", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy password", + "GPU support" : "GPU support", + "Computation device" : "Computation device", "Memory limit" : "Memory limit", "CPU limit" : "CPU limit", "Additional options" : "Additional options", "Check connection" : "Check connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", + "Register a custom one or configure one from the available templates" : "Register a custom one or configure one from the available templates", + "Register daemon" : "Register daemon", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Check if the ExApp is registered in Nextcloud before deployment", "Image pull" : "Image pull", @@ -76,47 +100,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "Only if ExApp container is preset", "Deploy test passed successfully!" : "Deploy test passed successfully!", "Deploy test failed at step \"{step}\"" : "Deploy test failed at step \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful.", + "The following deploy test checks must succeed:" : "The following deploy test checks must succeed:", + "More information" : "More information", "Download ExApp logs" : "Download ExApp logs", + "Remove the test ExApp" : "Remove the test ExApp", + "Start the deploy test" : "Start the deploy test", + "Stop the deploy test" : "Stop the deploy test", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"", "Please enter a registry domain" : "Please enter a registry domain", + "\"From\" cannot be \"local\"" : "\"From\" cannot be \"local\"", "This registry mapping already exists" : "This registry mapping already exists", + "\"From\" and \"To\" cannot be the same" : "\"From\" and \"To\" cannot be the same", "Docker registry mapping added" : "Docker registry mapping added", "Error adding Docker registry mapping" : "Error adding Docker registry mapping", "Docker registry mapping removed" : "Docker registry mapping removed", "Error removing Docker registry mapping" : "Error removing Docker registry mapping", "Override Docker registries" : "Override Docker registries", + "Configure Docker registry override mappings for the selected daemon." : "Configure Docker registry override mappings for the selected daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing.", "Image pull will be skipped" : "Image pull will be skipped", "Remove" : "Remove", + "No custom Docker registries are registered" : "No custom Docker registries are registered", "Add registry override mapping" : "Add registry override mapping", "From" : "From", "registry URL (e.g. ghcr.io)" : "registry URL (e.g. ghcr.io)", "To" : "To", "registry URL (e.g. docker.io)" : "registry URL (e.g. docker.io)", "Add" : "Add", + "Hostname used by Nextcloud to access the ExApps" : "Hostname used by Nextcloud to access the ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "A daemon with this name already exists", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "The secret key for the HaRP container communication (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values.", + "The Docker network that the deployed ExApps will use." : "The Docker network that the deployed ExApps will use.", + "The URL should start with http:// or https://" : "The URL should start with http:// or https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "For a HTTPS daemon, the Nextcloud URL should be HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker.", "DaemonConfig successfully registered" : "DaemonConfig successfully registered", "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", + "Edit the deploy daemon" : "Edit the deploy daemon", + "Register a new deploy daemon" : "Register a new deploy daemon", "Daemon configuration template" : "Daemon configuration template", + "Select a daemon configuration template" : "Select a daemon configuration template", "Daemon registration form" : "Daemon registration form", + "Unique deploy daemon name" : "Unique deploy daemon name", + "Unique deploy Daemon name" : "Unique deploy Daemon name", "Display name" : "Display name", "Deployment method" : "Deployment method", + "Select the daemon deploy method" : "Select the daemon deploy method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP shared key", + "The password must be at least 12 characters long" : "The password must be at least 12 characters long", + "Set this daemon as the default one" : "Set this daemon as the default one", + "Set as the default daemon" : "Set as the default daemon", + "Enable HTTPS" : "Enable HTTPS", + "Show deploy options" : "Show deploy options", + "Hide deploy options" : "Hide deploy options", "Enable HaRP" : "Enable HaRP", "FRP server address" : "FRP server address", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section.", "Docker socket proxy port" : "Docker socket proxy port", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Compute device" : "Compute device", "Memory limit (in MiB)" : "Memory limit (in MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximum amount of memory that the ExApp container can use in mebibytes", "Must be a positive integer" : "Must be a positive integer", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", "CPU limit as decimal value" : "CPU limit as decimal value", "Must be a positive number" : "Must be a positive number", "Add additional option" : "Add additional option", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index fb839f68..14375fd9 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "AppAPI deploy daemon", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server.", + "Deploy daemons" : "Deploy daemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon.", + "Default deploy daemon is not accessible. Please check its configuration" : "Default deploy daemon is not accessible. Please check its configuration", "ExApp init timeout (minutes)" : "ExApp init timeout (minutes)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp initialization process timeout after which AppAPI will mark it as failed", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp container restart policy", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot", + "This settings changes are effective only for newly created containers" : "This settings changes are effective only for newly created containers", + "Deploy daemon deletion confirmation" : "Deploy daemon deletion confirmation", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Are you sure you want delete the \"{name}\" deploy daemon?", + "Remove all ExApps installed on this daemon" : "Remove all ExApps installed on this daemon", "Cancel" : "Cancel", "Delete" : "Delete", + "A \"manual-install\" deploy daemon cannot be set as default" : "A \"manual-install\" deploy daemon cannot be set as default", + "Failed to save admin settings. Check the logs" : "Failed to save admin settings. Check the logs", "Password confirmation failed" : "Password confirmation failed", "Default" : "Default", "Set as default" : "Set as default", @@ -42,23 +54,35 @@ "Docker registries" : "Docker registries", "Edit" : "Edit", "Daemon connection successful" : "Daemon connection successful", + "Failed to connect to the daemon. Check the logs" : "Failed to connect to the daemon. Check the logs", + "Failed to check connection to the daemon. Check the logs" : "Failed to check connection to the daemon. Check the logs", "Unlimited" : "Unlimited", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Deploy daemon configuration", + "Deploy daemon configuration details" : "Deploy daemon configuration details", + "Deploy daemon" : "Deploy daemon", "Default daemon. ExApps will be installed on it" : "Default daemon. ExApps will be installed on it", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon.", "ExApps installed" : "ExApps installed", "Name" : "Surname", "Protocol" : "Protocol", "Host" : "Host", "ExApp direct communication (FRP disabled)" : "ExApp direct communication (FRP disabled)", + "Deploy options" : "Deploy options", "Docker network" : "Docker network", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy password", + "GPU support" : "GPU support", + "Computation device" : "Computation device", "Memory limit" : "Memory limit", "CPU limit" : "CPU limit", "Additional options" : "Additional options", "Check connection" : "Check connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", + "Register a custom one or configure one from the available templates" : "Register a custom one or configure one from the available templates", + "Register daemon" : "Register daemon", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Check if the ExApp is registered in Nextcloud before deployment", "Image pull" : "Image pull", @@ -74,47 +98,85 @@ "Only if ExApp container is preset" : "Only if ExApp container is preset", "Deploy test passed successfully!" : "Deploy test passed successfully!", "Deploy test failed at step \"{step}\"" : "Deploy test failed at step \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful.", + "The following deploy test checks must succeed:" : "The following deploy test checks must succeed:", + "More information" : "More information", "Download ExApp logs" : "Download ExApp logs", + "Remove the test ExApp" : "Remove the test ExApp", + "Start the deploy test" : "Start the deploy test", + "Stop the deploy test" : "Stop the deploy test", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"", "Please enter a registry domain" : "Please enter a registry domain", + "\"From\" cannot be \"local\"" : "\"From\" cannot be \"local\"", "This registry mapping already exists" : "This registry mapping already exists", + "\"From\" and \"To\" cannot be the same" : "\"From\" and \"To\" cannot be the same", "Docker registry mapping added" : "Docker registry mapping added", "Error adding Docker registry mapping" : "Error adding Docker registry mapping", "Docker registry mapping removed" : "Docker registry mapping removed", "Error removing Docker registry mapping" : "Error removing Docker registry mapping", "Override Docker registries" : "Override Docker registries", + "Configure Docker registry override mappings for the selected daemon." : "Configure Docker registry override mappings for the selected daemon.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing.", "Image pull will be skipped" : "Image pull will be skipped", "Remove" : "Remove", + "No custom Docker registries are registered" : "No custom Docker registries are registered", "Add registry override mapping" : "Add registry override mapping", "From" : "From", "registry URL (e.g. ghcr.io)" : "registry URL (e.g. ghcr.io)", "To" : "To", "registry URL (e.g. docker.io)" : "registry URL (e.g. docker.io)", "Add" : "Add", + "Hostname used by Nextcloud to access the ExApps" : "Hostname used by Nextcloud to access the ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "A daemon with this name already exists", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "The secret key for the HaRP container communication (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy authentication password", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values.", + "The Docker network that the deployed ExApps will use." : "The Docker network that the deployed ExApps will use.", + "The URL should start with http:// or https://" : "The URL should start with http:// or https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "For a HTTPS daemon, the Nextcloud URL should be HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker.", "DaemonConfig successfully registered" : "DaemonConfig successfully registered", "Failed to register DaemonConfig. Check the logs" : "Failed to register DaemonConfig. Check the logs", "DaemonConfig successfully updated" : "DaemonConfig successfully updated", "Failed to update DaemonConfig. Check the logs" : "Failed to update DaemonConfig. Check the logs", "Failed to connect to Daemon. Check the logs" : "Failed to connect to Daemon. Check the logs", "Failed to check connection to Daemon. Check the logs" : "Failed to check connection to Daemon. Check the logs", + "Edit the deploy daemon" : "Edit the deploy daemon", + "Register a new deploy daemon" : "Register a new deploy daemon", "Daemon configuration template" : "Daemon configuration template", + "Select a daemon configuration template" : "Select a daemon configuration template", "Daemon registration form" : "Daemon registration form", + "Unique deploy daemon name" : "Unique deploy daemon name", + "Unique deploy Daemon name" : "Unique deploy Daemon name", "Display name" : "Display name", "Deployment method" : "Deployment method", + "Select the daemon deploy method" : "Select the daemon deploy method", "HaRP host" : "HaRP host", "Daemon host" : "Daemon host", "HaRP shared key" : "HaRP shared key", + "The password must be at least 12 characters long" : "The password must be at least 12 characters long", + "Set this daemon as the default one" : "Set this daemon as the default one", + "Set as the default daemon" : "Set as the default daemon", + "Enable HTTPS" : "Enable HTTPS", + "Show deploy options" : "Show deploy options", + "Hide deploy options" : "Hide deploy options", "Enable HaRP" : "Enable HaRP", "FRP server address" : "FRP server address", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section.", "Docker socket proxy port" : "Docker socket proxy port", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Compute device" : "Compute device", "Memory limit (in MiB)" : "Memory limit (in MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximum amount of memory that the ExApp container can use in mebibytes", "Must be a positive integer" : "Must be a positive integer", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", "CPU limit as decimal value" : "CPU limit as decimal value", "Must be a positive number" : "Must be a positive number", "Add additional option" : "Add additional option", diff --git a/l10n/es.js b/l10n/es.js index d928f4b6..8ad219b7 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -51,6 +51,7 @@ OC.L10N.register( "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicación directa con ExApp (FRP deshabilitado)", + "Deploy options" : "Opciones del despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", @@ -73,6 +74,7 @@ OC.L10N.register( "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", "Deploy test failed at step \"{step}\"" : "La verificación de despliegue falló en el paso \"{step}\"", + "More information" : "Más información", "Download ExApp logs" : "Descargar los registros de la ExApp", "Please enter a registry domain" : "Por favor, ingrese un dominio para el registry", "This registry mapping already exists" : "Este mapeo de registry ya existe", diff --git a/l10n/es.json b/l10n/es.json index d2746f95..ec0246c3 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -49,6 +49,7 @@ "Protocol" : "Protocolo", "Host" : "Servidor", "ExApp direct communication (FRP disabled)" : "Comunicación directa con ExApp (FRP deshabilitado)", + "Deploy options" : "Opciones del despliegue", "Docker network" : "Red de Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contraseña de HaProxy", @@ -71,6 +72,7 @@ "Only if ExApp container is preset" : "Sólo si el contenedor de la ExApp está predefinido", "Deploy test passed successfully!" : "¡La verificación de despliegue ha pasado correctamente!", "Deploy test failed at step \"{step}\"" : "La verificación de despliegue falló en el paso \"{step}\"", + "More information" : "Más información", "Download ExApp logs" : "Descargar los registros de la ExApp", "Please enter a registry domain" : "Por favor, ingrese un dominio para el registry", "This registry mapping already exists" : "Este mapeo de registry ya existe", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 5b771a2f..d191baa7 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -8,6 +8,7 @@ OC.L10N.register( "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "More information" : "Más información", "Remove" : "Eliminar", "Add" : "Agregar", "Disabled" : "Deshabilitado", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index 8475c237..31a0fbb4 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -6,6 +6,7 @@ "Name" : "Nombre", "Host" : "Servidor", "Enabled" : "Habilitado", + "More information" : "Más información", "Remove" : "Eliminar", "Add" : "Agregar", "Disabled" : "Deshabilitado", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index b248ed44..a97d65cb 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -9,6 +9,7 @@ OC.L10N.register( "Host" : "Servidor", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", + "More information" : "Más información", "From" : "De", "To" : "A", "Add" : "Guardar", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index f415e849..c85a0cb1 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -7,6 +7,7 @@ "Host" : "Servidor", "Nextcloud URL" : "URL de Nextcloud", "Enabled" : "Habilitado", + "More information" : "Más información", "From" : "De", "To" : "A", "Add" : "Guardar", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 62fd39c3..3bd43534 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -3,12 +3,18 @@ OC.L10N.register( { "Daemon config not found" : "Taustateenuse seadistusi ei leidu", "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", + "Error adding Docker registry" : "Viga Dockeri registrikirje lisamisel", + "Error removing Docker registry" : "Viga Dockeri registrikirje eemaldamisel", "Cancel" : "Tühista", "Delete" : "Kustuta", "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", + "Docker registries" : "Dockeri registrikirjed", "Edit" : "Redigeeri", "Unlimited" : "Piiramatult", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} protsessor","{n} protsessorit"], "Name" : "Nimi", "Protocol" : "Protokoll", "Host" : "Host", @@ -16,6 +22,7 @@ OC.L10N.register( "Docker network" : "Dockeri võrk", "Nextcloud URL" : "Nextcloudi võrguaadress", "HaProxy password" : "HaProxy salasõna", + "GPU support" : "Graafikaprotsessori tugi", "Memory limit" : "Mälukasutuse ülempiir", "CPU limit" : "Kasutatavate protsessorite arvu ülempiir", "Additional options" : "Täiendavad valikud", @@ -23,13 +30,23 @@ OC.L10N.register( "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", "Enabled" : "Sisse lülitatud", "More information" : "Lisateave", + "This registry mapping already exists" : "See registrivastendus on juba olemas", + "Error adding Docker registry mapping" : "Viga Dockeri registrivastenduse lisamisel", + "Docker registry mapping removed" : "Dockeri registrivastendus on eemaldatud", + "Error removing Docker registry mapping" : "Viga Dockeri registrivastenduse eemaldamisel", "Remove" : "Eemalda", "From" : "Saatja", "To" : "Saaja", "Add" : "Lisa", "Display name" : "Kuvatav nimi", + "The password must be at least 12 characters long" : "Salasõna peab olema vähemalt 12 tähemärki pikk", + "Set this daemon as the default one" : "Määra see taustateenus vaikimisi kasutatavaks", + "Set as the default daemon" : "Määra vaikimisi taustateenuseks", + "Enable HTTPS" : "Lülita HTTPS sisse", "Disabled" : "Välja lülitatud", "Compute device" : "Arvutusseade", + "Memory limit (in MiB)" : "Mälukasutuse ülempiir (MiB)", + "Must be a positive integer" : "Peab olema positiivne täisarv", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 62a0a17a..9e16c1db 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -1,12 +1,18 @@ { "translations": { "Daemon config not found" : "Taustateenuse seadistusi ei leidu", "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", + "Error adding Docker registry" : "Viga Dockeri registrikirje lisamisel", + "Error removing Docker registry" : "Viga Dockeri registrikirje eemaldamisel", "Cancel" : "Tühista", "Delete" : "Kustuta", "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", "Default" : "Vaikimisi", + "Docker registries" : "Dockeri registrikirjed", "Edit" : "Redigeeri", "Unlimited" : "Piiramatult", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} protsessor","{n} protsessorit"], "Name" : "Nimi", "Protocol" : "Protokoll", "Host" : "Host", @@ -14,6 +20,7 @@ "Docker network" : "Dockeri võrk", "Nextcloud URL" : "Nextcloudi võrguaadress", "HaProxy password" : "HaProxy salasõna", + "GPU support" : "Graafikaprotsessori tugi", "Memory limit" : "Mälukasutuse ülempiir", "CPU limit" : "Kasutatavate protsessorite arvu ülempiir", "Additional options" : "Täiendavad valikud", @@ -21,13 +28,23 @@ "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", "Enabled" : "Sisse lülitatud", "More information" : "Lisateave", + "This registry mapping already exists" : "See registrivastendus on juba olemas", + "Error adding Docker registry mapping" : "Viga Dockeri registrivastenduse lisamisel", + "Docker registry mapping removed" : "Dockeri registrivastendus on eemaldatud", + "Error removing Docker registry mapping" : "Viga Dockeri registrivastenduse eemaldamisel", "Remove" : "Eemalda", "From" : "Saatja", "To" : "Saaja", "Add" : "Lisa", "Display name" : "Kuvatav nimi", + "The password must be at least 12 characters long" : "Salasõna peab olema vähemalt 12 tähemärki pikk", + "Set this daemon as the default one" : "Määra see taustateenus vaikimisi kasutatavaks", + "Set as the default daemon" : "Määra vaikimisi taustateenuseks", + "Enable HTTPS" : "Lülita HTTPS sisse", "Disabled" : "Välja lülitatud", "Compute device" : "Arvutusseade", + "Memory limit (in MiB)" : "Mälukasutuse ülempiir (MiB)", + "Must be a positive integer" : "Peab olema positiivne täisarv", "Confirm" : "Kinnita", "Save" : "Salvesta", "Register" : "Registreeru", diff --git a/l10n/gl.js b/l10n/gl.js index 81e34579..43026dfa 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -16,7 +16,7 @@ OC.L10N.register( "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da ExApp", "ExApp not found, failed to get logs" : "Non se atopou a ExApp, produciuse un fallo ao obter os rexistros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Produciuse un erro ao obter os rexistros do contedor. Nota: a descarga do contedor Docker só funciona para contedores co controlador de rexistro json-file ou journald. Erro: %s", - "ExApp not found, failed to get deploy options" : "Non se atopou a ExApp, produciuse un fallo ao obter as opcións de despregue", + "ExApp not found, failed to get deploy options" : "Non se atopou a ExApp, produciuse un fallo ao obter as opcións de despregadura", "AppAPI authentication failed" : "Fallou a autenticación da AppAPI", "AppAPI ExApp notifier" : "Notificador de AppAPI a ExApp", "AppAPI" : "AppAPI (API de ExApps)", @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "Sevizo de despregadura AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere cambiar a HaRP para mellorar o rendemento.", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O proxecto AppAPI é unha iniciativa emocionante que ten como obxectivo revolucionar a forma na que se desenvolven as aplicacións para Nextcloud a través do uso de contedores docker. Permitindo unha maior escolla de linguaxe de programación e permitindo que as tarefas computacionalmente custosas sexan descargadas a un servidor diferente.", + "Deploy daemons" : "Servizos de despregadura", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Un servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. Un servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Comprobe a súa configuración", "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de preparación da ExApp após do cal AppAPI marcarao como fallado", "ExApp init timeout" : "Tempo de espera de inicio da ExApp", "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Escolla a directiva de reinicio do contedor, p. ex. «sempre» para garantir que ExApps se execute após o reinicio do servidor do servizo", + "This settings changes are effective only for newly created containers" : "Os cambios destes axustes son efectivos só para contedores creados recentemente", + "Deploy daemon deletion confirmation" : "Confirmación de eliminación do servizo de despregadura", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Confirma que quere eliminar o servizo de despregadura «{name}»?", + "Remove all ExApps installed on this daemon" : "Retirara todas as ExApps instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", + "A \"manual-install\" deploy daemon cannot be set as default" : "Un servizo de despregadura «manual-install» non pode ser definido como predeterminado", + "Failed to save admin settings. Check the logs" : "Produciuse un fallo ao gardar os axustes de administración. Consulte os ficheiros de rexistro", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", @@ -44,10 +56,17 @@ OC.L10N.register( "Docker registries" : "Rexistros de Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión satisfactoria do servizo", + "Failed to connect to the daemon. Check the logs" : "Produciuse un fallo ao conectar co servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to the daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Unlimited" : "Sen límites", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPU"], + "Deploy daemon configuration" : "Configuración do servizo de despregadura", + "Deploy daemon configuration details" : "Detalles de configuración do servizo de despregadura", + "Deploy daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "O servizo de «instalación manual» adoita empregarse para desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "ExApps installed" : "ExApps instaladas", "Name" : "Nome", "Protocol" : "Protocolo", @@ -57,11 +76,15 @@ OC.L10N.register( "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contrasinal de HaProxy", + "GPU support" : "Compatibilidade con GPU", + "Computation device" : "Dispositivo de computación", "Memory limit" : "Límite de memoria", "CPU limit" : "Límite de CPU", "Additional options" : "Opcións adicionais", "Check connection" : "Comprobar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", + "Register a custom one or configure one from the available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", + "Register daemon" : "Rexistrar o servizo", "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a ExApp está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", @@ -77,48 +100,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para comprobar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "The following deploy test checks must succeed:" : "As seguintes comprobacións da proba de despregadura deben ser satisfactorias:", "More information" : "Máis información", "Download ExApp logs" : "Descargar os rexistros da ExApp", + "Remove the test ExApp" : "Retirar a proba da ExApp", + "Start the deploy test" : "Iniciar a proba de despregadura", + "Stop the deploy test" : "Deter a proba de despregadura", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Please enter a registry domain" : "Introduza un dominio de rexistro", + "\"From\" cannot be \"local\"" : "«Desde» non pode ser «local»", "This registry mapping already exists" : "Xa existe esta asignación de rexistro", + "\"From\" and \"To\" cannot be the same" : "«Desde» e «Ata» non poden ser o mesmo", "Docker registry mapping added" : "Engadiuse a asignación do rexistro de Docker", "Error adding Docker registry mapping" : "Produciuse un erro ao engadir a asignación do rexistro de Docker", "Docker registry mapping removed" : "Foi retirada a asignación do rexistro de Docker", "Error removing Docker registry mapping" : "Produciuse un erro ao retirar a asignación do rexistro de Docker", "Override Docker registries" : "Anular os rexistros de Docker", + "Configure Docker registry override mappings for the selected daemon." : "Configurar as asignacións de anulación do rexistro de Docker para o servizo seleccionado.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "O rexistro de orixe correspondente en ExApp info.xml sobrescribirase durante a despregadura (paso de extracción de imaxe).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isto é útil se quere usar un rexistro Docker personalizado, por exemplo, para usar un rexistro Docker privado, ou para usar un rexistro Docker diferente para probas.", "Image pull will be skipped" : "Omitirase a extracción da imaxe", "Remove" : "Retirar", + "No custom Docker registries are registered" : "Non está rexistrado ningún rexistro personalizado de Docker ", "Add registry override mapping" : "Engadir a asignación de anulación do rexistro", "From" : "Desde", "registry URL (e.g. ghcr.io)" : "URL do rexistro (p. ex., ghcr.io)", "To" : "Ata", "registry URL (e.g. docker.io)" : "URL do rexistro (p. ex., docker.io)", "Add" : "Engadir", + "Hostname used by Nextcloud to access the ExApps" : "Nome do servidor empregado para acceder a ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do servidor (e o porto) no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud, p. ex. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do servidor (e o porto) ou ruta no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud. Tamén pode ser unha ruta para o conectador Docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Xa existe un servizo con ese nome", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicación de contedores HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Os cambios só son efectivos para ExApps instaladas recentemente. Para ExApps existentes, os contedores Docker deberían ser creados de novo para aplicar os novos valores dos axustes.", + "The Docker network that the deployed ExApps will use." : "A rede docker que empregarán as ExApps despregadas.", + "The URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Para un servizo HTTPS, o URL de Nextcloud debe ser HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU dispoñíbeis no servidor do servizo deben estar activados nos contedores ExApp por Docker.", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar co servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", + "Edit the deploy daemon" : "Editar o servizo de despregadura", + "Register a new deploy daemon" : "Rexistrar un novo servizo de despregadura", "Daemon configuration template" : "Modelo de configuración do servizo", + "Select a daemon configuration template" : "Seleccione un modelo de configuración do servizo", "Daemon registration form" : "Formulario de rexistro do servizo", + "Unique deploy daemon name" : "Nome único do servizo de despregadura", + "Unique deploy Daemon name" : "Nome único do servizo de despregadura", "Display name" : "Nome para amosar", "Deployment method" : "Método de despregadura", + "Select the daemon deploy method" : "Seleccione o método de despregadura do servizo", "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor do servizo", "HaRP shared key" : "Chave compartida de HaRP", + "The password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", + "Set this daemon as the default one" : "Definir este servizo como o predeterminado", + "Set as the default daemon" : "Definir como servizo predeterminado", + "Enable HTTPS" : "Activar HTTPS", + "Show deploy options" : "Amosar as opcións de despregadura", + "Hide deploy options" : "Agochar as opcións de despregadura", "Enable HaRP" : "Activar HaRP", "FRP server address" : "Enderezo do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "O enderezo (máquina:porto) do servidor FRP que debe ser alcanzado pola ExApp na rede definida na sección «Rede Docker».", "Docker socket proxy port" : "Porto do proxy do conectador Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Compute device" : "Dispositivo de computación", "Memory limit (in MiB)" : "Límite de memoria (en MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Cantidade máxima de memoria en mebibytes que pode empregar o contedor ExApp", "Must be a positive integer" : "Debe ser un número enteiro positivo.", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que pode empregar o contedor ExApp (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", "CPU limit as decimal value" : "Límite da CPU como valor decimal", "Must be a positive number" : "Debe ser un número positivo.", "Add additional option" : "Engadir unha opción adicional", @@ -134,7 +194,7 @@ OC.L10N.register( "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", @@ -175,9 +235,9 @@ OC.L10N.register( "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode ser definido como predeterminado", "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", - "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", + "Deploy daemon config details" : "Detalles de configuración do servizo de despregadura", "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "Deploy config" : "Configuración da despregadura", "Verify connection" : "Verificar a conexión", @@ -185,7 +245,7 @@ OC.L10N.register( "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", + "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregadura deben superarse para ser satisfactoria:", "More info" : "Máis información", "Remove test ExApp" : "Retirar a proba da ExApp", "Start Deploy test" : "Iniciar a proba de despregadura", diff --git a/l10n/gl.json b/l10n/gl.json index a7cc8ffc..47924707 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -14,7 +14,7 @@ "Could not perform update of ExApp" : "Non foi posíbel realizar a actualización da ExApp", "ExApp not found, failed to get logs" : "Non se atopou a ExApp, produciuse un fallo ao obter os rexistros", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Produciuse un erro ao obter os rexistros do contedor. Nota: a descarga do contedor Docker só funciona para contedores co controlador de rexistro json-file ou journald. Erro: %s", - "ExApp not found, failed to get deploy options" : "Non se atopou a ExApp, produciuse un fallo ao obter as opcións de despregue", + "ExApp not found, failed to get deploy options" : "Non se atopou a ExApp, produciuse un fallo ao obter as opcións de despregadura", "AppAPI authentication failed" : "Fallou a autenticación da AppAPI", "AppAPI ExApp notifier" : "Notificador de AppAPI a ExApp", "AppAPI" : "AppAPI (API de ExApps)", @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "Sevizo de despregadura AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere cambiar a HaRP para mellorar o rendemento.", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O proxecto AppAPI é unha iniciativa emocionante que ten como obxectivo revolucionar a forma na que se desenvolven as aplicacións para Nextcloud a través do uso de contedores docker. Permitindo unha maior escolla de linguaxe de programación e permitindo que as tarefas computacionalmente custosas sexan descargadas a un servidor diferente.", + "Deploy daemons" : "Servizos de despregadura", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Un servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. Un servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Comprobe a súa configuración", "ExApp init timeout (minutes)" : "Tempo de espera de inicio da ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo de espera do proceso de preparación da ExApp após do cal AppAPI marcarao como fallado", "ExApp init timeout" : "Tempo de espera de inicio da ExApp", "ExApp container restart policy" : "Directiva de reinicio do contedor da ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Escolla a directiva de reinicio do contedor, p. ex. «sempre» para garantir que ExApps se execute após o reinicio do servidor do servizo", + "This settings changes are effective only for newly created containers" : "Os cambios destes axustes son efectivos só para contedores creados recentemente", + "Deploy daemon deletion confirmation" : "Confirmación de eliminación do servizo de despregadura", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Confirma que quere eliminar o servizo de despregadura «{name}»?", + "Remove all ExApps installed on this daemon" : "Retirara todas as ExApps instaladas neste servizo", "Cancel" : "Cancelar", "Delete" : "Eliminar", + "A \"manual-install\" deploy daemon cannot be set as default" : "Un servizo de despregadura «manual-install» non pode ser definido como predeterminado", + "Failed to save admin settings. Check the logs" : "Produciuse un fallo ao gardar os axustes de administración. Consulte os ficheiros de rexistro", "Password confirmation failed" : "Produciuse un fallo ao confirmar o contrasinal", "Default" : "Predeterminado", "Set as default" : "Definir como predeterminado", @@ -42,10 +54,17 @@ "Docker registries" : "Rexistros de Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexión satisfactoria do servizo", + "Failed to connect to the daemon. Check the logs" : "Produciuse un fallo ao conectar co servizo. Consulte os ficheiros de rexistro", + "Failed to check connection to the daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", "Unlimited" : "Sen límites", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPU"], + "Deploy daemon configuration" : "Configuración do servizo de despregadura", + "Deploy daemon configuration details" : "Detalles de configuración do servizo de despregadura", + "Deploy daemon" : "Servizo de despregadura", "Default daemon. ExApps will be installed on it" : "Servizo predeterminado. As ExApps instalaranse nel", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "O servizo de «instalación manual» adoita empregarse para desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "ExApps installed" : "ExApps instaladas", "Name" : "Nome", "Protocol" : "Protocolo", @@ -55,11 +74,15 @@ "Docker network" : "Rede Docker", "Nextcloud URL" : "URL de Nextcloud", "HaProxy password" : "Contrasinal de HaProxy", + "GPU support" : "Compatibilidade con GPU", + "Computation device" : "Dispositivo de computación", "Memory limit" : "Límite de memoria", "CPU limit" : "Límite de CPU", "Additional options" : "Opcións adicionais", "Check connection" : "Comprobar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", + "Register a custom one or configure one from the available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", + "Register daemon" : "Rexistrar o servizo", "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Comprobar se a ExApp está rexistrada en Nextcloud antes da despregadura", "Image pull" : "Extraer a imaxe", @@ -75,48 +98,85 @@ "Only if ExApp container is preset" : "Só se o contedor da ExApp está predefinido", "Deploy test passed successfully!" : "A proba de despregadura foi superada satisfactoriamente!", "Deploy test failed at step \"{step}\"" : "Produciuse un fallo na proba de despregadura no paso «{step}»", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para comprobar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", + "The following deploy test checks must succeed:" : "As seguintes comprobacións da proba de despregadura deben ser satisfactorias:", "More information" : "Máis información", "Download ExApp logs" : "Descargar os rexistros da ExApp", + "Remove the test ExApp" : "Retirar a proba da ExApp", + "Start the deploy test" : "Iniciar a proba de despregadura", + "Stop the deploy test" : "Deter a proba de despregadura", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "A ExApp non está rexistrada e o contedor retirarase ao «Deter a proba de despregadura»", "Please enter a registry domain" : "Introduza un dominio de rexistro", + "\"From\" cannot be \"local\"" : "«Desde» non pode ser «local»", "This registry mapping already exists" : "Xa existe esta asignación de rexistro", + "\"From\" and \"To\" cannot be the same" : "«Desde» e «Ata» non poden ser o mesmo", "Docker registry mapping added" : "Engadiuse a asignación do rexistro de Docker", "Error adding Docker registry mapping" : "Produciuse un erro ao engadir a asignación do rexistro de Docker", "Docker registry mapping removed" : "Foi retirada a asignación do rexistro de Docker", "Error removing Docker registry mapping" : "Produciuse un erro ao retirar a asignación do rexistro de Docker", "Override Docker registries" : "Anular os rexistros de Docker", + "Configure Docker registry override mappings for the selected daemon." : "Configurar as asignacións de anulación do rexistro de Docker para o servizo seleccionado.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "O rexistro de orixe correspondente en ExApp info.xml sobrescribirase durante a despregadura (paso de extracción de imaxe).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isto é útil se quere usar un rexistro Docker personalizado, por exemplo, para usar un rexistro Docker privado, ou para usar un rexistro Docker diferente para probas.", "Image pull will be skipped" : "Omitirase a extracción da imaxe", "Remove" : "Retirar", + "No custom Docker registries are registered" : "Non está rexistrado ningún rexistro personalizado de Docker ", "Add registry override mapping" : "Engadir a asignación de anulación do rexistro", "From" : "Desde", "registry URL (e.g. ghcr.io)" : "URL do rexistro (p. ex., ghcr.io)", "To" : "Ata", "registry URL (e.g. docker.io)" : "URL do rexistro (p. ex., docker.io)", "Add" : "Engadir", + "Hostname used by Nextcloud to access the ExApps" : "Nome do servidor empregado para acceder a ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do servidor (e o porto) no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud, p. ex. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do servidor (e o porto) ou ruta no que {name} está dispoñíbel. Isto non ten por que ser unha máquina pública, só unha máquina accesíbel polo servidor Nextcloud. Tamén pode ser unha ruta para o conectador Docker. (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Xa existe un servizo con ese nome", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicación de contedores HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Contrasinal de autenticación do proxy de AppAPI Docker Socket", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Os cambios só son efectivos para ExApps instaladas recentemente. Para ExApps existentes, os contedores Docker deberían ser creados de novo para aplicar os novos valores dos axustes.", + "The Docker network that the deployed ExApps will use." : "A rede docker que empregarán as ExApps despregadas.", + "The URL should start with http:// or https://" : "O URL debe comezar por http:// ou https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Para un servizo HTTPS, o URL de Nextcloud debe ser HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU dispoñíbeis no servidor do servizo deben estar activados nos contedores ExApp por Docker.", "DaemonConfig successfully registered" : "DaemonConfig foi rexistrado satisfactoriamente", "Failed to register DaemonConfig. Check the logs" : "Produciuse un fallo ao rexistrar DaemonConfig. Consulte os ficheiros de rexistro", "DaemonConfig successfully updated" : "DaemonConfig foi actualizado satisfactoriamente", "Failed to update DaemonConfig. Check the logs" : "Produciuse un fallo ao actualizar DaemonConfig. Consulte os ficheiros de rexistro", - "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar o servizo. Consulte os ficheiros de rexistro", + "Failed to connect to Daemon. Check the logs" : "Produciuse un fallo ao conectar co servizo. Consulte os ficheiros de rexistro", "Failed to check connection to Daemon. Check the logs" : "Produciuse un fallo ao comprobar a conexión co servizo. Consulte os ficheiros de rexistro", + "Edit the deploy daemon" : "Editar o servizo de despregadura", + "Register a new deploy daemon" : "Rexistrar un novo servizo de despregadura", "Daemon configuration template" : "Modelo de configuración do servizo", + "Select a daemon configuration template" : "Seleccione un modelo de configuración do servizo", "Daemon registration form" : "Formulario de rexistro do servizo", + "Unique deploy daemon name" : "Nome único do servizo de despregadura", + "Unique deploy Daemon name" : "Nome único do servizo de despregadura", "Display name" : "Nome para amosar", "Deployment method" : "Método de despregadura", + "Select the daemon deploy method" : "Seleccione o método de despregadura do servizo", "HaRP host" : "Servidor HaRP", "Daemon host" : "Servidor do servizo", "HaRP shared key" : "Chave compartida de HaRP", + "The password must be at least 12 characters long" : "O contrasinal precisa ser polo menos de 12 caracteres de lonxitude", + "Set this daemon as the default one" : "Definir este servizo como o predeterminado", + "Set as the default daemon" : "Definir como servizo predeterminado", + "Enable HTTPS" : "Activar HTTPS", + "Show deploy options" : "Amosar as opcións de despregadura", + "Hide deploy options" : "Agochar as opcións de despregadura", "Enable HaRP" : "Activar HaRP", "FRP server address" : "Enderezo do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "O enderezo (máquina:porto) do servidor FRP que debe ser alcanzado pola ExApp na rede definida na sección «Rede Docker».", "Docker socket proxy port" : "Porto do proxy do conectador Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Compute device" : "Dispositivo de computación", "Memory limit (in MiB)" : "Límite de memoria (en MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Cantidade máxima de memoria en mebibytes que pode empregar o contedor ExApp", "Must be a positive integer" : "Debe ser un número enteiro positivo.", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que pode empregar o contedor ExApp (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", "CPU limit as decimal value" : "Límite da CPU como valor decimal", "Must be a positive number" : "Debe ser un número positivo.", "Add additional option" : "Engadir unha opción adicional", @@ -132,7 +192,7 @@ "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n### Aplicación integrada\n\n**A partir de Nextcloud 30.0.1, esta aplicación inclúese no paquete predeterminado de Nextcloud.**\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres nos embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "O Proxecto AppAPI é unha iniciativa emocionante que pretende revolucionar a maneira na que se desenvolven as aplicacións para Nextcloud.", "Deploy Daemons" : "Servizos de despregadura", - "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración das ExApps", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps", "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Servizos de despregadura. O servizo de despregadura (DaemonConfig) é un servizo de orquestración de ExApps.", "Default Deploy Daemon is not accessible. Please verify its configuration" : "Non é posíbel acceder ao servizo predeterminado de despregadura. Verifique a súa configuración", "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Especifique a directiva de reinicio do contedor, p. ex. «sempre» para garantir que a ExApp se execute após o reinicio do servidor do servizo", @@ -173,9 +233,9 @@ "Are you sure you want delete Deploy Daemon" : "Confirma que quere eliminar o servizo de despregadura", "All ExApps on this daemon will be removed" : "Retiraranse todas as ExApps deste servizo", "All ExApps installed on this daemon will be removed" : "Retiraranse todas as ExApps instaladas neste servizo", - "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode definirse como predeterminado", + "\"manual-install\" Deploy Daemon cannot be set as default" : "O servizo de despregadura «manual-install» non pode ser definido como predeterminado", "Failed to save admin options. Check the logs" : "Produciuse un fallo ao gardar as opcións de administración. Consulte os ficheiros de rexistro", - "Deploy daemon config details" : "Detalles de configuración do servizo de despregue", + "Deploy daemon config details" : "Detalles de configuración do servizo de despregadura", "Manual install daemon usually used for development. It cannot be set as default daemon." : "O servizo de instalación manual que adoita usarse para o desenvolvemento. Non é posíbel definilo como servizo predeterminado.", "Deploy config" : "Configuración da despregadura", "Verify connection" : "Verificar a conexión", @@ -183,7 +243,7 @@ "Register a custom one or setup from available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register Daemon" : "Rexistrar o servizo", "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI tentará instalar un pequeno esqueleto da ExApp para verificar que o servizo está configurado correctamente e que se están a cumprir os pasos da despregadura.", - "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregue deben superarse para ser satisfactoria:", + "The following Deploy test checks must be passed to succeed:" : "As seguintes comprobacións de proba de despregadura deben superarse para ser satisfactoria:", "More info" : "Máis información", "Remove test ExApp" : "Retirar a proba da ExApp", "Start Deploy test" : "Iniciar a proba de despregadura", diff --git a/l10n/ru.js b/l10n/ru.js index 33f5549d..d51878c3 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -31,6 +31,7 @@ OC.L10N.register( "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проект AppAPI — это многообещающая инициатива, призванная кардинально изменить подход к разработке приложений для Nextcloud посредством использования Docker-контейнеров. Это расширяет выбор языков программирования и позволяет переносить ресурсоёмкие задачи на другой сервер.", + "Deploy daemons" : "Службы развёртывания", "ExApp init timeout (minutes)" : "Время ожидания инициализации ExApp (минуты)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Время ожидания процесса инициализации ExApp, по истечении которого AppAPI отметит его как неудачный", "ExApp init timeout" : "Время ожидания инициализации ExApp", @@ -45,6 +46,9 @@ OC.L10N.register( "Edit" : "Редактирование", "Daemon connection successful" : "Служба успешно установлена", "Unlimited" : "Неограничено", + "_{n} CPU_::_{n} CPUs_" : ["{n} ЦП","{n} ЦП","{n} ЦП","{n} ЦП"], + "Deploy daemon configuration" : "Конфигурация службы развёртывания", + "Deploy daemon" : "Служба развёртывания", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", "ExApps installed" : "ExApps установлены", "Name" : "Имя", @@ -55,6 +59,8 @@ OC.L10N.register( "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", "HaProxy password" : "HaProxy пароль ", + "GPU support" : "Поддержка GPU", + "Computation device" : "Вычислительное устройство", "Memory limit" : "Лимит памяти", "Additional options" : "Дополнительные возможности", "Check connection" : "Проверить подключение", diff --git a/l10n/ru.json b/l10n/ru.json index 6939bf06..6e6c6f82 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -29,6 +29,7 @@ "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Проект AppAPI — это многообещающая инициатива, призванная кардинально изменить подход к разработке приложений для Nextcloud посредством использования Docker-контейнеров. Это расширяет выбор языков программирования и позволяет переносить ресурсоёмкие задачи на другой сервер.", + "Deploy daemons" : "Службы развёртывания", "ExApp init timeout (minutes)" : "Время ожидания инициализации ExApp (минуты)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Время ожидания процесса инициализации ExApp, по истечении которого AppAPI отметит его как неудачный", "ExApp init timeout" : "Время ожидания инициализации ExApp", @@ -43,6 +44,9 @@ "Edit" : "Редактирование", "Daemon connection successful" : "Служба успешно установлена", "Unlimited" : "Неограничено", + "_{n} CPU_::_{n} CPUs_" : ["{n} ЦП","{n} ЦП","{n} ЦП","{n} ЦП"], + "Deploy daemon configuration" : "Конфигурация службы развёртывания", + "Deploy daemon" : "Служба развёртывания", "Default daemon. ExApps will be installed on it" : "Служба публикаций по умолчанию. ExApps будет установлен на нем.", "ExApps installed" : "ExApps установлены", "Name" : "Имя", @@ -53,6 +57,8 @@ "Docker network" : "Сеть докеров", "Nextcloud URL" : "Адрес сервера Nextcloud", "HaProxy password" : "HaProxy пароль ", + "GPU support" : "Поддержка GPU", + "Computation device" : "Вычислительное устройство", "Memory limit" : "Лимит памяти", "Additional options" : "Дополнительные возможности", "Check connection" : "Проверить подключение", diff --git a/l10n/si.js b/l10n/si.js deleted file mode 100644 index e9f7037d..00000000 --- a/l10n/si.js +++ /dev/null @@ -1,18 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "අවලංගු", - "Edit" : "සංස්කරණය", - "Unlimited" : "අසීමිත", - "Name" : "නම", - "Host" : " ධාරකය", - "Enabled" : "සබල කර ඇත", - "Remove" : "ඉවත් කරන්න", - "Add" : "එකතු කරන්න", - "Disabled" : "අබල කර ඇත", - "Confirm" : "තහවුරු කරන්න", - "Version" : "අනුවාදය", - "Actions" : "ක්‍රියාමාර්ග", - "Disable" : "අබල කරන්න" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json deleted file mode 100644 index 51cd66cc..00000000 --- a/l10n/si.json +++ /dev/null @@ -1,16 +0,0 @@ -{ "translations": { - "Cancel" : "අවලංගු", - "Edit" : "සංස්කරණය", - "Unlimited" : "අසීමිත", - "Name" : "නම", - "Host" : " ධාරකය", - "Enabled" : "සබල කර ඇත", - "Remove" : "ඉවත් කරන්න", - "Add" : "එකතු කරන්න", - "Disabled" : "අබල කර ඇත", - "Confirm" : "තහවුරු කරන්න", - "Version" : "අනුවාදය", - "Actions" : "ක්‍රියාමාර්ග", - "Disable" : "අබල කරන්න" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/sw.js b/l10n/sw.js index 99ef1fef..ff45ba14 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "Tumia daemon ya AppAPI ", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuhamia HaRP kwa utendakazi bora.", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Mradi wa AppAPI ni mpango wa kufurahisha ambao unalenga kubadilisha jinsi programu zinavyotengenezwa kwa Nextcloud kupitia utumiaji wa kontena za docker. Kuruhusu chaguo kubwa zaidi la lugha ya upangaji na kuruhusu majukumu ya gharama ya hesabu kupakiwa kwa seva tofauti.", + "Deploy daemons" : "Sambaza damoni", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) ni daemoni ya orchestration ya ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Sambaza damoni. Deploy daemon (DaemonConfig) ni daemoni ya orchestration ya ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Daemon chaguo-msingi haipatikani. Tafadhali angalia usanidi wake", "ExApp init timeout (minutes)" : "Muda wa kuanzisha ExApp (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Muda wa mchakato wa uanzishaji wa ExApp umekwisha ambapo AppAPI itatia alama kuwa imeshindwa", "ExApp init timeout" : "Muda wa ExApp umekwisha", "ExApp container restart policy" : "Sera ya kuanzisha upya kontena la ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Chagua sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApps itakuwa inaendeshwa baada ya kuwasha tena seva ya daemoni", + "This settings changes are effective only for newly created containers" : "Mabadiliko haya ya mipangilio yanafaa tu kwa vyombo vipya vilivyoundwa", + "Deploy daemon deletion confirmation" : "Deploy daemon deletion confirmation", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Je, una uhakika unataka kufuta daemoni ya kutumia \"{name}\"?", + "Remove all ExApps installed on this daemon" : "Ondoa ExApps zote zilizosakinishwa kwenye daemoni hii", "Cancel" : "Ghairi", "Delete" : "Futa", + "A \"manual-install\" deploy daemon cannot be set as default" : "Daemon ya \"kusakinisha kwa mikono\" haiwezi kuwekwa kama chaguo-msingi", + "Failed to save admin settings. Check the logs" : "Imeshindwa kuhifadhi mipangilio ya msimamizi. Angalia kumbukumbu", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Default" : "Chaguo msingi", "Set as default" : "Weka kama chaguomsingi", @@ -44,23 +56,35 @@ OC.L10N.register( "Docker registries" : "Usajili wa Docker", "Edit" : "Hariri", "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", + "Failed to connect to the daemon. Check the logs" : "Imeshindwa kuunganisha kwenye daemon. Angalia kumbukumbu", + "Failed to check connection to the daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye daemon. Angalia kumbukumbu", "Unlimited" : "Isiyo na kikomo", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Tumia usanidi wa daemoni", + "Deploy daemon configuration details" : "Tumia maelezo ya usanidi wa daemoni", + "Deploy daemon" : "Weka daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Daemon ya \"Usakinishaji wa Mwongozo\" kawaida hutumiwa kwa usanidi. Haiwezi kuwekwa kama daemoni chaguo-msingi.", "ExApps installed" : "ExApps imesakinishwa", "Name" : "Jina", "Protocol" : "Itifaki", "Host" : "Mwenyeji", "ExApp direct communication (FRP disabled)" : "Mawasiliano ya moja kwa moja ya ExApp (FRP imezimwa)", + "Deploy options" : "Weka chaguzi", "Docker network" : "Mtandao wa Docker ", "Nextcloud URL" : "URL ya Nextcloud ", "HaProxy password" : "Nenosiri la HaProxy", + "GPU support" : "Usaidizi wa GPU ", + "Computation device" : "Kifaa cha kuhesabu", "Memory limit" : "Kikomo cha kumbukumbu", "CPU limit" : "Kikomo cha CPU", "Additional options" : "Chaguzi za ziada", "Check connection" : "Angalia muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", + "Register a custom one or configure one from the available templates" : "Sajili maalum au usanidi kutoka kwa violezo vinavyopatikana", + "Register daemon" : "Sajili daemon", "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Angalia ikiwa ExApp imesajiliwa katika Nextcloud kabla ya kupelekwa", "Image pull" : "Kuvuta picha", @@ -76,32 +100,53 @@ OC.L10N.register( "Only if ExApp container is preset" : "Ikiwa tu chombo cha ExApp kimewekwa mapema", "Deploy test passed successfully!" : "Jaribio la kutuma limefaulu!", "Deploy test failed at step \"{step}\"" : "Jaribio la kusambaza limeshindwa kwa hatua \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuangalia kama daemoni imesanidiwa ipasavyo na hatua za kupeleka zimefaulu.", + "The following deploy test checks must succeed:" : "Ukaguzi ufuatao wa kupeleka lazima ufaulu:", "More information" : "Taarifa zaidi", "Download ExApp logs" : "Pakua kumbukumbu za ExApp", + "Remove the test ExApp" : "Ondoa jaribio la ExApp", + "Start the deploy test" : "Anza jaribio la kusambaza", + "Stop the deploy test" : "Acha jaribio la kusambaza", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "ExApp ya majaribio haijasajiliwa na kontena lake huondolewa kwenye \"Sitisha jaribio la kusambaza\"", "Please enter a registry domain" : "Tafadhali ingiza kikoa cha usajili", + "\"From\" cannot be \"local\"" : "\"Kutoka\" haiwezi kuwa \"ndani\"", "This registry mapping already exists" : "Upangaji huu wa usajili tayari upo", + "\"From\" and \"To\" cannot be the same" : "\"Kutoka\" na \"Kwa\" haziwezi kuwa sawa", "Docker registry mapping added" : "Uwekaji ramani wa usajili wa Docker umeongezwa", "Error adding Docker registry mapping" : "Hitilafu katika kuongeza ramani ya usajili wa Docker", "Docker registry mapping removed" : "Ramani ya Usajili wa Docker imeondolewa", "Error removing Docker registry mapping" : "Hitilafu katika kuondoa ramani ya usajili wa Docker", "Override Docker registries" : "Badilisha rejista za Docker", + "Configure Docker registry override mappings for the selected daemon." : "Sanidi Usajili wa Docker kubatilisha upangaji wa daemon iliyochaguliwa.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Sajili ya chanzo inayolingana katika maelezo ya ExApp.xml itafutwa wakati wa kupeleka (hatua ya kuvuta picha).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Hii ni muhimu ikiwa unataka kutumia sajili maalum ya Docker, kwa mfano, kutumia sajili ya kibinafsi ya Docker, au kutumia sajili tofauti ya Docker kwa majaribio.", "Image pull will be skipped" : "Uvutaji wa picha utarukwa", "Remove" : "Ondoa", + "No custom Docker registries are registered" : "Hakuna sajili maalum za Docker zilizosajiliwa", "Add registry override mapping" : "Ongeza ramani ya ubatilishaji wa usajili", "From" : "Tangu/ kutoka", "registry URL (e.g. ghcr.io)" : "URL ya usajili (e.g. ghcr.io)", "To" : "Mpaka/ hadi", "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", + "Hostname used by Nextcloud to access the ExApps" : "Jina la mwenyeji linalotumiwa na Nextcloud kufikia ExApps", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Hii haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la Docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Nenosiri la uthibitishaji la Soketi ya Wakala wa AppAPI Docker", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Mabadiliko yanafaa kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya ili kutumia maadili mapya ya mipangilio.", + "The Docker network that the deployed ExApps will use." : "Mtandao wa Docker ambao ExApps iliyotumwa itatumia.", + "The URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Kwa daemoni ya HTTPS, URL ya Nextcloud inapaswa kuwa HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vinahitaji kuwashwa katika vyombo vya ExApp na Docker.", "DaemonConfig successfully registered" : "DaemonConfig imesajiliwa", "Failed to register DaemonConfig. Check the logs" : "Imeshindwa kusajili DaemonConfig. Angalia kumbukumbu", "DaemonConfig successfully updated" : "DaemonConfig imesasishwa", "Failed to update DaemonConfig. Check the logs" : "Imeshindwa kusasisha DaemonConfig. Angalia kumbukumbu", "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", + "Edit the deploy daemon" : "Hariri daemon ya kusambaza", + "Register a new deploy daemon" : "Register a new deploy daemon", "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", "Daemon registration form" : "Fomu ya usajili ya Daemon", "Display name" : "Jina la kuonyesha", diff --git a/l10n/sw.json b/l10n/sw.json index d0effef3..aecf25c6 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "Tumia daemon ya AppAPI ", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuhamia HaRP kwa utendakazi bora.", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Mradi wa AppAPI ni mpango wa kufurahisha ambao unalenga kubadilisha jinsi programu zinavyotengenezwa kwa Nextcloud kupitia utumiaji wa kontena za docker. Kuruhusu chaguo kubwa zaidi la lugha ya upangaji na kuruhusu majukumu ya gharama ya hesabu kupakiwa kwa seva tofauti.", + "Deploy daemons" : "Sambaza damoni", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemon (DaemonConfig) ni daemoni ya orchestration ya ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Sambaza damoni. Deploy daemon (DaemonConfig) ni daemoni ya orchestration ya ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Daemon chaguo-msingi haipatikani. Tafadhali angalia usanidi wake", "ExApp init timeout (minutes)" : "Muda wa kuanzisha ExApp (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Muda wa mchakato wa uanzishaji wa ExApp umekwisha ambapo AppAPI itatia alama kuwa imeshindwa", "ExApp init timeout" : "Muda wa ExApp umekwisha", "ExApp container restart policy" : "Sera ya kuanzisha upya kontena la ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Chagua sera ya kuanzisha upya kontena, k.m. 'daima' ili kuhakikisha ExApps itakuwa inaendeshwa baada ya kuwasha tena seva ya daemoni", + "This settings changes are effective only for newly created containers" : "Mabadiliko haya ya mipangilio yanafaa tu kwa vyombo vipya vilivyoundwa", + "Deploy daemon deletion confirmation" : "Deploy daemon deletion confirmation", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Je, una uhakika unataka kufuta daemoni ya kutumia \"{name}\"?", + "Remove all ExApps installed on this daemon" : "Ondoa ExApps zote zilizosakinishwa kwenye daemoni hii", "Cancel" : "Ghairi", "Delete" : "Futa", + "A \"manual-install\" deploy daemon cannot be set as default" : "Daemon ya \"kusakinisha kwa mikono\" haiwezi kuwekwa kama chaguo-msingi", + "Failed to save admin settings. Check the logs" : "Imeshindwa kuhifadhi mipangilio ya msimamizi. Angalia kumbukumbu", "Password confirmation failed" : "Uthibitishaji wa nenosiri umeshindikana", "Default" : "Chaguo msingi", "Set as default" : "Weka kama chaguomsingi", @@ -42,23 +54,35 @@ "Docker registries" : "Usajili wa Docker", "Edit" : "Hariri", "Daemon connection successful" : "Muunganisho wa Daemon umefaulu", + "Failed to connect to the daemon. Check the logs" : "Imeshindwa kuunganisha kwenye daemon. Angalia kumbukumbu", + "Failed to check connection to the daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye daemon. Angalia kumbukumbu", "Unlimited" : "Isiyo na kikomo", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPUs"], + "Deploy daemon configuration" : "Tumia usanidi wa daemoni", + "Deploy daemon configuration details" : "Tumia maelezo ya usanidi wa daemoni", + "Deploy daemon" : "Weka daemon", "Default daemon. ExApps will be installed on it" : "Daemon chaguo-msingi. ExApps itasakinishwa juu yake", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Daemon ya \"Usakinishaji wa Mwongozo\" kawaida hutumiwa kwa usanidi. Haiwezi kuwekwa kama daemoni chaguo-msingi.", "ExApps installed" : "ExApps imesakinishwa", "Name" : "Jina", "Protocol" : "Itifaki", "Host" : "Mwenyeji", "ExApp direct communication (FRP disabled)" : "Mawasiliano ya moja kwa moja ya ExApp (FRP imezimwa)", + "Deploy options" : "Weka chaguzi", "Docker network" : "Mtandao wa Docker ", "Nextcloud URL" : "URL ya Nextcloud ", "HaProxy password" : "Nenosiri la HaProxy", + "GPU support" : "Usaidizi wa GPU ", + "Computation device" : "Kifaa cha kuhesabu", "Memory limit" : "Kikomo cha kumbukumbu", "CPU limit" : "Kikomo cha CPU", "Additional options" : "Chaguzi za ziada", "Check connection" : "Angalia muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", + "Register a custom one or configure one from the available templates" : "Sajili maalum au usanidi kutoka kwa violezo vinavyopatikana", + "Register daemon" : "Sajili daemon", "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Angalia ikiwa ExApp imesajiliwa katika Nextcloud kabla ya kupelekwa", "Image pull" : "Kuvuta picha", @@ -74,32 +98,53 @@ "Only if ExApp container is preset" : "Ikiwa tu chombo cha ExApp kimewekwa mapema", "Deploy test passed successfully!" : "Jaribio la kutuma limefaulu!", "Deploy test failed at step \"{step}\"" : "Jaribio la kusambaza limeshindwa kwa hatua \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI itajaribu kusakinisha kiunzi kidogo cha ExApp ili kuangalia kama daemoni imesanidiwa ipasavyo na hatua za kupeleka zimefaulu.", + "The following deploy test checks must succeed:" : "Ukaguzi ufuatao wa kupeleka lazima ufaulu:", "More information" : "Taarifa zaidi", "Download ExApp logs" : "Pakua kumbukumbu za ExApp", + "Remove the test ExApp" : "Ondoa jaribio la ExApp", + "Start the deploy test" : "Anza jaribio la kusambaza", + "Stop the deploy test" : "Acha jaribio la kusambaza", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "ExApp ya majaribio haijasajiliwa na kontena lake huondolewa kwenye \"Sitisha jaribio la kusambaza\"", "Please enter a registry domain" : "Tafadhali ingiza kikoa cha usajili", + "\"From\" cannot be \"local\"" : "\"Kutoka\" haiwezi kuwa \"ndani\"", "This registry mapping already exists" : "Upangaji huu wa usajili tayari upo", + "\"From\" and \"To\" cannot be the same" : "\"Kutoka\" na \"Kwa\" haziwezi kuwa sawa", "Docker registry mapping added" : "Uwekaji ramani wa usajili wa Docker umeongezwa", "Error adding Docker registry mapping" : "Hitilafu katika kuongeza ramani ya usajili wa Docker", "Docker registry mapping removed" : "Ramani ya Usajili wa Docker imeondolewa", "Error removing Docker registry mapping" : "Hitilafu katika kuondoa ramani ya usajili wa Docker", "Override Docker registries" : "Badilisha rejista za Docker", + "Configure Docker registry override mappings for the selected daemon." : "Sanidi Usajili wa Docker kubatilisha upangaji wa daemon iliyochaguliwa.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Sajili ya chanzo inayolingana katika maelezo ya ExApp.xml itafutwa wakati wa kupeleka (hatua ya kuvuta picha).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Hii ni muhimu ikiwa unataka kutumia sajili maalum ya Docker, kwa mfano, kutumia sajili ya kibinafsi ya Docker, au kutumia sajili tofauti ya Docker kwa majaribio.", "Image pull will be skipped" : "Uvutaji wa picha utarukwa", "Remove" : "Ondoa", + "No custom Docker registries are registered" : "Hakuna sajili maalum za Docker zilizosajiliwa", "Add registry override mapping" : "Ongeza ramani ya ubatilishaji wa usajili", "From" : "Tangu/ kutoka", "registry URL (e.g. ghcr.io)" : "URL ya usajili (e.g. ghcr.io)", "To" : "Mpaka/ hadi", "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", + "Hostname used by Nextcloud to access the ExApps" : "Jina la mwenyeji linalotumiwa na Nextcloud kufikia ExApps", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Hii haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la Docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Nenosiri la uthibitishaji la Soketi ya Wakala wa AppAPI Docker", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Mabadiliko yanafaa kwa ExApps mpya zilizosakinishwa pekee. Kwa ExApps zilizopo, vyombo vya Docker vinapaswa kuundwa upya ili kutumia maadili mapya ya mipangilio.", + "The Docker network that the deployed ExApps will use." : "Mtandao wa Docker ambao ExApps iliyotumwa itatumia.", + "The URL should start with http:// or https://" : "URL inapaswa kuanza na http:// au https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Kwa daemoni ya HTTPS, URL ya Nextcloud inapaswa kuwa HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Vifaa vyote vinavyopatikana vya GPU kwenye seva pangishi ya daemon vinahitaji kuwashwa katika vyombo vya ExApp na Docker.", "DaemonConfig successfully registered" : "DaemonConfig imesajiliwa", "Failed to register DaemonConfig. Check the logs" : "Imeshindwa kusajili DaemonConfig. Angalia kumbukumbu", "DaemonConfig successfully updated" : "DaemonConfig imesasishwa", "Failed to update DaemonConfig. Check the logs" : "Imeshindwa kusasisha DaemonConfig. Angalia kumbukumbu", "Failed to connect to Daemon. Check the logs" : "Imeshindwa kuunganisha kwa Daemon. Angalia kumbukumbu", "Failed to check connection to Daemon. Check the logs" : "Imeshindwa kuangalia muunganisho kwenye Daemon. Angalia kumbukumbu", + "Edit the deploy daemon" : "Hariri daemon ya kusambaza", + "Register a new deploy daemon" : "Register a new deploy daemon", "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", "Daemon registration form" : "Fomu ya usajili ya Daemon", "Display name" : "Jina la kuonyesha", diff --git a/l10n/ta.js b/l10n/ta.js deleted file mode 100644 index d84a318c..00000000 --- a/l10n/ta.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "ரத்து செய்", - "Delete" : "நீக்குக", - "Edit" : "தொகுக்க", - "Name" : "பெயர்", - "Host" : "ஓம்புனர்", - "Remove" : "அகற்றுக", - "Add" : "சேர்க்க", - "Save" : "சேமிக்க ", - "Actions" : "செயல்கள்", - "Type" : "வகை", - "Documentation" : "ஆவணமாக்கல்", - "Details" : "விவரங்கள்", - "Enable" : "இயலுமைப்படுத்துக", - "Disable" : "இயலுமைப்ப" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ta.json b/l10n/ta.json deleted file mode 100644 index 6f420fe6..00000000 --- a/l10n/ta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Cancel" : "ரத்து செய்", - "Delete" : "நீக்குக", - "Edit" : "தொகுக்க", - "Name" : "பெயர்", - "Host" : "ஓம்புனர்", - "Remove" : "அகற்றுக", - "Add" : "சேர்க்க", - "Save" : "சேமிக்க ", - "Actions" : "செயல்கள்", - "Type" : "வகை", - "Documentation" : "ஆவணமாக்கல்", - "Details" : "விவரங்கள்", - "Enable" : "இயலுமைப்படுத்துக", - "Disable" : "இயலுமைப்ப" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 4be930b9..5a170c56 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project 是一個令人興奮的計劃,旨在通過使用 Docker 容器來徹底改變 Nextcloud 應用程序的開發方式。這樣可以提供更大的編程語言選擇,並允許將計算密集型任務卸載到不同的伺服器上。", + "Deploy daemons" : "部署幕後程式", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Default deploy daemon is not accessible. Please check its configuration" : "預設部署幕後程式無法使用。請檢查設定", "ExApp init timeout (minutes)" : "外部應用程式初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部應用程式初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "外部應用程式初始化逾時", "ExApp container restart policy" : "外部應用程式容器重新啟動政策", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "選擇容器重新啟動政策,例如「一律」確保 ExApps 將會在幕後程式伺服器重新啟動後執行", + "This settings changes are effective only for newly created containers" : "此設定變更僅反映在新建立的容器中", + "Deploy daemon deletion confirmation" : "部署幕後程式刪除確認", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "您確定您想要刪除「{name}」部署幕後程式嗎?", + "Remove all ExApps installed on this daemon" : "移除所有安裝在此幕後程式上的 ExApps", "Cancel" : "取消", "Delete" : "刪除", + "A \"manual-install\" deploy daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin settings. Check the logs" : "儲存管理設定失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "默認", "Set as default" : "設定為默認值", @@ -44,10 +56,17 @@ OC.L10N.register( "Docker registries" : "Docker 註冊表", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to the daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to the daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} 個 CPU"], + "Deploy daemon configuration" : "部署幕後程式設定", + "Deploy daemon configuration details" : "部署幕後程式設定詳細資訊", + "Deploy daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "「手動安裝」幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名字", "Protocol" : "協定", @@ -57,11 +76,15 @@ OC.L10N.register( "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPU support" : "GPU 支援", + "Computation device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "附加選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", + "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -77,48 +100,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "僅當 ExApp 容器已預設時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI 將嘗試安裝小型 ExApps 骨架來檢查幕後程式是否正確設定以及部署步驟是否成功。", + "The following deploy test checks must succeed:" : "以下部署測試檢查必須成功:", "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 記錄", + "Remove the test ExApp" : "移除測試 ExApp", + "Start the deploy test" : "開始部署測試", + "Stop the deploy test" : "停止部署測試", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "測試 ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Please enter a registry domain" : "請輸入註冊表域名", + "\"From\" cannot be \"local\"" : "「From」不能是「local」", "This registry mapping already exists" : "此註冊表映射已存在", + "\"From\" and \"To\" cannot be the same" : "「From」與「To」不能相同", "Docker registry mapping added" : "已添加 Docker 註冊表映射", "Error adding Docker registry mapping" : "添加 Docker 註冊表映射時出錯", "Docker registry mapping removed" : "已移除了 Docker 註冊表映射", "Error removing Docker registry mapping" : "移除 Docker 註冊表映射時出錯", "Override Docker registries" : "覆蓋 Docker 註冊表", + "Configure Docker registry override mappings for the selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", + "No custom Docker registries are registered" : "未設定自訂的 Docker registry", "Add registry override mapping" : "添加註冊表覆蓋映射", "From" : "從", "registry URL (e.g. ghcr.io)" : "註冊表 URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "註冊表 URL(例如 docker.io)", "Add" : "添加", + "Hostname used by Nextcloud to access the ExApps" : "Nextcloud 用來存取 ExApps 的主機名稱", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 Docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", + "A daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "變更僅對新安裝的 ExApps 有效。對於現有的 ExApps,應重新建立 Docker 容器以套用新的設定值。", + "The Docker network that the deployed ExApps will use." : "部署的 ExApps 將要使用的 Docker 網路。", + "The URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "所有位於幕後程式主機上的可用 GPU 裝置,皆需透過 Docker 在 ExApp 容器中啟用。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Edit the deploy daemon" : "編輯部署幕後程式", + "Register a new deploy daemon" : "註冊新的部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", + "Select a daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", + "Unique deploy daemon name" : "獨一無二的部署幕後程式名稱", + "Unique deploy Daemon name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", + "Select the daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用密鑰", + "The password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Set this daemon as the default one" : "將此幕後程式設定為預設", + "Set as the default daemon" : "設定為預設幕後程式", + "Enable HTTPS" : "啟用 HTTPS", + "Show deploy options" : "顯示部署選項", + "Hide deploy options" : "隱藏部署選項", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "在「Docker network」區塊中定義的網路裡,ExApp 應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", "Add additional option" : "添加附加選項", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 845e2b91..1c386a39 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "The AppAPI Project 是一個令人興奮的計劃,旨在通過使用 Docker 容器來徹底改變 Nextcloud 應用程序的開發方式。這樣可以提供更大的編程語言選擇,並允許將計算密集型任務卸載到不同的伺服器上。", + "Deploy daemons" : "部署幕後程式", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Default deploy daemon is not accessible. Please check its configuration" : "預設部署幕後程式無法使用。請檢查設定", "ExApp init timeout (minutes)" : "外部應用程式初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "外部應用程式初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "外部應用程式初始化逾時", "ExApp container restart policy" : "外部應用程式容器重新啟動政策", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "選擇容器重新啟動政策,例如「一律」確保 ExApps 將會在幕後程式伺服器重新啟動後執行", + "This settings changes are effective only for newly created containers" : "此設定變更僅反映在新建立的容器中", + "Deploy daemon deletion confirmation" : "部署幕後程式刪除確認", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "您確定您想要刪除「{name}」部署幕後程式嗎?", + "Remove all ExApps installed on this daemon" : "移除所有安裝在此幕後程式上的 ExApps", "Cancel" : "取消", "Delete" : "刪除", + "A \"manual-install\" deploy daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin settings. Check the logs" : "儲存管理設定失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "默認", "Set as default" : "設定為默認值", @@ -42,10 +54,17 @@ "Docker registries" : "Docker 註冊表", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to the daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to the daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} 個 CPU"], + "Deploy daemon configuration" : "部署幕後程式設定", + "Deploy daemon configuration details" : "部署幕後程式設定詳細資訊", + "Deploy daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApps 將會安裝在其上", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "「手動安裝」幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名字", "Protocol" : "協定", @@ -55,11 +74,15 @@ "Docker network" : "Docker 網絡", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPU support" : "GPU 支援", + "Computation device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "附加選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", + "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -75,48 +98,85 @@ "Only if ExApp container is preset" : "僅當 ExApp 容器已預設時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試失敗於步驟「{step}」", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI 將嘗試安裝小型 ExApps 骨架來檢查幕後程式是否正確設定以及部署步驟是否成功。", + "The following deploy test checks must succeed:" : "以下部署測試檢查必須成功:", "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 記錄", + "Remove the test ExApp" : "移除測試 ExApp", + "Start the deploy test" : "開始部署測試", + "Stop the deploy test" : "停止部署測試", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "測試 ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Please enter a registry domain" : "請輸入註冊表域名", + "\"From\" cannot be \"local\"" : "「From」不能是「local」", "This registry mapping already exists" : "此註冊表映射已存在", + "\"From\" and \"To\" cannot be the same" : "「From」與「To」不能相同", "Docker registry mapping added" : "已添加 Docker 註冊表映射", "Error adding Docker registry mapping" : "添加 Docker 註冊表映射時出錯", "Docker registry mapping removed" : "已移除了 Docker 註冊表映射", "Error removing Docker registry mapping" : "移除 Docker 註冊表映射時出錯", "Override Docker registries" : "覆蓋 Docker 註冊表", + "Configure Docker registry override mappings for the selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", + "No custom Docker registries are registered" : "未設定自訂的 Docker registry", "Add registry override mapping" : "添加註冊表覆蓋映射", "From" : "從", "registry URL (e.g. ghcr.io)" : "註冊表 URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "註冊表 URL(例如 docker.io)", "Add" : "添加", + "Hostname used by Nextcloud to access the ExApps" : "Nextcloud 用來存取 ExApps 的主機名稱", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 Docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", + "A daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "變更僅對新安裝的 ExApps 有效。對於現有的 ExApps,應重新建立 Docker 容器以套用新的設定值。", + "The Docker network that the deployed ExApps will use." : "部署的 ExApps 將要使用的 Docker 網路。", + "The URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "所有位於幕後程式主機上的可用 GPU 裝置,皆需透過 Docker 在 ExApp 容器中啟用。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Edit the deploy daemon" : "編輯部署幕後程式", + "Register a new deploy daemon" : "註冊新的部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", + "Select a daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", + "Unique deploy daemon name" : "獨一無二的部署幕後程式名稱", + "Unique deploy Daemon name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", + "Select the daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用密鑰", + "The password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Set this daemon as the default one" : "將此幕後程式設定為預設", + "Set as the default daemon" : "設定為預設幕後程式", + "Enable HTTPS" : "啟用 HTTPS", + "Show deploy options" : "顯示部署選項", + "Hide deploy options" : "隱藏部署選項", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "在「Docker network」區塊中定義的網路裡,ExApp 應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", "Add additional option" : "添加附加選項", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 0d93983d..0e092d5b 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI 計畫是一項令人振奮的計畫,旨在透過使用 docker 容器,徹底改變 Nextcloud 應用程式的開發方式。允許更多的程式語言選擇,並允許將運算密集型的任務移轉到不同的伺服器。", + "Deploy daemons" : "部署幕後程式", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Default deploy daemon is not accessible. Please check its configuration" : "預設部署幕後程式無法使用。請檢查設定", "ExApp init timeout (minutes)" : "ExApp 初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp 初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "ExApp 初始化逾時", "ExApp container restart policy" : "ExApp 容器重新啟動政策", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "選擇容器重新啟動政策,例如「一律」確保 ExApps 將會在幕後程式伺服器重新啟動後執行", + "This settings changes are effective only for newly created containers" : "此設定變更僅反映在新建立的容器中", + "Deploy daemon deletion confirmation" : "部署幕後程式刪除確認", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "您確定您想要刪除「{name}」部署幕後程式嗎?", + "Remove all ExApps installed on this daemon" : "移除所有安裝在此幕後程式上的 ExApps", "Cancel" : "取消", "Delete" : "刪除", + "A \"manual-install\" deploy daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin settings. Check the logs" : "儲存管理設定失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "預設", "Set as default" : "設定為預設值", @@ -44,10 +56,17 @@ OC.L10N.register( "Docker registries" : "Docker registry", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to the daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to the daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} 個 CPU"], + "Deploy daemon configuration" : "部署幕後程式設定", + "Deploy daemon configuration details" : "部署幕後程式設定詳細資訊", + "Deploy daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "「手動安裝」幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名稱", "Protocol" : "協定", @@ -57,11 +76,15 @@ OC.L10N.register( "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPU support" : "GPU 支援", + "Computation device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "額外選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", + "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -77,48 +100,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試於「{step}」步驟失敗", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI 將嘗試安裝小型 ExApps 骨架來檢查幕後程式是否正確設定以及部署步驟是否成功。", + "The following deploy test checks must succeed:" : "以下部署測試檢查必須成功:", "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 紀錄檔", + "Remove the test ExApp" : "移除測試 ExApp", + "Start the deploy test" : "開始部署測試", + "Stop the deploy test" : "停止部署測試", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "測試 ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Please enter a registry domain" : "請輸入 registry 網域", + "\"From\" cannot be \"local\"" : "「From」不能是「local」", "This registry mapping already exists" : "已存在此 registry 對映", + "\"From\" and \"To\" cannot be the same" : "「From」與「To」不能相同", "Docker registry mapping added" : "已新增 Docker registry 對映", "Error adding Docker registry mapping" : "新增 Docker registry 對映時發生錯誤", "Docker registry mapping removed" : "已移除 Docker registry 對映", "Error removing Docker registry mapping" : "移除 Docker registry 對映時發生錯誤", "Override Docker registries" : "覆寫 Docker registry", + "Configure Docker registry override mappings for the selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂的 Docker registry,例如使用私人 Docker registry,或使用不同的 Docker registry 進行測試,這將非常有用。", "Image pull will be skipped" : "將會略過映像檔拉取", "Remove" : "移除", + "No custom Docker registries are registered" : "未設定自訂的 Docker registry", "Add registry override mapping" : "新增 registry 覆寫對映", "From" : "從", "registry URL (e.g. ghcr.io)" : "registry URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "registry URL(例如 docker.io)", "Add" : "新增", + "Hostname used by Nextcloud to access the ExApps" : "Nextcloud 用來存取 ExApps 的主機名稱", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 Docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", + "A daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "變更僅對新安裝的 ExApps 有效。對於現有的 ExApps,應重新建立 Docker 容器以套用新的設定值。", + "The Docker network that the deployed ExApps will use." : "部署的 ExApps 將要使用的 Docker 網路。", + "The URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "所有位於幕後程式主機上的可用 GPU 裝置,皆需透過 Docker 在 ExApp 容器中啟用。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Edit the deploy daemon" : "編輯部署幕後程式", + "Register a new deploy daemon" : "註冊新的部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", + "Select a daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", + "Unique deploy daemon name" : "獨一無二的部署幕後程式名稱", + "Unique deploy Daemon name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", + "Select the daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用金鑰", + "The password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Set this daemon as the default one" : "將此幕後程式設定為預設", + "Set as the default daemon" : "設定為預設幕後程式", + "Enable HTTPS" : "啟用 HTTPS", + "Show deploy options" : "顯示部署選項", + "Hide deploy options" : "隱藏部署選項", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "在「Docker network」區塊中定義的網路裡,ExApp 應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", "Add additional option" : "新增其他選項", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index d77ac22b..0c5c46be 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "AppAPI 部署幕後程式", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI 計畫是一項令人振奮的計畫,旨在透過使用 docker 容器,徹底改變 Nextcloud 應用程式的開發方式。允許更多的程式語言選擇,並允許將運算密集型的任務移轉到不同的伺服器。", + "Deploy daemons" : "部署幕後程式", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "部署幕後程式。部署幕後程式 (DaemonConfig) 是 ExApps 的協作幕後程式。", + "Default deploy daemon is not accessible. Please check its configuration" : "預設部署幕後程式無法使用。請檢查設定", "ExApp init timeout (minutes)" : "ExApp 初始化逾時(分鐘)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp 初始化流程逾時,在此之後 AppAPI 將會標記其為失敗", "ExApp init timeout" : "ExApp 初始化逾時", "ExApp container restart policy" : "ExApp 容器重新啟動政策", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "選擇容器重新啟動政策,例如「一律」確保 ExApps 將會在幕後程式伺服器重新啟動後執行", + "This settings changes are effective only for newly created containers" : "此設定變更僅反映在新建立的容器中", + "Deploy daemon deletion confirmation" : "部署幕後程式刪除確認", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "您確定您想要刪除「{name}」部署幕後程式嗎?", + "Remove all ExApps installed on this daemon" : "移除所有安裝在此幕後程式上的 ExApps", "Cancel" : "取消", "Delete" : "刪除", + "A \"manual-install\" deploy daemon cannot be set as default" : "「手動安裝」部署幕後程式無法設定為預設值", + "Failed to save admin settings. Check the logs" : "儲存管理設定失敗。請檢查紀錄檔", "Password confirmation failed" : "密碼確認失敗", "Default" : "預設", "Set as default" : "設定為預設值", @@ -42,10 +54,17 @@ "Docker registries" : "Docker registry", "Edit" : "編輯", "Daemon connection successful" : "幕後程式連線成功", + "Failed to connect to the daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", + "Failed to check connection to the daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", "Unlimited" : "無限制", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} 個 CPU"], + "Deploy daemon configuration" : "部署幕後程式設定", + "Deploy daemon configuration details" : "部署幕後程式設定詳細資訊", + "Deploy daemon" : "部署幕後程式", "Default daemon. ExApps will be installed on it" : "預設幕後程式。ExApp 將會安裝在其之上", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "「手動安裝」幕後程式通常用於開發。其不能被設定為預設幕後程式。", "ExApps installed" : "已安裝 ExApp", "Name" : "名稱", "Protocol" : "協定", @@ -55,11 +74,15 @@ "Docker network" : "Docker 網路", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy 密碼", + "GPU support" : "GPU 支援", + "Computation device" : "計算裝置", "Memory limit" : "記憶體限制", "CPU limit" : "CPU 限制", "Additional options" : "額外選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", + "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", "Check if the ExApp is registered in Nextcloud before deployment" : "部署前檢查 ExApp 是否已在 Nextcloud 中註冊", "Image pull" : "拉取映像檔", @@ -75,48 +98,85 @@ "Only if ExApp container is preset" : "僅當 ExApp 容器已預設設定時", "Deploy test passed successfully!" : "部署測試成功通過!", "Deploy test failed at step \"{step}\"" : "部署測試於「{step}」步驟失敗", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI 將嘗試安裝小型 ExApps 骨架來檢查幕後程式是否正確設定以及部署步驟是否成功。", + "The following deploy test checks must succeed:" : "以下部署測試檢查必須成功:", "More information" : "更多資訊", "Download ExApp logs" : "下載 ExApp 紀錄檔", + "Remove the test ExApp" : "移除測試 ExApp", + "Start the deploy test" : "開始部署測試", + "Stop the deploy test" : "停止部署測試", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "測試 ExApp 已被取消註冊,其容器已在「停止部署測試」中移除", "Please enter a registry domain" : "請輸入 registry 網域", + "\"From\" cannot be \"local\"" : "「From」不能是「local」", "This registry mapping already exists" : "已存在此 registry 對映", + "\"From\" and \"To\" cannot be the same" : "「From」與「To」不能相同", "Docker registry mapping added" : "已新增 Docker registry 對映", "Error adding Docker registry mapping" : "新增 Docker registry 對映時發生錯誤", "Docker registry mapping removed" : "已移除 Docker registry 對映", "Error removing Docker registry mapping" : "移除 Docker registry 對映時發生錯誤", "Override Docker registries" : "覆寫 Docker registry", + "Configure Docker registry override mappings for the selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂的 Docker registry,例如使用私人 Docker registry,或使用不同的 Docker registry 進行測試,這將非常有用。", "Image pull will be skipped" : "將會略過映像檔拉取", "Remove" : "移除", + "No custom Docker registries are registered" : "未設定自訂的 Docker registry", "Add registry override mapping" : "新增 registry 覆寫對映", "From" : "從", "registry URL (e.g. ghcr.io)" : "registry URL(例如 ghcr.io)", "To" : "至", "registry URL (e.g. docker.io)" : "registry URL(例如 docker.io)", "Add" : "新增", + "Hostname used by Nextcloud to access the ExApps" : "Nextcloud 用來存取 ExApps 的主機名稱", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} 可用的主機名稱(與連接埠)。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可,例如:{host}。", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} 可用的主機名稱(與連接埠)或路徑。這不需要是公開主機,只要是 Nextcloud 伺服器可以存取的主機即可。也可以是 Docker socket 的路徑(例如 nextcloud-appapi-dsp:2375、/var/run/docker.sock)", + "A daemon with this name already exists" : "同名幕後程式已存在", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP 容器通訊的祕密金鑰 (HP_SHARED_KEY)。", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket Proxy 驗證密碼", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "變更僅對新安裝的 ExApps 有效。對於現有的 ExApps,應重新建立 Docker 容器以套用新的設定值。", + "The Docker network that the deployed ExApps will use." : "部署的 ExApps 將要使用的 Docker 網路。", + "The URL should start with http:// or https://" : "URL 應以 http:// 或 https:// 開頭", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "對於 HTTPS 幕後程式,Nextcloud URL 應該為 HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "所有位於幕後程式主機上的可用 GPU 裝置,皆需透過 Docker 在 ExApp 容器中啟用。", "DaemonConfig successfully registered" : "DaemonConfig 成功註冊", "Failed to register DaemonConfig. Check the logs" : "註冊 DaemonConfig 失敗。請檢查紀錄檔", "DaemonConfig successfully updated" : "DaemonConfig 成功更新", "Failed to update DaemonConfig. Check the logs" : "更新 DaemonConfig 失敗。請檢查紀錄檔", "Failed to connect to Daemon. Check the logs" : "連線至幕後程式失敗。請檢查紀錄檔", "Failed to check connection to Daemon. Check the logs" : "檢查至幕後程式的連線失敗。請檢查紀錄檔", + "Edit the deploy daemon" : "編輯部署幕後程式", + "Register a new deploy daemon" : "註冊新的部署幕後程式", "Daemon configuration template" : "幕後程式設定範本", + "Select a daemon configuration template" : "選取幕後程式設定範本", "Daemon registration form" : "幕後程式註冊表單", + "Unique deploy daemon name" : "獨一無二的部署幕後程式名稱", + "Unique deploy Daemon name" : "獨一無二的部署幕後程式名稱", "Display name" : "顯示名稱", "Deployment method" : "部署方法", + "Select the daemon deploy method" : "選取幕後程式部署方法", "HaRP host" : "HaRP 主機", "Daemon host" : "幕後程式主機", "HaRP shared key" : "HaRP 共用金鑰", + "The password must be at least 12 characters long" : "密碼必須至少 12 個字元長", + "Set this daemon as the default one" : "將此幕後程式設定為預設", + "Set as the default daemon" : "設定為預設幕後程式", + "Enable HTTPS" : "啟用 HTTPS", + "Show deploy options" : "顯示部署選項", + "Hide deploy options" : "隱藏部署選項", "Enable HaRP" : "啟用 HaRP", "FRP server address" : "FRP 伺服器位址", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "在「Docker network」區塊中定義的網路裡,ExApp 應該可以連線到的 FRP 伺服器位址(主機:連接埠)。", "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", "Add additional option" : "新增其他選項", From 03adfc4e0be5a519a7c1ab8af4639b850fadba2c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 20 Nov 2025 00:20:44 +0000 Subject: [PATCH 215/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/ga.js | 61 ++++++++++ l10n/ga.json | 61 ++++++++++ l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/lo.js | 294 +++++++++++++++++++++++++++++++++++++++++++++++- l10n/lo.json | 294 +++++++++++++++++++++++++++++++++++++++++++++++- l10n/pt_BR.js | 21 ++++ l10n/pt_BR.json | 21 ++++ l10n/sw.js | 19 +++- l10n/sw.json | 19 +++- l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 20 files changed, 790 insertions(+), 12 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index 683de8a4..c045c799 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "No Deploy daemons are registered" : "Es sind keine Bereitstellungs-Daemons registriert.", "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", diff --git a/l10n/de.json b/l10n/de.json index 2151c278..8bac69b5 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -81,6 +81,7 @@ "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "No Deploy daemons are registered" : "Es sind keine Bereitstellungs-Daemons registriert.", "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 8e6d8e50..6914a389 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "No Deploy daemons are registered" : "Es sind keine Bereitstellungs-Daemons registriert.", "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 1db3d827..95536046 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -81,6 +81,7 @@ "Additional options" : "Zusatzoptionen", "Check connection" : "Verbindung prüfen", "Registered Deploy daemons list" : "Liste von registrierten Bereitstellungsdaemons", + "No Deploy daemons are registered" : "Es sind keine Bereitstellungs-Daemons registriert.", "Register a custom one or configure one from the available templates" : "Eine benutzerdefinierte Vorlage registrieren oder aus einer der verfügbaren Vorlagen einrichten", "Register daemon" : "Daemon registrieren", "Register ExApp in Nextcloud" : "ExApp in Nextcloud registrieren", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 25f22e7d..912d3896 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "Additional options", "Check connection" : "Check connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", + "No Deploy daemons are registered" : "No Deploy daemons are registered", "Register a custom one or configure one from the available templates" : "Register a custom one or configure one from the available templates", "Register daemon" : "Register daemon", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 14375fd9..375d7f1e 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -81,6 +81,7 @@ "Additional options" : "Additional options", "Check connection" : "Check connection", "Registered Deploy daemons list" : "Registered Deploy daemons list", + "No Deploy daemons are registered" : "No Deploy daemons are registered", "Register a custom one or configure one from the available templates" : "Register a custom one or configure one from the available templates", "Register daemon" : "Register daemon", "Register ExApp in Nextcloud" : "Register ExApp in Nextcloud", diff --git a/l10n/ga.js b/l10n/ga.js index 98ca923d..89481f37 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "Deamhan imscaradh AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Níl an daemon imscartha réamhshocraithe AppAPI ag úsáid HaRP. Smaoinigh, le do thoil, ar aistriú go HaRP le haghaidh feidhmíocht níos fearr.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige réabhlóid a dhéanamh ar an gcaoi a bhforbraítear feidhmchláir do Nextcloud trí úsáid a bhaint as coimeádáin docker. Rud a cheadaíonn rogha níos mó teangacha ríomhchlárúcháin agus a ligeann do thascanna costasacha ó thaobh ríomhaireachta de a dhíluchtú chuig freastalaí difriúil.", + "Deploy daemons" : "Imscaradh deamhain", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is daemon orchestrúcháin ExApps é daemon imscartha (DaemonConfig).", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deamhain imscartha. Is deamhan orchestrúcháin ExApps é deamhan imscartha (DaemonConfig).", + "Default deploy daemon is not accessible. Please check its configuration" : "Níl rochtain ar an daemon imscartha réamhshocraithe. Seiceáil a chumraíocht le do thoil.", "ExApp init timeout (minutes)" : "Teorainn ama init ExApp (nóiméid)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Teorainn ama phróiseas tosaithe ExApp agus marcálfaidh AppAPI é mar theip ar ina dhiaidh sin", "ExApp init timeout" : "Teorainn ama init ExApp", "ExApp container restart policy" : "Beartas atosú coimeádán ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Roghnaigh an polasaí atosaithe coimeádáin, e.g. 'i gcónaí' chun a chinntiú go mbeidh ExApps ag rith tar éis atosú freastalaí daemon", + "This settings changes are effective only for newly created containers" : "Ní bheidh na hathruithe socruithe seo éifeachtach ach amháin maidir le coimeádáin nua-chruthaithe", + "Deploy daemon deletion confirmation" : "Deimhniú scriosta daemon a imscaradh", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "An bhfuil tú cinnte gur mian leat an daemon imscartha \"{name}\" a scriosadh?", + "Remove all ExApps installed on this daemon" : "Bain gach ExApp atá suiteáilte ar an daemon seo", "Cancel" : "Cealaigh", "Delete" : "Scrios", + "A \"manual-install\" deploy daemon cannot be set as default" : "Ní féidir daemon imscartha \"suiteáil láimhe\" a shocrú mar réamhshocrú", + "Failed to save admin settings. Check the logs" : "Theip ar shocruithe an riarthóra a shábháil. Seiceáil na logaí.", "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", @@ -44,10 +56,17 @@ OC.L10N.register( "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", "Daemon connection successful" : "D'éirigh le nasc deamhan", + "Failed to connect to the daemon. Check the logs" : "Theip ar cheangal leis an daemon. Seiceáil na logaí.", + "Failed to check connection to the daemon. Check the logs" : "Theip ar an nasc leis an daemon a sheiceáil. Seiceáil na logaí.", "Unlimited" : "Gan teorainn", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} LAP","{n} LAPanna","{n} LAPanna","{n} LAPanna","{n} LAPanna"], + "Deploy daemon configuration" : "Cumraíocht daemon a imscaradh", + "Deploy daemon configuration details" : "Sonraí cumraíochta daemon a imscaradh", + "Deploy daemon" : "Imscaradh deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "De ghnáth, úsáidtear an daemon \"Suiteáil láimhe\" le haghaidh forbartha. Ní féidir é a shocrú mar an daemon réamhshocraithe.", "ExApps installed" : "ExApps suiteáilte", "Name" : "Ainm", "Protocol" : "Prótacal", @@ -57,11 +76,16 @@ OC.L10N.register( "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Pasfhocal HaProxy", + "GPU support" : "Tacaíocht GPU", + "Computation device" : "Gléas ríomhaireachta", "Memory limit" : "Teorainn chuimhne", "CPU limit" : "Teorainn LAP", "Additional options" : "Roghanna breise", "Check connection" : "Seiceáil an nasc", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", + "No Deploy daemons are registered" : "Níl aon deamhain imscaradh cláraithe", + "Register a custom one or configure one from the available templates" : "Cláraigh ceann saincheaptha nó cumraigh ceann ó na teimpléid atá ar fáil", + "Register daemon" : "Daemon cláraithe", "Register ExApp in Nextcloud" : "Cláraigh ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Seiceáil an bhfuil an ExApp cláraithe in Nextcloud roimh imscaradh", "Image pull" : "Tarraingt íomhá", @@ -77,48 +101,85 @@ OC.L10N.register( "Only if ExApp container is preset" : "Ach amháin má tá coimeádán ExApp réamhshocraithe", "Deploy test passed successfully!" : "D'éirigh leis an triail a imscaradh!", "Deploy test failed at step \"{step}\"" : "Theip ar an tástáil a chur i bhfeidhm ag céim \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "Déanfaidh AppAPI iarracht ExApp cnámharlaigh beag a shuiteáil chun a sheiceáil go bhfuil an daemon cumraithe i gceart agus go bhfuil na céimeanna imscartha rathúil.", + "The following deploy test checks must succeed:" : "Ní mór go n-éireoidh leis na seiceálacha tástála imscartha seo a leanas:", "More information" : "Tuilleadh eolais", "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", + "Remove the test ExApp" : "Bain an ExApp tástála", + "Start the deploy test" : "Tosaigh an tástáil imscartha", + "Stop the deploy test" : "Stop an tástáil imscartha", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Tá an ExApp tástála neamhchláraithe agus baintear a choimeádán nuair a chuirtear \"Stop an tástáil imscartha\" ar siúl.", "Please enter a registry domain" : "Cuir isteach fearann ​​clárlainne", + "\"From\" cannot be \"local\"" : "Ní féidir le \"Ó\" a bheith \"áitiúil\"", "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", + "\"From\" and \"To\" cannot be the same" : "Ní féidir le \"Ó\" agus \"Chuig\" a bheith mar an gcéanna", "Docker registry mapping added" : "Mapáil chlárlainne Docker curtha leis", "Error adding Docker registry mapping" : "Earráid ag cur mapáil chlárlainne Docker leis", "Docker registry mapping removed" : "Baineadh mapáil chlárlainne Docker", "Error removing Docker registry mapping" : "Earráid agus mapáil chlárlainne Docker á baint", "Override Docker registries" : "Sáraigh clárlanna Docker", + "Configure Docker registry override mappings for the selected daemon." : "Cumraigh mapálacha sáraithe chlárlainne Docker don daemon roghnaithe.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Déanfar an chlárlann foinseach meaitseála in ExApp info.xml a athscríobh le linn an imscartha (céim tarraingthe íomhá).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Tá sé seo úsáideach más mian leat clárlann saincheaptha Docker a úsáid, mar shampla, chun clár Docker príobháideach a úsáid, nó chun clár Docker eile a úsáid le haghaidh tástála.", "Image pull will be skipped" : "Léireofar tarraingt íomhá", "Remove" : "Bain", + "No custom Docker registries are registered" : "Níl aon chlárlanna Docker saincheaptha cláraithe", "Add registry override mapping" : "Cuir léarscáiliú sáraithe na clárlainne leis", "From" : "Ó", "registry URL (e.g. ghcr.io)" : "URL na clárlainne (m.sh. ghcr.io)", "To" : "Chun", "registry URL (e.g. docker.io)" : "URL na clárlainne (m.sh. docker.io)", "Add" : "Cuir", + "Hostname used by Nextcloud to access the ExApps" : "Ainm óstach a úsáideann Nextcloud chun rochtain a fháil ar na ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An t-ainm óstach (agus an port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach óstach atá inrochtana ag freastalaí Nextcloud, m.sh. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An t-ainm óstach (agus an port) nó an cosán ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach óstach atá inrochtana ag freastalaí Nextcloud. Is féidir gur cosán chuig soicéad Docker é freisin. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Tá deamhan leis an ainm seo ann cheana féin", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "An eochair rúnda don chumarsáid coimeádáin HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Ní bheidh feidhm ag na hathruithe ach amháin maidir le ExApps atá suiteáilte le déanaí. I gcás ExApps atá ann cheana féin, ba cheart na coimeádáin Docker a athchruthú chun na luachanna socruithe nua a chur i bhfeidhm.", + "The Docker network that the deployed ExApps will use." : "An líonra Docker a úsáidfidh na ExApps imscartha.", + "The URL should start with http:// or https://" : "Ba chóir go dtosódh an URL le http:// nó https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "I gcás daemon HTTPS, ba chóir go mbeadh URL Nextcloud HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Ní mór do Docker gach feiste GPU atá ar fáil ar an óstach daemon a chumasú i gcoimeádáin ExApp.", "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", + "Edit the deploy daemon" : "Cuir an daemon imscartha in eagar", + "Register a new deploy daemon" : "Cláraigh daemon imscartha nua", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", + "Select a daemon configuration template" : "Roghnaigh teimpléad cumraíochta daemon", "Daemon registration form" : "Foirm chláraithe daemon", + "Unique deploy daemon name" : "Ainm uathúil ar an daemon imscartha", + "Unique deploy Daemon name" : "Ainm uathúil ar an Daemon imscartha", "Display name" : "Ainm taispeána", "Deployment method" : "Modh imscaradh", + "Select the daemon deploy method" : "Roghnaigh an modh imscartha daemon", "HaRP host" : "HaRP óstach", "Daemon host" : "Deamhan óstach", "HaRP shared key" : "Eochair roinnte HaRP", + "The password must be at least 12 characters long" : "Ní mór don phasfhocal a bheith 12 charachtar ar a laghad ar fhad", + "Set this daemon as the default one" : "Socraigh an daemon seo mar an ceann réamhshocraithe", + "Set as the default daemon" : "Socraigh mar an daemon réamhshocraithe", + "Enable HTTPS" : "Cumasaigh HTTPS", + "Show deploy options" : "Taispeáin roghanna imscartha", + "Hide deploy options" : "Folaigh roghanna imscartha", "Enable HaRP" : "Cumasaigh HaRP", "FRP server address" : "Seoladh freastalaí FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart don ExApp a bheith inrochtana sa líonra atá sainmhínithe sa rannán 'Docker network'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An port i HaRP lena nascann seachfhreastalaí soicéad Docker. Ba chóir é seo a nochtadh ach i gcás an cheann ionsuite, ní gá é a nochtadh ná a athrú.", "Disable FRP" : "Díchumasaigh FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach le haghaidh socruithe ardleibhéil amháin. Díchumasaíonn sé an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Compute device" : "Gléas ríomh", "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", "Must be a positive number" : "Ní mór gur uimhir dhearfach í", "Add additional option" : "Cuir rogha breise leis", diff --git a/l10n/ga.json b/l10n/ga.json index b6e89834..d9e47e07 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "Deamhan imscaradh AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Níl an daemon imscartha réamhshocraithe AppAPI ag úsáid HaRP. Smaoinigh, le do thoil, ar aistriú go HaRP le haghaidh feidhmíocht níos fearr.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Is tionscnamh spreagúil é Tionscadal AppAPI a bhfuil sé mar aidhm aige réabhlóid a dhéanamh ar an gcaoi a bhforbraítear feidhmchláir do Nextcloud trí úsáid a bhaint as coimeádáin docker. Rud a cheadaíonn rogha níos mó teangacha ríomhchlárúcháin agus a ligeann do thascanna costasacha ó thaobh ríomhaireachta de a dhíluchtú chuig freastalaí difriúil.", + "Deploy daemons" : "Imscaradh deamhain", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Is daemon orchestrúcháin ExApps é daemon imscartha (DaemonConfig).", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deamhain imscartha. Is deamhan orchestrúcháin ExApps é deamhan imscartha (DaemonConfig).", + "Default deploy daemon is not accessible. Please check its configuration" : "Níl rochtain ar an daemon imscartha réamhshocraithe. Seiceáil a chumraíocht le do thoil.", "ExApp init timeout (minutes)" : "Teorainn ama init ExApp (nóiméid)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Teorainn ama phróiseas tosaithe ExApp agus marcálfaidh AppAPI é mar theip ar ina dhiaidh sin", "ExApp init timeout" : "Teorainn ama init ExApp", "ExApp container restart policy" : "Beartas atosú coimeádán ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Roghnaigh an polasaí atosaithe coimeádáin, e.g. 'i gcónaí' chun a chinntiú go mbeidh ExApps ag rith tar éis atosú freastalaí daemon", + "This settings changes are effective only for newly created containers" : "Ní bheidh na hathruithe socruithe seo éifeachtach ach amháin maidir le coimeádáin nua-chruthaithe", + "Deploy daemon deletion confirmation" : "Deimhniú scriosta daemon a imscaradh", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "An bhfuil tú cinnte gur mian leat an daemon imscartha \"{name}\" a scriosadh?", + "Remove all ExApps installed on this daemon" : "Bain gach ExApp atá suiteáilte ar an daemon seo", "Cancel" : "Cealaigh", "Delete" : "Scrios", + "A \"manual-install\" deploy daemon cannot be set as default" : "Ní féidir daemon imscartha \"suiteáil láimhe\" a shocrú mar réamhshocrú", + "Failed to save admin settings. Check the logs" : "Theip ar shocruithe an riarthóra a shábháil. Seiceáil na logaí.", "Password confirmation failed" : "Theip ar dheimhniú an phasfhocail", "Default" : "Réamhshocrú", "Set as default" : "Socraigh mar réamhshocrú", @@ -42,10 +54,17 @@ "Docker registries" : "Clárlanna docker", "Edit" : "Cuir in eagar", "Daemon connection successful" : "D'éirigh le nasc deamhan", + "Failed to connect to the daemon. Check the logs" : "Theip ar cheangal leis an daemon. Seiceáil na logaí.", + "Failed to check connection to the daemon. Check the logs" : "Theip ar an nasc leis an daemon a sheiceáil. Seiceáil na logaí.", "Unlimited" : "Gan teorainn", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} LAP","{n} LAPanna","{n} LAPanna","{n} LAPanna","{n} LAPanna"], + "Deploy daemon configuration" : "Cumraíocht daemon a imscaradh", + "Deploy daemon configuration details" : "Sonraí cumraíochta daemon a imscaradh", + "Deploy daemon" : "Imscaradh deamhan", "Default daemon. ExApps will be installed on it" : "Deamhan réamhshocraithe. Déanfar ExApps a shuiteáil air", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "De ghnáth, úsáidtear an daemon \"Suiteáil láimhe\" le haghaidh forbartha. Ní féidir é a shocrú mar an daemon réamhshocraithe.", "ExApps installed" : "ExApps suiteáilte", "Name" : "Ainm", "Protocol" : "Prótacal", @@ -55,11 +74,16 @@ "Docker network" : "Líonra docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Pasfhocal HaProxy", + "GPU support" : "Tacaíocht GPU", + "Computation device" : "Gléas ríomhaireachta", "Memory limit" : "Teorainn chuimhne", "CPU limit" : "Teorainn LAP", "Additional options" : "Roghanna breise", "Check connection" : "Seiceáil an nasc", "Registered Deploy daemons list" : "Liosta deamhan Imscaradh Cláraithe", + "No Deploy daemons are registered" : "Níl aon deamhain imscaradh cláraithe", + "Register a custom one or configure one from the available templates" : "Cláraigh ceann saincheaptha nó cumraigh ceann ó na teimpléid atá ar fáil", + "Register daemon" : "Daemon cláraithe", "Register ExApp in Nextcloud" : "Cláraigh ExApp in Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Seiceáil an bhfuil an ExApp cláraithe in Nextcloud roimh imscaradh", "Image pull" : "Tarraingt íomhá", @@ -75,48 +99,85 @@ "Only if ExApp container is preset" : "Ach amháin má tá coimeádán ExApp réamhshocraithe", "Deploy test passed successfully!" : "D'éirigh leis an triail a imscaradh!", "Deploy test failed at step \"{step}\"" : "Theip ar an tástáil a chur i bhfeidhm ag céim \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "Déanfaidh AppAPI iarracht ExApp cnámharlaigh beag a shuiteáil chun a sheiceáil go bhfuil an daemon cumraithe i gceart agus go bhfuil na céimeanna imscartha rathúil.", + "The following deploy test checks must succeed:" : "Ní mór go n-éireoidh leis na seiceálacha tástála imscartha seo a leanas:", "More information" : "Tuilleadh eolais", "Download ExApp logs" : "Íosluchtaigh leabhair Exapp", + "Remove the test ExApp" : "Bain an ExApp tástála", + "Start the deploy test" : "Tosaigh an tástáil imscartha", + "Stop the deploy test" : "Stop an tástáil imscartha", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Tá an ExApp tástála neamhchláraithe agus baintear a choimeádán nuair a chuirtear \"Stop an tástáil imscartha\" ar siúl.", "Please enter a registry domain" : "Cuir isteach fearann ​​clárlainne", + "\"From\" cannot be \"local\"" : "Ní féidir le \"Ó\" a bheith \"áitiúil\"", "This registry mapping already exists" : "Tá an léarscáiliú clárlainne seo ann cheana féin", + "\"From\" and \"To\" cannot be the same" : "Ní féidir le \"Ó\" agus \"Chuig\" a bheith mar an gcéanna", "Docker registry mapping added" : "Mapáil chlárlainne Docker curtha leis", "Error adding Docker registry mapping" : "Earráid ag cur mapáil chlárlainne Docker leis", "Docker registry mapping removed" : "Baineadh mapáil chlárlainne Docker", "Error removing Docker registry mapping" : "Earráid agus mapáil chlárlainne Docker á baint", "Override Docker registries" : "Sáraigh clárlanna Docker", + "Configure Docker registry override mappings for the selected daemon." : "Cumraigh mapálacha sáraithe chlárlainne Docker don daemon roghnaithe.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Déanfar an chlárlann foinseach meaitseála in ExApp info.xml a athscríobh le linn an imscartha (céim tarraingthe íomhá).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Tá sé seo úsáideach más mian leat clárlann saincheaptha Docker a úsáid, mar shampla, chun clár Docker príobháideach a úsáid, nó chun clár Docker eile a úsáid le haghaidh tástála.", "Image pull will be skipped" : "Léireofar tarraingt íomhá", "Remove" : "Bain", + "No custom Docker registries are registered" : "Níl aon chlárlanna Docker saincheaptha cláraithe", "Add registry override mapping" : "Cuir léarscáiliú sáraithe na clárlainne leis", "From" : "Ó", "registry URL (e.g. ghcr.io)" : "URL na clárlainne (m.sh. ghcr.io)", "To" : "Chun", "registry URL (e.g. docker.io)" : "URL na clárlainne (m.sh. docker.io)", "Add" : "Cuir", + "Hostname used by Nextcloud to access the ExApps" : "Ainm óstach a úsáideann Nextcloud chun rochtain a fháil ar na ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "An t-ainm óstach (agus an port) ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach óstach atá inrochtana ag freastalaí Nextcloud, m.sh. {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "An t-ainm óstach (agus an port) nó an cosán ag a bhfuil an {name} ar fáil. Ní gá gur óstach poiblí é seo, ach óstach atá inrochtana ag freastalaí Nextcloud. Is féidir gur cosán chuig soicéad Docker é freisin. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Tá deamhan leis an ainm seo ann cheana féin", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "An eochair rúnda don chumarsáid coimeádáin HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Pasfhocal fíordheimhnithe seachfhreastalaí Soicéad Docker AppAPI", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Ní bheidh feidhm ag na hathruithe ach amháin maidir le ExApps atá suiteáilte le déanaí. I gcás ExApps atá ann cheana féin, ba cheart na coimeádáin Docker a athchruthú chun na luachanna socruithe nua a chur i bhfeidhm.", + "The Docker network that the deployed ExApps will use." : "An líonra Docker a úsáidfidh na ExApps imscartha.", + "The URL should start with http:// or https://" : "Ba chóir go dtosódh an URL le http:// nó https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "I gcás daemon HTTPS, ba chóir go mbeadh URL Nextcloud HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Ní mór do Docker gach feiste GPU atá ar fáil ar an óstach daemon a chumasú i gcoimeádáin ExApp.", "DaemonConfig successfully registered" : "Cláraíodh DaemonConfig go rathúil", "Failed to register DaemonConfig. Check the logs" : "Theip ar chlárú DaemonConfig. Seiceáil na logs", "DaemonConfig successfully updated" : "D'éirigh le DaemonConfig a nuashonrú", "Failed to update DaemonConfig. Check the logs" : "Theip ar DaemonConfig a nuashonrú. Seiceáil na logs", "Failed to connect to Daemon. Check the logs" : "Theip ar nascadh le Deamhan. Seiceáil na logs", "Failed to check connection to Daemon. Check the logs" : "Theip ar an nasc le Deamhan a sheiceáil. Seiceáil na logs", + "Edit the deploy daemon" : "Cuir an daemon imscartha in eagar", + "Register a new deploy daemon" : "Cláraigh daemon imscartha nua", "Daemon configuration template" : "Teimpléad cumraíochta Deamhan", + "Select a daemon configuration template" : "Roghnaigh teimpléad cumraíochta daemon", "Daemon registration form" : "Foirm chláraithe daemon", + "Unique deploy daemon name" : "Ainm uathúil ar an daemon imscartha", + "Unique deploy Daemon name" : "Ainm uathúil ar an Daemon imscartha", "Display name" : "Ainm taispeána", "Deployment method" : "Modh imscaradh", + "Select the daemon deploy method" : "Roghnaigh an modh imscartha daemon", "HaRP host" : "HaRP óstach", "Daemon host" : "Deamhan óstach", "HaRP shared key" : "Eochair roinnte HaRP", + "The password must be at least 12 characters long" : "Ní mór don phasfhocal a bheith 12 charachtar ar a laghad ar fhad", + "Set this daemon as the default one" : "Socraigh an daemon seo mar an ceann réamhshocraithe", + "Set as the default daemon" : "Socraigh mar an daemon réamhshocraithe", + "Enable HTTPS" : "Cumasaigh HTTPS", + "Show deploy options" : "Taispeáin roghanna imscartha", + "Hide deploy options" : "Folaigh roghanna imscartha", "Enable HaRP" : "Cumasaigh HaRP", "FRP server address" : "Seoladh freastalaí FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Seoladh (óstach:port) an fhreastalaí FRP ar cheart don ExApp a bheith inrochtana sa líonra atá sainmhínithe sa rannán 'Docker network'.", "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An port i HaRP lena nascann seachfhreastalaí soicéad Docker. Ba chóir é seo a nochtadh ach i gcás an cheann ionsuite, ní gá é a nochtadh ná a athrú.", "Disable FRP" : "Díchumasaigh FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach le haghaidh socruithe ardleibhéil amháin. Díchumasaíonn sé an tollán FRP idir ExApps agus HaRP.", "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Compute device" : "Gléas ríomh", "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", "Must be a positive number" : "Ní mór gur uimhir dhearfach í", "Add additional option" : "Cuir rogha breise leis", diff --git a/l10n/gl.js b/l10n/gl.js index 43026dfa..e41108c0 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "Opcións adicionais", "Check connection" : "Comprobar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", + "No Deploy daemons are registered" : "Non hai ningún servizo de despregadura rexistrado", "Register a custom one or configure one from the available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register daemon" : "Rexistrar o servizo", "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", diff --git a/l10n/gl.json b/l10n/gl.json index 47924707..eb85b996 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -81,6 +81,7 @@ "Additional options" : "Opcións adicionais", "Check connection" : "Comprobar a conexión", "Registered Deploy daemons list" : "Lista de servizos de despregadura rexistrados", + "No Deploy daemons are registered" : "Non hai ningún servizo de despregadura rexistrado", "Register a custom one or configure one from the available templates" : "Rexistre un personalizado ou configúreo a partir dos modelos dispoñíbeis", "Register daemon" : "Rexistrar o servizo", "Register ExApp in Nextcloud" : "Rexistrar a ExApp en Nextcloud", diff --git a/l10n/lo.js b/l10n/lo.js index 4e7a39ec..a570e8e1 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -1,20 +1,304 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "ບໍ່ພົບການຕັ້ງຄ່າ Daemon", + "Error starting install of ExApp" : "ການເລີ່ມຕິດຕັ້ງ ExApp ຜິດພາດ", + "ExApp failed to register, check the NC logs" : "ExApp ລົງທະບຽນບໍ່ສຳເລັດ, ກວດເບິ່ງບັນທຶກ NC", + "ExApp not found, failed to get status" : "ບໍ່ພົບ ExApp, ບໍ່ສາມາດຮັບສະຖານະໄດ້", + "Error adding Docker registry" : "ການເພີ່ມ Docker registry ຜິດພາດ", + "Error removing Docker registry" : "ການລຶບ Docker registry ຜິດພາດ", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "ແອັບນີ້ບໍ່ໄດ້ຕິດຕັ້ງຈາກ AppStore. ບໍ່ມີຂໍ້ມູນເພີ່ມເຕີມ. ສາມາດ ເປີດ/ປິດ ແລະ ລຶບອອກໄດ້ເທົ່ານັ້ນ.", + "Could not perform installation of ExApp" : "ບໍ່ສາມາດດຳເນີນການຕິດຕັ້ງ ExApp ໄດ້", + "Failed to enable ExApp" : "ເປີດໃຊ້ ExApp ບໍ່ສຳເລັດ", + "Failed to disable ExApp" : "ປິດໃຊ້ ExApp ບໍ່ສຳເລັດ", + "Could not update ExApp" : "ບໍ່ສາມາດອັບເດດ ExApp ໄດ້", + "Error starting update of ExApp" : "ການເລີ່ມອັບເດດ ExApp ຜິດພາດ", + "Could not perform update of ExApp" : "ບໍ່ສາມາດດຳເນີນການອັບເດດ ExApp ໄດ້", + "ExApp not found, failed to get logs" : "ບໍ່ພົບ ExApp, ບໍ່ສາມາດຮັບບັນທຶກໄດ້", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "ບໍ່ສາມາດຮັບບັນທຶກຂອງ container ໄດ້. ໝາຍເຫດ: ການດາວໂຫຼດ Docker container ໃຊ້ໄດ້ກັບ container ທີ່ມີໄດຣເວີບັນທຶກແບບ json-file ຫຼື journald ເທົ່ານັ້ນ. ຜິດພາດ: %s", + "ExApp not found, failed to get deploy options" : "ບໍ່ພົບ ExApp, ບໍ່ສາມາດຮັບຕົວເລືອກການຕິດຕັ້ງໄດ້", + "AppAPI authentication failed" : "ການກວດສອບ AppAPI ບໍ່ສຳເລັດ", + "AppAPI ExApp notifier" : "ໂຕແຈ້ງເຕືອນ AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "ທີມງານເຊື່ອມໂຍງ AI", + "ExApps Settings" : "ການຕັ້ງຄ່າ ExApps", + "AppAPI deploy daemon" : "Daemon ການຕິດຕັ້ງ AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI ຍັງບໍ່ໄດ້ຕັ້ງ. ກະລຸນາລົງທະບຽນ Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນໃນການຕັ້ງຄ່າເພື່ອຕິດຕັ້ງ ແອັບພາຍນອກ (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI \"%s\" ບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າ daemon.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI ບໍ່ໄດ້ໃຊ້ HaRP. ກະລຸນາພິຈາລະນາປ່ຽນໄປໃຊ້ HaRP ເພື່ອປະສິດທິພາບທີ່ດີກວ່າ.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n_ຖ້າທ່ານຕ້ອງການພັດທະນາແອັບພລິເຄຊັນ, ພວກເຮົາຍິນດີຊ່ວຍເຫຼືອ ແລະ ສະໜັບສະໜູນທ່ານ._\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*", + "External Apps management" : "ການຈັດການແອັບພາຍນອກ", + "Admin options saved" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບແລ້ວ", + "Failed to save admin options" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "ໂຄງການ AppAPI ເປັນຂໍ້ລິເລີ່ມທີ່ໜ້າຕື່ນເຕັ້ນ ເຊິ່ງມີຈຸດປະສົງເພື່ອປະຕິວັດວິທີການພັດທະນາແອັບພລິເຄຊັນສຳລັບ Nextcloud ຜ່ານການໃຊ້ docker containers. ເຮັດໃຫ້ມີທາງເລືອກພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍຂຶ້ນ ແລະ ຊ່ວຍໃຫ້ວຽກທີ່ໃຊ້ຄອມພິວເຕີສູງສາມາດໂອນໄປປະມວນຜົນຢູ່ເຊີບເວີອື່ນໄດ້.", + "Deploy daemons" : "Daemon ການຕິດຕັ້ງ", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ. Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າ.", + "ExApp init timeout (minutes)" : "ເວລາໝົດກຳນົດຂອງການເລີ່ມ ExApp (ນາທີ)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ເວລາໝົດກຳນົດຂອງຂະບວນການເລີ່ມຕົ້ນ ExApp ຫຼັງຈາກນັ້ນ AppAPI ຈະໝາຍວ່າລົ້ມເຫຼວ", + "ExApp init timeout" : "ເວລາໝົດກຳນົດຂອງການເລີ່ມ ExApp", + "ExApp container restart policy" : "ນະໂຍບາຍການຣີສະຕາດ container ຂອງ ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "ເລືອກນະໂຍບາຍການຣີສະຕາດ container, ຕົວຢ່າງ 'always' ເພື່ອໃຫ້ແນ່ໃຈວ່າ ExApps ຈະເຮັດວຽກຫຼັງຈາກເຊີບເວີ daemon ຣີບູດ", + "This settings changes are effective only for newly created containers" : "ການປ່ຽນແປງການຕັ້ງຄ່ານີ້ມີຜົນກັບ container ທີ່ສ້າງໃໝ່ເທົ່ານັ້ນ", + "Deploy daemon deletion confirmation" : "ການຢືນຢັນການລຶບ Daemon ການຕິດຕັ້ງ", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "ເຈົ້າແນ່ໃຈບໍ່ວ່າຕ້ອງການລຶບ Daemon ການຕິດຕັ້ງ \"{name}\"?", + "Remove all ExApps installed on this daemon" : "ລຶບ ExApps ທັງໝົດທີ່ຕິດຕັ້ງໃນ daemon ນີ້", "Cancel" : "ຍົກເລີກ", "Delete" : "ລຶບ", - "Default" : "ເລີ່ມຕົ້ນ", + "A \"manual-install\" deploy daemon cannot be set as default" : "Daemon ການຕິດຕັ້ງແບບ \"manual-install\" ບໍ່ສາມາດຕັ້ງເປັນຄ່າເລີ່ມຕົ້ນໄດ້", + "Failed to save admin settings. Check the logs" : "ບັນທຶກການຕັ້ງຄ່າຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Password confirmation failed" : "ການຢືນຢັນລະຫັດຜ່ານບໍ່ສຳເລັດ", + "Default" : "ຄ່າເລີ່ມຕົ້ນ", + "Set as default" : "ຕັ້ງເປັນຄ່າເລີ່ມຕົ້ນ", + "Test deploy" : "ທົດສອບການຕິດຕັ້ງ", + "Docker registries" : "ລາຍການ Docker", "Edit" : "ແກ້ໄຂ", + "Daemon connection successful" : "ການເຊື່ອມຕໍ່ Daemon ສຳເລັດ", + "Failed to connect to the daemon. Check the logs" : "ເຊື່ອມຕໍ່ກັບ daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Failed to check connection to the daemon. Check the logs" : "ກວດສອບການເຊື່ອມຕໍ່ກັບ daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Unlimited" : "ບໍ່ຈຳກັດ", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU"], + "Deploy daemon configuration" : "ການຕັ້ງຄ່າ Daemon ການຕິດຕັ້ງ", + "Deploy daemon configuration details" : "ລາຍລະອຽດການຕັ້ງຄ່າ Daemon ການຕິດຕັ້ງ", + "Deploy daemon" : "Daemon ການຕິດຕັ້ງ", + "Default daemon. ExApps will be installed on it" : "Daemon ເລີ່ມຕົ້ນ. ExApps ຈະຖືກຕິດຕັ້ງໃສ່ມັນ", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Daemon \"Manual install\" ມັກຈະໃຊ້ສຳລັບການພັດທະນາ. ມັນບໍ່ສາມາດຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນໄດ້.", + "ExApps installed" : "ExApps ທີ່ຕິດຕັ້ງແລ້ວ", "Name" : "ຊື່", - "Remove" : "ຍ້າຍອອກ", + "Protocol" : "ໂປຣໂຕຄໍ", + "Host" : "ໂຮສ", + "ExApp direct communication (FRP disabled)" : "ການສື່ສານໂດຍກົງຂອງ ExApp (FRP ປິດຢູ່)", + "Deploy options" : "ຕົວເລືອກການຕິດຕັ້ງ", + "Docker network" : "ເຄືອຂ່າຍ Docker", + "Nextcloud URL" : "URL ຂອງ Nextcloud", + "HaProxy password" : "ລະຫັດຜ່ານ HaProxy", + "GPU support" : "ຮອງຮັບ GPU", + "Computation device" : "ອຸປະກອນຄຳນວນ", + "Memory limit" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ", + "CPU limit" : "ຂີດຈຳກັດ CPU", + "Additional options" : "ຕົວເລືອກເພີ່ມເຕີມ", + "Check connection" : "ກວດສອບການເຊື່ອມຕໍ່", + "Registered Deploy daemons list" : "ລາຍຊື່ Daemon ການຕິດຕັ້ງທີ່ລົງທະບຽນແລ້ວ", + "No Deploy daemons are registered" : "ບໍ່ມີ Daemon ການຕິດຕັ້ງທີ່ລົງທະບຽນ", + "Register a custom one or configure one from the available templates" : "ລົງທະບຽນໂຕໃໝ່ ຫຼື ຕັ້ງຄ່າຈາກແມ່ແບບທີ່ມີຢູ່", + "Register daemon" : "ລົງທະບຽນ daemon", + "Register ExApp in Nextcloud" : "ລົງທະບຽນ ExApp ໃນ Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "ກວດເບິ່ງວ່າ ExApp ໄດ້ລົງທະບຽນໃນ Nextcloud ກ່ອນການຕິດຕັ້ງຫຼືບໍ່", + "Image pull" : "ດຶງ Image", + "Check if the image is successfully pulled" : "ກວດເບິ່ງວ່າດຶງ image ສຳເລັດຫຼືບໍ່", + "Container started" : "Container ເລີ່ມແລ້ວ", + "Check if the image successfully pulled and container is created and started" : "ກວດເບິ່ງວ່າດຶງ image ສຳເລັດ ແລະ container ຖືກສ້າງ ແລະ ເລີ່ມແລ້ວຫຼືບໍ່", + "Heartbeat" : "Heartbeat", + "Check for the heartbeat is finished and healthy" : "ກວດເບິ່ງວ່າ heartbeat ສຳເລັດ ແລະ ປົກກະຕິ", + "Init step" : "ຂັ້ນຕອນເລີ່ມຕົ້ນ", + "Wait for initialization step to finish" : "ລໍຖ້າໃຫ້ຂັ້ນຕອນເລີ່ມຕົ້ນສຳເລັດ", + "Enabled" : "ເປີດຢູ່", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "ກວດເບິ່ງວ່າ ExApp ຈັດການເຫດການເປີດໃຊ້ສຳເລັດ ແລະ ລົງທະບຽນທຸກຢ່າງຖືກຕ້ອງ", + "Only if ExApp container is preset" : "ສະເພາະກໍລະນີທີ່ມີ container ຂອງ ExApp ຢູ່ແລ້ວ", + "Deploy test passed successfully!" : "ການທົດສອບການຕິດຕັ້ງຜ່ານສຳເລັດ!", + "Deploy test failed at step \"{step}\"" : "ການທົດສອບການຕິດຕັ້ງລົ້ມເຫຼວທີ່ຂັ້ນຕອນ \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI ຈະພະຍາຍາມຕິດຕັ້ງ ExApp ໂຄງຮ່າງຂະໜາດນ້ອຍເພື່ອກວດສອບວ່າ daemon ຖືກຕັ້ງຄ່າຢ່າງຖືກຕ້ອງ ແລະ ຂັ້ນຕອນການຕິດຕັ້ງສຳເລັດ.", + "The following deploy test checks must succeed:" : "ການກວດສອບການທົດສອບການຕິດຕັ້ງຕໍ່ໄປນີ້ຕ້ອງຜ່ານ:", + "More information" : "ຂໍ້ມູນເພີ່ມເຕີມ", + "Download ExApp logs" : "ດາວໂຫຼດບັນທຶກ ExApp", + "Remove the test ExApp" : "ລຶບ ExApp ທົດສອບອອກ", + "Start the deploy test" : "ເລີ່ມການທົດສອບການຕິດຕັ້ງ", + "Stop the deploy test" : "ຢຸດການທົດສອບການຕິດຕັ້ງ", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "ExApp ທົດສອບຈະຖືກຍົກເລີກການລົງທະບຽນ ແລະ container ຂອງມັນຈະຖືກລຶບອອກເມື່ອກົດ \"ຢຸດການທົດສອບການຕິດຕັ້ງ\"", + "Please enter a registry domain" : "ກະລຸນາປ້ອນໂດເມນ registry", + "\"From\" cannot be \"local\"" : "\"ຈາກ\" ບໍ່ສາມາດເປັນ \"local\" ໄດ້", + "This registry mapping already exists" : "ການຈັບຄູ່ registry ນີ້ມີຢູ່ແລ້ວ", + "\"From\" and \"To\" cannot be the same" : "\"ຈາກ\" ແລະ \"ເຖິງ\" ບໍ່ສາມາດເປັນອັນດຽວກັນໄດ້", + "Docker registry mapping added" : "ເພີ່ມການຈັບຄູ່ Docker registry ແລ້ວ", + "Error adding Docker registry mapping" : "ການເພີ່ມການຈັບຄູ່ Docker registry ຜິດພາດ", + "Docker registry mapping removed" : "ລຶບການຈັບຄູ່ Docker registry ແລ້ວ", + "Error removing Docker registry mapping" : "ການລຶບການຈັບຄູ່ Docker registry ຜິດພາດ", + "Override Docker registries" : "ຂຽນທັບລາຍການ Docker", + "Configure Docker registry override mappings for the selected daemon." : "ຕັ້ງຄ່າການຈັບຄູ່ເພື່ອຂຽນທັບລາຍການ Docker ສຳລັບ daemon ທີ່ເລືອກ.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Registry ຕົ້ນທາງທີ່ກົງກັນໃນ info.xml ຂອງ ExApp ຈະຖືກຂຽນທັບໃນລະຫວ່າງການຕິດຕັ້ງ (ຂັ້ນຕອນດຶງ image).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "ສິ່ງນີ້ມີປະໂຫຍດຖ້າທ່ານຕ້ອງການໃຊ້ Docker registry ແບບກຳນົດເອງ, ຕົວຢ່າງ, ເພື່ອໃຊ້ Docker registry ສ່ວນຕົວ, ຫຼືໃຊ້ Docker registry ອື່ນສຳລັບການທົດສອບ.", + "Image pull will be skipped" : "ຈະຂ້າມການດຶງ Image", + "Remove" : "ລຶບອອກ", + "No custom Docker registries are registered" : "ບໍ່ມີ Docker registry ແບບກຳນົດເອງທີ່ລົງທະບຽນ", + "Add registry override mapping" : "ເພີ່ມການຈັບຄູ່ເພື່ອຂຽນທັບ registry", "From" : "ຈາກ", + "registry URL (e.g. ghcr.io)" : "url ຂອງ registry (ຕົວຢ່າງ ghcr.io)", "To" : "ເຖິງ", + "registry URL (e.g. docker.io)" : "url ຂອງ registry (ຕົວຢ່າງ docker.io)", + "Add" : "ເພີ່ມ", + "Hostname used by Nextcloud to access the ExApps" : "ຊື່ໂຮສທີ່ Nextcloud ໃຊ້ເພື່ອເຂົ້າເຖິງ ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "ຊື່ໂຮສ (ແລະພອດ) ທີ່ {name} ສາມາດໃຊ້ງານໄດ້. ບໍ່ຈຳເປັນຕ້ອງເປັນໂຮສສາທາລະນະ, ພຽງແຕ່ເປັນໂຮສທີ່ເຊີບເວີ Nextcloud ສາມາດເຂົ້າເຖິງໄດ້, ຕົວຢ່າງ {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ຊື່ໂຮສ (ແລະພອດ) ຫຼືເສັ້ນທາງທີ່ {name} ສາມາດໃຊ້ງານໄດ້. ບໍ່ຈຳເປັນຕ້ອງເປັນໂຮສສາທາລະນະ, ພຽງແຕ່ເປັນໂຮສທີ່ເຊີບເວີ Nextcloud ສາມາດເຂົ້າເຖິງໄດ້. ມັນຍັງສາມາດເປັນເສັ້ນທາງໄປຫາ Docker socket ໄດ້. (ຕົວຢ່າງ nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "ມີ daemon ທີ່ມີຊື່ນີ້ຢູ່ແລ້ວ", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "ລະຫັດລັບສຳລັບການສື່ສານຂອງ container HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "ລະຫັດຜ່ານການກວດສອບຂອງ AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "ການປ່ຽນແປງມີຜົນກັບ ExApps ທີ່ຕິດຕັ້ງໃໝ່ເທົ່ານັ້ນ. ສຳລັບ ExApps ທີ່ມີຢູ່ແລ້ວ, ຄວນສ້າງ container ຂອງ Docker ໃໝ່ເພື່ອໃຫ້ຄ່າການຕັ້ງຄ່າໃໝ່ມີຜົນ.", + "The Docker network that the deployed ExApps will use." : "ເຄືອຂ່າຍ Docker ທີ່ ExApps ທີ່ຕິດຕັ້ງຈະໃຊ້.", + "The URL should start with http:// or https://" : "URL ຄວນເລີ່ມຕົ້ນດ້ວຍ http:// ຫຼື https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "ສຳລັບ daemon ແບບ HTTPS, URL ຂອງ Nextcloud ຄວນເປັນ HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "ອຸປະກອນ GPU ທັງໝົດທີ່ມີຢູ່ໃນໂຮສຂອງ daemon ຕ້ອງຖືກເປີດໃຊ້ໃນ container ຂອງ ExApp ໂດຍ Docker.", + "DaemonConfig successfully registered" : "ລົງທະບຽນ DaemonConfig ສຳເລັດ", + "Failed to register DaemonConfig. Check the logs" : "ລົງທະບຽນ DaemonConfig ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "DaemonConfig successfully updated" : "ອັບເດດ DaemonConfig ສຳເລັດ", + "Failed to update DaemonConfig. Check the logs" : "ອັບເດດ DaemonConfig ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Failed to connect to Daemon. Check the logs" : "ເຊື່ອມຕໍ່ກັບ Daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Failed to check connection to Daemon. Check the logs" : "ກວດສອບການເຊື່ອມຕໍ່ກັບ Daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Edit the deploy daemon" : "ແກ້ໄຂ Daemon ການຕິດຕັ້ງ", + "Register a new deploy daemon" : "ລົງທະບຽນ Daemon ການຕິດຕັ້ງໃໝ່", + "Daemon configuration template" : "ແມ່ແບບການຕັ້ງຄ່າ Daemon", + "Select a daemon configuration template" : "ເລືອກແມ່ແບບການຕັ້ງຄ່າ daemon", + "Daemon registration form" : "ແບບຟອມການລົງທະບຽນ Daemon", + "Unique deploy daemon name" : "ຊື່ Daemon ການຕິດຕັ້ງທີ່ບໍ່ຊ້ຳໃຜ", + "Unique deploy Daemon name" : "ຊື່ Daemon ການຕິດຕັ້ງທີ່ບໍ່ຊ້ຳໃຜ", + "Display name" : "ຊື່ທີ່ສະແດງ", + "Deployment method" : "ວິທີການຕິດຕັ້ງ", + "Select the daemon deploy method" : "ເລືອກວິທີການຕິດຕັ້ງຂອງ daemon", + "HaRP host" : "ໂຮສ HaRP", + "Daemon host" : "ໂຮສ Daemon", + "HaRP shared key" : "ລະຫັດຮ່ວມຂອງ HaRP", + "The password must be at least 12 characters long" : "ລະຫັດຜ່ານຕ້ອງມີຢ່າງໜ້ອຍ 12 ຕົວອັກສອນ", + "Set this daemon as the default one" : "ຕັ້ງ daemon ນີ້ເປັນຄ່າເລີ່ມຕົ້ນ", + "Set as the default daemon" : "ຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນ", + "Enable HTTPS" : "ເປີດໃຊ້ HTTPS", + "Show deploy options" : "ສະແດງຕົວເລືອກການຕິດຕັ້ງ", + "Hide deploy options" : "ເຊື່ອງຕົວເລືອກການຕິດຕັ້ງ", + "Enable HaRP" : "ເປີດໃຊ້ HaRP", + "FRP server address" : "ທີ່ຢູ່ເຊີບເວີ FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "ທີ່ຢູ່ (host:port) ຂອງເຊີບເວີ FRP ທີ່ ExApp ຄວນຈະເຂົ້າເຖິງໄດ້ໃນເຄືອຂ່າຍທີ່ກຳນົດໃນສ່ວນ 'ເຄືອຂ່າຍ Docker'.", + "Docker socket proxy port" : "ພອດ proxy ຂອງ Docker socket", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "ພອດໃນ HaRP ທີ່ Docker socket proxy ເຊື່ອມຕໍ່ຫາ. ຄວນເປີດໃຫ້ເຂົ້າເຖິງໄດ້ ແຕ່ສຳລັບໂຕທີ່ສ້າງມາພ້ອມ, ບໍ່ຈຳເປັນຕ້ອງເປີດ ຫຼື ປ່ຽນແປງ.", + "Disable FRP" : "ປິດໃຊ້ FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "ທຸງສຳລັບການຕັ້ງຄ່າຂັ້ນສູງເທົ່ານັ້ນ. ປິດການໃຊ້ງານອຸໂມງ FRP ລະຫວ່າງ ExApps ແລະ HaRP.", + "Disabled" : "ປິດຢູ່", + "Docker network for ex-app deployment must be defined" : "ຕ້ອງກຳນົດເຄືອຂ່າຍ Docker ສຳລັບການຕິດຕັ້ງ ex-app", + "Compute device" : "ອຸປະກອນຄຳນວນ", + "Memory limit (in MiB)" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ (ເປັນ MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ປະລິມານໜ່ວຍຄວາມຈຳສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ເປັນເມບິໄບຕ໌", + "Must be a positive integer" : "ຕ້ອງເປັນຈຳນວນຖ້ວນບວກ", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ຈຳນວນຄໍ CPU ສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ (ຕົວຢ່າງ 0.5 ສໍາລັບເຄິ່ງຄໍ, 2 ສໍາລັບສອງຄໍ)", + "CPU limit as decimal value" : "ຂີດຈຳກັດ CPU ເປັນຄ່າທົດສະນິຍົມ", + "Must be a positive number" : "ຕ້ອງເປັນຈຳນວນບວກ", + "Add additional option" : "ເພີ່ມຕົວເລືອກເພີ່ມເຕີມ", + "Option key (unique)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ)", + "Option key (unique, e.g. my_key)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ, ຕົວຢ່າງ my_key)", + "Option key is required" : "ຕ້ອງມີຄີຕົວເລືອກ", + "Option value" : "ຄ່າຕົວເລືອກ", + "Option value is required" : "ຕ້ອງມີຄ່າຕົວເລືອກ", "Confirm" : "ຢືນຢັນ", "Save" : "ບັນທຶກ", "Register" : "ລົງທະບຽນ", - "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Type" : "ພິມ", + "External Apps" : "ແອັບພາຍນອກ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n### ແອັບທີ່ມາພ້ອມ\n\n**ເລີ່ມຕັ້ງແຕ່ Nextcloud 30.0.1, ແອັບພລິເຄຊັນນີ້ໄດ້ຖືກລວມຢູ່ໃນຊຸດ Nextcloud ເລີ່ມຕົ້ນ.**\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "ໂຄງການ AppAPI ເປັນຂໍ້ລິເລີ່ມທີ່ໜ້າຕື່ນເຕັ້ນ ເຊິ່ງມີຈຸດປະສົງເພື່ອປະຕິວັດວິທີການພັດທະນາແອັບພລິເຄຊັນສຳລັບ Nextcloud.", + "Deploy Daemons" : "Daemon ການຕິດຕັ້ງ", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ. Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າ.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "ກຳນົດນະໂຍບາຍການຣີສະຕາດ container, ຕົວຢ່າງ 'always' ເພື່ອໃຫ້ແນ່ໃຈວ່າ ExApp ເຮັດວຽກຫຼັງຈາກເຊີບເວີ daemon ຣີບູດ", + "This settings changes are reflected only for newly created containers" : "ການປ່ຽນແປງການຕັ້ງຄ່ານີ້ມີຜົນກັບ container ທີ່ສ້າງໃໝ່ເທົ່ານັ້ນ", + "{license}-licensed" : "ມີໃບອະນຸຍາດແບບ {license}", + "Update to {version}" : "ອັບເດດເປັນ {version}", + "Delete data on remove" : "ລຶບຂໍ້ມູນເມື່ອລຶບອອກ", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ແອັບນີ້ບໍ່ໄດ້ກຳນົດເວີຊັນ Nextcloud ຂັ້ນຕ່ຳ. ສິ່ງນີ້ຈະເປັນຂໍ້ຜິດພາດໃນອະນາຄົດ.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ແອັບນີ້ບໍ່ໄດ້ກຳນົດເວີຊັນ Nextcloud ສູງສຸດ. ສິ່ງນີ້ຈະເປັນຂໍ້ຜິດພາດໃນອະນາຄົດ.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "ບໍ່ສາມາດຕິດຕັ້ງແອັບນີ້ໄດ້ ເພາະວ່າ dependencies ຕໍ່ໄປນີ້ຍັງບໍ່ຄົບຖ້ວນ:", + "View in store" : "ເບິ່ງໃນຮ້ານຄ້າ", + "Visit website" : "ເຂົ້າຊົມເວັບໄຊ", + "Report a bug" : "ລາຍງານບັກ", + "User documentation" : "ເອກະສານສຳລັບຜູ້ໃຊ້", + "Admin documentation" : "ເອກະສານສຳລັບຜູ້ເບິ່ງແຍງລະບົບ", + "Developer documentation" : "ເອກະສານສຳລັບນັກພັດທະນາ", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "ແອັບນີ້ບໍ່ໄດ້ລົງທະບຽນໃນ AppStore. ບໍ່ມີຂໍ້ມູນເພີ່ມເຕີມ. ສາມາດ ເປີດ/ປິດ ແລະ ລຶບອອກໄດ້ເທົ່ານັ້ນ.", + "This app is supported via your current Nextcloud subscription." : "ແອັບນີ້ໄດ້ຮັບການສະໜັບສະໜູນຜ່ານການສະໝັກສະມາຊິກ Nextcloud ປັດຈຸບັນຂອງທ່ານ.", + "Supported" : "ຮອງຮັບ", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ແອັບທີ່ແນະນຳຖືກພັດທະນາໂດຍ ແລະ ພາຍໃນຊຸມຊົນ. ມັນສະເໜີຟັງຊັນຫຼັກ ແລະ ພ້ອມສຳລັບການໃຊ້ງານຈິງ.", + "Featured" : "ແນະນຳ", + "Update to {update}" : "ອັບເດດເປັນ {update}", + "All ExApps are up-to-date." : "ExApps ທັງໝົດທັນສະໄໝແລ້ວ.", + "Default Deploy daemon is not accessible" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້", + "Icon" : "ໄອຄອນ", + "Version" : "ເວີຊັນ", + "Daemon" : "Daemon", + "Level" : "ລະດັບ", + "Actions" : "ການກະທຳ", + "Results from other categories" : "ຜົນລັບຈາກໝວດໝູ່ອື່ນ", + "No apps found" : "ບໍ່ພົບແອັບ", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["ມີ %n ExApp ທີ່ຕ້ອງການອັບເດດ"], + "_Update_::_Update all_" : ["ອັບເດດທັງໝົດ"], + "Deploy Daemon" : "Daemon ການຕິດຕັ້ງ", + "Type" : "ປະເພດ", + "Display Name" : "ຊື່ທີ່ສະແດງ", + "GPUs support" : "ຮອງຮັບ GPUs", + "Are you sure you want delete Deploy Daemon" : "ເຈົ້າແນ່ໃຈບໍ່ວ່າຕ້ອງການລຶບ Daemon ການຕິດຕັ້ງ", + "All ExApps on this daemon will be removed" : "ExApps ທັງໝົດໃນ daemon ນີ້ຈະຖືກລຶບອອກ", + "All ExApps installed on this daemon will be removed" : "ExApps ທັງໝົດທີ່ຕິດຕັ້ງໃນ daemon ນີ້ຈະຖືກລຶບອອກ", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Daemon ການຕິດຕັ້ງແບບ \"manual-install\" ບໍ່ສາມາດຕັ້ງເປັນຄ່າເລີ່ມຕົ້ນໄດ້", + "Failed to save admin options. Check the logs" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Deploy daemon config details" : "ລາຍລະອຽດການຕັ້ງຄ່າ Daemon ການຕິດຕັ້ງ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ຕິດຕັ້ງດ້ວຍຕົນເອງມັກຈະໃຊ້ສຳລັບການພັດທະນາ. ມັນບໍ່ສາມາດຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນໄດ້.", + "Deploy config" : "ການຕັ້ງຄ່າການຕິດຕັ້ງ", + "Verify connection" : "ກວດສອບການເຊື່ອມຕໍ່", + "No Deploy daemons configured" : "ບໍ່ມີ Daemon ການຕິດຕັ້ງທີ່ຖືກຕັ້ງຄ່າ", + "Register a custom one or setup from available templates" : "ລົງທະບຽນໂຕໃໝ່ ຫຼື ຕັ້ງຄ່າຈາກແມ່ແບບທີ່ມີຢູ່", + "Register Daemon" : "ລົງທະບຽນ Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ຈະພະຍາຍາມຕິດຕັ້ງ ExApp ໂຄງຮ່າງຂະໜາດນ້ອຍເພື່ອຢືນຢັນວ່າ Daemon ຖືກຕັ້ງຄ່າຢ່າງຖືກຕ້ອງ ແລະ ຂັ້ນຕອນການຕິດຕັ້ງຜ່ານ.", + "The following Deploy test checks must be passed to succeed:" : "ການກວດສອບການທົດສອບການຕິດຕັ້ງຕໍ່ໄປນີ້ຕ້ອງຜ່ານເພື່ອໃຫ້ສຳເລັດ:", + "More info" : "ຂໍ້ມູນເພີ່ມເຕີມ", + "Remove test ExApp" : "ລຶບ ExApp ທົດສອບອອກ", + "Start Deploy test" : "ເລີ່ມການທົດສອບການຕິດຕັ້ງ", + "Stop Deploy test" : "ຢຸດການທົດສອບການຕິດຕັ້ງ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ຈະຖືກຍົກເລີກການລົງທະບຽນ ແລະ container ຈະຖືກລຶບອອກເມື່ອກົດ \"ຢຸດການທົດສອບການຕິດຕັ້ງ\"", + "Hostname to access ExApps" : "ຊື່ໂຮສເພື່ອເຂົ້າເຖິງ ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ຊື່ໂຮສ ຫຼື ເສັ້ນທາງເພື່ອເຂົ້າເຖິງ Docker daemon (ຕົວຢ່າງ nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "ມີ Daemon ທີ່ມີຊື່ນີ້ຢູ່ແລ້ວ", + "Password must be at least 12 characters long" : "ລະຫັດຜ່ານຕ້ອງມີຢ່າງໜ້ອຍ 12 ຕົວອັກສອນ", + "With https enabled network is set to host" : "ເມື່ອເປີດໃຊ້ https ເຄືອຂ່າຍຈະຖືກຕັ້ງເປັນ host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ການປ່ຽນແປງຈະມີຜົນກັບ ExApps ທີ່ຕິດຕັ້ງໃໝ່ເທົ່ານັ້ນ. ສຳລັບ ExApps ທີ່ມີຢູ່ແລ້ວ, ຄວນສ້າງ container ຂອງ Docker ໃໝ່.", + "URL should start with http:// or https://" : "URL ຄວນເລີ່ມຕົ້ນດ້ວຍ http:// ຫຼື https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "ສຳລັບ daemon ແບບ HTTPS, URL ຂອງ Nextcloud ຄວນເປັນ HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "ອຸປະກອນ GPU ທັງໝົດທີ່ມີຢູ່ໃນໂຮສຂອງ daemon ຈະຖືກຮ້ອງຂໍໃຫ້ເປີດໃຊ້ໃນ container ຂອງ ExApp ໂດຍ Docker.", + "Edit Deploy Daemon" : "ແກ້ໄຂ Daemon ການຕິດຕັ້ງ", + "Register Deploy Daemon" : "ລົງທະບຽນ Daemon ການຕິດຕັ້ງ", + "Select daemon configuration template" : "ເລືອກແມ່ແບບການຕັ້ງຄ່າ daemon", + "Unique Deploy Daemon Name" : "ຊື່ Daemon ການຕິດຕັ້ງທີ່ບໍ່ຊ້ຳໃຜ", + "Select daemon deploy method" : "ເລືອກວິທີການຕິດຕັ້ງຂອງ daemon", + "Set daemon as default" : "ຕັ້ງ daemon ເປັນຄ່າເລີ່ມຕົ້ນ", + "Set as default daemon" : "ຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນ", + "Enable https" : "ເປີດໃຊ້ https", + "Show deploy config" : "ສະແດງການຕັ້ງຄ່າການຕິດຕັ້ງ", + "Hide deploy config" : "ເຊື່ອງການຕັ້ງຄ່າການຕິດຕັ້ງ", + "Network" : "ເຄືອຂ່າຍ", + "Docker network name" : "ຊື່ເຄືອຂ່າຍ Docker", + "Additional option" : "ຕົວເລືອກເພີ່ມເຕີມ", + "by {author}\n{license}" : "ໂດຍ {author}\n{license}", + "Your apps" : "ແອັບຂອງທ່ານ", + "Documentation" : "ເອກະສານ", "Details" : "ລາຍລະອຽດ", - "Disable" : "ປິດ" + "Changelog" : "ລາຍການປ່ຽນແປງ", + "Active apps" : "ແອັບທີ່ເປີດໃຊ້ຢູ່", + "Disabled apps" : "ແອັບທີ່ປິດໃຊ້ຢູ່", + "Updates" : "ອັບເດດ", + "Featured apps" : "ແອັບທີ່ແນະນຳ", + "Supported apps" : "ແອັບທີ່ຮອງຮັບ", + "manual-install apps cannot be updated" : "ແອັບທີ່ຕິດຕັ້ງແບບ manual-install ບໍ່ສາມາດອັບເດດໄດ້", + "{progress}% Deploying" : "{progress}% ກໍາລັງຕິດຕັ້ງ", + "{progress}% Initializing" : "{progress}% ກໍາລັງເລີ່ມຕົ້ນ", + "Healthchecking" : "ກຳລັງກວດສອບສະຖານະ", + "Deploy and Enable" : "ຕິດຕັ້ງ ແລະ ເປີດໃຊ້", + "Enable" : "ເປີດໃຊ້", + "Disable" : "ປິດໃຊ້", + "Allow untested app" : "ອະນຸຍາດແອັບທີ່ບໍ່ໄດ້ທົດສອບ", + "Default Deploy daemon is not accessible. Please verify configuration" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າ", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "ແອັບຈະຖືກດາວໂຫຼດຈາກ App Store ແລະ ຕິດຕັ້ງໃນ Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນ", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "ແອັບນີ້ບໍ່ໄດ້ຖືກໝາຍວ່າເຂົ້າກັນໄດ້ກັບເວີຊັນ Nextcloud ຂອງທ່ານ. ຖ້າທ່ານດຳເນີນການຕໍ່, ທ່ານຍັງຄົງສາມາດຕິດຕັ້ງແອັບໄດ້. ໝາຍເຫດວ່າແອັບອາດຈະບໍ່ເຮັດວຽກຕາມທີ່ຄາດໄວ້.", + "Your ExApps" : "ExApps ຂອງທ່ານ", + "An error occurred during the request. Unable to proceed." : "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການຮ້ອງຂໍ. ບໍ່ສາມາດດຳເນີນການຕໍ່ໄດ້.", + "The app has been enabled but needs to be updated." : "ແອັບໄດ້ຖືກເປີດໃຊ້ແລ້ວ ແຕ່ຕ້ອງການອັບເດດ.", + "Error: This app cannot be enabled because it makes the server unstable" : "ຜິດພາດ: ບໍ່ສາມາດເປີດໃຊ້ແອັບນີ້ໄດ້ເພາະມັນເຮັດໃຫ້ເຊີບເວີບໍ່ສະຖຽນ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n\n### ລາຍຊື່ແອັບພລິເຄຊັນທີ່ຕ້ອງການ AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_ຖ້າທ່ານຕ້ອງການພັດທະນາແອັບພລິເຄຊັນ, ພວກເຮົາຍິນດີຊ່ວຍເຫຼືອ ແລະ ສະໜັບສະໜູນທ່ານ._\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*" }, "nplurals=1; plural=0;"); diff --git a/l10n/lo.json b/l10n/lo.json index 662795f9..dee6d17b 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -1,18 +1,302 @@ { "translations": { + "Daemon config not found" : "ບໍ່ພົບການຕັ້ງຄ່າ Daemon", + "Error starting install of ExApp" : "ການເລີ່ມຕິດຕັ້ງ ExApp ຜິດພາດ", + "ExApp failed to register, check the NC logs" : "ExApp ລົງທະບຽນບໍ່ສຳເລັດ, ກວດເບິ່ງບັນທຶກ NC", + "ExApp not found, failed to get status" : "ບໍ່ພົບ ExApp, ບໍ່ສາມາດຮັບສະຖານະໄດ້", + "Error adding Docker registry" : "ການເພີ່ມ Docker registry ຜິດພາດ", + "Error removing Docker registry" : "ການລຶບ Docker registry ຜິດພາດ", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "ແອັບນີ້ບໍ່ໄດ້ຕິດຕັ້ງຈາກ AppStore. ບໍ່ມີຂໍ້ມູນເພີ່ມເຕີມ. ສາມາດ ເປີດ/ປິດ ແລະ ລຶບອອກໄດ້ເທົ່ານັ້ນ.", + "Could not perform installation of ExApp" : "ບໍ່ສາມາດດຳເນີນການຕິດຕັ້ງ ExApp ໄດ້", + "Failed to enable ExApp" : "ເປີດໃຊ້ ExApp ບໍ່ສຳເລັດ", + "Failed to disable ExApp" : "ປິດໃຊ້ ExApp ບໍ່ສຳເລັດ", + "Could not update ExApp" : "ບໍ່ສາມາດອັບເດດ ExApp ໄດ້", + "Error starting update of ExApp" : "ການເລີ່ມອັບເດດ ExApp ຜິດພາດ", + "Could not perform update of ExApp" : "ບໍ່ສາມາດດຳເນີນການອັບເດດ ExApp ໄດ້", + "ExApp not found, failed to get logs" : "ບໍ່ພົບ ExApp, ບໍ່ສາມາດຮັບບັນທຶກໄດ້", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "ບໍ່ສາມາດຮັບບັນທຶກຂອງ container ໄດ້. ໝາຍເຫດ: ການດາວໂຫຼດ Docker container ໃຊ້ໄດ້ກັບ container ທີ່ມີໄດຣເວີບັນທຶກແບບ json-file ຫຼື journald ເທົ່ານັ້ນ. ຜິດພາດ: %s", + "ExApp not found, failed to get deploy options" : "ບໍ່ພົບ ExApp, ບໍ່ສາມາດຮັບຕົວເລືອກການຕິດຕັ້ງໄດ້", + "AppAPI authentication failed" : "ການກວດສອບ AppAPI ບໍ່ສຳເລັດ", + "AppAPI ExApp notifier" : "ໂຕແຈ້ງເຕືອນ AppAPI ExApp", + "AppAPI" : "AppAPI", + "AI Integration Team" : "ທີມງານເຊື່ອມໂຍງ AI", + "ExApps Settings" : "ການຕັ້ງຄ່າ ExApps", + "AppAPI deploy daemon" : "Daemon ການຕິດຕັ້ງ AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI ຍັງບໍ່ໄດ້ຕັ້ງ. ກະລຸນາລົງທະບຽນ Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນໃນການຕັ້ງຄ່າເພື່ອຕິດຕັ້ງ ແອັບພາຍນອກ (Ex-Apps).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI \"%s\" ບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າ daemon.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI ບໍ່ໄດ້ໃຊ້ HaRP. ກະລຸນາພິຈາລະນາປ່ຽນໄປໃຊ້ HaRP ເພື່ອປະສິດທິພາບທີ່ດີກວ່າ.", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n_ຖ້າທ່ານຕ້ອງການພັດທະນາແອັບພລິເຄຊັນ, ພວກເຮົາຍິນດີຊ່ວຍເຫຼືອ ແລະ ສະໜັບສະໜູນທ່ານ._\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*", + "External Apps management" : "ການຈັດການແອັບພາຍນອກ", + "Admin options saved" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບແລ້ວ", + "Failed to save admin options" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "ໂຄງການ AppAPI ເປັນຂໍ້ລິເລີ່ມທີ່ໜ້າຕື່ນເຕັ້ນ ເຊິ່ງມີຈຸດປະສົງເພື່ອປະຕິວັດວິທີການພັດທະນາແອັບພລິເຄຊັນສຳລັບ Nextcloud ຜ່ານການໃຊ້ docker containers. ເຮັດໃຫ້ມີທາງເລືອກພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍຂຶ້ນ ແລະ ຊ່ວຍໃຫ້ວຽກທີ່ໃຊ້ຄອມພິວເຕີສູງສາມາດໂອນໄປປະມວນຜົນຢູ່ເຊີບເວີອື່ນໄດ້.", + "Deploy daemons" : "Daemon ການຕິດຕັ້ງ", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ. Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າ.", + "ExApp init timeout (minutes)" : "ເວລາໝົດກຳນົດຂອງການເລີ່ມ ExApp (ນາທີ)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ເວລາໝົດກຳນົດຂອງຂະບວນການເລີ່ມຕົ້ນ ExApp ຫຼັງຈາກນັ້ນ AppAPI ຈະໝາຍວ່າລົ້ມເຫຼວ", + "ExApp init timeout" : "ເວລາໝົດກຳນົດຂອງການເລີ່ມ ExApp", + "ExApp container restart policy" : "ນະໂຍບາຍການຣີສະຕາດ container ຂອງ ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "ເລືອກນະໂຍບາຍການຣີສະຕາດ container, ຕົວຢ່າງ 'always' ເພື່ອໃຫ້ແນ່ໃຈວ່າ ExApps ຈະເຮັດວຽກຫຼັງຈາກເຊີບເວີ daemon ຣີບູດ", + "This settings changes are effective only for newly created containers" : "ການປ່ຽນແປງການຕັ້ງຄ່ານີ້ມີຜົນກັບ container ທີ່ສ້າງໃໝ່ເທົ່ານັ້ນ", + "Deploy daemon deletion confirmation" : "ການຢືນຢັນການລຶບ Daemon ການຕິດຕັ້ງ", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "ເຈົ້າແນ່ໃຈບໍ່ວ່າຕ້ອງການລຶບ Daemon ການຕິດຕັ້ງ \"{name}\"?", + "Remove all ExApps installed on this daemon" : "ລຶບ ExApps ທັງໝົດທີ່ຕິດຕັ້ງໃນ daemon ນີ້", "Cancel" : "ຍົກເລີກ", "Delete" : "ລຶບ", - "Default" : "ເລີ່ມຕົ້ນ", + "A \"manual-install\" deploy daemon cannot be set as default" : "Daemon ການຕິດຕັ້ງແບບ \"manual-install\" ບໍ່ສາມາດຕັ້ງເປັນຄ່າເລີ່ມຕົ້ນໄດ້", + "Failed to save admin settings. Check the logs" : "ບັນທຶກການຕັ້ງຄ່າຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Password confirmation failed" : "ການຢືນຢັນລະຫັດຜ່ານບໍ່ສຳເລັດ", + "Default" : "ຄ່າເລີ່ມຕົ້ນ", + "Set as default" : "ຕັ້ງເປັນຄ່າເລີ່ມຕົ້ນ", + "Test deploy" : "ທົດສອບການຕິດຕັ້ງ", + "Docker registries" : "ລາຍການ Docker", "Edit" : "ແກ້ໄຂ", + "Daemon connection successful" : "ການເຊື່ອມຕໍ່ Daemon ສຳເລັດ", + "Failed to connect to the daemon. Check the logs" : "ເຊື່ອມຕໍ່ກັບ daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Failed to check connection to the daemon. Check the logs" : "ກວດສອບການເຊື່ອມຕໍ່ກັບ daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Unlimited" : "ບໍ່ຈຳກັດ", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU"], + "Deploy daemon configuration" : "ການຕັ້ງຄ່າ Daemon ການຕິດຕັ້ງ", + "Deploy daemon configuration details" : "ລາຍລະອຽດການຕັ້ງຄ່າ Daemon ການຕິດຕັ້ງ", + "Deploy daemon" : "Daemon ການຕິດຕັ້ງ", + "Default daemon. ExApps will be installed on it" : "Daemon ເລີ່ມຕົ້ນ. ExApps ຈະຖືກຕິດຕັ້ງໃສ່ມັນ", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Daemon \"Manual install\" ມັກຈະໃຊ້ສຳລັບການພັດທະນາ. ມັນບໍ່ສາມາດຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນໄດ້.", + "ExApps installed" : "ExApps ທີ່ຕິດຕັ້ງແລ້ວ", "Name" : "ຊື່", - "Remove" : "ຍ້າຍອອກ", + "Protocol" : "ໂປຣໂຕຄໍ", + "Host" : "ໂຮສ", + "ExApp direct communication (FRP disabled)" : "ການສື່ສານໂດຍກົງຂອງ ExApp (FRP ປິດຢູ່)", + "Deploy options" : "ຕົວເລືອກການຕິດຕັ້ງ", + "Docker network" : "ເຄືອຂ່າຍ Docker", + "Nextcloud URL" : "URL ຂອງ Nextcloud", + "HaProxy password" : "ລະຫັດຜ່ານ HaProxy", + "GPU support" : "ຮອງຮັບ GPU", + "Computation device" : "ອຸປະກອນຄຳນວນ", + "Memory limit" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ", + "CPU limit" : "ຂີດຈຳກັດ CPU", + "Additional options" : "ຕົວເລືອກເພີ່ມເຕີມ", + "Check connection" : "ກວດສອບການເຊື່ອມຕໍ່", + "Registered Deploy daemons list" : "ລາຍຊື່ Daemon ການຕິດຕັ້ງທີ່ລົງທະບຽນແລ້ວ", + "No Deploy daemons are registered" : "ບໍ່ມີ Daemon ການຕິດຕັ້ງທີ່ລົງທະບຽນ", + "Register a custom one or configure one from the available templates" : "ລົງທະບຽນໂຕໃໝ່ ຫຼື ຕັ້ງຄ່າຈາກແມ່ແບບທີ່ມີຢູ່", + "Register daemon" : "ລົງທະບຽນ daemon", + "Register ExApp in Nextcloud" : "ລົງທະບຽນ ExApp ໃນ Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "ກວດເບິ່ງວ່າ ExApp ໄດ້ລົງທະບຽນໃນ Nextcloud ກ່ອນການຕິດຕັ້ງຫຼືບໍ່", + "Image pull" : "ດຶງ Image", + "Check if the image is successfully pulled" : "ກວດເບິ່ງວ່າດຶງ image ສຳເລັດຫຼືບໍ່", + "Container started" : "Container ເລີ່ມແລ້ວ", + "Check if the image successfully pulled and container is created and started" : "ກວດເບິ່ງວ່າດຶງ image ສຳເລັດ ແລະ container ຖືກສ້າງ ແລະ ເລີ່ມແລ້ວຫຼືບໍ່", + "Heartbeat" : "Heartbeat", + "Check for the heartbeat is finished and healthy" : "ກວດເບິ່ງວ່າ heartbeat ສຳເລັດ ແລະ ປົກກະຕິ", + "Init step" : "ຂັ້ນຕອນເລີ່ມຕົ້ນ", + "Wait for initialization step to finish" : "ລໍຖ້າໃຫ້ຂັ້ນຕອນເລີ່ມຕົ້ນສຳເລັດ", + "Enabled" : "ເປີດຢູ່", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "ກວດເບິ່ງວ່າ ExApp ຈັດການເຫດການເປີດໃຊ້ສຳເລັດ ແລະ ລົງທະບຽນທຸກຢ່າງຖືກຕ້ອງ", + "Only if ExApp container is preset" : "ສະເພາະກໍລະນີທີ່ມີ container ຂອງ ExApp ຢູ່ແລ້ວ", + "Deploy test passed successfully!" : "ການທົດສອບການຕິດຕັ້ງຜ່ານສຳເລັດ!", + "Deploy test failed at step \"{step}\"" : "ການທົດສອບການຕິດຕັ້ງລົ້ມເຫຼວທີ່ຂັ້ນຕອນ \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI ຈະພະຍາຍາມຕິດຕັ້ງ ExApp ໂຄງຮ່າງຂະໜາດນ້ອຍເພື່ອກວດສອບວ່າ daemon ຖືກຕັ້ງຄ່າຢ່າງຖືກຕ້ອງ ແລະ ຂັ້ນຕອນການຕິດຕັ້ງສຳເລັດ.", + "The following deploy test checks must succeed:" : "ການກວດສອບການທົດສອບການຕິດຕັ້ງຕໍ່ໄປນີ້ຕ້ອງຜ່ານ:", + "More information" : "ຂໍ້ມູນເພີ່ມເຕີມ", + "Download ExApp logs" : "ດາວໂຫຼດບັນທຶກ ExApp", + "Remove the test ExApp" : "ລຶບ ExApp ທົດສອບອອກ", + "Start the deploy test" : "ເລີ່ມການທົດສອບການຕິດຕັ້ງ", + "Stop the deploy test" : "ຢຸດການທົດສອບການຕິດຕັ້ງ", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "ExApp ທົດສອບຈະຖືກຍົກເລີກການລົງທະບຽນ ແລະ container ຂອງມັນຈະຖືກລຶບອອກເມື່ອກົດ \"ຢຸດການທົດສອບການຕິດຕັ້ງ\"", + "Please enter a registry domain" : "ກະລຸນາປ້ອນໂດເມນ registry", + "\"From\" cannot be \"local\"" : "\"ຈາກ\" ບໍ່ສາມາດເປັນ \"local\" ໄດ້", + "This registry mapping already exists" : "ການຈັບຄູ່ registry ນີ້ມີຢູ່ແລ້ວ", + "\"From\" and \"To\" cannot be the same" : "\"ຈາກ\" ແລະ \"ເຖິງ\" ບໍ່ສາມາດເປັນອັນດຽວກັນໄດ້", + "Docker registry mapping added" : "ເພີ່ມການຈັບຄູ່ Docker registry ແລ້ວ", + "Error adding Docker registry mapping" : "ການເພີ່ມການຈັບຄູ່ Docker registry ຜິດພາດ", + "Docker registry mapping removed" : "ລຶບການຈັບຄູ່ Docker registry ແລ້ວ", + "Error removing Docker registry mapping" : "ການລຶບການຈັບຄູ່ Docker registry ຜິດພາດ", + "Override Docker registries" : "ຂຽນທັບລາຍການ Docker", + "Configure Docker registry override mappings for the selected daemon." : "ຕັ້ງຄ່າການຈັບຄູ່ເພື່ອຂຽນທັບລາຍການ Docker ສຳລັບ daemon ທີ່ເລືອກ.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Registry ຕົ້ນທາງທີ່ກົງກັນໃນ info.xml ຂອງ ExApp ຈະຖືກຂຽນທັບໃນລະຫວ່າງການຕິດຕັ້ງ (ຂັ້ນຕອນດຶງ image).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "ສິ່ງນີ້ມີປະໂຫຍດຖ້າທ່ານຕ້ອງການໃຊ້ Docker registry ແບບກຳນົດເອງ, ຕົວຢ່າງ, ເພື່ອໃຊ້ Docker registry ສ່ວນຕົວ, ຫຼືໃຊ້ Docker registry ອື່ນສຳລັບການທົດສອບ.", + "Image pull will be skipped" : "ຈະຂ້າມການດຶງ Image", + "Remove" : "ລຶບອອກ", + "No custom Docker registries are registered" : "ບໍ່ມີ Docker registry ແບບກຳນົດເອງທີ່ລົງທະບຽນ", + "Add registry override mapping" : "ເພີ່ມການຈັບຄູ່ເພື່ອຂຽນທັບ registry", "From" : "ຈາກ", + "registry URL (e.g. ghcr.io)" : "url ຂອງ registry (ຕົວຢ່າງ ghcr.io)", "To" : "ເຖິງ", + "registry URL (e.g. docker.io)" : "url ຂອງ registry (ຕົວຢ່າງ docker.io)", + "Add" : "ເພີ່ມ", + "Hostname used by Nextcloud to access the ExApps" : "ຊື່ໂຮສທີ່ Nextcloud ໃຊ້ເພື່ອເຂົ້າເຖິງ ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "ຊື່ໂຮສ (ແລະພອດ) ທີ່ {name} ສາມາດໃຊ້ງານໄດ້. ບໍ່ຈຳເປັນຕ້ອງເປັນໂຮສສາທາລະນະ, ພຽງແຕ່ເປັນໂຮສທີ່ເຊີບເວີ Nextcloud ສາມາດເຂົ້າເຖິງໄດ້, ຕົວຢ່າງ {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ຊື່ໂຮສ (ແລະພອດ) ຫຼືເສັ້ນທາງທີ່ {name} ສາມາດໃຊ້ງານໄດ້. ບໍ່ຈຳເປັນຕ້ອງເປັນໂຮສສາທາລະນະ, ພຽງແຕ່ເປັນໂຮສທີ່ເຊີບເວີ Nextcloud ສາມາດເຂົ້າເຖິງໄດ້. ມັນຍັງສາມາດເປັນເສັ້ນທາງໄປຫາ Docker socket ໄດ້. (ຕົວຢ່າງ nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "ມີ daemon ທີ່ມີຊື່ນີ້ຢູ່ແລ້ວ", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "ລະຫັດລັບສຳລັບການສື່ສານຂອງ container HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "ລະຫັດຜ່ານການກວດສອບຂອງ AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "ການປ່ຽນແປງມີຜົນກັບ ExApps ທີ່ຕິດຕັ້ງໃໝ່ເທົ່ານັ້ນ. ສຳລັບ ExApps ທີ່ມີຢູ່ແລ້ວ, ຄວນສ້າງ container ຂອງ Docker ໃໝ່ເພື່ອໃຫ້ຄ່າການຕັ້ງຄ່າໃໝ່ມີຜົນ.", + "The Docker network that the deployed ExApps will use." : "ເຄືອຂ່າຍ Docker ທີ່ ExApps ທີ່ຕິດຕັ້ງຈະໃຊ້.", + "The URL should start with http:// or https://" : "URL ຄວນເລີ່ມຕົ້ນດ້ວຍ http:// ຫຼື https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "ສຳລັບ daemon ແບບ HTTPS, URL ຂອງ Nextcloud ຄວນເປັນ HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "ອຸປະກອນ GPU ທັງໝົດທີ່ມີຢູ່ໃນໂຮສຂອງ daemon ຕ້ອງຖືກເປີດໃຊ້ໃນ container ຂອງ ExApp ໂດຍ Docker.", + "DaemonConfig successfully registered" : "ລົງທະບຽນ DaemonConfig ສຳເລັດ", + "Failed to register DaemonConfig. Check the logs" : "ລົງທະບຽນ DaemonConfig ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "DaemonConfig successfully updated" : "ອັບເດດ DaemonConfig ສຳເລັດ", + "Failed to update DaemonConfig. Check the logs" : "ອັບເດດ DaemonConfig ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Failed to connect to Daemon. Check the logs" : "ເຊື່ອມຕໍ່ກັບ Daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Failed to check connection to Daemon. Check the logs" : "ກວດສອບການເຊື່ອມຕໍ່ກັບ Daemon ບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Edit the deploy daemon" : "ແກ້ໄຂ Daemon ການຕິດຕັ້ງ", + "Register a new deploy daemon" : "ລົງທະບຽນ Daemon ການຕິດຕັ້ງໃໝ່", + "Daemon configuration template" : "ແມ່ແບບການຕັ້ງຄ່າ Daemon", + "Select a daemon configuration template" : "ເລືອກແມ່ແບບການຕັ້ງຄ່າ daemon", + "Daemon registration form" : "ແບບຟອມການລົງທະບຽນ Daemon", + "Unique deploy daemon name" : "ຊື່ Daemon ການຕິດຕັ້ງທີ່ບໍ່ຊ້ຳໃຜ", + "Unique deploy Daemon name" : "ຊື່ Daemon ການຕິດຕັ້ງທີ່ບໍ່ຊ້ຳໃຜ", + "Display name" : "ຊື່ທີ່ສະແດງ", + "Deployment method" : "ວິທີການຕິດຕັ້ງ", + "Select the daemon deploy method" : "ເລືອກວິທີການຕິດຕັ້ງຂອງ daemon", + "HaRP host" : "ໂຮສ HaRP", + "Daemon host" : "ໂຮສ Daemon", + "HaRP shared key" : "ລະຫັດຮ່ວມຂອງ HaRP", + "The password must be at least 12 characters long" : "ລະຫັດຜ່ານຕ້ອງມີຢ່າງໜ້ອຍ 12 ຕົວອັກສອນ", + "Set this daemon as the default one" : "ຕັ້ງ daemon ນີ້ເປັນຄ່າເລີ່ມຕົ້ນ", + "Set as the default daemon" : "ຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນ", + "Enable HTTPS" : "ເປີດໃຊ້ HTTPS", + "Show deploy options" : "ສະແດງຕົວເລືອກການຕິດຕັ້ງ", + "Hide deploy options" : "ເຊື່ອງຕົວເລືອກການຕິດຕັ້ງ", + "Enable HaRP" : "ເປີດໃຊ້ HaRP", + "FRP server address" : "ທີ່ຢູ່ເຊີບເວີ FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "ທີ່ຢູ່ (host:port) ຂອງເຊີບເວີ FRP ທີ່ ExApp ຄວນຈະເຂົ້າເຖິງໄດ້ໃນເຄືອຂ່າຍທີ່ກຳນົດໃນສ່ວນ 'ເຄືອຂ່າຍ Docker'.", + "Docker socket proxy port" : "ພອດ proxy ຂອງ Docker socket", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "ພອດໃນ HaRP ທີ່ Docker socket proxy ເຊື່ອມຕໍ່ຫາ. ຄວນເປີດໃຫ້ເຂົ້າເຖິງໄດ້ ແຕ່ສຳລັບໂຕທີ່ສ້າງມາພ້ອມ, ບໍ່ຈຳເປັນຕ້ອງເປີດ ຫຼື ປ່ຽນແປງ.", + "Disable FRP" : "ປິດໃຊ້ FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "ທຸງສຳລັບການຕັ້ງຄ່າຂັ້ນສູງເທົ່ານັ້ນ. ປິດການໃຊ້ງານອຸໂມງ FRP ລະຫວ່າງ ExApps ແລະ HaRP.", + "Disabled" : "ປິດຢູ່", + "Docker network for ex-app deployment must be defined" : "ຕ້ອງກຳນົດເຄືອຂ່າຍ Docker ສຳລັບການຕິດຕັ້ງ ex-app", + "Compute device" : "ອຸປະກອນຄຳນວນ", + "Memory limit (in MiB)" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ (ເປັນ MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ປະລິມານໜ່ວຍຄວາມຈຳສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ເປັນເມບິໄບຕ໌", + "Must be a positive integer" : "ຕ້ອງເປັນຈຳນວນຖ້ວນບວກ", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ຈຳນວນຄໍ CPU ສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ (ຕົວຢ່າງ 0.5 ສໍາລັບເຄິ່ງຄໍ, 2 ສໍາລັບສອງຄໍ)", + "CPU limit as decimal value" : "ຂີດຈຳກັດ CPU ເປັນຄ່າທົດສະນິຍົມ", + "Must be a positive number" : "ຕ້ອງເປັນຈຳນວນບວກ", + "Add additional option" : "ເພີ່ມຕົວເລືອກເພີ່ມເຕີມ", + "Option key (unique)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ)", + "Option key (unique, e.g. my_key)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ, ຕົວຢ່າງ my_key)", + "Option key is required" : "ຕ້ອງມີຄີຕົວເລືອກ", + "Option value" : "ຄ່າຕົວເລືອກ", + "Option value is required" : "ຕ້ອງມີຄ່າຕົວເລືອກ", "Confirm" : "ຢືນຢັນ", "Save" : "ບັນທຶກ", "Register" : "ລົງທະບຽນ", - "Update to {version}" : "ປັບປຸງ ເປັນ {version}", - "Type" : "ພິມ", + "External Apps" : "ແອັບພາຍນອກ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n### ແອັບທີ່ມາພ້ອມ\n\n**ເລີ່ມຕັ້ງແຕ່ Nextcloud 30.0.1, ແອັບພລິເຄຊັນນີ້ໄດ້ຖືກລວມຢູ່ໃນຊຸດ Nextcloud ເລີ່ມຕົ້ນ.**\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "ໂຄງການ AppAPI ເປັນຂໍ້ລິເລີ່ມທີ່ໜ້າຕື່ນເຕັ້ນ ເຊິ່ງມີຈຸດປະສົງເພື່ອປະຕິວັດວິທີການພັດທະນາແອັບພລິເຄຊັນສຳລັບ Nextcloud.", + "Deploy Daemons" : "Daemon ການຕິດຕັ້ງ", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon ການຕິດຕັ້ງ. Daemon ການຕິດຕັ້ງ (DaemonConfig) ແມ່ນ daemon ປະສານງານຂອງ ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າ.", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "ກຳນົດນະໂຍບາຍການຣີສະຕາດ container, ຕົວຢ່າງ 'always' ເພື່ອໃຫ້ແນ່ໃຈວ່າ ExApp ເຮັດວຽກຫຼັງຈາກເຊີບເວີ daemon ຣີບູດ", + "This settings changes are reflected only for newly created containers" : "ການປ່ຽນແປງການຕັ້ງຄ່ານີ້ມີຜົນກັບ container ທີ່ສ້າງໃໝ່ເທົ່ານັ້ນ", + "{license}-licensed" : "ມີໃບອະນຸຍາດແບບ {license}", + "Update to {version}" : "ອັບເດດເປັນ {version}", + "Delete data on remove" : "ລຶບຂໍ້ມູນເມື່ອລຶບອອກ", + "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ແອັບນີ້ບໍ່ໄດ້ກຳນົດເວີຊັນ Nextcloud ຂັ້ນຕ່ຳ. ສິ່ງນີ້ຈະເປັນຂໍ້ຜິດພາດໃນອະນາຄົດ.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ແອັບນີ້ບໍ່ໄດ້ກຳນົດເວີຊັນ Nextcloud ສູງສຸດ. ສິ່ງນີ້ຈະເປັນຂໍ້ຜິດພາດໃນອະນາຄົດ.", + "This app cannot be installed because the following dependencies are not fulfilled:" : "ບໍ່ສາມາດຕິດຕັ້ງແອັບນີ້ໄດ້ ເພາະວ່າ dependencies ຕໍ່ໄປນີ້ຍັງບໍ່ຄົບຖ້ວນ:", + "View in store" : "ເບິ່ງໃນຮ້ານຄ້າ", + "Visit website" : "ເຂົ້າຊົມເວັບໄຊ", + "Report a bug" : "ລາຍງານບັກ", + "User documentation" : "ເອກະສານສຳລັບຜູ້ໃຊ້", + "Admin documentation" : "ເອກະສານສຳລັບຜູ້ເບິ່ງແຍງລະບົບ", + "Developer documentation" : "ເອກະສານສຳລັບນັກພັດທະນາ", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "ແອັບນີ້ບໍ່ໄດ້ລົງທະບຽນໃນ AppStore. ບໍ່ມີຂໍ້ມູນເພີ່ມເຕີມ. ສາມາດ ເປີດ/ປິດ ແລະ ລຶບອອກໄດ້ເທົ່ານັ້ນ.", + "This app is supported via your current Nextcloud subscription." : "ແອັບນີ້ໄດ້ຮັບການສະໜັບສະໜູນຜ່ານການສະໝັກສະມາຊິກ Nextcloud ປັດຈຸບັນຂອງທ່ານ.", + "Supported" : "ຮອງຮັບ", + "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "ແອັບທີ່ແນະນຳຖືກພັດທະນາໂດຍ ແລະ ພາຍໃນຊຸມຊົນ. ມັນສະເໜີຟັງຊັນຫຼັກ ແລະ ພ້ອມສຳລັບການໃຊ້ງານຈິງ.", + "Featured" : "ແນະນຳ", + "Update to {update}" : "ອັບເດດເປັນ {update}", + "All ExApps are up-to-date." : "ExApps ທັງໝົດທັນສະໄໝແລ້ວ.", + "Default Deploy daemon is not accessible" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້", + "Icon" : "ໄອຄອນ", + "Version" : "ເວີຊັນ", + "Daemon" : "Daemon", + "Level" : "ລະດັບ", + "Actions" : "ການກະທຳ", + "Results from other categories" : "ຜົນລັບຈາກໝວດໝູ່ອື່ນ", + "No apps found" : "ບໍ່ພົບແອັບ", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["ມີ %n ExApp ທີ່ຕ້ອງການອັບເດດ"], + "_Update_::_Update all_" : ["ອັບເດດທັງໝົດ"], + "Deploy Daemon" : "Daemon ການຕິດຕັ້ງ", + "Type" : "ປະເພດ", + "Display Name" : "ຊື່ທີ່ສະແດງ", + "GPUs support" : "ຮອງຮັບ GPUs", + "Are you sure you want delete Deploy Daemon" : "ເຈົ້າແນ່ໃຈບໍ່ວ່າຕ້ອງການລຶບ Daemon ການຕິດຕັ້ງ", + "All ExApps on this daemon will be removed" : "ExApps ທັງໝົດໃນ daemon ນີ້ຈະຖືກລຶບອອກ", + "All ExApps installed on this daemon will be removed" : "ExApps ທັງໝົດທີ່ຕິດຕັ້ງໃນ daemon ນີ້ຈະຖືກລຶບອອກ", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Daemon ການຕິດຕັ້ງແບບ \"manual-install\" ບໍ່ສາມາດຕັ້ງເປັນຄ່າເລີ່ມຕົ້ນໄດ້", + "Failed to save admin options. Check the logs" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ. ກວດເບິ່ງບັນທຶກ", + "Deploy daemon config details" : "ລາຍລະອຽດການຕັ້ງຄ່າ Daemon ການຕິດຕັ້ງ", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon ຕິດຕັ້ງດ້ວຍຕົນເອງມັກຈະໃຊ້ສຳລັບການພັດທະນາ. ມັນບໍ່ສາມາດຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນໄດ້.", + "Deploy config" : "ການຕັ້ງຄ່າການຕິດຕັ້ງ", + "Verify connection" : "ກວດສອບການເຊື່ອມຕໍ່", + "No Deploy daemons configured" : "ບໍ່ມີ Daemon ການຕິດຕັ້ງທີ່ຖືກຕັ້ງຄ່າ", + "Register a custom one or setup from available templates" : "ລົງທະບຽນໂຕໃໝ່ ຫຼື ຕັ້ງຄ່າຈາກແມ່ແບບທີ່ມີຢູ່", + "Register Daemon" : "ລົງທະບຽນ Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI ຈະພະຍາຍາມຕິດຕັ້ງ ExApp ໂຄງຮ່າງຂະໜາດນ້ອຍເພື່ອຢືນຢັນວ່າ Daemon ຖືກຕັ້ງຄ່າຢ່າງຖືກຕ້ອງ ແລະ ຂັ້ນຕອນການຕິດຕັ້ງຜ່ານ.", + "The following Deploy test checks must be passed to succeed:" : "ການກວດສອບການທົດສອບການຕິດຕັ້ງຕໍ່ໄປນີ້ຕ້ອງຜ່ານເພື່ອໃຫ້ສຳເລັດ:", + "More info" : "ຂໍ້ມູນເພີ່ມເຕີມ", + "Remove test ExApp" : "ລຶບ ExApp ທົດສອບອອກ", + "Start Deploy test" : "ເລີ່ມການທົດສອບການຕິດຕັ້ງ", + "Stop Deploy test" : "ຢຸດການທົດສອບການຕິດຕັ້ງ", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp ຈະຖືກຍົກເລີກການລົງທະບຽນ ແລະ container ຈະຖືກລຶບອອກເມື່ອກົດ \"ຢຸດການທົດສອບການຕິດຕັ້ງ\"", + "Hostname to access ExApps" : "ຊື່ໂຮສເພື່ອເຂົ້າເຖິງ ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "ຊື່ໂຮສ ຫຼື ເສັ້ນທາງເພື່ອເຂົ້າເຖິງ Docker daemon (ຕົວຢ່າງ nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "ມີ Daemon ທີ່ມີຊື່ນີ້ຢູ່ແລ້ວ", + "Password must be at least 12 characters long" : "ລະຫັດຜ່ານຕ້ອງມີຢ່າງໜ້ອຍ 12 ຕົວອັກສອນ", + "With https enabled network is set to host" : "ເມື່ອເປີດໃຊ້ https ເຄືອຂ່າຍຈະຖືກຕັ້ງເປັນ host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "ການປ່ຽນແປງຈະມີຜົນກັບ ExApps ທີ່ຕິດຕັ້ງໃໝ່ເທົ່ານັ້ນ. ສຳລັບ ExApps ທີ່ມີຢູ່ແລ້ວ, ຄວນສ້າງ container ຂອງ Docker ໃໝ່.", + "URL should start with http:// or https://" : "URL ຄວນເລີ່ມຕົ້ນດ້ວຍ http:// ຫຼື https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "ສຳລັບ daemon ແບບ HTTPS, URL ຂອງ Nextcloud ຄວນເປັນ HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "ອຸປະກອນ GPU ທັງໝົດທີ່ມີຢູ່ໃນໂຮສຂອງ daemon ຈະຖືກຮ້ອງຂໍໃຫ້ເປີດໃຊ້ໃນ container ຂອງ ExApp ໂດຍ Docker.", + "Edit Deploy Daemon" : "ແກ້ໄຂ Daemon ການຕິດຕັ້ງ", + "Register Deploy Daemon" : "ລົງທະບຽນ Daemon ການຕິດຕັ້ງ", + "Select daemon configuration template" : "ເລືອກແມ່ແບບການຕັ້ງຄ່າ daemon", + "Unique Deploy Daemon Name" : "ຊື່ Daemon ການຕິດຕັ້ງທີ່ບໍ່ຊ້ຳໃຜ", + "Select daemon deploy method" : "ເລືອກວິທີການຕິດຕັ້ງຂອງ daemon", + "Set daemon as default" : "ຕັ້ງ daemon ເປັນຄ່າເລີ່ມຕົ້ນ", + "Set as default daemon" : "ຕັ້ງເປັນ daemon ເລີ່ມຕົ້ນ", + "Enable https" : "ເປີດໃຊ້ https", + "Show deploy config" : "ສະແດງການຕັ້ງຄ່າການຕິດຕັ້ງ", + "Hide deploy config" : "ເຊື່ອງການຕັ້ງຄ່າການຕິດຕັ້ງ", + "Network" : "ເຄືອຂ່າຍ", + "Docker network name" : "ຊື່ເຄືອຂ່າຍ Docker", + "Additional option" : "ຕົວເລືອກເພີ່ມເຕີມ", + "by {author}\n{license}" : "ໂດຍ {author}\n{license}", + "Your apps" : "ແອັບຂອງທ່ານ", + "Documentation" : "ເອກະສານ", "Details" : "ລາຍລະອຽດ", - "Disable" : "ປິດ" + "Changelog" : "ລາຍການປ່ຽນແປງ", + "Active apps" : "ແອັບທີ່ເປີດໃຊ້ຢູ່", + "Disabled apps" : "ແອັບທີ່ປິດໃຊ້ຢູ່", + "Updates" : "ອັບເດດ", + "Featured apps" : "ແອັບທີ່ແນະນຳ", + "Supported apps" : "ແອັບທີ່ຮອງຮັບ", + "manual-install apps cannot be updated" : "ແອັບທີ່ຕິດຕັ້ງແບບ manual-install ບໍ່ສາມາດອັບເດດໄດ້", + "{progress}% Deploying" : "{progress}% ກໍາລັງຕິດຕັ້ງ", + "{progress}% Initializing" : "{progress}% ກໍາລັງເລີ່ມຕົ້ນ", + "Healthchecking" : "ກຳລັງກວດສອບສະຖານະ", + "Deploy and Enable" : "ຕິດຕັ້ງ ແລະ ເປີດໃຊ້", + "Enable" : "ເປີດໃຊ້", + "Disable" : "ປິດໃຊ້", + "Allow untested app" : "ອະນຸຍາດແອັບທີ່ບໍ່ໄດ້ທົດສອບ", + "Default Deploy daemon is not accessible. Please verify configuration" : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າ", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "ແອັບຈະຖືກດາວໂຫຼດຈາກ App Store ແລະ ຕິດຕັ້ງໃນ Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນ", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "ແອັບນີ້ບໍ່ໄດ້ຖືກໝາຍວ່າເຂົ້າກັນໄດ້ກັບເວີຊັນ Nextcloud ຂອງທ່ານ. ຖ້າທ່ານດຳເນີນການຕໍ່, ທ່ານຍັງຄົງສາມາດຕິດຕັ້ງແອັບໄດ້. ໝາຍເຫດວ່າແອັບອາດຈະບໍ່ເຮັດວຽກຕາມທີ່ຄາດໄວ້.", + "Your ExApps" : "ExApps ຂອງທ່ານ", + "An error occurred during the request. Unable to proceed." : "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການຮ້ອງຂໍ. ບໍ່ສາມາດດຳເນີນການຕໍ່ໄດ້.", + "The app has been enabled but needs to be updated." : "ແອັບໄດ້ຖືກເປີດໃຊ້ແລ້ວ ແຕ່ຕ້ອງການອັບເດດ.", + "Error: This app cannot be enabled because it makes the server unstable" : "ຜິດພາດ: ບໍ່ສາມາດເປີດໃຊ້ແອັບນີ້ໄດ້ເພາະມັນເຮັດໃຫ້ເຊີບເວີບໍ່ສະຖຽນ", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n\n### ລາຍຊື່ແອັບພລິເຄຊັນທີ່ຕ້ອງການ AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_ຖ້າທ່ານຕ້ອງການພັດທະນາແອັບພລິເຄຊັນ, ພວກເຮົາຍິນດີຊ່ວຍເຫຼືອ ແລະ ສະໜັບສະໜູນທ່ານ._\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index fd35259a..23a0fb31 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -31,6 +31,10 @@ OC.L10N.register( "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", + "Deploy daemons" : "Deploy daemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "O deploy daemon padrão não está acessível. Por favor, verifique a configuração", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", @@ -47,6 +51,10 @@ OC.L10N.register( "Unlimited" : "Ilimitado", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} de CPUs","{n} CPUs"], + "Deploy daemon configuration" : "Configuração de deploy daemon", + "Deploy daemon configuration details" : "Detalhes da configuração do deploy daemon", + "Deploy daemon" : "Deploy daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", @@ -57,11 +65,14 @@ OC.L10N.register( "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha do HaProxy", + "GPU support" : "Suporte a GPU", + "Computation device" : "Dispositivo de computação", "Memory limit" : "Limite de memória", "CPU limit" : "Limite da CPU", "Additional options" : "Opções adicionais", "Check connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", + "Register daemon" : "Registrar daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Image pull", @@ -79,8 +90,13 @@ OC.L10N.register( "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", "More information" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", + "Remove the test ExApp" : "Remover o ExApp de teste", + "Start the deploy test" : "Iniciar teste de implantação", + "Stop the deploy test" : "Parar teste de implantação", "Please enter a registry domain" : "Por favor, digite um domínio de registro", + "\"From\" cannot be \"local\"" : "\"De\" não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", + "\"From\" and \"To\" cannot be the same" : "\"De\" e \"Para\" não podem ser iguais", "Docker registry mapping added" : "Adicionado o mapeamento do registro do Docker", "Error adding Docker registry mapping" : "Erro ao adicionar o mapeamento do registro do Docker", "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", @@ -103,6 +119,8 @@ OC.L10N.register( "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", + "Edit the deploy daemon" : "Editar o deploy daemon", + "Register a new deploy daemon" : "Registrar um novo deploy daemon", "Daemon configuration template" : "Modelo de configuração do daemon", "Daemon registration form" : "Formulário de registro do Daemon", "Display name" : "Nome de exibição", @@ -110,6 +128,9 @@ OC.L10N.register( "HaRP host" : "Host HaRP", "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", + "Enable HTTPS" : "Ativar HTTPS", + "Show deploy options" : "Mostrar opções de implantação", + "Hide deploy options" : "Ocultar opções de implantação", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index a546c756..144779e7 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -29,6 +29,10 @@ "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", + "Deploy daemons" : "Deploy daemons", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "O deploy daemon padrão não está acessível. Por favor, verifique a configuração", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", @@ -45,6 +49,10 @@ "Unlimited" : "Ilimitado", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} de CPUs","{n} CPUs"], + "Deploy daemon configuration" : "Configuração de deploy daemon", + "Deploy daemon configuration details" : "Detalhes da configuração do deploy daemon", + "Deploy daemon" : "Deploy daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", @@ -55,11 +63,14 @@ "Docker network" : "Rede Docker", "Nextcloud URL" : "URL Nextcloud", "HaProxy password" : "Senha do HaProxy", + "GPU support" : "Suporte a GPU", + "Computation device" : "Dispositivo de computação", "Memory limit" : "Limite de memória", "CPU limit" : "Limite da CPU", "Additional options" : "Opções adicionais", "Check connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", + "Register daemon" : "Registrar daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", "Image pull" : "Image pull", @@ -77,8 +88,13 @@ "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", "More information" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", + "Remove the test ExApp" : "Remover o ExApp de teste", + "Start the deploy test" : "Iniciar teste de implantação", + "Stop the deploy test" : "Parar teste de implantação", "Please enter a registry domain" : "Por favor, digite um domínio de registro", + "\"From\" cannot be \"local\"" : "\"De\" não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", + "\"From\" and \"To\" cannot be the same" : "\"De\" e \"Para\" não podem ser iguais", "Docker registry mapping added" : "Adicionado o mapeamento do registro do Docker", "Error adding Docker registry mapping" : "Erro ao adicionar o mapeamento do registro do Docker", "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", @@ -101,6 +117,8 @@ "Failed to update DaemonConfig. Check the logs" : "Falha ao atualizar o DaemonConfig. Verifique os logs", "Failed to connect to Daemon. Check the logs" : "Falha ao conectar ao Daemon. Verifique os logs.", "Failed to check connection to Daemon. Check the logs" : "Falha ao verificar a conexão com o Daemon. Verifique os logs.", + "Edit the deploy daemon" : "Editar o deploy daemon", + "Register a new deploy daemon" : "Registrar um novo deploy daemon", "Daemon configuration template" : "Modelo de configuração do daemon", "Daemon registration form" : "Formulário de registro do Daemon", "Display name" : "Nome de exibição", @@ -108,6 +126,9 @@ "HaRP host" : "Host HaRP", "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", + "Enable HTTPS" : "Ativar HTTPS", + "Show deploy options" : "Mostrar opções de implantação", + "Hide deploy options" : "Ocultar opções de implantação", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", diff --git a/l10n/sw.js b/l10n/sw.js index ff45ba14..e29006d8 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "Chaguzi za ziada", "Check connection" : "Angalia muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", + "No Deploy daemons are registered" : "Hakuna damoni za kutumia zilizosajiliwa", "Register a custom one or configure one from the available templates" : "Sajili maalum au usanidi kutoka kwa violezo vinavyopatikana", "Register daemon" : "Sajili daemon", "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", @@ -130,6 +131,7 @@ OC.L10N.register( "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", "Hostname used by Nextcloud to access the ExApps" : "Jina la mwenyeji linalotumiwa na Nextcloud kufikia ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Hii haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la Docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "A daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", @@ -148,21 +150,36 @@ OC.L10N.register( "Edit the deploy daemon" : "Hariri daemon ya kusambaza", "Register a new deploy daemon" : "Register a new deploy daemon", "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", + "Select a daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", "Daemon registration form" : "Fomu ya usajili ya Daemon", + "Unique deploy daemon name" : "Jina la kipekee la kutumia daemon", + "Unique deploy Daemon name" : "Jina la kipekee la kutumia daemon", "Display name" : "Jina la kuonyesha", "Deployment method" : "Mbinu ya kupeleka", + "Select the daemon deploy method" : "Chagua mbinu ya kutumia daemoni", "HaRP host" : "mwenyeji wa HaRP", "Daemon host" : "mwenyeji ni Daemon", "HaRP shared key" : "Ufunguo wa pamoja wa HaRP", + "The password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", + "Set this daemon as the default one" : "Weka daemon hii kama chaguo-msingi", + "Set as the default daemon" : "Weka kama daemoni chaguo-msingi", + "Enable HTTPS" : "Washa HTTPS", + "Show deploy options" : "Onyesha chaguo za kutumia", + "Hide deploy options" : "Ficha chaguzi za kusambaza", "Enable HaRP" : "Washa HaRP", "FRP server address" : "Anwani ya seva ya FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Anwani (mwenyeji: ingilio) ya seva ya FRP ambayo inapaswa kufikiwa na ExApp katika mtandao iliyofafanuliwa katika sehemu ya 'Docker network'.", "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango katika HaRP ambayo proksi ya soketi ya Docker inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", - "Disabled" : "Zima", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", + "Disabled" : "Ilizimwa", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", "Compute device" : "Kuhesabu kifaa", "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "Must be a positive integer" : "Lazima iwe nambari chanya", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Idadi ya juu zaidi ya cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", "Must be a positive number" : "Lazima iwe nambari chanya", "Add additional option" : "Ongeza chaguo la ziada", diff --git a/l10n/sw.json b/l10n/sw.json index aecf25c6..689aa2a7 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -81,6 +81,7 @@ "Additional options" : "Chaguzi za ziada", "Check connection" : "Angalia muunganisho", "Registered Deploy daemons list" : "Orodha ya miunganisho iliyosajiliwa ya Deploy", + "No Deploy daemons are registered" : "Hakuna damoni za kutumia zilizosajiliwa", "Register a custom one or configure one from the available templates" : "Sajili maalum au usanidi kutoka kwa violezo vinavyopatikana", "Register daemon" : "Sajili daemon", "Register ExApp in Nextcloud" : "Sajili ExApp katika Nextcloud", @@ -128,6 +129,7 @@ "registry URL (e.g. docker.io)" : "URL ya usajili (e.g. docker.io)", "Add" : "Ongeza", "Hostname used by Nextcloud to access the ExApps" : "Jina la mwenyeji linalotumiwa na Nextcloud kufikia ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}.", "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Jina la mpangishaji (na lango) au njia ambayo {name} inapatikana. Hii haihitaji kuwa mwenyeji wa umma, mwenyeji tu anayeweza kufikiwa na seva ya Nextcloud. Inaweza pia kuwa njia ya tundu la Docker. (k.m. nextcloud-appapi-dsp:2375, /var/run/docker.sock)", "A daemon with this name already exists" : "Daemon yenye jina hili tayari ipo", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Ufunguo wa siri wa mawasiliano ya chombo cha HaRP (HP_SHARED_KEY).", @@ -146,21 +148,36 @@ "Edit the deploy daemon" : "Hariri daemon ya kusambaza", "Register a new deploy daemon" : "Register a new deploy daemon", "Daemon configuration template" : "Kiolezo cha usanidi wa Daemon", + "Select a daemon configuration template" : "Chagua kiolezo cha usanidi wa daemoni", "Daemon registration form" : "Fomu ya usajili ya Daemon", + "Unique deploy daemon name" : "Jina la kipekee la kutumia daemon", + "Unique deploy Daemon name" : "Jina la kipekee la kutumia daemon", "Display name" : "Jina la kuonyesha", "Deployment method" : "Mbinu ya kupeleka", + "Select the daemon deploy method" : "Chagua mbinu ya kutumia daemoni", "HaRP host" : "mwenyeji wa HaRP", "Daemon host" : "mwenyeji ni Daemon", "HaRP shared key" : "Ufunguo wa pamoja wa HaRP", + "The password must be at least 12 characters long" : "Nenosiri lazima liwe na urefu wa angalau vibambo 12", + "Set this daemon as the default one" : "Weka daemon hii kama chaguo-msingi", + "Set as the default daemon" : "Weka kama daemoni chaguo-msingi", + "Enable HTTPS" : "Washa HTTPS", + "Show deploy options" : "Onyesha chaguo za kutumia", + "Hide deploy options" : "Ficha chaguzi za kusambaza", "Enable HaRP" : "Washa HaRP", "FRP server address" : "Anwani ya seva ya FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Anwani (mwenyeji: ingilio) ya seva ya FRP ambayo inapaswa kufikiwa na ExApp katika mtandao iliyofafanuliwa katika sehemu ya 'Docker network'.", "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango katika HaRP ambayo proksi ya soketi ya Docker inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", - "Disabled" : "Zima", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", + "Disabled" : "Ilizimwa", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", "Compute device" : "Kuhesabu kifaa", "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "Must be a positive integer" : "Lazima iwe nambari chanya", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Idadi ya juu zaidi ya cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", "Must be a positive number" : "Lazima iwe nambari chanya", "Add additional option" : "Ongeza chaguo la ziada", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 5a170c56..36bf3879 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "附加選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "No Deploy daemons are registered" : "未註冊部署幕後程式", "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 1c386a39..ab1890bc 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -81,6 +81,7 @@ "Additional options" : "附加選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "No Deploy daemons are registered" : "未註冊部署幕後程式", "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 0e092d5b..664f38e4 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -83,6 +83,7 @@ OC.L10N.register( "Additional options" : "額外選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "No Deploy daemons are registered" : "未註冊部署幕後程式", "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 0c5c46be..fa84ae38 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -81,6 +81,7 @@ "Additional options" : "額外選項", "Check connection" : "檢查連線", "Registered Deploy daemons list" : "已註冊的部署幕後程式清單", + "No Deploy daemons are registered" : "未註冊部署幕後程式", "Register a custom one or configure one from the available templates" : "從可用範本註冊自訂範本或設定", "Register daemon" : "註冊幕後程式", "Register ExApp in Nextcloud" : "在 Nextcloud 註冊 ExApp", From c87bfa72d0c72aa77f1a95ef01d7e141f2e95bad Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 21 Nov 2025 00:20:25 +0000 Subject: [PATCH 216/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 1 - l10n/ar.json | 1 - l10n/ast.js | 1 - l10n/ast.json | 1 - l10n/az.js | 1 - l10n/az.json | 1 - l10n/be.js | 1 - l10n/be.json | 1 - l10n/bg.js | 1 - l10n/bg.json | 1 - l10n/bn_BD.js | 1 - l10n/bn_BD.json | 1 - l10n/br.js | 1 - l10n/br.json | 1 - l10n/ca.js | 1 - l10n/ca.json | 1 - l10n/cs.js | 28 +++++++++++++++++++++++++++- l10n/cs.json | 28 +++++++++++++++++++++++++++- l10n/da.js | 1 - l10n/da.json | 1 - l10n/de.js | 5 ++--- l10n/de.json | 5 ++--- l10n/de_DE.js | 5 ++--- l10n/de_DE.json | 5 ++--- l10n/el.js | 1 - l10n/el.json | 1 - l10n/en_GB.js | 5 ++--- l10n/en_GB.json | 5 ++--- l10n/eo.js | 1 - l10n/eo.json | 1 - l10n/es.js | 1 - l10n/es.json | 1 - l10n/es_AR.js | 1 - l10n/es_AR.json | 1 - l10n/es_CL.js | 1 - l10n/es_CL.json | 1 - l10n/es_CO.js | 1 - l10n/es_CO.json | 1 - l10n/es_CR.js | 1 - l10n/es_CR.json | 1 - l10n/es_DO.js | 1 - l10n/es_DO.json | 1 - l10n/es_EC.js | 1 - l10n/es_EC.json | 1 - l10n/es_GT.js | 1 - l10n/es_GT.json | 1 - l10n/es_HN.js | 1 - l10n/es_HN.json | 1 - l10n/es_MX.js | 1 - l10n/es_MX.json | 1 - l10n/es_NI.js | 1 - l10n/es_NI.json | 1 - l10n/es_PA.js | 1 - l10n/es_PA.json | 1 - l10n/es_PE.js | 1 - l10n/es_PE.json | 1 - l10n/es_PR.js | 1 - l10n/es_PR.json | 1 - l10n/es_PY.js | 1 - l10n/es_PY.json | 1 - l10n/es_SV.js | 1 - l10n/es_SV.json | 1 - l10n/es_UY.js | 1 - l10n/es_UY.json | 1 - l10n/et_EE.js | 1 - l10n/et_EE.json | 1 - l10n/eu.js | 1 - l10n/eu.json | 1 - l10n/fa.js | 1 - l10n/fa.json | 1 - l10n/fi.js | 1 - l10n/fi.json | 1 - l10n/fr.js | 1 - l10n/fr.json | 1 - l10n/ga.js | 5 ++--- l10n/ga.json | 5 ++--- l10n/gl.js | 5 ++--- l10n/gl.json | 5 ++--- l10n/he.js | 1 - l10n/he.json | 1 - l10n/hr.js | 1 - l10n/hr.json | 1 - l10n/hu.js | 1 - l10n/hu.json | 1 - l10n/id.js | 1 - l10n/id.json | 1 - l10n/is.js | 1 - l10n/is.json | 1 - l10n/it.js | 1 - l10n/it.json | 1 - l10n/ja.js | 1 - l10n/ja.json | 1 - l10n/ka.js | 1 - l10n/ka.json | 1 - l10n/ka_GE.js | 1 - l10n/ka_GE.json | 1 - l10n/kab.js | 1 - l10n/kab.json | 1 - l10n/km.js | 1 - l10n/km.json | 1 - l10n/ko.js | 1 - l10n/ko.json | 1 - l10n/lb.js | 1 - l10n/lb.json | 1 - l10n/lo.js | 5 ++--- l10n/lo.json | 5 ++--- l10n/lt_LT.js | 1 - l10n/lt_LT.json | 1 - l10n/lv.js | 1 - l10n/lv.json | 1 - l10n/mk.js | 1 - l10n/mk.json | 1 - l10n/mn.js | 1 - l10n/mn.json | 1 - l10n/nb.js | 1 - l10n/nb.json | 1 - l10n/nl.js | 1 - l10n/nl.json | 1 - l10n/nn_NO.js | 1 - l10n/nn_NO.json | 1 - l10n/oc.js | 1 - l10n/oc.json | 1 - l10n/pl.js | 1 - l10n/pl.json | 1 - l10n/pt_BR.js | 3 ++- l10n/pt_BR.json | 3 ++- l10n/pt_PT.js | 1 - l10n/pt_PT.json | 1 - l10n/ro.js | 1 - l10n/ro.json | 1 - l10n/ru.js | 1 - l10n/ru.json | 1 - l10n/sc.js | 1 - l10n/sc.json | 1 - l10n/sk.js | 1 - l10n/sk.json | 1 - l10n/sl.js | 1 - l10n/sl.json | 1 - l10n/sq.js | 1 - l10n/sq.json | 1 - l10n/sr.js | 1 - l10n/sr.json | 1 - l10n/sv.js | 1 - l10n/sv.json | 1 - l10n/sw.js | 5 ++--- l10n/sw.json | 5 ++--- l10n/th.js | 1 - l10n/th.json | 1 - l10n/tr.js | 1 - l10n/tr.json | 1 - l10n/ug.js | 1 - l10n/ug.json | 1 - l10n/uk.js | 1 - l10n/uk.json | 1 - l10n/vi.js | 1 - l10n/vi.json | 1 - l10n/zh_CN.js | 1 - l10n/zh_CN.json | 1 - l10n/zh_HK.js | 5 ++--- l10n/zh_HK.json | 5 ++--- l10n/zh_TW.js | 5 ++--- l10n/zh_TW.json | 5 ++--- 162 files changed, 94 insertions(+), 198 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index c341548e..2742a10d 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -92,7 +92,6 @@ OC.L10N.register( "Enable HaRP" : "تمكين HaRP", "FRP server address" : "عنوان خادوم FRP", "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", - "Disabled" : "مُعطّل", "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", "Compute device" : "إحسب الجهاز", "Add additional option" : "إضِف خياراً إضافيّاً", diff --git a/l10n/ar.json b/l10n/ar.json index fc240f8e..8c3ffb4c 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -90,7 +90,6 @@ "Enable HaRP" : "تمكين HaRP", "FRP server address" : "عنوان خادوم FRP", "Docker socket proxy port" : "منفذ وكيل مقبس \"دوكر\" Docker", - "Disabled" : "مُعطّل", "Docker network for ex-app deployment must be defined" : "يجب تعريف شبكة \"دوكر\" لتثبيت التطبيق الخارجي ex-app", "Compute device" : "إحسب الجهاز", "Add additional option" : "إضِف خياراً إضافيّاً", diff --git a/l10n/ast.js b/l10n/ast.js index b2e04097..fa1b9ed2 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -30,7 +30,6 @@ OC.L10N.register( "Add" : "Amestar", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", - "Disabled" : "Desactivóse", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", diff --git a/l10n/ast.json b/l10n/ast.json index 808c695b..f81d412f 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -28,7 +28,6 @@ "Add" : "Amestar", "Display name" : "Nome visible", "Daemon host" : "Agospiador del degorriu", - "Disabled" : "Desactivóse", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Rexistrase", diff --git a/l10n/az.js b/l10n/az.js index 70dd0770..f3f83372 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -8,7 +8,6 @@ OC.L10N.register( "Name" : "Ad", "Host" : "Şəbəkədə ünvan", "Enabled" : "İşə salınıb", - "Disabled" : "Dayandırılıb", "Confirm" : "Təsdiq edin", "Save" : "Saxla", "Update to {version}" : "{version} dək yenilə", diff --git a/l10n/az.json b/l10n/az.json index 619776b9..0ba25314 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -6,7 +6,6 @@ "Name" : "Ad", "Host" : "Şəbəkədə ünvan", "Enabled" : "İşə salınıb", - "Disabled" : "Dayandırılıb", "Confirm" : "Təsdiq edin", "Save" : "Saxla", "Update to {version}" : "{version} dək yenilə", diff --git a/l10n/be.js b/l10n/be.js index 52088643..9920a5ae 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -16,7 +16,6 @@ OC.L10N.register( "Add" : "Дадаць", "Display name" : "Імя для паказу", "Enable HTTPS" : "Уключыць HTTPS", - "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнавіць да {version}", diff --git a/l10n/be.json b/l10n/be.json index 1409fd83..9e97d619 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -14,7 +14,6 @@ "Add" : "Дадаць", "Display name" : "Імя для паказу", "Enable HTTPS" : "Уключыць HTTPS", - "Disabled" : "Адключана", "Confirm" : "Пацвердзіць", "Save" : "Захаваць", "Update to {version}" : "Абнавіць да {version}", diff --git a/l10n/bg.js b/l10n/bg.js index ba342d56..65dd9b1c 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -17,7 +17,6 @@ OC.L10N.register( "To" : "До", "Add" : "Добавяне", "Display name" : "Име за визуализация", - "Disabled" : "Изключено", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", diff --git a/l10n/bg.json b/l10n/bg.json index 65053507..3f80695d 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -15,7 +15,6 @@ "To" : "До", "Add" : "Добавяне", "Display name" : "Име за визуализация", - "Disabled" : "Изключено", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index 59e1f519..a7d4c5c6 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "হোস্ট", "Enabled" : "কার্যকর", "Add" : "যোগ কর", - "Disabled" : "অকার্যকর", "Save" : "সংরক্ষণ", "Version" : "ভার্সন", "Actions" : "পদক্ষেপসমূহ", diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index e8330f61..54e5c903 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -7,7 +7,6 @@ "Host" : "হোস্ট", "Enabled" : "কার্যকর", "Add" : "যোগ কর", - "Disabled" : "অকার্যকর", "Save" : "সংরক্ষণ", "Version" : "ভার্সন", "Actions" : "পদক্ষেপসমূহ", diff --git a/l10n/br.js b/l10n/br.js index 66304d9a..44c0a559 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Ostiz", "More information" : "Muioc'h a ditouroù", "Display name" : "Anv ardivink", - "Disabled" : "Disaotreañ", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", "{license}-licensed" : "{license}-aotre", diff --git a/l10n/br.json b/l10n/br.json index 320be797..abbd89b3 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -7,7 +7,6 @@ "Host" : "Ostiz", "More information" : "Muioc'h a ditouroù", "Display name" : "Anv ardivink", - "Disabled" : "Disaotreañ", "Confirm" : "Kadarnañ", "Save" : "Enrollañ", "{license}-licensed" : "{license}-aotre", diff --git a/l10n/ca.js b/l10n/ca.js index 7da7aa03..d4e2537a 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -84,7 +84,6 @@ OC.L10N.register( "Display name" : "Nom de visualització", "Deployment method" : "Mètode de desplegament", "Daemon host" : "Servidor del dimoni", - "Disabled" : "Inhabilitat", "Compute device" : "Dispositiu de computació", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", diff --git a/l10n/ca.json b/l10n/ca.json index ce08f428..f114e960 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -82,7 +82,6 @@ "Display name" : "Nom de visualització", "Deployment method" : "Mètode de desplegament", "Daemon host" : "Servidor del dimoni", - "Disabled" : "Inhabilitat", "Compute device" : "Dispositiu de computació", "Add additional option" : "Afegeix una opció addicional", "Option key (unique)" : "Tecla d'opció (única)", diff --git a/l10n/cs.js b/l10n/cs.js index 3c65dc7c..bb3d4865 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -30,10 +30,12 @@ OC.L10N.register( "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", + "Deploy daemons" : "Nasadit procesy služeb", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", + "Deploy daemon deletion confirmation" : "Potvrzení smazání procesu služby nasazování", "Cancel" : "Storno", "Delete" : "Smazat", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", @@ -46,6 +48,10 @@ OC.L10N.register( "Unlimited" : "Neomezeně", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} procesor","{n} procesory","{n} procesorů","{n} procesory"], + "Deploy daemon configuration" : "Nastavení procesu služby nasazování", + "Deploy daemon configuration details" : "Podrobnosti nastavení procesu služby nasazování", + "Deploy daemon" : "Proces nasazování", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", "ExApps installed" : "Nainstalované ExApps", "Name" : "Název", @@ -56,11 +62,15 @@ OC.L10N.register( "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", + "GPU support" : "Podpora GPU", + "Computation device" : "Výpočetní zařízení", "Memory limit" : "Limit paměti", "CPU limit" : "Limit počtu jader procesoru", "Additional options" : "Další možnosti", "Check connection" : "Zkontrolovat připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", + "No Deploy daemons are registered" : "Nejsou zaregistrované žádné procesy služby nasazování", + "Register daemon" : "Zaregistrovat proces služby", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", @@ -78,7 +88,11 @@ OC.L10N.register( "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", "More information" : "Podrobnosti", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", + "Remove the test ExApp" : "Odebrat testovací ExApp", + "Start the deploy test" : "Spustit zkoušku nasazení", + "Stop the deploy test" : "Zastavit zkoušku nasazení", "Please enter a registry domain" : "Zadejte doménu registru", + "\"From\" cannot be \"local\"" : "„Od“ nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", "Docker registry mapping added" : "Mapování na docker registry přidáno", "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", @@ -88,12 +102,14 @@ OC.L10N.register( "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", + "No custom Docker registries are registered" : "Nezaregistrovány žádné uživatelsky určené Docker registry", "Add registry override mapping" : "Přidat mapování přebití registru", "From" : "Od", "registry URL (e.g. ghcr.io)" : "URL registru (např. ghcr.io)", "To" : "Pro", "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění Docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", @@ -102,18 +118,28 @@ OC.L10N.register( "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", + "Edit the deploy daemon" : "Upravit proces služby nasazován", + "Register a new deploy daemon" : "Zaregistrovat nový proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", + "Select a daemon configuration template" : "Vyberte šablonu nastavení procesu služby", "Daemon registration form" : "Formulář registrace procesu služby", + "Unique deploy daemon name" : "Neopakující se název procesu služby nasazování", + "Unique deploy Daemon name" : "Neopakující se název procesu služby nasazování", "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", + "Select the daemon deploy method" : "Vyberte metodu nasazování procesu služby", "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", "HaRP shared key" : "Sdílený klíč HaRP", + "Set as the default daemon" : "Nastavit jako výchozí proces služby", + "Enable HTTPS" : "Zapnout HTTPS", + "Show deploy options" : "Zobrazit předvolby nasazení", + "Hide deploy options" : "Skrýt předvolby nasazen", "Enable HaRP" : "Zapnout HaRP", "FRP server address" : "Adresa FRP serveru", "Docker socket proxy port" : "Port Docker proxy soketu", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", - "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", "Memory limit (in MiB)" : "Limit paměti (v MiB)", diff --git a/l10n/cs.json b/l10n/cs.json index 4ad81a6c..66fbf3d6 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -28,10 +28,12 @@ "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", + "Deploy daemons" : "Nasadit procesy služeb", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", + "Deploy daemon deletion confirmation" : "Potvrzení smazání procesu služby nasazování", "Cancel" : "Storno", "Delete" : "Smazat", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", @@ -44,6 +46,10 @@ "Unlimited" : "Neomezeně", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} procesor","{n} procesory","{n} procesorů","{n} procesory"], + "Deploy daemon configuration" : "Nastavení procesu služby nasazování", + "Deploy daemon configuration details" : "Podrobnosti nastavení procesu služby nasazování", + "Deploy daemon" : "Proces nasazování", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", "ExApps installed" : "Nainstalované ExApps", "Name" : "Název", @@ -54,11 +60,15 @@ "Docker network" : "Síť pro Docker:", "Nextcloud URL" : "URL adresa Nextcloud", "HaProxy password" : "Heslo k HAProxy", + "GPU support" : "Podpora GPU", + "Computation device" : "Výpočetní zařízení", "Memory limit" : "Limit paměti", "CPU limit" : "Limit počtu jader procesoru", "Additional options" : "Další možnosti", "Check connection" : "Zkontrolovat připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", + "No Deploy daemons are registered" : "Nejsou zaregistrované žádné procesy služby nasazování", + "Register daemon" : "Zaregistrovat proces služby", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", "Image pull" : "Odeslání obrazu", @@ -76,7 +86,11 @@ "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", "More information" : "Podrobnosti", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", + "Remove the test ExApp" : "Odebrat testovací ExApp", + "Start the deploy test" : "Spustit zkoušku nasazení", + "Stop the deploy test" : "Zastavit zkoušku nasazení", "Please enter a registry domain" : "Zadejte doménu registru", + "\"From\" cannot be \"local\"" : "„Od“ nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", "Docker registry mapping added" : "Mapování na docker registry přidáno", "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", @@ -86,12 +100,14 @@ "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", + "No custom Docker registries are registered" : "Nezaregistrovány žádné uživatelsky určené Docker registry", "Add registry override mapping" : "Přidat mapování přebití registru", "From" : "Od", "registry URL (e.g. ghcr.io)" : "URL registru (např. ghcr.io)", "To" : "Pro", "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění Docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", @@ -100,18 +116,28 @@ "Failed to update DaemonConfig. Check the logs" : "Nepodařilo se zaktualizovat DaemonConfig. Nahlédněte do záznamu událostí", "Failed to connect to Daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", "Failed to check connection to Daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", + "Edit the deploy daemon" : "Upravit proces služby nasazován", + "Register a new deploy daemon" : "Zaregistrovat nový proces služby nasazování", "Daemon configuration template" : "Šablona nastavení procesu služby", + "Select a daemon configuration template" : "Vyberte šablonu nastavení procesu služby", "Daemon registration form" : "Formulář registrace procesu služby", + "Unique deploy daemon name" : "Neopakující se název procesu služby nasazování", + "Unique deploy Daemon name" : "Neopakující se název procesu služby nasazování", "Display name" : "Zobrazované jméno", "Deployment method" : "Metoda nasazování", + "Select the daemon deploy method" : "Vyberte metodu nasazování procesu služby", "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", "HaRP shared key" : "Sdílený klíč HaRP", + "Set as the default daemon" : "Nastavit jako výchozí proces služby", + "Enable HTTPS" : "Zapnout HTTPS", + "Show deploy options" : "Zobrazit předvolby nasazení", + "Hide deploy options" : "Skrýt předvolby nasazen", "Enable HaRP" : "Zapnout HaRP", "FRP server address" : "Adresa FRP serveru", "Docker socket proxy port" : "Port Docker proxy soketu", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", - "Disabled" : "Vypnuto", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", "Memory limit (in MiB)" : "Limit paměti (v MiB)", diff --git a/l10n/da.js b/l10n/da.js index e3f459e0..3f973d18 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -110,7 +110,6 @@ OC.L10N.register( "FRP server address" : "FRP server adresse", "Docker socket proxy port" : "Docker sokkel proxy port", "Disable FRP" : "Deaktivér FRP", - "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udrulning skal være defineret", "Compute device" : "Beregningsenhed", "Add additional option" : "Tilføj yderligere mulighed", diff --git a/l10n/da.json b/l10n/da.json index b3117bda..6cdbd6d4 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -108,7 +108,6 @@ "FRP server address" : "FRP server adresse", "Docker socket proxy port" : "Docker sokkel proxy port", "Disable FRP" : "Deaktivér FRP", - "Disabled" : "Deaktiveret", "Docker network for ex-app deployment must be defined" : "Docker netværk for ex-app udrulning skal være defineret", "Compute device" : "Beregningsenhed", "Add additional option" : "Tilføj yderligere mulighed", diff --git a/l10n/de.js b/l10n/de.js index c045c799..dc0b3ac1 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", - "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", diff --git a/l10n/de.json b/l10n/de.json index 8bac69b5..bc8e6fa8 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", - "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 6914a389..75d8bc24 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", - "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 95536046..aee76245 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", - "Disabled" : "Deaktiviert", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", "Memory limit (in MiB)" : "Speicherlimit (in MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "Must be a positive integer" : "Muss eine positive Ganzzahl sein", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximaler Speicher in Mebibyte, den der ExApp-Container verwenden darf", "CPU limit as decimal value" : "CPU-Limit als Dezimalwert", "Must be a positive number" : "Muss eine positive Zahl sein", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximale Anzahl an CPU-Kernen, die der ExApp-Container verwenden darf (z. B. 0,5 für einen halben Kern, 2 für zwei Kerne)", "Add additional option" : "Zusätzliche Option hinzufügen", "Option key (unique)" : "Optionsschlüssel (eindeutig)", "Option key (unique, e.g. my_key)" : "Optionsschlüssel (eindeutig, z. B. mein_Schlüssel)", diff --git a/l10n/el.js b/l10n/el.js index 998b670f..ca060e59 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -111,7 +111,6 @@ OC.L10N.register( "FRP server address" : "Διεύθυνση διακομιστή FRP", "Docker socket proxy port" : "Θύρα διακομιστή μεσολάβησης Docker socket", "Disable FRP" : "Απενεργοποίηση FRP", - "Disabled" : "Απενεργοποιημένο", "Docker network for ex-app deployment must be defined" : "Το δίκτυο Docker για ανάπτυξη ex-app πρέπει να οριστεί", "Compute device" : "Συσκευή υπολογισμού", "Add additional option" : "Προσθήκη πρόσθετης επιλογής", diff --git a/l10n/el.json b/l10n/el.json index 746d5902..85fcd522 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -109,7 +109,6 @@ "FRP server address" : "Διεύθυνση διακομιστή FRP", "Docker socket proxy port" : "Θύρα διακομιστή μεσολάβησης Docker socket", "Disable FRP" : "Απενεργοποίηση FRP", - "Disabled" : "Απενεργοποιημένο", "Docker network for ex-app deployment must be defined" : "Το δίκτυο Docker για ανάπτυξη ex-app πρέπει να οριστεί", "Compute device" : "Συσκευή υπολογισμού", "Add additional option" : "Προσθήκη πρόσθετης επιλογής", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 912d3896..eab6fcd2 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", - "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Compute device" : "Compute device", "Memory limit (in MiB)" : "Memory limit (in MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximum amount of memory that the ExApp container can use in mebibytes", "Must be a positive integer" : "Must be a positive integer", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximum amount of memory that the ExApp container can use in mebibytes", "CPU limit as decimal value" : "CPU limit as decimal value", "Must be a positive number" : "Must be a positive number", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", "Option key (unique, e.g. my_key)" : "Option key (unique, e.g. my_key)", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 375d7f1e..3b7c9267 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", - "Disabled" : "Disabled", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Compute device" : "Compute device", "Memory limit (in MiB)" : "Memory limit (in MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximum amount of memory that the ExApp container can use in mebibytes", "Must be a positive integer" : "Must be a positive integer", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Maximum amount of memory that the ExApp container can use in mebibytes", "CPU limit as decimal value" : "CPU limit as decimal value", "Must be a positive number" : "Must be a positive number", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)", "Add additional option" : "Add additional option", "Option key (unique)" : "Option key (unique)", "Option key (unique, e.g. my_key)" : "Option key (unique, e.g. my_key)", diff --git a/l10n/eo.js b/l10n/eo.js index f0d880e6..b2195d73 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -10,7 +10,6 @@ OC.L10N.register( "From" : "De", "To" : "Al", "Display name" : "Vidiga nomo", - "Disabled" : "Malkapabligita", "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", diff --git a/l10n/eo.json b/l10n/eo.json index 5e0b40b2..6cee80de 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -8,7 +8,6 @@ "From" : "De", "To" : "Al", "Display name" : "Vidiga nomo", - "Disabled" : "Malkapabligita", "Confirm" : "Konfirmi", "Save" : "Konservi", "Register" : "Registriĝi", diff --git a/l10n/es.js b/l10n/es.js index 8ad219b7..b48da63c 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -111,7 +111,6 @@ OC.L10N.register( "FRP server address" : "Dirección del servidor FRP", "Docker socket proxy port" : "Puerto del proxy para el socket Docker", "Disable FRP" : "Deshabilitar FRP", - "Disabled" : "Deshabilitado", "Docker network for ex-app deployment must be defined" : "La red Docker para despliegues de ex-app debe ser definida", "Compute device" : "Dispositivo de cómputo", "Add additional option" : "Añadir opción adicional", diff --git a/l10n/es.json b/l10n/es.json index ec0246c3..de73a2c3 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -109,7 +109,6 @@ "FRP server address" : "Dirección del servidor FRP", "Docker socket proxy port" : "Puerto del proxy para el socket Docker", "Disable FRP" : "Deshabilitar FRP", - "Disabled" : "Deshabilitado", "Docker network for ex-app deployment must be defined" : "La red Docker para despliegues de ex-app debe ser definida", "Compute device" : "Dispositivo de cómputo", "Add additional option" : "Añadir opción adicional", diff --git a/l10n/es_AR.js b/l10n/es_AR.js index d191baa7..f6cd3415 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -11,7 +11,6 @@ OC.L10N.register( "More information" : "Más información", "Remove" : "Eliminar", "Add" : "Agregar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_AR.json b/l10n/es_AR.json index 31a0fbb4..ab63be5b 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -9,7 +9,6 @@ "More information" : "Más información", "Remove" : "Eliminar", "Add" : "Agregar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CL.js b/l10n/es_CL.js index 94f51929..3192db8a 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -10,7 +10,6 @@ OC.L10N.register( "Enabled" : "Habilitado", "Remove" : "Remover", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 11b0ffad..9b1b1f9e 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -8,7 +8,6 @@ "Enabled" : "Habilitado", "Remove" : "Remover", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CO.js b/l10n/es_CO.js index 4985a05b..20ffd8b4 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CO.json b/l10n/es_CO.json index dbff645e..b30d98b0 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CR.js b/l10n/es_CR.js index 035c370f..785f53fb 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_CR.json b/l10n/es_CR.json index f1c464fd..79d0d7e2 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_DO.js b/l10n/es_DO.js index b921ccee..122a85cc 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_DO.json b/l10n/es_DO.json index ebbfde7f..68bd034d 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_EC.js b/l10n/es_EC.js index a97d65cb..85b2e9a7 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -14,7 +14,6 @@ OC.L10N.register( "To" : "A", "Add" : "Guardar", "Display name" : "Nombre para mostrar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index c85a0cb1..e801bd1b 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -12,7 +12,6 @@ "To" : "A", "Add" : "Guardar", "Display name" : "Nombre para mostrar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index 6b4df996..ae2b8a66 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -11,7 +11,6 @@ OC.L10N.register( "From" : "De", "To" : "Para", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_GT.json b/l10n/es_GT.json index ed501623..a6ae7adf 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -9,7 +9,6 @@ "From" : "De", "To" : "Para", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_HN.js b/l10n/es_HN.js index 4985a05b..20ffd8b4 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_HN.json b/l10n/es_HN.json index dbff645e..b30d98b0 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 26dc4683..623e47cd 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -14,7 +14,6 @@ OC.L10N.register( "To" : "Para", "Add" : "Añadir", "Display name" : "Nombre para mostrar", - "Disabled" : "Deshabilitado", "Compute device" : "Dispositivo de cómputo", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_MX.json b/l10n/es_MX.json index b4b12684..6d6baa53 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -12,7 +12,6 @@ "To" : "Para", "Add" : "Añadir", "Display name" : "Nombre para mostrar", - "Disabled" : "Deshabilitado", "Compute device" : "Dispositivo de cómputo", "Confirm" : "Confirmar", "Save" : "Guardar", diff --git a/l10n/es_NI.js b/l10n/es_NI.js index 34ec05d2..803adfcc 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_NI.json b/l10n/es_NI.json index ef5cbb20..10316237 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PA.js b/l10n/es_PA.js index 34ec05d2..803adfcc 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PA.json b/l10n/es_PA.json index ef5cbb20..10316237 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PE.js b/l10n/es_PE.js index 34ec05d2..803adfcc 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PE.json b/l10n/es_PE.json index ef5cbb20..10316237 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PR.js b/l10n/es_PR.js index 34ec05d2..803adfcc 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PR.json b/l10n/es_PR.json index ef5cbb20..10316237 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PY.js b/l10n/es_PY.js index 34ec05d2..803adfcc 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_PY.json b/l10n/es_PY.json index ef5cbb20..10316237 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_SV.js b/l10n/es_SV.js index 4985a05b..20ffd8b4 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_SV.json b/l10n/es_SV.json index dbff645e..b30d98b0 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_UY.js b/l10n/es_UY.js index 34ec05d2..803adfcc 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/es_UY.json b/l10n/es_UY.json index ef5cbb20..10316237 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -7,7 +7,6 @@ "Host" : "Servidor", "Enabled" : "Habilitado", "Add" : "Guardar", - "Disabled" : "Deshabilitado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registrar", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 3bd43534..ae2e4316 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -43,7 +43,6 @@ OC.L10N.register( "Set this daemon as the default one" : "Määra see taustateenus vaikimisi kasutatavaks", "Set as the default daemon" : "Määra vaikimisi taustateenuseks", "Enable HTTPS" : "Lülita HTTPS sisse", - "Disabled" : "Välja lülitatud", "Compute device" : "Arvutusseade", "Memory limit (in MiB)" : "Mälukasutuse ülempiir (MiB)", "Must be a positive integer" : "Peab olema positiivne täisarv", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 9e16c1db..cced77e0 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -41,7 +41,6 @@ "Set this daemon as the default one" : "Määra see taustateenus vaikimisi kasutatavaks", "Set as the default daemon" : "Määra vaikimisi taustateenuseks", "Enable HTTPS" : "Lülita HTTPS sisse", - "Disabled" : "Välja lülitatud", "Compute device" : "Arvutusseade", "Memory limit (in MiB)" : "Mälukasutuse ülempiir (MiB)", "Must be a positive integer" : "Peab olema positiivne täisarv", diff --git a/l10n/eu.js b/l10n/eu.js index e3e3d71f..94489d4f 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -42,7 +42,6 @@ OC.L10N.register( "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", - "Disabled" : "Desgaituta", "Compute device" : "Konputazio gailua", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", diff --git a/l10n/eu.json b/l10n/eu.json index 27150121..36f130cd 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -40,7 +40,6 @@ "Display name" : "Erakusteko izena", "Deployment method" : "Zabalketa metodoa", "Daemon host" : "Daimonaren ostalaria", - "Disabled" : "Desgaituta", "Compute device" : "Konputazio gailua", "Option value" : "Aukeraren balioa", "Confirm" : "Berretsi", diff --git a/l10n/fa.js b/l10n/fa.js index 6d6d521d..99eb633f 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -16,7 +16,6 @@ OC.L10N.register( "To" : "به", "Add" : "افزودن", "Display name" : "Display name", - "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", diff --git a/l10n/fa.json b/l10n/fa.json index e0afa987..18f11552 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -14,7 +14,6 @@ "To" : "به", "Add" : "افزودن", "Display name" : "Display name", - "Disabled" : "غیرفعال شده", "Confirm" : "تأیید", "Save" : "ذخیره", "Register" : "ثبت‌نام", diff --git a/l10n/fi.js b/l10n/fi.js index 9fe19396..5bbba258 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -17,7 +17,6 @@ OC.L10N.register( "To" : "Vastaanottaja", "Add" : "Lisää", "Display name" : "Näyttönimi", - "Disabled" : "Pois käytöstä", "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", diff --git a/l10n/fi.json b/l10n/fi.json index 8a544010..e816b9c3 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -15,7 +15,6 @@ "To" : "Vastaanottaja", "Add" : "Lisää", "Display name" : "Näyttönimi", - "Disabled" : "Pois käytöstä", "Confirm" : "Vahvista", "Save" : "Tallenna", "Register" : "Rekisteröidy", diff --git a/l10n/fr.js b/l10n/fr.js index bfe70bee..cdbb8e5d 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -87,7 +87,6 @@ OC.L10N.register( "Enable HaRP" : "Activer HaRP", "FRP server address" : "Adresse du serveur FRP", "Disable FRP" : "Désactiver FRP", - "Disabled" : "Désactivé", "Compute device" : "Equipement de calcul", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", diff --git a/l10n/fr.json b/l10n/fr.json index 1a6bca33..2260b96f 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -85,7 +85,6 @@ "Enable HaRP" : "Activer HaRP", "FRP server address" : "Adresse du serveur FRP", "Disable FRP" : "Désactiver FRP", - "Disabled" : "Désactivé", "Compute device" : "Equipement de calcul", "Add additional option" : "Ajouter une option supplémentaire", "Option key (unique)" : "Clé d'option (unique)", diff --git a/l10n/ga.js b/l10n/ga.js index 89481f37..856cd8e6 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An port i HaRP lena nascann seachfhreastalaí soicéad Docker. Ba chóir é seo a nochtadh ach i gcás an cheann ionsuite, ní gá é a nochtadh ná a athrú.", "Disable FRP" : "Díchumasaigh FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach le haghaidh socruithe ardleibhéil amháin. Díchumasaíonn sé an tollán FRP idir ExApps agus HaRP.", - "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Compute device" : "Gléas ríomh", "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", "Must be a positive number" : "Ní mór gur uimhir dhearfach í", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", "Option key (unique, e.g. my_key)" : "Eochair rogha (uathúil, m.sh. my_key)", diff --git a/l10n/ga.json b/l10n/ga.json index d9e47e07..d01ab1ad 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An port i HaRP lena nascann seachfhreastalaí soicéad Docker. Ba chóir é seo a nochtadh ach i gcás an cheann ionsuite, ní gá é a nochtadh ná a athrú.", "Disable FRP" : "Díchumasaigh FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach le haghaidh socruithe ardleibhéil amháin. Díchumasaíonn sé an tollán FRP idir ExApps agus HaRP.", - "Disabled" : "Faoi mhíchumas", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Compute device" : "Gléas ríomh", "Memory limit (in MiB)" : "Teorainn chuimhne (i MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "Must be a positive integer" : "Ní mór gur slánuimhir dhearfach í", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Uasmhéid cuimhne is féidir leis an gcoimeádán ExApp a úsáid i meibibheart", "CPU limit as decimal value" : "Teorainn LAP mar luach deachúil", "Must be a positive number" : "Ní mór gur uimhir dhearfach í", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Uasmhéid croíleacán LAP is féidir leis an gcoimeádán ExApp a úsáid (m.sh. 0.5 le haghaidh leathchroí, 2 le haghaidh dhá chroí)", "Add additional option" : "Cuir rogha breise leis", "Option key (unique)" : "Eochair rogha (uathúil)", "Option key (unique, e.g. my_key)" : "Eochair rogha (uathúil, m.sh. my_key)", diff --git a/l10n/gl.js b/l10n/gl.js index e41108c0..5b974460 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", - "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Compute device" : "Dispositivo de computación", "Memory limit (in MiB)" : "Límite de memoria (en MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Cantidade máxima de memoria en mebibytes que pode empregar o contedor ExApp", "Must be a positive integer" : "Debe ser un número enteiro positivo.", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que pode empregar o contedor ExApp (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Cantidade máxima de memoria en mebibytes que pode empregar o contedor ExApp", "CPU limit as decimal value" : "Límite da CPU como valor decimal", "Must be a positive number" : "Debe ser un número positivo.", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que pode empregar o contedor ExApp (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", "Option key (unique, e.g. my_key)" : "Clave de opción (única, p. ex., a_miña_clave)", diff --git a/l10n/gl.json b/l10n/gl.json index eb85b996..e5fc06b2 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", - "Disabled" : "Desactivado", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Compute device" : "Dispositivo de computación", "Memory limit (in MiB)" : "Límite de memoria (en MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Cantidade máxima de memoria en mebibytes que pode empregar o contedor ExApp", "Must be a positive integer" : "Debe ser un número enteiro positivo.", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que pode empregar o contedor ExApp (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Cantidade máxima de memoria en mebibytes que pode empregar o contedor ExApp", "CPU limit as decimal value" : "Límite da CPU como valor decimal", "Must be a positive number" : "Debe ser un número positivo.", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que pode empregar o contedor ExApp (por exemplo, 0,5 para medio núcleo, 2 para dous núcleos)", "Add additional option" : "Engadir unha opción adicional", "Option key (unique)" : "Clave de opción (única)", "Option key (unique, e.g. my_key)" : "Clave de opción (única, p. ex., a_miña_clave)", diff --git a/l10n/he.js b/l10n/he.js index 369915f5..904cab62 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -15,7 +15,6 @@ OC.L10N.register( "From" : "מאת", "To" : "אל", "Add" : "הוספה", - "Disabled" : "מושבת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", diff --git a/l10n/he.json b/l10n/he.json index 5c325278..de362fa9 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -13,7 +13,6 @@ "From" : "מאת", "To" : "אל", "Add" : "הוספה", - "Disabled" : "מושבת", "Confirm" : "אימות", "Save" : "שמירה", "Register" : "רישום", diff --git a/l10n/hr.js b/l10n/hr.js index a424b642..fa811f12 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -15,7 +15,6 @@ OC.L10N.register( "From" : "Od", "To" : "Do", "Add" : "Dodaj", - "Disabled" : "Onemogućeno", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", diff --git a/l10n/hr.json b/l10n/hr.json index 54061a93..9ae4c628 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -13,7 +13,6 @@ "From" : "Od", "To" : "Do", "Add" : "Dodaj", - "Disabled" : "Onemogućeno", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", diff --git a/l10n/hu.js b/l10n/hu.js index c6063917..11c43474 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -18,7 +18,6 @@ OC.L10N.register( "To" : "Címzett", "Add" : "Hozzáadás", "Display name" : "Megjelenítendő név", - "Disabled" : "Letiltva", "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", diff --git a/l10n/hu.json b/l10n/hu.json index 46cd5e5e..8a017958 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -16,7 +16,6 @@ "To" : "Címzett", "Add" : "Hozzáadás", "Display name" : "Megjelenítendő név", - "Disabled" : "Letiltva", "Confirm" : "Megerősítés", "Save" : "Mentés", "Register" : "Regisztráció", diff --git a/l10n/id.js b/l10n/id.js index 3e6a3316..4ba6293f 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -11,7 +11,6 @@ OC.L10N.register( "Enabled" : "Diaktifkan", "Remove" : "Hapus", "Add" : "Tambah", - "Disabled" : "Dinonaktifkan", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", diff --git a/l10n/id.json b/l10n/id.json index 2d44f42e..4184f420 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -9,7 +9,6 @@ "Enabled" : "Diaktifkan", "Remove" : "Hapus", "Add" : "Tambah", - "Disabled" : "Dinonaktifkan", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", diff --git a/l10n/is.js b/l10n/is.js index c73bc911..59028cd4 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -15,7 +15,6 @@ OC.L10N.register( "To" : "Til", "Add" : "Bæta við", "Display name" : "Birtingarnafn", - "Disabled" : "Óvirkt", "Compute device" : "Reiknitæki", "Confirm" : "Staðfesta", "Save" : "Vista", diff --git a/l10n/is.json b/l10n/is.json index 375e87c4..bdb22827 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -13,7 +13,6 @@ "To" : "Til", "Add" : "Bæta við", "Display name" : "Birtingarnafn", - "Disabled" : "Óvirkt", "Compute device" : "Reiknitæki", "Confirm" : "Staðfesta", "Save" : "Vista", diff --git a/l10n/it.js b/l10n/it.js index e3a058f1..d635050f 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -17,7 +17,6 @@ OC.L10N.register( "To" : "A", "Add" : "Aggiungi", "Display name" : "Nome visualizzato", - "Disabled" : "Disabilitata", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", diff --git a/l10n/it.json b/l10n/it.json index e8cf2a2a..ee148f6f 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -15,7 +15,6 @@ "To" : "A", "Add" : "Aggiungi", "Display name" : "Nome visualizzato", - "Disabled" : "Disabilitata", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", diff --git a/l10n/ja.js b/l10n/ja.js index 8bf765e1..596c1f88 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -97,7 +97,6 @@ OC.L10N.register( "Enable HaRP" : "HaRPを有効化", "FRP server address" : "FRPサーバーアドレス", "Disable FRP" : "FRPを無効化", - "Disabled" : "無効", "Compute device" : "計算デバイス", "Must be a positive integer" : "正の整数である必要があります", "Must be a positive number" : "正の数である必要があります", diff --git a/l10n/ja.json b/l10n/ja.json index bb91b0e5..34a1ac1b 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -95,7 +95,6 @@ "Enable HaRP" : "HaRPを有効化", "FRP server address" : "FRPサーバーアドレス", "Disable FRP" : "FRPを無効化", - "Disabled" : "無効", "Compute device" : "計算デバイス", "Must be a positive integer" : "正の整数である必要があります", "Must be a positive number" : "正の数である必要があります", diff --git a/l10n/ka.js b/l10n/ka.js index 07d03af0..176eb0a8 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -16,7 +16,6 @@ OC.L10N.register( "To" : "To", "Add" : "დამატება", "Display name" : "Display name", - "Disabled" : "Disabled", "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", diff --git a/l10n/ka.json b/l10n/ka.json index 1add7e15..966d8c4c 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -14,7 +14,6 @@ "To" : "To", "Add" : "დამატება", "Display name" : "Display name", - "Disabled" : "Disabled", "Confirm" : "Confirm", "Save" : "Save", "Register" : "Register", diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index d6076819..67d06bfd 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -9,7 +9,6 @@ OC.L10N.register( "Name" : "სახელი", "Host" : "ჰოსტი", "Enabled" : "მოქმედია", - "Disabled" : "არაა მოქმედი", "Confirm" : "დადასტურება", "Save" : "შენახვა", "Register" : "რეგისტრაცია", diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 5b80f23e..ea1dae23 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -7,7 +7,6 @@ "Name" : "სახელი", "Host" : "ჰოსტი", "Enabled" : "მოქმედია", - "Disabled" : "არაა მოქმედი", "Confirm" : "დადასტურება", "Save" : "შენახვა", "Register" : "რეგისტრაცია", diff --git a/l10n/kab.js b/l10n/kab.js index 9b256e18..7567f578 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -8,7 +8,6 @@ OC.L10N.register( "Name" : "Nom", "Enabled" : "Yermed", "Remove" : "Kkes", - "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", "Update to {version}" : "Leqqem ar {version}", diff --git a/l10n/kab.json b/l10n/kab.json index 0142cc0e..e76a1648 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -6,7 +6,6 @@ "Name" : "Nom", "Enabled" : "Yermed", "Remove" : "Kkes", - "Disabled" : "Ittwarermed", "Confirm" : "Serggeg", "Save" : "Sekles", "Update to {version}" : "Leqqem ar {version}", diff --git a/l10n/km.js b/l10n/km.js index c5c7a57e..a6afcb1f 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -9,7 +9,6 @@ OC.L10N.register( "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", "Add" : "បន្ថែម", - "Disabled" : "បាន​បិទ", "Save" : "រក្សាទុក", "Version" : "កំណែ", "Type" : "ប្រភេទ", diff --git a/l10n/km.json b/l10n/km.json index 3009ccf3..6a9d7660 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -7,7 +7,6 @@ "Host" : "ម៉ាស៊ីន​ផ្ទុក", "Enabled" : "បាន​បើក", "Add" : "បន្ថែម", - "Disabled" : "បាន​បិទ", "Save" : "រក្សាទុក", "Version" : "កំណែ", "Type" : "ប្រភេទ", diff --git a/l10n/ko.js b/l10n/ko.js index 3c266358..2350b4b1 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -76,7 +76,6 @@ OC.L10N.register( "Display name" : "표시 이름", "Deployment method" : "배포 방식", "Daemon host" : "데몬 호스트", - "Disabled" : "비활성화됨", "Compute device" : "컴퓨팅 장치", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", diff --git a/l10n/ko.json b/l10n/ko.json index b8ef80eb..4252dfa7 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -74,7 +74,6 @@ "Display name" : "표시 이름", "Deployment method" : "배포 방식", "Daemon host" : "데몬 호스트", - "Disabled" : "비활성화됨", "Compute device" : "컴퓨팅 장치", "Add additional option" : "부가 옵션 추가", "Option key (unique)" : "옵션 키(고유)", diff --git a/l10n/lb.js b/l10n/lb.js index 647c5800..f59b12f2 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -8,7 +8,6 @@ OC.L10N.register( "Host" : "Host", "Enabled" : "Aktivéiert", "Add" : "Dobäisetzen", - "Disabled" : "Deaktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", "Report a bug" : "E Feeler melden", diff --git a/l10n/lb.json b/l10n/lb.json index 33b3990a..64549766 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -6,7 +6,6 @@ "Host" : "Host", "Enabled" : "Aktivéiert", "Add" : "Dobäisetzen", - "Disabled" : "Deaktivéiert", "Confirm" : "Konfirméieren", "Save" : "Späicheren", "Report a bug" : "E Feeler melden", diff --git a/l10n/lo.js b/l10n/lo.js index a570e8e1..d781d805 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "ພອດໃນ HaRP ທີ່ Docker socket proxy ເຊື່ອມຕໍ່ຫາ. ຄວນເປີດໃຫ້ເຂົ້າເຖິງໄດ້ ແຕ່ສຳລັບໂຕທີ່ສ້າງມາພ້ອມ, ບໍ່ຈຳເປັນຕ້ອງເປີດ ຫຼື ປ່ຽນແປງ.", "Disable FRP" : "ປິດໃຊ້ FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "ທຸງສຳລັບການຕັ້ງຄ່າຂັ້ນສູງເທົ່ານັ້ນ. ປິດການໃຊ້ງານອຸໂມງ FRP ລະຫວ່າງ ExApps ແລະ HaRP.", - "Disabled" : "ປິດຢູ່", "Docker network for ex-app deployment must be defined" : "ຕ້ອງກຳນົດເຄືອຂ່າຍ Docker ສຳລັບການຕິດຕັ້ງ ex-app", "Compute device" : "ອຸປະກອນຄຳນວນ", "Memory limit (in MiB)" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ (ເປັນ MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ປະລິມານໜ່ວຍຄວາມຈຳສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ເປັນເມບິໄບຕ໌", "Must be a positive integer" : "ຕ້ອງເປັນຈຳນວນຖ້ວນບວກ", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ຈຳນວນຄໍ CPU ສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ (ຕົວຢ່າງ 0.5 ສໍາລັບເຄິ່ງຄໍ, 2 ສໍາລັບສອງຄໍ)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ປະລິມານໜ່ວຍຄວາມຈຳສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ເປັນເມບິໄບຕ໌", "CPU limit as decimal value" : "ຂີດຈຳກັດ CPU ເປັນຄ່າທົດສະນິຍົມ", "Must be a positive number" : "ຕ້ອງເປັນຈຳນວນບວກ", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ຈຳນວນຄໍ CPU ສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ (ຕົວຢ່າງ 0.5 ສໍາລັບເຄິ່ງຄໍ, 2 ສໍາລັບສອງຄໍ)", "Add additional option" : "ເພີ່ມຕົວເລືອກເພີ່ມເຕີມ", "Option key (unique)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ)", "Option key (unique, e.g. my_key)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ, ຕົວຢ່າງ my_key)", diff --git a/l10n/lo.json b/l10n/lo.json index dee6d17b..cd975196 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "ພອດໃນ HaRP ທີ່ Docker socket proxy ເຊື່ອມຕໍ່ຫາ. ຄວນເປີດໃຫ້ເຂົ້າເຖິງໄດ້ ແຕ່ສຳລັບໂຕທີ່ສ້າງມາພ້ອມ, ບໍ່ຈຳເປັນຕ້ອງເປີດ ຫຼື ປ່ຽນແປງ.", "Disable FRP" : "ປິດໃຊ້ FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "ທຸງສຳລັບການຕັ້ງຄ່າຂັ້ນສູງເທົ່ານັ້ນ. ປິດການໃຊ້ງານອຸໂມງ FRP ລະຫວ່າງ ExApps ແລະ HaRP.", - "Disabled" : "ປິດຢູ່", "Docker network for ex-app deployment must be defined" : "ຕ້ອງກຳນົດເຄືອຂ່າຍ Docker ສຳລັບການຕິດຕັ້ງ ex-app", "Compute device" : "ອຸປະກອນຄຳນວນ", "Memory limit (in MiB)" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ (ເປັນ MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ປະລິມານໜ່ວຍຄວາມຈຳສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ເປັນເມບິໄບຕ໌", "Must be a positive integer" : "ຕ້ອງເປັນຈຳນວນຖ້ວນບວກ", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ຈຳນວນຄໍ CPU ສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ (ຕົວຢ່າງ 0.5 ສໍາລັບເຄິ່ງຄໍ, 2 ສໍາລັບສອງຄໍ)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ປະລິມານໜ່ວຍຄວາມຈຳສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ເປັນເມບິໄບຕ໌", "CPU limit as decimal value" : "ຂີດຈຳກັດ CPU ເປັນຄ່າທົດສະນິຍົມ", "Must be a positive number" : "ຕ້ອງເປັນຈຳນວນບວກ", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ຈຳນວນຄໍ CPU ສູງສຸດທີ່ container ຂອງ ExApp ສາມາດໃຊ້ໄດ້ (ຕົວຢ່າງ 0.5 ສໍາລັບເຄິ່ງຄໍ, 2 ສໍາລັບສອງຄໍ)", "Add additional option" : "ເພີ່ມຕົວເລືອກເພີ່ມເຕີມ", "Option key (unique)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ)", "Option key (unique, e.g. my_key)" : "ຄີຕົວເລືອກ (ບໍ່ຊ້ຳໃຜ, ຕົວຢ່າງ my_key)", diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index a059dbfb..e179c7c3 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -18,7 +18,6 @@ OC.L10N.register( "From" : "Nuo", "To" : "Kam", "Add" : "Pridėti", - "Disabled" : "Išjungta", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index c9346b3e..740a4c17 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -16,7 +16,6 @@ "From" : "Nuo", "To" : "Kam", "Add" : "Pridėti", - "Disabled" : "Išjungta", "Confirm" : "Patvirtinti", "Save" : "Įrašyti", "Register" : "Registruotis", diff --git a/l10n/lv.js b/l10n/lv.js index a9a7417a..06d11933 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -14,7 +14,6 @@ OC.L10N.register( "To" : "Līdz", "Add" : "Pievienot", "Display name" : "Attēlojamais vārds", - "Disabled" : "Atspējots", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", diff --git a/l10n/lv.json b/l10n/lv.json index 80a57000..eada897d 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -12,7 +12,6 @@ "To" : "Līdz", "Add" : "Pievienot", "Display name" : "Attēlojamais vārds", - "Disabled" : "Atspējots", "Confirm" : "Apstiprināt", "Save" : "Saglabāt", "Update to {version}" : "Atjaunināts uz {version}", diff --git a/l10n/mk.js b/l10n/mk.js index 5538b76c..f08ef622 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -17,7 +17,6 @@ OC.L10N.register( "To" : "До", "Add" : "Додади", "Display name" : "Име и презиме", - "Disabled" : "Оневозможено", "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", diff --git a/l10n/mk.json b/l10n/mk.json index aaf6acc7..90270c7d 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -15,7 +15,6 @@ "To" : "До", "Add" : "Додади", "Display name" : "Име и презиме", - "Disabled" : "Оневозможено", "Confirm" : "Потврди", "Save" : "Сними", "Register" : "Регистрирај се", diff --git a/l10n/mn.js b/l10n/mn.js index 1b46c13b..81089452 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -8,7 +8,6 @@ OC.L10N.register( "Host" : "хост", "Enabled" : "Идэвхижүүлэх", "Add" : "Нэмэх", - "Disabled" : "идэвхигүй", "Confirm" : "Батлах", "Save" : "Хадгалах", "Update to {version}" : "{version} хувилбар руу шинэчлэх", diff --git a/l10n/mn.json b/l10n/mn.json index 532f3173..bce626e8 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -6,7 +6,6 @@ "Host" : "хост", "Enabled" : "Идэвхижүүлэх", "Add" : "Нэмэх", - "Disabled" : "идэвхигүй", "Confirm" : "Батлах", "Save" : "Хадгалах", "Update to {version}" : "{version} хувилбар руу шинэчлэх", diff --git a/l10n/nb.js b/l10n/nb.js index 6b9d5215..99c0ddcc 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -80,7 +80,6 @@ OC.L10N.register( "Display name" : "Visningsnavn", "Deployment method" : "Distribueringsmetode", "Daemon host" : "Daemon-vert", - "Disabled" : "Deaktivert", "Compute device" : "Beregningsenhet", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", diff --git a/l10n/nb.json b/l10n/nb.json index e2cf502b..ff260453 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -78,7 +78,6 @@ "Display name" : "Visningsnavn", "Deployment method" : "Distribueringsmetode", "Daemon host" : "Daemon-vert", - "Disabled" : "Deaktivert", "Compute device" : "Beregningsenhet", "Add additional option" : "Legg til ytterligere alternativ", "Option key (unique)" : "Alternativnøkkel (unik)", diff --git a/l10n/nl.js b/l10n/nl.js index d1a668a7..5c2ffe5a 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -109,7 +109,6 @@ OC.L10N.register( "FRP server address" : "FRP server adres", "Docker socket proxy port" : "Docker socket proxy poort", "Disable FRP" : "FRB uitschakelen", - "Disabled" : "Uitgeschakeld", "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", "Compute device" : "Compute apparaat", "Add additional option" : "Voeg additionele optie toe", diff --git a/l10n/nl.json b/l10n/nl.json index c984039f..58895aee 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -107,7 +107,6 @@ "FRP server address" : "FRP server adres", "Docker socket proxy port" : "Docker socket proxy poort", "Disable FRP" : "FRB uitschakelen", - "Disabled" : "Uitgeschakeld", "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", "Compute device" : "Compute apparaat", "Add additional option" : "Voeg additionele optie toe", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index b8007d5a..3f7134b3 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -8,7 +8,6 @@ OC.L10N.register( "Name" : "Namn", "Host" : "Tenar", "More information" : "Meir informasjon", - "Disabled" : "Deaktivert", "Save" : "Lagre", "Visit website" : "Besøk nettstaden", "Report a bug" : "Rapporter feil", diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index 55d46bd6..2e3605d4 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -6,7 +6,6 @@ "Name" : "Namn", "Host" : "Tenar", "More information" : "Meir informasjon", - "Disabled" : "Deaktivert", "Save" : "Lagre", "Visit website" : "Besøk nettstaden", "Report a bug" : "Rapporter feil", diff --git a/l10n/oc.js b/l10n/oc.js index 5c452dea..032b06f4 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -13,7 +13,6 @@ OC.L10N.register( "Remove" : "Suprimir", "From" : "De", "Add" : "Apondre", - "Disabled" : "Desactivat", "Confirm" : "Confirmar", "Save" : "Enregistrar", "Register" : "S'inscriure", diff --git a/l10n/oc.json b/l10n/oc.json index 40874689..0af68154 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -11,7 +11,6 @@ "Remove" : "Suprimir", "From" : "De", "Add" : "Apondre", - "Disabled" : "Desactivat", "Confirm" : "Confirmar", "Save" : "Enregistrar", "Register" : "S'inscriure", diff --git a/l10n/pl.js b/l10n/pl.js index 147e507a..91d1dcdd 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -114,7 +114,6 @@ OC.L10N.register( "FRP server address" : "Adres serwera FRP", "Docker socket proxy port" : "Port proxy gniazda Dockera", "Disable FRP" : "Wyłącz FRP", - "Disabled" : "Wyłączone", "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", "Compute device" : "Urządzenie obliczeniowe", "Memory limit (in MiB)" : "Limit pamięci (w MB)", diff --git a/l10n/pl.json b/l10n/pl.json index 363921c9..01a47503 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -112,7 +112,6 @@ "FRP server address" : "Adres serwera FRP", "Docker socket proxy port" : "Port proxy gniazda Dockera", "Disable FRP" : "Wyłącz FRP", - "Disabled" : "Wyłączone", "Docker network for ex-app deployment must be defined" : "Sieć Dockera dla wdrożenia ex-app musi być zdefiniowana", "Compute device" : "Urządzenie obliczeniowe", "Memory limit (in MiB)" : "Limit pamięci (w MB)", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 23a0fb31..33ce9672 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -113,6 +113,8 @@ OC.L10N.register( "Add" : "Adicionar", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", + "The URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Para um daemon HTTPS, o URL do Nextcloud deve ser HTTPS", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", @@ -135,7 +137,6 @@ OC.L10N.register( "FRP server address" : "Endereço do servidor FRP", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "Disable FRP" : "Desativar FRP", - "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Compute device" : "Dispositivo de computação", "Memory limit (in MiB)" : "Limite de memória (em MiB)", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 144779e7..0d1b5930 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -111,6 +111,8 @@ "Add" : "Adicionar", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", + "The URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Para um daemon HTTPS, o URL do Nextcloud deve ser HTTPS", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", @@ -133,7 +135,6 @@ "FRP server address" : "Endereço do servidor FRP", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "Disable FRP" : "Desativar FRP", - "Disabled" : "Desativado", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Compute device" : "Dispositivo de computação", "Memory limit (in MiB)" : "Limite de memória (em MiB)", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index 6d6d4388..33c679a7 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -14,7 +14,6 @@ OC.L10N.register( "To" : "Para", "Add" : "Adicionar", "Display name" : "Nome a exibir", - "Disabled" : "Desativado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 3116b053..3ea9285f 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -12,7 +12,6 @@ "To" : "Para", "Add" : "Adicionar", "Display name" : "Nome a exibir", - "Disabled" : "Desativado", "Confirm" : "Confirmar", "Save" : "Guardar", "Register" : "Registar", diff --git a/l10n/ro.js b/l10n/ro.js index ed1a6094..b9d9e858 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -15,7 +15,6 @@ OC.L10N.register( "To" : "Către", "Add" : "Adaugă", "Display name" : "Nume afișat", - "Disabled" : "Dezactivați", "Confirm" : "Confirmă", "Save" : "Salvează", "Register" : "Înregistrează-te", diff --git a/l10n/ro.json b/l10n/ro.json index b20e8dd6..077de991 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -13,7 +13,6 @@ "To" : "Către", "Add" : "Adaugă", "Display name" : "Nume afișat", - "Disabled" : "Dezactivați", "Confirm" : "Confirmă", "Save" : "Salvează", "Register" : "Înregistrează-te", diff --git a/l10n/ru.js b/l10n/ru.js index d51878c3..a59dc3b9 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -117,7 +117,6 @@ OC.L10N.register( "FRP server address" : "Адрес сервера FRP", "Docker socket proxy port" : "Порт прокси-сокета Docker", "Disable FRP" : "Отключить FRP", - "Disabled" : "Отключено", "Docker network for ex-app deployment must be defined" : "Сеть Docker для развертывания ex-app должна быть определена", "Compute device" : "Вычислительное устройство", "Add additional option" : "Добавить дополнительную опцию", diff --git a/l10n/ru.json b/l10n/ru.json index 6e6c6f82..1f84ebff 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -115,7 +115,6 @@ "FRP server address" : "Адрес сервера FRP", "Docker socket proxy port" : "Порт прокси-сокета Docker", "Disable FRP" : "Отключить FRP", - "Disabled" : "Отключено", "Docker network for ex-app deployment must be defined" : "Сеть Docker для развертывания ex-app должна быть определена", "Compute device" : "Вычислительное устройство", "Add additional option" : "Добавить дополнительную опцию", diff --git a/l10n/sc.js b/l10n/sc.js index 45da6239..760f1dcc 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -15,7 +15,6 @@ OC.L10N.register( "To" : "A", "Add" : "Agiunghe", "Display name" : "Ammustra nùmene", - "Disabled" : "Disativadu", "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", diff --git a/l10n/sc.json b/l10n/sc.json index 30f02be3..f2d2c34b 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -13,7 +13,6 @@ "To" : "A", "Add" : "Agiunghe", "Display name" : "Ammustra nùmene", - "Disabled" : "Disativadu", "Confirm" : "Cunfirma", "Save" : "Sarva", "Register" : "Registra", diff --git a/l10n/sk.js b/l10n/sk.js index 4abf8d37..a9d72035 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -93,7 +93,6 @@ OC.L10N.register( "Enable HaRP" : "Zapnúť HaRP", "FRP server address" : "HaRP adresa servera", "Docker socket proxy port" : "Docker socket proxy port", - "Disabled" : "Vypnuté", "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", "Compute device" : "Výpočetné zariadenie", "Add additional option" : "Pridať ďalšiu voľbu", diff --git a/l10n/sk.json b/l10n/sk.json index bd2c7d09..360b2bd6 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -91,7 +91,6 @@ "Enable HaRP" : "Zapnúť HaRP", "FRP server address" : "HaRP adresa servera", "Docker socket proxy port" : "Docker socket proxy port", - "Disabled" : "Vypnuté", "Docker network for ex-app deployment must be defined" : "Musí byť definovaná sieť Docker pre nasadenie ex-app", "Compute device" : "Výpočetné zariadenie", "Add additional option" : "Pridať ďalšiu voľbu", diff --git a/l10n/sl.js b/l10n/sl.js index f2b3052a..da0fbe9e 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -17,7 +17,6 @@ OC.L10N.register( "To" : "Za", "Add" : "Dodaj", "Display name" : "Prikazno ime", - "Disabled" : "Onemogočeno", "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", diff --git a/l10n/sl.json b/l10n/sl.json index 1c16b462..df007939 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -15,7 +15,6 @@ "To" : "Za", "Add" : "Dodaj", "Display name" : "Prikazno ime", - "Disabled" : "Onemogočeno", "Confirm" : "Potrdi", "Save" : "Shrani", "Register" : "Vpis računa", diff --git a/l10n/sq.js b/l10n/sq.js index 69d94856..c9344e87 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -11,7 +11,6 @@ OC.L10N.register( "Enabled" : "E aktivizuar", "Remove" : "Hiqe", "Add" : "Shto ", - "Disabled" : "I/E çaktivizuar", "Confirm" : "Konfirmo", "Save" : "Ruaje", "Register" : "Regjistrohu", diff --git a/l10n/sq.json b/l10n/sq.json index ca5c8196..35d5ade7 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -9,7 +9,6 @@ "Enabled" : "E aktivizuar", "Remove" : "Hiqe", "Add" : "Shto ", - "Disabled" : "I/E çaktivizuar", "Confirm" : "Konfirmo", "Save" : "Ruaje", "Register" : "Regjistrohu", diff --git a/l10n/sr.js b/l10n/sr.js index 7a8bf7e7..9d91380b 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -114,7 +114,6 @@ OC.L10N.register( "FRP server address" : "Адреса FRP сервера", "Docker socket proxy port" : "Порт проксија за докер сокет", "Disable FRP" : "Искључи FRP", - "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Compute device" : "Рачунарски уређај", "Memory limit (in MiB)" : "Ограничење меморије (у MiB)", diff --git a/l10n/sr.json b/l10n/sr.json index bbd79563..ee845147 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -112,7 +112,6 @@ "FRP server address" : "Адреса FRP сервера", "Docker socket proxy port" : "Порт проксија за докер сокет", "Disable FRP" : "Искључи FRP", - "Disabled" : "Искључено", "Docker network for ex-app deployment must be defined" : "Мора да се дефинише докер мрежа за постављање ex-app", "Compute device" : "Рачунарски уређај", "Memory limit (in MiB)" : "Ограничење меморије (у MiB)", diff --git a/l10n/sv.js b/l10n/sv.js index 24cec8a7..fc4fbe64 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -18,7 +18,6 @@ OC.L10N.register( "To" : "Till", "Add" : "Lägg till", "Display name" : "Visningsnamn", - "Disabled" : "Inaktiverad", "Confirm" : "Bekräfta", "Save" : "Spara", "Register" : "Registrera", diff --git a/l10n/sv.json b/l10n/sv.json index becd0ab0..05a9ed2e 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -16,7 +16,6 @@ "To" : "Till", "Add" : "Lägg till", "Display name" : "Visningsnamn", - "Disabled" : "Inaktiverad", "Confirm" : "Bekräfta", "Save" : "Spara", "Register" : "Registrera", diff --git a/l10n/sw.js b/l10n/sw.js index e29006d8..70986448 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango katika HaRP ambayo proksi ya soketi ya Docker inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", - "Disabled" : "Ilizimwa", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", "Compute device" : "Kuhesabu kifaa", "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "Must be a positive integer" : "Lazima iwe nambari chanya", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Idadi ya juu zaidi ya cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", "Must be a positive number" : "Lazima iwe nambari chanya", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Idadi ya juu zaidi ya cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", "Add additional option" : "Ongeza chaguo la ziada", "Option key (unique)" : "Ufunguo mbadala (unique)", "Option key (unique, e.g. my_key)" : "Ufunguo mbadala (unique, e.g. my_key)", diff --git a/l10n/sw.json b/l10n/sw.json index 689aa2a7..a1577815 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango katika HaRP ambayo proksi ya soketi ya Docker inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", - "Disabled" : "Ilizimwa", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", "Compute device" : "Kuhesabu kifaa", "Memory limit (in MiB)" : "Kikomo cha kumbukumbu (katika MiB)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "Must be a positive integer" : "Lazima iwe nambari chanya", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Idadi ya juu zaidi ya cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kiwango cha juu cha kumbukumbu ambacho chombo cha ExApp kinaweza kutumia katika mebibytes", "CPU limit as decimal value" : "Kikomo cha CPU kama thamani ya desimali", "Must be a positive number" : "Lazima iwe nambari chanya", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Idadi ya juu zaidi ya cores za CPU ambazo chombo cha ExApp kinaweza kutumia (k.m. 0.5 kwa nusu ya msingi, 2 kwa core mbili)", "Add additional option" : "Ongeza chaguo la ziada", "Option key (unique)" : "Ufunguo mbadala (unique)", "Option key (unique, e.g. my_key)" : "Ufunguo mbadala (unique, e.g. my_key)", diff --git a/l10n/th.js b/l10n/th.js index 95e56184..8094c852 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -10,7 +10,6 @@ OC.L10N.register( "Enabled" : "เปิดใช้งาน", "Remove" : "ลบออก", "Display name" : "ชื่อที่แสดง", - "Disabled" : "ปิดใช้งาน", "Confirm" : "ยืนยัน", "Save" : "บันทึก", "Register" : "ลงทะเบียน", diff --git a/l10n/th.json b/l10n/th.json index af472380..cb676dcf 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -8,7 +8,6 @@ "Enabled" : "เปิดใช้งาน", "Remove" : "ลบออก", "Display name" : "ชื่อที่แสดง", - "Disabled" : "ปิดใช้งาน", "Confirm" : "ยืนยัน", "Save" : "บันทึก", "Register" : "ลงทะเบียน", diff --git a/l10n/tr.js b/l10n/tr.js index 67fdc07e..2e1eb1ec 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -114,7 +114,6 @@ OC.L10N.register( "FRP server address" : "FRP sunucusu adresi", "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", "Disable FRP" : "FRP kullanılmasın", - "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Compute device" : "Hesaplama aygıtı", "Memory limit (in MiB)" : "Bellek sınırı (MiB)", diff --git a/l10n/tr.json b/l10n/tr.json index fd8464b4..37e8e024 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -112,7 +112,6 @@ "FRP server address" : "FRP sunucusu adresi", "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", "Disable FRP" : "FRP kullanılmasın", - "Disabled" : "Kullanılmıyor", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Compute device" : "Hesaplama aygıtı", "Memory limit (in MiB)" : "Bellek sınırı (MiB)", diff --git a/l10n/ug.js b/l10n/ug.js index 72c44653..f37e77ae 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -81,7 +81,6 @@ OC.L10N.register( "Display name" : "كۆرسىتىش ئىسمى", "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", "Daemon host" : "Daemon host", - "Disabled" : "چەكلەنگەن", "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", diff --git a/l10n/ug.json b/l10n/ug.json index 1e234a7b..1ddb319e 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -79,7 +79,6 @@ "Display name" : "كۆرسىتىش ئىسمى", "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", "Daemon host" : "Daemon host", - "Disabled" : "چەكلەنگەن", "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", diff --git a/l10n/uk.js b/l10n/uk.js index 29cd842f..0ea40c1c 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -114,7 +114,6 @@ OC.L10N.register( "FRP server address" : "Адреса сервера FRP", "Docker socket proxy port" : "Проксі-порт докерного сокета", "Disable FRP" : "Вимкнути FRP", - "Disabled" : "Вимкнено", "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", "Compute device" : "Обчислити пристрій", "Memory limit (in MiB)" : "Ліміт пам'яті (в Мбайт)", diff --git a/l10n/uk.json b/l10n/uk.json index 93b834dd..c8d22d01 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -112,7 +112,6 @@ "FRP server address" : "Адреса сервера FRP", "Docker socket proxy port" : "Проксі-порт докерного сокета", "Disable FRP" : "Вимкнути FRP", - "Disabled" : "Вимкнено", "Docker network for ex-app deployment must be defined" : "Необхідно визначити докерну мережу для розгортання ex-app", "Compute device" : "Обчислити пристрій", "Memory limit (in MiB)" : "Ліміт пам'яті (в Мбайт)", diff --git a/l10n/vi.js b/l10n/vi.js index be738758..b111cc85 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -14,7 +14,6 @@ OC.L10N.register( "From" : "Từ", "To" : "Tới", "Add" : "Thêm", - "Disabled" : "Đã vô hiệu", "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", diff --git a/l10n/vi.json b/l10n/vi.json index 4103aa75..be38104c 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -12,7 +12,6 @@ "From" : "Từ", "To" : "Tới", "Add" : "Thêm", - "Disabled" : "Đã vô hiệu", "Confirm" : "Xác nhận", "Save" : "Lưu", "Register" : "Đăng ký", diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index c1acba0c..43c6d4d2 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -38,7 +38,6 @@ OC.L10N.register( "Add" : "添加", "Display name" : "显示名称", "Deployment method" : "部署方式", - "Disabled" : "已禁用", "Compute device" : "计算设备", "Confirm" : "确认", "Save" : "保存", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index aa3571f9..f7d25b8a 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -36,7 +36,6 @@ "Add" : "添加", "Display name" : "显示名称", "Deployment method" : "部署方式", - "Disabled" : "已禁用", "Compute device" : "计算设备", "Confirm" : "确认", "Save" : "保存", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 36bf3879..3dda1bfd 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", - "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", "Option key (unique, e.g. my_key)" : "選項密鑰(獨一無二的,例如 my_key)", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index ab1890bc..eb8093f7 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", - "Disabled" : "停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "Add additional option" : "添加附加選項", "Option key (unique)" : "選項密鑰(獨一無二的)", "Option key (unique, e.g. my_key)" : "選項密鑰(獨一無二的,例如 my_key)", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 664f38e4..95538282 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -173,15 +173,14 @@ OC.L10N.register( "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", - "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", "Option key (unique, e.g. my_key)" : "選項鍵(唯一,例如 my_key)", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index fa84ae38..8c400564 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -171,15 +171,14 @@ "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", - "Disabled" : "已停用", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", "Memory limit (in MiB)" : "記憶體限制(以 MiB 計)", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "Must be a positive integer" : "必須為正整數", - "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp 容器可以使用的最大記憶體量(以 MiB 計)", "CPU limit as decimal value" : "CPU 限制(十進位值)", "Must be a positive number" : "必須為正數", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp 容器可以使用的最大 CPU 核心數(舉例來說,半個核心為 0.5,兩個核心為 2)", "Add additional option" : "新增其他選項", "Option key (unique)" : "選項鍵(唯一)", "Option key (unique, e.g. my_key)" : "選項鍵(唯一,例如 my_key)", From 84c7fab8d6cb9b928d91f72f8ae0a24b4707e9f9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 22 Nov 2025 00:20:38 +0000 Subject: [PATCH 217/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 34 ++++++++++++++++++++++++++++++++++ l10n/cs.json | 34 ++++++++++++++++++++++++++++++++++ l10n/et_EE.js | 2 ++ l10n/et_EE.json | 2 ++ l10n/km.js | 19 ------------------- l10n/km.json | 17 ----------------- 6 files changed, 72 insertions(+), 36 deletions(-) delete mode 100644 l10n/km.js delete mode 100644 l10n/km.json diff --git a/l10n/cs.js b/l10n/cs.js index bb3d4865..e5d08bec 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -25,19 +25,29 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI proces služby nasazování", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", "Deploy daemons" : "Nasadit procesy služeb", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Výchozí proces služby nasazování není dostupný. Zkontrolujte její nastavení", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Zvolte zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp aplikace budou spuštěné po restartu serveru s procesem služby", + "This settings changes are effective only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", "Deploy daemon deletion confirmation" : "Potvrzení smazání procesu služby nasazování", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Opravdu chcete proces nasazování „{name}“ smazat?", + "Remove all ExApps installed on this daemon" : "Odebrat veškeré ExApps, nainstalované na tomto procesu služby", "Cancel" : "Storno", "Delete" : "Smazat", + "A \"manual-install\" deploy daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", + "Failed to save admin settings. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", @@ -45,6 +55,8 @@ OC.L10N.register( "Docker registries" : "Docker registry", "Edit" : "Upravit", "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to the daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to the daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Unlimited" : "Neomezeně", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", @@ -53,6 +65,7 @@ OC.L10N.register( "Deploy daemon configuration details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy daemon" : "Proces nasazování", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Proces služby „Ruční instalace“ je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", "Name" : "Název", "Protocol" : "Protokol", @@ -70,6 +83,7 @@ OC.L10N.register( "Check connection" : "Zkontrolovat připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", "No Deploy daemons are registered" : "Nejsou zaregistrované žádné procesy služby nasazování", + "Register a custom one or configure one from the available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register daemon" : "Zaregistrovat proces služby", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", @@ -86,19 +100,25 @@ OC.L10N.register( "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli kontrole, že je proces služby správně nastaven a toho, že jsou kroky nasazování úspěšné.", + "The following deploy test checks must succeed:" : "Je třeba, aby aby následující kontroly zkoušky nasazení byly úspěšné:", "More information" : "Podrobnosti", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", "Remove the test ExApp" : "Odebrat testovací ExApp", "Start the deploy test" : "Spustit zkoušku nasazení", "Stop the deploy test" : "Zastavit zkoušku nasazení", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Registrace testovací ExApp zrušena a jeho kontejner odebrán na „Zastavit zkoušku nasazení“", "Please enter a registry domain" : "Zadejte doménu registru", "\"From\" cannot be \"local\"" : "„Od“ nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", + "\"From\" and \"To\" cannot be the same" : "„Od“ a „Pro“ nemůže být totéž", "Docker registry mapping added" : "Mapování na docker registry přidáno", "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", "Docker registry mapping removed" : "Mapování na docker registry odebráno", "Error removing Docker registry mapping" : "Chyba při odebírání mapování na Docker registry", "Override Docker registries" : "Přebít Docker registry", + "Configure Docker registry override mappings for the selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", @@ -109,9 +129,17 @@ OC.L10N.register( "To" : "Pro", "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", + "Hostname used by Nextcloud to access the ExApps" : "Název stroje, používaný Nextcloud pro přístup k ExApp aplikacím", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění Docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", + "A daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Změny jsou uplatněny pouze pro nově instalované ExApp aplikace. Pro stávající ExApps, aby nové hodnoty nastavení byly uplatněny, by měly Docker kontejnery být znovu vytvořeny.", + "The Docker network that the deployed ExApps will use." : "Docker síť kterou budou nasazované ExApps aplikace používat.", + "The URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude třeba, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", @@ -131,21 +159,27 @@ OC.L10N.register( "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", "HaRP shared key" : "Sdílený klíč HaRP", + "The password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "Set this daemon as the default one" : "Nastavit tento proces služby jako výchozí", "Set as the default daemon" : "Nastavit jako výchozí proces služby", "Enable HTTPS" : "Zapnout HTTPS", "Show deploy options" : "Zobrazit předvolby nasazení", "Hide deploy options" : "Skrýt předvolby nasazen", "Enable HaRP" : "Zapnout HaRP", "FRP server address" : "Adresa FRP serveru", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ExApp v síti, definované v sekci 'Docker Network'.", "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", "Memory limit (in MiB)" : "Limit paměti (v MiB)", "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kolik operační paměti nejvýše bude moci ExApp kontejner využívat (v MiB)", "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", "Must be a positive number" : "Je třeba, aby bylo kladné číslo", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", "Option key (unique, e.g. my_key)" : "Klíč volby (neopakující se, např. muj_klic)", diff --git a/l10n/cs.json b/l10n/cs.json index 66fbf3d6..06cd0c89 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -23,19 +23,29 @@ "AppAPI deploy daemon" : "AppAPI proces služby nasazování", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", "Failed to save admin options" : "Předvolby pro správu se nepodařilo uložit", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Projekt AppAPI je vzrušující iniciativa, která cílí na zmodernizování vývoje aplikací pro Nextcloud s pomocí docker kontejnerů. To umožňuje širší volbu programovacích jazyků a delegování výpočetně náročnějších úloh na jiný server.", "Deploy daemons" : "Nasadit procesy služeb", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Procesy nasazování. Proces služby nasazování (DaemonConfig) slouží pro orchestraci ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Výchozí proces služby nasazování není dostupný. Zkontrolujte její nastavení", "ExApp init timeout (minutes)" : "Časový limit inicializace ExApp (minuty)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Časový limit pro inicializaci ExApp po jehož uplynutí ji AppAPI označí za nezdařenou", "ExApp init timeout" : "Časový limit inicializace ExApp", "ExApp container restart policy" : "Zásada restartu kontejneru s ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Zvolte zásadu pro restartování kontejneru – například 'always', která zajistí že ExApp aplikace budou spuštěné po restartu serveru s procesem služby", + "This settings changes are effective only for newly created containers" : "Změny tohoto nastavení se budou týkat pouze nově vytvářených kontejnerů", "Deploy daemon deletion confirmation" : "Potvrzení smazání procesu služby nasazování", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Opravdu chcete proces nasazování „{name}“ smazat?", + "Remove all ExApps installed on this daemon" : "Odebrat veškeré ExApps, nainstalované na tomto procesu služby", "Cancel" : "Storno", "Delete" : "Smazat", + "A \"manual-install\" deploy daemon cannot be set as default" : "Proces služby „manual-install“ nemůže být nastaven jako výchozí", + "Failed to save admin settings. Check the logs" : "Nepodařilo se uložit nastavení pro správu. Nahlédněte do záznamů událostí", "Password confirmation failed" : "Potvrzení hesla se nezdařilo", "Default" : "Výchozí", "Set as default" : "Nastavit jako výchozí", @@ -43,6 +53,8 @@ "Docker registries" : "Docker registry", "Edit" : "Upravit", "Daemon connection successful" : "Připojení ke službě úspěšné", + "Failed to connect to the daemon. Check the logs" : "Nepodařilo se spojit s procesem služby. Nahlédněte do záznamu událostí", + "Failed to check connection to the daemon. Check the logs" : "Nepodařilo se zkontrolovat spojení s procesem služby. Nahlédněte do záznamu událostí", "Unlimited" : "Neomezeně", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", @@ -51,6 +63,7 @@ "Deploy daemon configuration details" : "Podrobnosti nastavení procesu služby nasazování", "Deploy daemon" : "Proces nasazování", "Default daemon. ExApps will be installed on it" : "Výchozí proces služby. ExApps budou instalovány na něj", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Proces služby „Ruční instalace“ je obvykle používán pro vývoj. Není možné ho nastavit jako výchozí.", "ExApps installed" : "Nainstalované ExApps", "Name" : "Název", "Protocol" : "Protokol", @@ -68,6 +81,7 @@ "Check connection" : "Zkontrolovat připojení", "Registered Deploy daemons list" : "Seznam zaregistrovaných procesů nasazování", "No Deploy daemons are registered" : "Nejsou zaregistrované žádné procesy služby nasazování", + "Register a custom one or configure one from the available templates" : "Zaregistrujte uživatelsky určené nebo nastavte z dostupných šablon", "Register daemon" : "Zaregistrovat proces služby", "Register ExApp in Nextcloud" : "Zaregistrovat ExApp v Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Před nasazením zkontrolovat zda je ExApp zaregistrovaná v Nextcloud", @@ -84,19 +98,25 @@ "Only if ExApp container is preset" : "Pouze pokud je ExApp kontejner přítomen", "Deploy test passed successfully!" : "Zkouška nasazení úspěšná!", "Deploy test failed at step \"{step}\"" : "Zkouška nasazení se nezdařila v kroku „{step}“", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI se pokusí nainstalovat malou maketu ExApp kvůli kontrole, že je proces služby správně nastaven a toho, že jsou kroky nasazování úspěšné.", + "The following deploy test checks must succeed:" : "Je třeba, aby aby následující kontroly zkoušky nasazení byly úspěšné:", "More information" : "Podrobnosti", "Download ExApp logs" : "Stáhnout si záznamy událostí v ExApp", "Remove the test ExApp" : "Odebrat testovací ExApp", "Start the deploy test" : "Spustit zkoušku nasazení", "Stop the deploy test" : "Zastavit zkoušku nasazení", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Registrace testovací ExApp zrušena a jeho kontejner odebrán na „Zastavit zkoušku nasazení“", "Please enter a registry domain" : "Zadejte doménu registru", "\"From\" cannot be \"local\"" : "„Od“ nemůže být „local“", "This registry mapping already exists" : "Toto mapování registru už existuje", + "\"From\" and \"To\" cannot be the same" : "„Od“ a „Pro“ nemůže být totéž", "Docker registry mapping added" : "Mapování na docker registry přidáno", "Error adding Docker registry mapping" : "Chyba při přidávání mapování na Docker registry", "Docker registry mapping removed" : "Mapování na docker registry odebráno", "Error removing Docker registry mapping" : "Chyba při odebírání mapování na Docker registry", "Override Docker registries" : "Přebít Docker registry", + "Configure Docker registry override mappings for the selected daemon." : "Nastavit mapování přebití Docker registru pro označený proces služby.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Odpovídající zdrojový registru v ExApp info.xml bude přebit při nasazování (krok image pull)", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Toto se hodí pokud chcete použít uživatelsky určený Docker registru, například pro použití soukromého Docker registru, nebo pro použití odlišného Docker registru pro testování.", "Image pull will be skipped" : "Natažení obrazu bude přeskočeno", "Remove" : "Odebrat", @@ -107,9 +127,17 @@ "To" : "Pro", "registry URL (e.g. docker.io)" : "URL registru (např. docker.io)", "Add" : "Přidat", + "Hostname used by Nextcloud to access the ExApps" : "Název stroje, používaný Nextcloud pro přístup k ExApp aplikacím", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Název stroje (a číslo portu), na kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru, např. {host}.", "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Název stroje (a číslo portu) nebo popis umístění, na/ve kterém je {name} k dispozici. Nemusí se jednat o veřejného hostitele – postačí jen takový, který je dostupný z Nextcloud serveru. Může se jednat také o popis umístění Docker soketu (např. nextcloud-appapi-dsp:2375, /var/run/docker.sock).", + "A daemon with this name already exists" : "Takto nazvaný proces služby už existuje", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Sdílený klíč pro komunikaci HaRP kontejneru (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Heslo pro AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Změny jsou uplatněny pouze pro nově instalované ExApp aplikace. Pro stávající ExApps, aby nové hodnoty nastavení byly uplatněny, by měly Docker kontejnery být znovu vytvořeny.", + "The Docker network that the deployed ExApps will use." : "Docker síť kterou budou nasazované ExApps aplikace používat.", + "The URL should start with http:// or https://" : "URL by měly začínat na http:// nebo https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Pro HTTPS proces služby, URL Nextcloud by měla být HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Na hostiteli procesů služeb bude třeba, aby veškerá GPU zařízení byla Dockerem zpřístupněna v kontejnerech ExApp aplikací.", "DaemonConfig successfully registered" : "DaemonConfig úspěšně zaregistrován", "Failed to register DaemonConfig. Check the logs" : "Nepodařilo se zaregistrovat DaemonConfig. Nahlédněte do záznamu událostí", "DaemonConfig successfully updated" : "DaemonConfig úspěšně zaktualizován", @@ -129,21 +157,27 @@ "HaRP host" : "Hostitel s HaRP", "Daemon host" : "Hostitel procesu služby", "HaRP shared key" : "Sdílený klíč HaRP", + "The password must be at least 12 characters long" : "Je třeba, aby heslo bylo alespoň 12 znaků dlouhé", + "Set this daemon as the default one" : "Nastavit tento proces služby jako výchozí", "Set as the default daemon" : "Nastavit jako výchozí proces služby", "Enable HTTPS" : "Zapnout HTTPS", "Show deploy options" : "Zobrazit předvolby nasazení", "Hide deploy options" : "Skrýt předvolby nasazen", "Enable HaRP" : "Zapnout HaRP", "FRP server address" : "Adresa FRP serveru", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Adresa (hostitel:port) FRP serveru, který by měl být dosažitelný ExApp v síti, definované v sekci 'Docker Network'.", "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", "Memory limit (in MiB)" : "Limit paměti (v MiB)", "Must be a positive integer" : "Je třeba, aby bylo celé kladné číslo", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Kolik operační paměti nejvýše bude moci ExApp kontejner využívat (v MiB)", "CPU limit as decimal value" : "Limit na procesor (jako desítková hodnota)", "Must be a positive number" : "Je třeba, aby bylo kladné číslo", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Kolik jader procesoru nejvýše bude moci ExApp kontejner využívat (např. 0.5 pro půl jádra, 2 pro dvě jádra)", "Add additional option" : "Přidat další volbu", "Option key (unique)" : "Klíč volby (neopakující se)", "Option key (unique, e.g. my_key)" : "Klíč volby (neopakující se, např. muj_klic)", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index ae2e4316..e99c28be 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -5,6 +5,7 @@ OC.L10N.register( "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Error adding Docker registry" : "Viga Dockeri registrikirje lisamisel", "Error removing Docker registry" : "Viga Dockeri registrikirje eemaldamisel", + "Deploy daemons" : "Kasutuselevõtmise taustateenus", "Cancel" : "Tühista", "Delete" : "Kustuta", "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", @@ -28,6 +29,7 @@ OC.L10N.register( "Additional options" : "Täiendavad valikud", "Check connection" : "Kontrolli ühenduse toimimist", "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", + "No Deploy daemons are registered" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", "Enabled" : "Sisse lülitatud", "More information" : "Lisateave", "This registry mapping already exists" : "See registrivastendus on juba olemas", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index cced77e0..95137157 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -3,6 +3,7 @@ "Error starting install of ExApp" : "ExApp'i paigaldamise alustamisel tekkis viga", "Error adding Docker registry" : "Viga Dockeri registrikirje lisamisel", "Error removing Docker registry" : "Viga Dockeri registrikirje eemaldamisel", + "Deploy daemons" : "Kasutuselevõtmise taustateenus", "Cancel" : "Tühista", "Delete" : "Kustuta", "Password confirmation failed" : "Salasõna kinnitamine ei õnnestunud", @@ -26,6 +27,7 @@ "Additional options" : "Täiendavad valikud", "Check connection" : "Kontrolli ühenduse toimimist", "Registered Deploy daemons list" : "Registreeritud kasutuselevõtmise taustateenuste loend", + "No Deploy daemons are registered" : "Ühtegi kasutuselevõtmise taustateenust pole seadistatud", "Enabled" : "Sisse lülitatud", "More information" : "Lisateave", "This registry mapping already exists" : "See registrivastendus on juba olemas", diff --git a/l10n/km.js b/l10n/km.js deleted file mode 100644 index a6afcb1f..00000000 --- a/l10n/km.js +++ /dev/null @@ -1,19 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "លើកលែង", - "Delete" : "លុប", - "Edit" : "កែប្រែ", - "Unlimited" : "មិន​កំណត់", - "Name" : "ឈ្មោះ", - "Host" : "ម៉ាស៊ីន​ផ្ទុក", - "Enabled" : "បាន​បើក", - "Add" : "បន្ថែម", - "Save" : "រក្សាទុក", - "Version" : "កំណែ", - "Type" : "ប្រភេទ", - "Documentation" : "កម្រង​ឯកសារ", - "Details" : "ព័ត៌មាន​លម្អិត", - "Disable" : "បិទ" -}, -"nplurals=1; plural=0;"); diff --git a/l10n/km.json b/l10n/km.json deleted file mode 100644 index 6a9d7660..00000000 --- a/l10n/km.json +++ /dev/null @@ -1,17 +0,0 @@ -{ "translations": { - "Cancel" : "លើកលែង", - "Delete" : "លុប", - "Edit" : "កែប្រែ", - "Unlimited" : "មិន​កំណត់", - "Name" : "ឈ្មោះ", - "Host" : "ម៉ាស៊ីន​ផ្ទុក", - "Enabled" : "បាន​បើក", - "Add" : "បន្ថែម", - "Save" : "រក្សាទុក", - "Version" : "កំណែ", - "Type" : "ប្រភេទ", - "Documentation" : "កម្រង​ឯកសារ", - "Details" : "ព័ត៌មាន​លម្អិត", - "Disable" : "បិទ" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file From af8d8bd0937ff4be2b2e9560eb5d482df38c741f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 23 Nov 2025 00:19:51 +0000 Subject: [PATCH 218/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/bg.js | 4 ++++ l10n/bg.json | 4 ++++ l10n/pt_BR.js | 44 +++++++++++++++++++++++++++++++++++++++++--- l10n/pt_BR.json | 44 +++++++++++++++++++++++++++++++++++++++++--- 4 files changed, 90 insertions(+), 6 deletions(-) diff --git a/l10n/bg.js b/l10n/bg.js index 65dd9b1c..8f372365 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -54,10 +54,14 @@ OC.L10N.register( "Disabled apps" : "Изключени приложения", "Updates" : "Актуализации", "Featured apps" : "Представени приложения", + "Supported apps" : "Поддържани приложения", + "Deploy and Enable" : "Разположете и активирайте", "Enable" : "Включена", "Disable" : "Изключване", + "Allow untested app" : "Разрешаване на нетествано приложение", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Приложението не е маркирано като съвместимо с вашата версия на Nextcloud. Можете да инсталирате приложението, но е вероятно да не работи безпроблемно.", "An error occurred during the request. Unable to proceed." : "Възникна грешка по време на заявката. Не може да се продължи.", + "The app has been enabled but needs to be updated." : "Приложението е активирано, но е необходимо да се актуализира.", "Error: This app cannot be enabled because it makes the server unstable" : "Грешка: Това приложение не може да бъде активирано, защото прави сървъра нестабилен" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/bg.json b/l10n/bg.json index 3f80695d..05266ec3 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -52,10 +52,14 @@ "Disabled apps" : "Изключени приложения", "Updates" : "Актуализации", "Featured apps" : "Представени приложения", + "Supported apps" : "Поддържани приложения", + "Deploy and Enable" : "Разположете и активирайте", "Enable" : "Включена", "Disable" : "Изключване", + "Allow untested app" : "Разрешаване на нетествано приложение", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Приложението не е маркирано като съвместимо с вашата версия на Nextcloud. Можете да инсталирате приложението, но е вероятно да не работи безпроблемно.", "An error occurred during the request. Unable to proceed." : "Възникна грешка по време на заявката. Не може да се продължи.", + "The app has been enabled but needs to be updated." : "Приложението е активирано, но е необходимо да се актуализира.", "Error: This app cannot be enabled because it makes the server unstable" : "Грешка: Това приложение не може да бъде активирано, защото прави сървъра нестабилен" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 33ce9672..074e62c5 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -25,6 +25,7 @@ OC.L10N.register( "AppAPI deploy daemon" : "Deploy daemon de AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O deploy daemon padrão do AppAPI não está usando o HaRP. Considere mudar para o HaRP para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", @@ -39,8 +40,15 @@ OC.L10N.register( "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Escolha a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApps continuará em execução após a reinicialização do servidor do daemon.", + "This settings changes are effective only for newly created containers" : "Estas alterações nas configurações são válidas apenas para contêineres criados depois", + "Deploy daemon deletion confirmation" : "Confirmação da exclusão do deploy daemon", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Tem certeza de que deseja excluir o deploy daemon \"{name}\"?", + "Remove all ExApps installed on this daemon" : "Remover todos os ExApps instalados neste daemon", "Cancel" : "Cancelar", "Delete" : "Excluir", + "A \"manual-install\" deploy daemon cannot be set as default" : "Um deploy daemon de \"instalação manual\" não pode ser definido como padrão", + "Failed to save admin settings. Check the logs" : "Falha ao salvar as configurações administrativas. Verifique os registros", "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", "Set as default" : "Definir como padrão", @@ -48,14 +56,17 @@ OC.L10N.register( "Docker registries" : "Registros do Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexão do daemon bem-sucedida", + "Failed to connect to the daemon. Check the logs" : "Falha ao conectar ao daemon. Verifique os registros", + "Failed to check connection to the daemon. Check the logs" : "Falha ao verificar a conexão com o daemon. Verifique os registros", "Unlimited" : "Ilimitado", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} de CPUs","{n} CPUs"], - "Deploy daemon configuration" : "Configuração de deploy daemon", + "Deploy daemon configuration" : "Configuração do deploy daemon", "Deploy daemon configuration details" : "Detalhes da configuração do deploy daemon", "Deploy daemon" : "Deploy daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "O daemon \"Instalação manual\" é normalmente utilizado para desenvolvimento. Não pode ser definido como o daemon padrão.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", @@ -72,6 +83,8 @@ OC.L10N.register( "Additional options" : "Opções adicionais", "Check connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", + "No Deploy daemons are registered" : "Nenhum deploy daemon está registrado", + "Register a custom one or configure one from the available templates" : "Registre um personalizado ou configure um a partir dos modelos disponíveis", "Register daemon" : "Registrar daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", @@ -88,11 +101,14 @@ OC.L10N.register( "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "O teste de implantação foi concluído com êxito!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "O AppAPI tentará instalar um pequeno esqueleto ExApp para verificar se o daemon está configurado corretamente e se as etapas de implantação foram bem-sucedidas.", + "The following deploy test checks must succeed:" : "As seguintes verificações de teste de implantação devem ser bem-sucedidas:", "More information" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", "Remove the test ExApp" : "Remover o ExApp de teste", - "Start the deploy test" : "Iniciar teste de implantação", - "Stop the deploy test" : "Parar teste de implantação", + "Start the deploy test" : "Iniciar o teste de implantação", + "Stop the deploy test" : "Interromper o teste de implantação", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "O ExApp de teste não está registrado e seu contêiner é removido em \"Interromper o teste de implantação\".", "Please enter a registry domain" : "Por favor, digite um domínio de registro", "\"From\" cannot be \"local\"" : "\"De\" não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", @@ -102,19 +118,29 @@ OC.L10N.register( "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", "Error removing Docker registry mapping" : "Erro ao remover o mapeamento do registro do Docker", "Override Docker registries" : "Substituir os registros do Docker", + "Configure Docker registry override mappings for the selected daemon." : "Configure os mapeamentos de substituição do registro Docker para o daemon selecionado.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "O registro de origem correspondente no ExApp info.xml será substituído durante a implantação (etapa do pull da imagem).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isso é útil se você quiser usar um registro personalizado do Docker, por exemplo, para usar um registro privado do Docker ou para usar um registro diferente do Docker para testes.", "Image pull will be skipped" : "O image pull será pulado", "Remove" : "Remover", + "No custom Docker registries are registered" : "Nenhum registro Docker personalizado está registrado", "Add registry override mapping" : "Adicionar mapeamento de substituição de registro", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL do registro (p. ex., ghcr.io)", "To" : "Para", "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", + "Hostname used by Nextcloud to access the ExApps" : "Nome do host usado pelo Nextcloud para acessar os ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, p. ex., {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e porta) ou caminho em que o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser o caminho para o soquete Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock).", + "A daemon with this name already exists" : "Um daemon com este nome já existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "As alterações só entram em vigor para ExApps instalados posteriormente. Para ExApps existentes, os contêineres Docker devem ser recriados para aplicar os novos valores de configuração.", + "The Docker network that the deployed ExApps will use." : "A rede Docker que os ExApps implantados usarão.", "The URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Para um daemon HTTPS, o URL do Nextcloud deve ser HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon precisam ser habilitados nos contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", @@ -124,25 +150,37 @@ OC.L10N.register( "Edit the deploy daemon" : "Editar o deploy daemon", "Register a new deploy daemon" : "Registrar um novo deploy daemon", "Daemon configuration template" : "Modelo de configuração do daemon", + "Select a daemon configuration template" : "Selecione um modelo de configuração de daemon", "Daemon registration form" : "Formulário de registro do Daemon", + "Unique deploy daemon name" : "Nome exclusivo do deploy daemon", + "Unique deploy Daemon name" : "Nome exclusivo do Deploy daemon", "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", + "Select the daemon deploy method" : "Selecione o método de implantação do daemon", "HaRP host" : "Host HaRP", "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", + "The password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", + "Set this daemon as the default one" : "Definir este daemon como padrão", + "Set as the default daemon" : "Definir como daemon padrão", "Enable HTTPS" : "Ativar HTTPS", "Show deploy options" : "Mostrar opções de implantação", "Hide deploy options" : "Ocultar opções de implantação", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "O endereço (host:porta) do servidor FRP que deve estar acessível pelo ExApp na rede definida na seção 'Rede Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta no HaRP à qual o proxy do soquete Docker se conecta. Ela deve ser exposta, mas, no caso da porta embutida, não é necessário expô-la ou alterá-la.", "Disable FRP" : "Desativar FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador apenas para configurações avançadas. Desativa o túnel FRP entre o ExApps e o HaRP.", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Compute device" : "Dispositivo de computação", "Memory limit (in MiB)" : "Limite de memória (em MiB)", "Must be a positive integer" : "Deve ser um número inteiro positivo", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Quantidade máxima de memória que o contêiner ExApp pode usar em mebibytes", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0.5 para meio núcleo, 2 para dois núcleos)", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave da opção (exclusiva)", "Option key (unique, e.g. my_key)" : "Chave da opção (exclusiva, p. ex., my_key)", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 0d1b5930..1ad19cd7 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -23,6 +23,7 @@ "AppAPI deploy daemon" : "Deploy daemon de AppAPI", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O deploy daemon padrão do AppAPI não está usando o HaRP. Considere mudar para o HaRP para obter melhor desempenho.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", @@ -37,8 +38,15 @@ "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", "ExApp init timeout" : "Tempo limite de inicialização do ExApp", "ExApp container restart policy" : "Política de reinicialização do contêiner ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Escolha a política de reinicialização do contêiner, p. ex., 'sempre' para garantir que o ExApps continuará em execução após a reinicialização do servidor do daemon.", + "This settings changes are effective only for newly created containers" : "Estas alterações nas configurações são válidas apenas para contêineres criados depois", + "Deploy daemon deletion confirmation" : "Confirmação da exclusão do deploy daemon", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Tem certeza de que deseja excluir o deploy daemon \"{name}\"?", + "Remove all ExApps installed on this daemon" : "Remover todos os ExApps instalados neste daemon", "Cancel" : "Cancelar", "Delete" : "Excluir", + "A \"manual-install\" deploy daemon cannot be set as default" : "Um deploy daemon de \"instalação manual\" não pode ser definido como padrão", + "Failed to save admin settings. Check the logs" : "Falha ao salvar as configurações administrativas. Verifique os registros", "Password confirmation failed" : "Falha na confirmação da senha", "Default" : "Padrão", "Set as default" : "Definir como padrão", @@ -46,14 +54,17 @@ "Docker registries" : "Registros do Docker", "Edit" : "Editar", "Daemon connection successful" : "Conexão do daemon bem-sucedida", + "Failed to connect to the daemon. Check the logs" : "Falha ao conectar ao daemon. Verifique os registros", + "Failed to check connection to the daemon. Check the logs" : "Falha ao verificar a conexão com o daemon. Verifique os registros", "Unlimited" : "Ilimitado", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} de CPUs","{n} CPUs"], - "Deploy daemon configuration" : "Configuração de deploy daemon", + "Deploy daemon configuration" : "Configuração do deploy daemon", "Deploy daemon configuration details" : "Detalhes da configuração do deploy daemon", "Deploy daemon" : "Deploy daemon", "Default daemon. ExApps will be installed on it" : "Daemon padrão. ExApps serão instalados nele.", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "O daemon \"Instalação manual\" é normalmente utilizado para desenvolvimento. Não pode ser definido como o daemon padrão.", "ExApps installed" : "ExApps instalados", "Name" : "Nome", "Protocol" : "Protocolo", @@ -70,6 +81,8 @@ "Additional options" : "Opções adicionais", "Check connection" : "Verificar conexão", "Registered Deploy daemons list" : "Lista de Deploy daemons registrados", + "No Deploy daemons are registered" : "Nenhum deploy daemon está registrado", + "Register a custom one or configure one from the available templates" : "Registre um personalizado ou configure um a partir dos modelos disponíveis", "Register daemon" : "Registrar daemon", "Register ExApp in Nextcloud" : "Registrar ExApp no ​​Nextcloud", "Check if the ExApp is registered in Nextcloud before deployment" : "Verificar se o ExApp está registrado no Nextcloud antes da implantação", @@ -86,11 +99,14 @@ "Only if ExApp container is preset" : "Somente se o contêiner ExApp estiver predefinido", "Deploy test passed successfully!" : "O teste de implantação foi concluído com êxito!", "Deploy test failed at step \"{step}\"" : "O teste de implantação falhou na etapa \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "O AppAPI tentará instalar um pequeno esqueleto ExApp para verificar se o daemon está configurado corretamente e se as etapas de implantação foram bem-sucedidas.", + "The following deploy test checks must succeed:" : "As seguintes verificações de teste de implantação devem ser bem-sucedidas:", "More information" : "Mais informações", "Download ExApp logs" : "Baixar logs do ExApp", "Remove the test ExApp" : "Remover o ExApp de teste", - "Start the deploy test" : "Iniciar teste de implantação", - "Stop the deploy test" : "Parar teste de implantação", + "Start the deploy test" : "Iniciar o teste de implantação", + "Stop the deploy test" : "Interromper o teste de implantação", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "O ExApp de teste não está registrado e seu contêiner é removido em \"Interromper o teste de implantação\".", "Please enter a registry domain" : "Por favor, digite um domínio de registro", "\"From\" cannot be \"local\"" : "\"De\" não pode ser \"local\"", "This registry mapping already exists" : "Esse mapeamento de registro já existe", @@ -100,19 +116,29 @@ "Docker registry mapping removed" : "Removido o mapeamento do registro do Docker", "Error removing Docker registry mapping" : "Erro ao remover o mapeamento do registro do Docker", "Override Docker registries" : "Substituir os registros do Docker", + "Configure Docker registry override mappings for the selected daemon." : "Configure os mapeamentos de substituição do registro Docker para o daemon selecionado.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "O registro de origem correspondente no ExApp info.xml será substituído durante a implantação (etapa do pull da imagem).", "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Isso é útil se você quiser usar um registro personalizado do Docker, por exemplo, para usar um registro privado do Docker ou para usar um registro diferente do Docker para testes.", "Image pull will be skipped" : "O image pull será pulado", "Remove" : "Remover", + "No custom Docker registries are registered" : "Nenhum registro Docker personalizado está registrado", "Add registry override mapping" : "Adicionar mapeamento de substituição de registro", "From" : "De", "registry URL (e.g. ghcr.io)" : "URL do registro (p. ex., ghcr.io)", "To" : "Para", "registry URL (e.g. docker.io)" : "URL do registro (p. ex., docker.io)", "Add" : "Adicionar", + "Hostname used by Nextcloud to access the ExApps" : "Nome do host usado pelo Nextcloud para acessar os ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "O nome do host (e porta) no qual o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud, p. ex., {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "O nome do host (e porta) ou caminho em que o {name} está disponível. Não precisa ser um host público, apenas um host acessível pelo servidor Nextcloud. Também pode ser o caminho para o soquete Docker (p. ex., nextcloud-appapi-dsp:2375, /var/run/docker.sock).", + "A daemon with this name already exists" : "Um daemon com este nome já existe", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "A chave secreta para a comunicação do contêiner HaRP (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "Senha de autenticação AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "As alterações só entram em vigor para ExApps instalados posteriormente. Para ExApps existentes, os contêineres Docker devem ser recriados para aplicar os novos valores de configuração.", + "The Docker network that the deployed ExApps will use." : "A rede Docker que os ExApps implantados usarão.", "The URL should start with http:// or https://" : "O URL deve começar com http:// ou https://", "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Para um daemon HTTPS, o URL do Nextcloud deve ser HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Todos os dispositivos GPU disponíveis no host do daemon precisam ser habilitados nos contêineres ExApp pelo Docker.", "DaemonConfig successfully registered" : "DaemonConfig registrado com sucesso", "Failed to register DaemonConfig. Check the logs" : "Falha ao registrar o DaemonConfig. Verifique os logs.", "DaemonConfig successfully updated" : "DaemonConfig atualizado com sucesso", @@ -122,25 +148,37 @@ "Edit the deploy daemon" : "Editar o deploy daemon", "Register a new deploy daemon" : "Registrar um novo deploy daemon", "Daemon configuration template" : "Modelo de configuração do daemon", + "Select a daemon configuration template" : "Selecione um modelo de configuração de daemon", "Daemon registration form" : "Formulário de registro do Daemon", + "Unique deploy daemon name" : "Nome exclusivo do deploy daemon", + "Unique deploy Daemon name" : "Nome exclusivo do Deploy daemon", "Display name" : "Nome de exibição", "Deployment method" : "Método de implantação", + "Select the daemon deploy method" : "Selecione o método de implantação do daemon", "HaRP host" : "Host HaRP", "Daemon host" : "Host do daemon", "HaRP shared key" : "Chave compartilhada HaRP", + "The password must be at least 12 characters long" : "A senha deve ter pelo menos 12 caracteres", + "Set this daemon as the default one" : "Definir este daemon como padrão", + "Set as the default daemon" : "Definir como daemon padrão", "Enable HTTPS" : "Ativar HTTPS", "Show deploy options" : "Mostrar opções de implantação", "Hide deploy options" : "Ocultar opções de implantação", "Enable HaRP" : "Ativar HaRP", "FRP server address" : "Endereço do servidor FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "O endereço (host:porta) do servidor FRP que deve estar acessível pelo ExApp na rede definida na seção 'Rede Docker'.", "Docker socket proxy port" : "Porta de proxy de soquete de Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta no HaRP à qual o proxy do soquete Docker se conecta. Ela deve ser exposta, mas, no caso da porta embutida, não é necessário expô-la ou alterá-la.", "Disable FRP" : "Desativar FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador apenas para configurações avançadas. Desativa o túnel FRP entre o ExApps e o HaRP.", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Compute device" : "Dispositivo de computação", "Memory limit (in MiB)" : "Limite de memória (em MiB)", "Must be a positive integer" : "Deve ser um número inteiro positivo", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Quantidade máxima de memória que o contêiner ExApp pode usar em mebibytes", "CPU limit as decimal value" : "Limite da CPU como valor decimal", "Must be a positive number" : "Deve ser um número positivo", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Número máximo de núcleos de CPU que o contêiner ExApp pode usar (p. ex., 0.5 para meio núcleo, 2 para dois núcleos)", "Add additional option" : "Adicionar opção adicional", "Option key (unique)" : "Chave da opção (exclusiva)", "Option key (unique, e.g. my_key)" : "Chave da opção (exclusiva, p. ex., my_key)", From 885e4c1c3b89866723c5dbce16a5f208ae63f4a8 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 24 Nov 2025 00:20:30 +0000 Subject: [PATCH 219/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 2 +- l10n/pt_BR.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 074e62c5..13607f0d 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -34,7 +34,7 @@ OC.L10N.register( "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", "Deploy daemons" : "Deploy daemons", "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", - "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemons. Um deploy daemon (DaemonConfig) é um daemon de orquestração de ExApps.", "Default deploy daemon is not accessible. Please check its configuration" : "O deploy daemon padrão não está acessível. Por favor, verifique a configuração", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 1ad19cd7..96ee0175 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -32,7 +32,7 @@ "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "O Projeto AppAPI é uma iniciativa empolgante que visa revolucionar a forma como os aplicativos são desenvolvidos para o Nextcloud por meio do uso de contêineres Docker. Isso permite uma maior escolha de linguagens de programação e permite que tarefas computacionalmente custosas sejam transferidas para um servidor diferente.", "Deploy daemons" : "Deploy daemons", "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", - "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy Daemons. Um Deploy Daemon (DaemonConfig) é um daemon de orquestração de ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Deploy daemons. Um deploy daemon (DaemonConfig) é um daemon de orquestração de ExApps.", "Default deploy daemon is not accessible. Please check its configuration" : "O deploy daemon padrão não está acessível. Por favor, verifique a configuração", "ExApp init timeout (minutes)" : "Tempo limite de inicialização do ExApp (minutos)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Tempo limite do processo de inicialização do ExApp após o qual o AppAPI o marcará como com falha", From b52b3a570d183e3209aab34065bd01c06d37b448 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 25 Nov 2025 00:20:36 +0000 Subject: [PATCH 220/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/bg.js | 10 ++++++++++ l10n/bg.json | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/l10n/bg.js b/l10n/bg.js index 8f372365..54b6cab2 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -8,8 +8,10 @@ OC.L10N.register( "Unlimited" : "Неограничено", "Name" : "Име", "Host" : "Хост", + "Deploy options" : "Опции за внедряване", "Nextcloud URL" : "URL адрес на Nextcloud", "Memory limit" : "Лимит на паметта", + "Registered Deploy daemons list" : "Списък с регистрирани бекграунд процеси", "Enabled" : "Включено", "More information" : "Повече информация", "Remove" : "Премахване", @@ -17,11 +19,13 @@ OC.L10N.register( "To" : "До", "Add" : "Добавяне", "Display name" : "Име за визуализация", + "Compute device" : "Изчислително устройство", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", "{license}-licensed" : "{license}-лицензиран", "Update to {version}" : "Актуализирай до {version}", + "Delete data on remove" : "Изтрийте данните при премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма зададена максимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложението не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", @@ -36,14 +40,20 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Представените приложения са разработени от и в рамките на общността. Те предлагат централна функционалност и са готови за производствена употреба.", "Featured" : "Препоръчани", "Update to {update}" : "Актуализирай до {update}", + "Default Deploy daemon is not accessible" : "Внедряване на системния процес по подразбиране не е достъпен", "Icon" : "Икона", "Version" : "Версия", + "Daemon" : "Daemon", "Level" : "Ниво", "Actions" : "Действия", "Results from other categories" : "Резултати от други категории", "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], + "Deploy Daemon" : "Внедряване на системен процес", "Type" : "Тип", "Display Name" : "Име за визуализация", + "GPUs support" : "Поддръжка на GPU", + "No Deploy daemons configured" : "Няма конфигурирани daemons за внедряване", + "Register a custom one or setup from available templates" : "Регистрирайте персонализиран такъв или го настройте от наличните шаблони", "Network" : "Мрежа", "by {author}\n{license}" : "от {author}\n{license}", "Your apps" : "Вашите приложения", diff --git a/l10n/bg.json b/l10n/bg.json index 05266ec3..87aec9dd 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -6,8 +6,10 @@ "Unlimited" : "Неограничено", "Name" : "Име", "Host" : "Хост", + "Deploy options" : "Опции за внедряване", "Nextcloud URL" : "URL адрес на Nextcloud", "Memory limit" : "Лимит на паметта", + "Registered Deploy daemons list" : "Списък с регистрирани бекграунд процеси", "Enabled" : "Включено", "More information" : "Повече информация", "Remove" : "Премахване", @@ -15,11 +17,13 @@ "To" : "До", "Add" : "Добавяне", "Display name" : "Име за визуализация", + "Compute device" : "Изчислително устройство", "Confirm" : "Потвърдете", "Save" : "Запиши", "Register" : "Регистрация", "{license}-licensed" : "{license}-лицензиран", "Update to {version}" : "Актуализирай до {version}", + "Delete data on remove" : "Изтрийте данните при премахване", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма присвоена минимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Това приложение няма зададена максимална версия на Nextcloud. В бъдеще това ще бъде грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложението не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", @@ -34,14 +38,20 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Представените приложения са разработени от и в рамките на общността. Те предлагат централна функционалност и са готови за производствена употреба.", "Featured" : "Препоръчани", "Update to {update}" : "Актуализирай до {update}", + "Default Deploy daemon is not accessible" : "Внедряване на системния процес по подразбиране не е достъпен", "Icon" : "Икона", "Version" : "Версия", + "Daemon" : "Daemon", "Level" : "Ниво", "Actions" : "Действия", "Results from other categories" : "Резултати от други категории", "_Update_::_Update all_" : ["Актуализиране на всички","Актуализиране на всички"], + "Deploy Daemon" : "Внедряване на системен процес", "Type" : "Тип", "Display Name" : "Име за визуализация", + "GPUs support" : "Поддръжка на GPU", + "No Deploy daemons configured" : "Няма конфигурирани daemons за внедряване", + "Register a custom one or setup from available templates" : "Регистрирайте персонализиран такъв или го настройте от наличните шаблони", "Network" : "Мрежа", "by {author}\n{license}" : "от {author}\n{license}", "Your apps" : "Вашите приложения", From 3c11980c3e651d8c2621297235398b037bd89af9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 26 Nov 2025 00:20:38 +0000 Subject: [PATCH 221/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_CN.js | 3 +++ l10n/zh_CN.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 43c6d4d2..a2576de1 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -25,11 +25,13 @@ OC.L10N.register( "Edit" : "编辑", "Unlimited" : "无限制", "Name" : "名称", + "Protocol" : "协议", "Host" : "主机", "Deploy options" : "部署选项", "Nextcloud URL" : "Nextcloud URL ", "Memory limit" : "内存限制", "Registered Deploy daemons list" : "已注册的部署守护进程列表", + "Heartbeat" : "心跳", "Enabled" : "已启用", "More information" : "更多信息", "Remove" : "移除", @@ -94,6 +96,7 @@ OC.L10N.register( "Featured apps" : "精选应用", "Supported apps" : "支持的应用", "manual-install apps cannot be updated" : "手动安装的应用程序无法更新", + "Healthchecking" : "健康度检查", "Deploy and Enable" : "部署并启用", "Enable" : "开启", "Disable" : "禁用", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index f7d25b8a..281390d7 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -23,11 +23,13 @@ "Edit" : "编辑", "Unlimited" : "无限制", "Name" : "名称", + "Protocol" : "协议", "Host" : "主机", "Deploy options" : "部署选项", "Nextcloud URL" : "Nextcloud URL ", "Memory limit" : "内存限制", "Registered Deploy daemons list" : "已注册的部署守护进程列表", + "Heartbeat" : "心跳", "Enabled" : "已启用", "More information" : "更多信息", "Remove" : "移除", @@ -92,6 +94,7 @@ "Featured apps" : "精选应用", "Supported apps" : "支持的应用", "manual-install apps cannot be updated" : "手动安装的应用程序无法更新", + "Healthchecking" : "健康度检查", "Deploy and Enable" : "部署并启用", "Enable" : "开启", "Disable" : "禁用", From 7aa47f2d6caaf4e1d1224ad94d2784c37f7c4e0f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 7 Dec 2025 00:19:41 +0000 Subject: [PATCH 222/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/it.js | 9 +++++++++ l10n/it.json | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/l10n/it.js b/l10n/it.js index d635050f..0f4ddd8d 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -8,8 +8,10 @@ OC.L10N.register( "Unlimited" : "Illimitata", "Name" : "Nome", "Host" : "Host", + "Deploy options" : "Opzioni di distribuzione", "Nextcloud URL" : "URL Nextcloud", "Memory limit" : "Limite di memoria", + "Registered Deploy daemons list" : "Elenco dei Deploy Daemons registrati", "Enabled" : "Abilitata", "More information" : "Altre informazioni", "Remove" : "Rimuovi", @@ -17,11 +19,13 @@ OC.L10N.register( "To" : "A", "Add" : "Aggiungi", "Display name" : "Nome visualizzato", + "Compute device" : "Dispositivo di calcolo", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", + "Delete data on remove" : "Cancella dati alla rimozione", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", @@ -36,6 +40,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni in evidenza sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", "Featured" : "In evidenza", "Update to {update}" : "Aggiorna a {update}", + "Default Deploy daemon is not accessible" : "Il demone di distribuzione di default non è accessibile", "Icon" : "Icona", "Version" : "Versione", "Daemon" : "Demone", @@ -43,8 +48,12 @@ OC.L10N.register( "Actions" : "Azioni", "Results from other categories" : "Risultati da altre categorie", "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], + "Deploy Daemon" : "Distribuisci Daemon", "Type" : "Tipo", "Display Name" : "Nome visualizzato", + "GPUs support" : "Supporto GPUs", + "No Deploy daemons configured" : "Nessun Deploy Deamons configurato", + "Register a custom one or setup from available templates" : "Registra uno personalizzato o configuralo dai modelli disponibili", "Network" : "Rete", "by {author}\n{license}" : "di {author}\n{license}", "Your apps" : "Le tue applicazioni", diff --git a/l10n/it.json b/l10n/it.json index ee148f6f..2788eb3a 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -6,8 +6,10 @@ "Unlimited" : "Illimitata", "Name" : "Nome", "Host" : "Host", + "Deploy options" : "Opzioni di distribuzione", "Nextcloud URL" : "URL Nextcloud", "Memory limit" : "Limite di memoria", + "Registered Deploy daemons list" : "Elenco dei Deploy Daemons registrati", "Enabled" : "Abilitata", "More information" : "Altre informazioni", "Remove" : "Rimuovi", @@ -15,11 +17,13 @@ "To" : "A", "Add" : "Aggiungi", "Display name" : "Nome visualizzato", + "Compute device" : "Dispositivo di calcolo", "Confirm" : "Conferma", "Save" : "Salva", "Register" : "Registra", "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", + "Delete data on remove" : "Cancella dati alla rimozione", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", @@ -34,6 +38,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni in evidenza sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", "Featured" : "In evidenza", "Update to {update}" : "Aggiorna a {update}", + "Default Deploy daemon is not accessible" : "Il demone di distribuzione di default non è accessibile", "Icon" : "Icona", "Version" : "Versione", "Daemon" : "Demone", @@ -41,8 +46,12 @@ "Actions" : "Azioni", "Results from other categories" : "Risultati da altre categorie", "_Update_::_Update all_" : ["Aggiorna","Aggiorna","Aggiorna tutto"], + "Deploy Daemon" : "Distribuisci Daemon", "Type" : "Tipo", "Display Name" : "Nome visualizzato", + "GPUs support" : "Supporto GPUs", + "No Deploy daemons configured" : "Nessun Deploy Deamons configurato", + "Register a custom one or setup from available templates" : "Registra uno personalizzato o configuralo dai modelli disponibili", "Network" : "Rete", "by {author}\n{license}" : "di {author}\n{license}", "Your apps" : "Le tue applicazioni", From 2ef0a904eb668714f1a1cf810e4c3fbf845bcddb Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 8 Dec 2025 00:19:46 +0000 Subject: [PATCH 223/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/it.js | 2 ++ l10n/it.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/it.js b/l10n/it.js index 0f4ddd8d..1fac2e9a 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -65,11 +65,13 @@ OC.L10N.register( "Updates" : "Aggiornamenti", "Featured apps" : "Applicazioni in evidenza", "Supported apps" : "Applicazioni supportate", + "Deploy and Enable" : "Distribuisci e Abilita", "Enable" : "Abilita", "Disable" : "Disabilita", "Allow untested app" : "Consenti applicazione non verificata", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Questa applicazione non è marcata come compatibile con la tua versione di Nextcloud. Se continui sarai ancora in grado di installare l'applicazione. Nota che l'applicazione potrebbe non funzionare come previsto.", "An error occurred during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare.", + "The app has been enabled but needs to be updated." : "L'app è stata abilitata ma deve essere aggiornata.", "Error: This app cannot be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/it.json b/l10n/it.json index 2788eb3a..f93fdea3 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -63,11 +63,13 @@ "Updates" : "Aggiornamenti", "Featured apps" : "Applicazioni in evidenza", "Supported apps" : "Applicazioni supportate", + "Deploy and Enable" : "Distribuisci e Abilita", "Enable" : "Abilita", "Disable" : "Disabilita", "Allow untested app" : "Consenti applicazione non verificata", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Questa applicazione non è marcata come compatibile con la tua versione di Nextcloud. Se continui sarai ancora in grado di installare l'applicazione. Nota che l'applicazione potrebbe non funzionare come previsto.", "An error occurred during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare.", + "The app has been enabled but needs to be updated." : "L'app è stata abilitata ma deve essere aggiornata.", "Error: This app cannot be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file From feb49a5c86407dfd58dce6aa2f747d7c7efd62c3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 15 Dec 2025 00:19:46 +0000 Subject: [PATCH 224/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/tr.js | 77 +++++++++++++++++++++++++++++++++++----- l10n/tr.json | 77 +++++++++++++++++++++++++++++++++++----- l10n/ug.js | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++ l10n/ug.json | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 336 insertions(+), 16 deletions(-) diff --git a/l10n/tr.js b/l10n/tr.js index 2e1eb1ec..be484689 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -25,18 +25,30 @@ OC.L10N.register( "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım HaRP kullanmaya geçmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI Projesi, docker kapsayıcılarının kullanılması ile Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir. Daha fazla programlama dili seçeneği sunar ve işlem gücü gereken görevlerin farklı bir sunucuya aktarılmasını sağlar.", + "Deploy daemons" : "Dağıtım arka plan işlemleri", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Bir dağıtım arka plan işlemi (DaemonConfig) bir ExApp yönetimi arka plan işlemidir.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemleri. Bir dağıtım arka plan işlemi (DaemonConfig) bir ExApp yönetim arka plan işlemidir.", + "Default deploy daemon is not accessible. Please check its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "ExApp init timeout (minutes)" : "ExApp hazırlanma süresi (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp başlatma işlemi zaman aşımından sonra AppAPI bunu başarısız olarak işaretler", "ExApp init timeout" : "ExApp başlatma zaman aşımı", "ExApp container restart policy" : "ExApp kapsayıcısı yeniden başlatma ilkesi", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini seçin. Örnek: ExApp uygulamalarının arka plan işlemi sunucusu yeniden başlatıldıktan sonra çalışması için 'her zaman'", + "This settings changes are effective only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcıları etkiler", + "Deploy daemon deletion confirmation" : "Dağıtım arka plan işlemi silme onayı", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "\"{name}\" dağıtım arka plan işlemini silmek istediğinize emin misiniz?", + "Remove all ExApps installed on this daemon" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp uygulamalarını kaldır", "Cancel" : "İptal", "Delete" : "Sil", + "A \"manual-install\" deploy daemon cannot be set as default" : "Bir \"el ile kurma\" dağıtım arka plan işlemi varsayılan olarak ayarlanamaz", + "Failed to save admin settings. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Password confirmation failed" : "Parola doğrulanamadı", "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", @@ -44,10 +56,17 @@ OC.L10N.register( "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", + "Failed to connect to the daemon. Check the logs" : "Arka plan işlemi ile bağlantı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to the daemon. Check the logs" : "Arka plan işlemi ile bağlantı denetlenemedi. Günlük kayıtlarına bakın", "Unlimited" : "Sınırsız", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} işlemci","{n} işlemci"], + "Deploy daemon configuration" : "Dağıtım arka plan işlemi yapılandırması", + "Deploy daemon configuration details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", + "Deploy daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "El ile kurma arka plan işlemi genellikle geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", "ExApps installed" : "ExApp kuruldu", "Name" : "Ad", "Protocol" : "İletişim kuralı", @@ -57,11 +76,16 @@ OC.L10N.register( "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", "HaProxy password" : "HaProxy parolası", + "GPU support" : "Grafik işlemci desteği", + "Computation device" : "Hesaplama aygıtı", "Memory limit" : "Bellek sınırı", "CPU limit" : "İşlemci sayısı sınırı", "Additional options" : "Ek seçenekler", "Check connection" : "Bağlantıyı denetle", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", + "No Deploy daemons are registered" : "Herhangi bir dağıtım arka plan işlemi kaydedilmemiş", + "Register a custom one or configure one from the available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan bir tane yapılandırın", + "Register daemon" : "Arka plan işlemini kaydet", "Register ExApp in Nextcloud" : "Nextcloud üzerinde ExApp kaydını yap ", "Check if the ExApp is registered in Nextcloud before deployment" : "Dağıtmadan önce Nextcloud üzerinde ExApp kaydının olup olmadığını sınar", "Image pull" : "Kalıp çekme", @@ -77,49 +101,86 @@ OC.L10N.register( "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI, arka plan işleminin doğru yapılandırıldığını ve dağıtım adımlarının başarılı olup olmadığını denetlemek için küçük iskelet ExApp kurulmaya çalışılacak.", + "The following deploy test checks must succeed:" : "Şu dağıtım sınaması denetimleri başarılı olmalıdır:", "More information" : "Diğer bilgiler", "Download ExApp logs" : "ExApp günlüklerini indir", + "Remove the test ExApp" : "Sınama ExApp uygulamasını kaldır", + "Start the deploy test" : "Dağıtım sınamasını başlat", + "Stop the deploy test" : "Dağıtım sınamasını durdur", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Sınama ExApp uygulaması kaydedilmedi ve kapsayıcısı \"Dağıtma sınamasını durdur\" bölümünden kaldırıldı ", "Please enter a registry domain" : "Lütfen bir kayıt etki alanı yazın", + "\"From\" cannot be \"local\"" : "\"Nereden\", \"local\" olamaz", "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", + "\"From\" and \"To\" cannot be the same" : "\"Nereden\" ve \"Nereye\" aynı olamaz", "Docker registry mapping added" : "Docker kayıt eşleştirmesi eklendi", "Error adding Docker registry mapping" : "Docker kayıt eşleştirmesi eklenirken sorun çıktı", "Docker registry mapping removed" : "Docker kayıt eşleştirmesi kaldırıldı", "Error removing Docker registry mapping" : "Docker kayıt eşleştirmesi kaldırılırken sorun çıktı", "Override Docker registries" : "Docker kayıtlarını değiştir", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya deneme için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", + "Configure Docker registry override mappings for the selected daemon." : "Seçilmiş arka plan işlemi için Docker kaydı değişikliğini yapılandırın.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya sınama için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", "Image pull will be skipped" : "Kalıp çekme atlanacak", "Remove" : "Kaldır", + "No custom Docker registries are registered" : "Özel bir Docker kaydı kaydedilmemiş", "Add registry override mapping" : "Kayıt değiştirme eşleştirmesi ekle", "From" : "Nereden", "registry URL (e.g. ghcr.io)" : "kayıt adresi (ghcr.io gibi)", "To" : "Nereye", "registry URL (e.g. docker.io)" : "kayıt adresi (docker.io gibi)", "Add" : "Ekle", + "Hostname used by Nextcloud to access the ExApps" : "ExApps erişmi için Nextcloud tarafından kullanılacak sunucu adı", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası). Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Örnek: {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası) veya yol. Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Ayrıca Docker soketine giden bir yol da olabilir. (Örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP kapsayıcısı iletişimi için gizli anahtar (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamalarına yeni ayar değerlerini uygulamak için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "The Docker network that the deployed ExApps will use." : "Dağıtılmış ExApp uygulamalarının kullanacağı Docker ağı.", + "The URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Bir HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm grafik işlemcilerin Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi gerekecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", + "Edit the deploy daemon" : "Dağıtım arka plan işlemini düzenle", + "Register a new deploy daemon" : "Yeni bir dağıtım arka plan işlemi kaydet", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", + "Select a daemon configuration template" : "Bir arka plan işlemi yapılandırma kalıbı seçin", "Daemon registration form" : "Arka plan işlemi kayıt formu", + "Unique deploy daemon name" : "Benzersiz dağıtım arka plan işlemi adı", + "Unique deploy Daemon name" : "Benzersiz dağıtım arka plan işlemi adı", "Display name" : "Görüntülenecek ad", "Deployment method" : "Dağıtım yöntemi", + "Select the daemon deploy method" : "Dağıtım arka plan işlemi yöntemini seçin", "HaRP host" : "HaRP sunucusu", "Daemon host" : "Arka plan işlemi sunucusu", "HaRP shared key" : "HaRP paylaşılan anahtarı", + "The password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır", + "Set this daemon as the default one" : "Bu arka plan işlemini varsayılan olarak ayarla", + "Set as the default daemon" : "Varsayılan arka plan işlemi olarak ayarla", + "Enable HTTPS" : "HTTPS kullanılsın", + "Show deploy options" : "Dağıtım seçeneklerini görüntüle", + "Hide deploy options" : "Dağıtım seçeneklerini gizle", "Enable HaRP" : "HaRP kullanılsın", "FRP server address" : "FRP sunucusu adresi", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "'Docker ağı' üzerinde tanımlanmış ağdaki ExApp uygulaması tarafından ulaşılması gereken FRP sunucusunun adresi (Sunucu:BağlantıNoktası).", "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Compute device" : "Hesaplama aygıtı", "Memory limit (in MiB)" : "Bellek sınırı (MiB)", "Must be a positive integer" : "Bir pozitif tam sayı olmalıdır", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp kapsayıcısının mebibayt cinsinden kullanabileceği en fazla bellek miktarı", "CPU limit as decimal value" : "Ondalık değer olarak işlemci sayısı sınırı", "Must be a positive number" : "Bir pozitif sayı olmalıdır", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp kapsayıcısının kullanabileceği en fazla işlemci çekirdeği sayısı (yarım çekirdek için 0.5, iki çekirdek için 2)", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", "Option key (unique, e.g. my_key)" : "Seçenek anahtarı (benzersiz, örnek: benim_anahtarım)", @@ -156,7 +217,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", "Featured" : "Öne çıkarılmış", "Update to {update}" : "{update} sürümüne güncelle", - "All ExApps are up-to-date." : "Tüm ExApp bileşenleri güncel", + "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", "Icon" : "Simge", "Version" : "Sürüm", @@ -172,9 +233,9 @@ OC.L10N.register( "Display Name" : "Görüntülenecek ad", "GPUs support" : "Grafik işlemci desteği", "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", - "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", - "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", + "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp uygulamaları kaldırılacak", + "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp uygulamaları kaldırılacak", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"el ile kurma\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", @@ -186,7 +247,7 @@ OC.L10N.register( "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", "More info" : "Diğer bilgiler", - "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", + "Remove test ExApp" : "Sınama ExApp uygulamasını kaldır", "Start Deploy test" : "Dağıtım sınamasını başlat", "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", @@ -195,7 +256,7 @@ OC.L10N.register( "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", @@ -233,7 +294,7 @@ OC.L10N.register( "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Uygulama mağazadan indirilecek ve varsayılan dağıtım arka plan işlemi üzerine dağıtılacak", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", - "Your ExApps" : "ExApp bileşenleriniz", + "Your ExApps" : "ExApp uygulamalarınız", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", "The app has been enabled but needs to be updated." : "Uygulama kullanıma alındı ancak güncellenmesi gerekiyor.", "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", diff --git a/l10n/tr.json b/l10n/tr.json index 37e8e024..a0b2e3dd 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -23,18 +23,30 @@ "AppAPI deploy daemon" : "AppAPI dağıtım işlemi", "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım HaRP kullanmaya geçmeyi düşünün.", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI Projesi, docker kapsayıcılarının kullanılması ile Nextcloud için uygulamaların geliştirilme biçiminde devrim yaratmayı amaçlayan heyecan verici bir girişimdir. Daha fazla programlama dili seçeneği sunar ve işlem gücü gereken görevlerin farklı bir sunucuya aktarılmasını sağlar.", + "Deploy daemons" : "Dağıtım arka plan işlemleri", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Bir dağıtım arka plan işlemi (DaemonConfig) bir ExApp yönetimi arka plan işlemidir.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Dağıtım arka plan işlemleri. Bir dağıtım arka plan işlemi (DaemonConfig) bir ExApp yönetim arka plan işlemidir.", + "Default deploy daemon is not accessible. Please check its configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "ExApp init timeout (minutes)" : "ExApp hazırlanma süresi (dakika)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp başlatma işlemi zaman aşımından sonra AppAPI bunu başarısız olarak işaretler", "ExApp init timeout" : "ExApp başlatma zaman aşımı", "ExApp container restart policy" : "ExApp kapsayıcısı yeniden başlatma ilkesi", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Kapsayıcı yeniden başlatma ilkesini seçin. Örnek: ExApp uygulamalarının arka plan işlemi sunucusu yeniden başlatıldıktan sonra çalışması için 'her zaman'", + "This settings changes are effective only for newly created containers" : "Bu ayar değişiklikleri yalnızca yeni oluşturulan kapsayıcıları etkiler", + "Deploy daemon deletion confirmation" : "Dağıtım arka plan işlemi silme onayı", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "\"{name}\" dağıtım arka plan işlemini silmek istediğinize emin misiniz?", + "Remove all ExApps installed on this daemon" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp uygulamalarını kaldır", "Cancel" : "İptal", "Delete" : "Sil", + "A \"manual-install\" deploy daemon cannot be set as default" : "Bir \"el ile kurma\" dağıtım arka plan işlemi varsayılan olarak ayarlanamaz", + "Failed to save admin settings. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Password confirmation failed" : "Parola doğrulanamadı", "Default" : "Varsayılan", "Set as default" : "Varsayılan olarak ata", @@ -42,10 +54,17 @@ "Docker registries" : "Docker kayıtları", "Edit" : "Düzenle", "Daemon connection successful" : "Arka plan işlemi bağlantısı kuruldu", + "Failed to connect to the daemon. Check the logs" : "Arka plan işlemi ile bağlantı kurulamadı. Günlük kayıtlarına bakın", + "Failed to check connection to the daemon. Check the logs" : "Arka plan işlemi ile bağlantı denetlenemedi. Günlük kayıtlarına bakın", "Unlimited" : "Sınırsız", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} işlemci","{n} işlemci"], + "Deploy daemon configuration" : "Dağıtım arka plan işlemi yapılandırması", + "Deploy daemon configuration details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", + "Deploy daemon" : "Dağıtım arka plan işlemi", "Default daemon. ExApps will be installed on it" : "Varsayılan arka plan işlemi. ExApp bunun üzerine kurulacak", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "El ile kurma arka plan işlemi genellikle geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", "ExApps installed" : "ExApp kuruldu", "Name" : "Ad", "Protocol" : "İletişim kuralı", @@ -55,11 +74,16 @@ "Docker network" : "Docker ağı", "Nextcloud URL" : "Nextcloud adresi", "HaProxy password" : "HaProxy parolası", + "GPU support" : "Grafik işlemci desteği", + "Computation device" : "Hesaplama aygıtı", "Memory limit" : "Bellek sınırı", "CPU limit" : "İşlemci sayısı sınırı", "Additional options" : "Ek seçenekler", "Check connection" : "Bağlantıyı denetle", "Registered Deploy daemons list" : "Kaydedilmiş dağıtım arka plan işlemleri listesi", + "No Deploy daemons are registered" : "Herhangi bir dağıtım arka plan işlemi kaydedilmemiş", + "Register a custom one or configure one from the available templates" : "Özel bir tane kaydedin ya da kullanılabilecek kalıplardan bir tane yapılandırın", + "Register daemon" : "Arka plan işlemini kaydet", "Register ExApp in Nextcloud" : "Nextcloud üzerinde ExApp kaydını yap ", "Check if the ExApp is registered in Nextcloud before deployment" : "Dağıtmadan önce Nextcloud üzerinde ExApp kaydının olup olmadığını sınar", "Image pull" : "Kalıp çekme", @@ -75,49 +99,86 @@ "Only if ExApp container is preset" : "Yalnızca ExApp kapsayıcısı önceden ayarlanmışsa", "Deploy test passed successfully!" : "Dağıtım sınaması sorunsuz tamamlandı!", "Deploy test failed at step \"{step}\"" : "Dağıtım sınamasının \"{step}\" adımında sorun çıktı", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI, arka plan işleminin doğru yapılandırıldığını ve dağıtım adımlarının başarılı olup olmadığını denetlemek için küçük iskelet ExApp kurulmaya çalışılacak.", + "The following deploy test checks must succeed:" : "Şu dağıtım sınaması denetimleri başarılı olmalıdır:", "More information" : "Diğer bilgiler", "Download ExApp logs" : "ExApp günlüklerini indir", + "Remove the test ExApp" : "Sınama ExApp uygulamasını kaldır", + "Start the deploy test" : "Dağıtım sınamasını başlat", + "Stop the deploy test" : "Dağıtım sınamasını durdur", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "Sınama ExApp uygulaması kaydedilmedi ve kapsayıcısı \"Dağıtma sınamasını durdur\" bölümünden kaldırıldı ", "Please enter a registry domain" : "Lütfen bir kayıt etki alanı yazın", + "\"From\" cannot be \"local\"" : "\"Nereden\", \"local\" olamaz", "This registry mapping already exists" : "Kayıt eşleştirmesi zaten var", + "\"From\" and \"To\" cannot be the same" : "\"Nereden\" ve \"Nereye\" aynı olamaz", "Docker registry mapping added" : "Docker kayıt eşleştirmesi eklendi", "Error adding Docker registry mapping" : "Docker kayıt eşleştirmesi eklenirken sorun çıktı", "Docker registry mapping removed" : "Docker kayıt eşleştirmesi kaldırıldı", "Error removing Docker registry mapping" : "Docker kayıt eşleştirmesi kaldırılırken sorun çıktı", "Override Docker registries" : "Docker kayıtlarını değiştir", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya deneme için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", + "Configure Docker registry override mappings for the selected daemon." : "Seçilmiş arka plan işlemi için Docker kaydı değişikliğini yapılandırın.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Dağıtım sırasında, ExApp info.xml içinde eşleşen kaynak kayıtları değiştirilecek (kalıp çekme adımı).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Bu seçenek, bir kişisel Docker kaydı kullanmak veya sınama için farklı bir Docker kaydı kullanmak gibi durumlarda özel bir Docker kaydı kullanmak için yararlıdır.", "Image pull will be skipped" : "Kalıp çekme atlanacak", "Remove" : "Kaldır", + "No custom Docker registries are registered" : "Özel bir Docker kaydı kaydedilmemiş", "Add registry override mapping" : "Kayıt değiştirme eşleştirmesi ekle", "From" : "Nereden", "registry URL (e.g. ghcr.io)" : "kayıt adresi (ghcr.io gibi)", "To" : "Nereye", "registry URL (e.g. docker.io)" : "kayıt adresi (docker.io gibi)", "Add" : "Ekle", + "Hostname used by Nextcloud to access the ExApps" : "ExApps erişmi için Nextcloud tarafından kullanılacak sunucu adı", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası). Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Örnek: {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} kullanılabilecek sunucu adı (ve bağlantı noktası) veya yol. Bunun herkese açık bir sunucu olması gerekmez. Yalnızca Nextcloud sunucusu tarafından erişilebilen bir sunucu da olabilir. Ayrıca Docker soketine giden bir yol da olabilir. (Örnek: nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP kapsayıcısı iletişimi için gizli anahtar (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker soket vekil sunucu kimlik doğrulama parolası", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamalarına yeni ayar değerlerini uygulamak için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "The Docker network that the deployed ExApps will use." : "Dağıtılmış ExApp uygulamalarının kullanacağı Docker ağı.", + "The URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Bir HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm grafik işlemcilerin Docker tarafından ExApp kapsayıcılarında etkinleştirilmesi gerekecek.", "DaemonConfig successfully registered" : "DaemonConfig kaydedildi", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig kaydedilemedi. Günlük kayıtlarına bakın", "DaemonConfig successfully updated" : "DaemonConfig güncellendi", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig güncellenemedi. Günlük kayıtlarına bakın", "Failed to connect to Daemon. Check the logs" : "Arka plan işlemi bağlantısı kurulamadı. Günlük kayıtlarına bakın", "Failed to check connection to Daemon. Check the logs" : "Arka plan işlemi bağlantısı denetlenemedi. Günlük kayıtlarına bakın", + "Edit the deploy daemon" : "Dağıtım arka plan işlemini düzenle", + "Register a new deploy daemon" : "Yeni bir dağıtım arka plan işlemi kaydet", "Daemon configuration template" : "Arka plan işlemi yapılandırma kalıbı", + "Select a daemon configuration template" : "Bir arka plan işlemi yapılandırma kalıbı seçin", "Daemon registration form" : "Arka plan işlemi kayıt formu", + "Unique deploy daemon name" : "Benzersiz dağıtım arka plan işlemi adı", + "Unique deploy Daemon name" : "Benzersiz dağıtım arka plan işlemi adı", "Display name" : "Görüntülenecek ad", "Deployment method" : "Dağıtım yöntemi", + "Select the daemon deploy method" : "Dağıtım arka plan işlemi yöntemini seçin", "HaRP host" : "HaRP sunucusu", "Daemon host" : "Arka plan işlemi sunucusu", "HaRP shared key" : "HaRP paylaşılan anahtarı", + "The password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır", + "Set this daemon as the default one" : "Bu arka plan işlemini varsayılan olarak ayarla", + "Set as the default daemon" : "Varsayılan arka plan işlemi olarak ayarla", + "Enable HTTPS" : "HTTPS kullanılsın", + "Show deploy options" : "Dağıtım seçeneklerini görüntüle", + "Hide deploy options" : "Dağıtım seçeneklerini gizle", "Enable HaRP" : "HaRP kullanılsın", "FRP server address" : "FRP sunucusu adresi", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "'Docker ağı' üzerinde tanımlanmış ağdaki ExApp uygulaması tarafından ulaşılması gereken FRP sunucusunun adresi (Sunucu:BağlantıNoktası).", "Docker socket proxy port" : "Docker soketi vekil sunucu bağlantı noktası", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker soket vekil sunucusunun bağlandığı HaRP bağlantı noktası. Bu açık olmalıdır, ancak hazır olan için açığa çıkması veya değiştirilmesi gerekmez.", "Disable FRP" : "FRP kullanılmasın", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Yalnızca gelişmiş kurulumlar için işaret. ExApps ve HaRP arasındaki FRP tünelini kapatır.", "Docker network for ex-app deployment must be defined" : "ExApp dağıtımı için Docker ağı tanımlanmalıdır", "Compute device" : "Hesaplama aygıtı", "Memory limit (in MiB)" : "Bellek sınırı (MiB)", "Must be a positive integer" : "Bir pozitif tam sayı olmalıdır", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp kapsayıcısının mebibayt cinsinden kullanabileceği en fazla bellek miktarı", "CPU limit as decimal value" : "Ondalık değer olarak işlemci sayısı sınırı", "Must be a positive number" : "Bir pozitif sayı olmalıdır", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp kapsayıcısının kullanabileceği en fazla işlemci çekirdeği sayısı (yarım çekirdek için 0.5, iki çekirdek için 2)", "Add additional option" : "Ek seçenek ekle", "Option key (unique)" : "Seçenek anahtarı (benzersiz)", "Option key (unique, e.g. my_key)" : "Seçenek anahtarı (benzersiz, örnek: benim_anahtarım)", @@ -154,7 +215,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Öne çıkarılmış uygulamalar topluluk tarafından geliştirilmiştir. Temel işlevleri yerine getirirler ve üretim ortamında kullanılabilirler.", "Featured" : "Öne çıkarılmış", "Update to {update}" : "{update} sürümüne güncelle", - "All ExApps are up-to-date." : "Tüm ExApp bileşenleri güncel", + "All ExApps are up-to-date." : "Tüm ExApp uygulamaları güncel", "Default Deploy daemon is not accessible" : "Varsayılan dağıtım arka plan işlemine erişilemedi", "Icon" : "Simge", "Version" : "Sürüm", @@ -170,9 +231,9 @@ "Display Name" : "Görüntülenecek ad", "GPUs support" : "Grafik işlemci desteği", "Are you sure you want delete Deploy Daemon" : "Dağıtım arka plan işlemini silmek istediğinize emin misiniz", - "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp bileşenleri kaldırılacak", - "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp bileşenleri kaldırılacak", - "\"manual-install\" Deploy Daemon cannot be set as default" : "\"manual-install\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", + "All ExApps on this daemon will be removed" : "Bu arka plan işlemi üzerindeki tüm ExApp uygulamaları kaldırılacak", + "All ExApps installed on this daemon will be removed" : "Bu arka plan işlemi üzerine kurulmuş tüm ExApp uygulamaları kaldırılacak", + "\"manual-install\" Deploy Daemon cannot be set as default" : "\"el ile kurma\" dağıtım arka plan işlemi varsayılan olarak ayarlanamadı", "Failed to save admin options. Check the logs" : "Yönetici ayarları kaydedilemedi. Günlük kayıtlarına bakın", "Deploy daemon config details" : "Dağıtım arka plan işlemi yapılandırma ayrıntıları", "Manual install daemon usually used for development. It cannot be set as default daemon." : "El ile kurma arka plan işlemi geliştirme amacıyla kullanılır. Varsayılan arka plan işlemi olarak ayarlanamaz.", @@ -184,7 +245,7 @@ "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI, arka plan işleminin doğru şekilde yapılandırıldığını ve dağıtım adımlarının başarılı olduğunu doğrulamak için küçük bir ExApp iskeleti yüklemeyi deneyecek.", "The following Deploy test checks must be passed to succeed:" : "Başarılı olmak için aşağıdaki dağıtım sınamalarının geçilmesi gerekir:", "More info" : "Diğer bilgiler", - "Remove test ExApp" : "Deneme ExApp uygulamasını kaldır", + "Remove test ExApp" : "Sınama ExApp uygulamasını kaldır", "Start Deploy test" : "Dağıtım sınamasını başlat", "Stop Deploy test" : "Dağıtım sınamasını durdur", "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp kaydı kaldırıldı ve \"Dağıtım sınamasını durdur\" ile kapsayıcı kaldırıldı", @@ -193,7 +254,7 @@ "Daemon with this name already exists" : "Aynı adlı bir arka plan işlemi zaten var", "Password must be at least 12 characters long" : "Parola en az 12 karakter uzunluğunda olmalıdır.", "With https enabled network is set to host" : "https kullanıldığında ağ, host olarak ayarlanmıştır", - "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp bileşenlerine uygulanır. Var olan ExApp bileşenleri için Docker kapsayıcıları yeniden oluşturulmalıdır.", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Değişiklikler yalnızca yeni kurulan ExApp uygulamalarına uygulanır. Var olan ExApp uygulamaları için Docker kapsayıcıları yeniden oluşturulmalıdır.", "URL should start with http:// or https://" : "Adres http:// ya da https:// ile başlamalıdır", "For HTTPS daemon, Nextcloud URL should be HTTPS" : "HTTPS arka plan işlemi için Nextcloud adresi HTTPS olmalıdır", "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Arka plan işlemi sunucusunda var olan tüm GPU aygıtlarının Docker tarafından ExApp kapsayıcılarında kullanıma alınması istenecek.", @@ -231,7 +292,7 @@ "Default Deploy daemon is not accessible. Please verify configuration" : "Varsayılan dağıtım arka plan işlemine erişilemedi. Lütfen yapılandırmayı denetleyin", "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Uygulama mağazadan indirilecek ve varsayılan dağıtım arka plan işlemi üzerine dağıtılacak", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Bu uygulamanın kullandığınız Nextcloud sürümü ile uyumluluğu denetlenmemiş. İşlemi sürdürerek uygulamayı kurabilirsiniz. Ancak uygulama beklendiği gibi çalışmayabilir.", - "Your ExApps" : "ExApp bileşenleriniz", + "Your ExApps" : "ExApp uygulamalarınız", "An error occurred during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", "The app has been enabled but needs to be updated." : "Uygulama kullanıma alındı ancak güncellenmesi gerekiyor.", "Error: This app cannot be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından kullanıma alınamaz", diff --git a/l10n/ug.js b/l10n/ug.js index f37e77ae..298a8084 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -5,6 +5,8 @@ OC.L10N.register( "Error starting install of ExApp" : "ExApp نى قاچىلاشتا خاتالىق كۆرۈلدى", "ExApp failed to register, check the NC logs" : "ExApp تىزىملاتمىدى ، NC خاتىرىسىنى تەكشۈرۈڭ", "ExApp not found, failed to get status" : "ExApp تېپىلمىدى ، ئورۇنغا ئېرىشەلمىدى", + "Error adding Docker registry" : "Docker تىزىملىكىنى قوشۇشتا خاتالىق كۆرۈلدى", + "Error removing Docker registry" : "Docker تىزىملىكىنى ئۆچۈرۈشتە خاتالىق كۆرۈلدى", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore دىن قاچىلانمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", "Could not perform installation of ExApp" : "ExApp نى ئورنىتالمىدى", "Failed to enable ExApp" : "ExApp نى قوزغىتىش مەغلۇب بولدى", @@ -14,40 +16,75 @@ OC.L10N.register( "Could not perform update of ExApp" : "ExApp نىڭ يېڭىلىنىشىنى قىلالمىدى", "ExApp not found, failed to get logs" : "ExApp تېپىلمىدى ، خاتىرە ئالالمىدى", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق:% s", + "ExApp not found, failed to get deploy options" : "ExApp تېپىلمىدى، ئورۇنلاشتۇرۇش تاللانمىلىرىنى ئېلىش مەغلۇب بولدى", "AppAPI authentication failed" : "AppAPI دەلىللەش مەغلۇپ بولدى", "AppAPI ExApp notifier" : "AppAPI ExApp ئۇقتۇرۇشى", "AppAPI" : "AppAPI", "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", "ExApps Settings" : "ExApps تەڭشەكلىرى", + "AppAPI deploy daemon" : "AppAPI دېموننى ئورۇنلاشتۇرۇش", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI نىڭ ئۆزلۈكىدىن ئورۇنلاشتۇرۇش دېمونى تەڭشىلىنمىگەن. سىرتقى ئەپلەرنى (ئەسلىدىكى ئەپلەر) قاچىلاش ئۈچۈن تەڭشەكلەردە ئۆزلۈكىدىن ئورۇنلاشتۇرۇش دېمونىنى تىزىملىتىڭ.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى \"%s\" غا كىرگىلى بولمايدۇ. دېمون سەپلىمىسىنى تەكشۈرۈڭ.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى HaRP نى ئىشلەتمىدى. تېخىمۇ ياخشى ئۈنۈمگە ئېرىشىش ئۈچۈن HaRP غا ئالماشتۇرۇشنى ئويلىشىڭ.", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى ئارقىلىق Nextcloud نى كۈچەيتىڭ.\n\nAppAPI Nextcloud ئېكولوگىيە سىستېمىسى ئىچىدىكى قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش جەريانىنى ئاددىيلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن بىر تۈر.\n\nئۇ تەرەققىياتچىلارنىڭ Nextcloud تەرەققىياتىدا ئەنئەنىۋى ھالدا ئىشلىتىلگەن PHP بىلەنلا چەكلىنىپ قالماي، ھەر خىل پروگرامما تىللىرىنى ئىشلىتىپ قوللىنىشچان پروگراممىلارنى يارىتىشىغا يول قويىدىغان يېڭى ئۇسۇلنى تونۇشتۇرىدۇ.\n\n_ئەگەر قوللىنىشچان پروگرامما تەرەققىي قىلدۇرماقچى بولسىڭىز، بىز سىزگە خۇشاللىق بىلەن ياردەم بېرىمىز ۋە ياردەم بېرىمىز._\n\n### قوللاش\n\nبۇ تۈرگە بولغان ھەر قانداق قوللاشقا رەھمەت ئېيتىمىز:\n\n- ⭐ GitHub دا خىزمىتىمىزنى بېكىتىڭ\n- ❗ مەسىلە ياكى ئىقتىدار تەلىپىنى يارىتىڭ\n- 💁 مەسىلىنى ھەل قىلىڭ ۋە تارتىش تەلىپىنى يارىتىڭ\n- 🧑‍💻 AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىڭىزنى تەرەققىي قىلدۇرۇڭ\n\nAppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ Nextcloud دا قوللىنىشچان پروگراممىلارنىڭ تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلىنى ئۆزگەرتىش ئىقتىدارىغا چىن دىلىمىزدىن ھاياجانلىنىمىز.\n\nبۇ سەپەرگە ئاتلانغان ۋاقتىمىزدا، سىزنى - ئاچقۇچىلار، ئويلىغۇچىلار، ئىجادكارلار ۋە كەلگۈسىگە ئىنتىلىدىغانلارنى - تېخىمۇ كۆپ ئىقتىدارلىق، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇشقا قىزغىن تەكلىپ قىلىمىز.\n\n*سىزنىڭ چۈشەنچىڭىز، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن قىممەتلىك.*", "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI تۈرى دوكېر كونتېينېرلىرى ئارقىلىق Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ئۇسۇلىنى ئىنقىلابىيلاشتۇرۇشنى مەقسەت قىلغان قىزىقارلىق بىر تەشەببۇس. بۇ ئارقىلىق پروگرامما تىلىنى تېخىمۇ كۆپ تاللاشقا يول قويۇلىدۇ ۋە ھېسابلاش جەھەتتىن قىممەت ۋەزىپىلەرنى باشقا بىر مۇلازىمېتىرغا يۈكلەشكە يول قويۇلىدۇ.", + "Deploy daemons" : "جىنلارنى ئورۇنلاشتۇرۇش", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش دېمونى (DaemonConfig) ExApps ئوركېستىراتسىيە دېمونى.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "دائېمونلارنى ئورۇنلاشتۇرۇش. ئورۇنلاشتۇرۇش دائېمونى (DaemonConfig) ExApps ئوركېستىراتسىيە دائېمونى.", + "Default deploy daemon is not accessible. Please check its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونىغا كىرگىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ.", "ExApp init timeout (minutes)" : "ExApp init ۋاقتى (مىنۇت)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp باشلاش جەريانىنىڭ ۋاقتى ، ئۇنىڭدىن كېيىن AppAPI ئۇنى مەغلۇب دەپ بەلگە قويىدۇ", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "سېرۋېر قايتا قوزغىتىلغاندىن كېيىن ExApps نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىش ئۈچۈن، مەسىلەن، 'always' دېگەننى تاللاپ، كونتېينېرنى قايتا قوزغىتىش قائىدىسىنى تاللاڭ.", + "This settings changes are effective only for newly created containers" : "بۇ تەڭشەك ئۆزگىرىشلىرى پەقەت يېڭىدىن قۇرۇلغان قاچىلار ئۈچۈنلا كۈچكە ئىگە", + "Deploy daemon deletion confirmation" : "دېموننى ئۆچۈرۈش جەزملەشتۈرۈشنى ئورۇنلاشتۇرۇش", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "«{name}» ئورۇنلاشتۇرۇش دېمونىنى ئۆچۈرمەكچىمۇ؟", + "Remove all ExApps installed on this daemon" : "بۇ دېمونغا ئورنىتىلغان بارلىق ExApps نى ئۆچۈرۈڭ", "Cancel" : "بىكار قىلىش", "Delete" : "ئۆچۈر", + "A \"manual-install\" deploy daemon cannot be set as default" : "«قولدا ئورنىتىش» ئورۇنلاشتۇرۇش دېمونىنى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin settings. Check the logs" : "باشقۇرۇش تەڭشەكلىرىنى ساقلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Default" : "سۈكۈتتىكى", "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", + "Docker registries" : "Docker رېگىستىرلىرى", "Edit" : "تەھرىر", "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to the daemon. Check the logs" : "دېمونغا ئۇلىنىش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to the daemon. Check the logs" : "دېمونغا ئۇلىنىشنى تەكشۈرۈش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "Unlimited" : "چەكسىز", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "Deploy daemon configuration" : "دېمون سەپلىمىسىنى ئورۇنلاشتۇرۇش", + "Deploy daemon configuration details" : "دېموننىڭ سەپلىمىسى تەپسىلاتلىرىنى ئورۇنلاشتۇرۇش", + "Deploy daemon" : "دېموننى ئورۇنلاشتۇرۇش", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "ئادەتتە «قولدا قاچىلاش» دېمونى تەرەققىيات ئۈچۈن ئىشلىتىلىدۇ. ئۇنى ئۆزلۈكىدىن ئورنىتىلغان دېمون قىلىپ تەڭشىگىلى بولمايدۇ.", "ExApps installed" : "ExApps قاچىلاندى", "Name" : "ئاتى", "Protocol" : "كېلىشىم", "Host" : "باش ئاپپارات", + "ExApp direct communication (FRP disabled)" : "ExApp بىۋاسىتە ئالاقىسى (FRP چەكلەنگەن)", "Deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرى", "Docker network" : "Docker تورى", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy پارولى", + "GPU support" : "GPU قوللاش", + "Computation device" : "ھېسابلاش ئۈسكۈنىسى", + "Memory limit" : "خاتىرە چېكى", + "CPU limit" : "CPU چەكلىمىسى", "Additional options" : "قوشۇمچە تاللاشلار", "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", + "No Deploy daemons are registered" : "تىزىملاتقان Deploy دېمونلىرى يوق", + "Register a custom one or configure one from the available templates" : "خاسلاشتۇرۇلغان بىرنى تىزىملىتىڭ ياكى بار بولغان قېلىپلاردىن بىرنى تەڭشەڭ", + "Register daemon" : "تىزىملات دېمون", "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", "Image pull" : "رەسىم تارتىش", @@ -63,25 +100,86 @@ OC.L10N.register( "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI دېموننىڭ توغرا سەپلەنگەنلىكىنى ۋە ئورۇنلاشتۇرۇش قەدەملىرىنىڭ مۇۋەپپەقىيەتلىك بولغانلىقىنى تەكشۈرۈش ئۈچۈن كىچىك ExApp نى ئورنىتىشقا ئۇرۇنىدۇ.", + "The following deploy test checks must succeed:" : "تۆۋەندىكى ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك بولۇشى كېرەك:", "More information" : "تېخىمۇ كۆپ ئۇچۇرلار", "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", + "Remove the test ExApp" : "سىناق ExApp نى ئۆچۈرۈڭ", + "Start the deploy test" : "ئورۇنلاشتۇرۇش سىنىقىنى باشلاڭ", + "Stop the deploy test" : "ئورۇنلاشتۇرۇش سىنىقىنى توختىتىش", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "سىناق ExApp تىزىملاتمىغان ۋە ئۇنىڭ قاچىسى «ئورنىتىش سىنىقىنى توختىتىش» دا ئۆچۈرۈۋېتىلدى.", + "Please enter a registry domain" : "تىزىملىتىش دومېنىنى كىرگۈزۈڭ", + "\"From\" cannot be \"local\"" : "«يەرلىك» دېگەن سۆز «يەرلىك» دېگەن سۆز بولالمايدۇ.", + "This registry mapping already exists" : "بۇ تىزىملىك خەرىتىلەش ئاللىقاچان مەۋجۇت", + "\"From\" and \"To\" cannot be the same" : "«باشلاش» بىلەن «ئاخىرلاش» ئوخشاش بولماسلىقى كېرەك.", + "Docker registry mapping added" : "Docker رېگىستىر خەرىتىلەش قوشۇلدى", + "Error adding Docker registry mapping" : "Docker تىزىملىك خەرىتىسىنى قوشۇشتا خاتالىق كۆرۈلدى", + "Docker registry mapping removed" : "Docker رېگىستىر خەرىتىلەش ئۆچۈرۈلدى", + "Error removing Docker registry mapping" : "Docker تىزىملىك خەرىتىسىنى چىقىرىۋېتىشتە خاتالىق كۆرۈلدى", + "Override Docker registries" : "Docker تىزىملىرىنى قايتا بەلگىلەش", + "Configure Docker registry override mappings for the selected daemon." : "تاللانغان دېمون ئۈچۈن Docker رېگىستىر تىزىملىكىنىڭ قايتا بەلگىلەشلىرىنى تەڭشەڭ.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml دىكى ماس كېلىدىغان مەنبە تىزىملىكى ئورۇنلاشتۇرۇش جەريانىدا قايتا يېزىلىدۇ (رەسىمنى تارتىش باسقۇچى).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "بۇ، ئەگەر سىز خاسلاشتۇرۇلغان Docker تىزىملىكىنى ئىشلەتمەكچى بولسىڭىز، مەسىلەن، شەخسىي Docker تىزىملىكىنى ئىشلەتمەكچى بولسىڭىز ياكى سىناق قىلىش ئۈچۈن باشقا Docker تىزىملىكىنى ئىشلەتمەكچى بولسىڭىز پايدىلىق.", + "Image pull will be skipped" : "رەسىم تارتىش ئاتلاپ ئۆتۈلىدۇ", "Remove" : "ئۆچۈرۈڭ", + "No custom Docker registries are registered" : "ھېچقانداق خاسلاشتۇرۇلغان Docker تىزىملىرى تىزىملانمىغان", + "Add registry override mapping" : "تىزىملىكنى قايتا بەلگىلەش خەرىتىسىنى قوشۇش", "From" : "From", + "registry URL (e.g. ghcr.io)" : "تىزىملىك ئادرېسى (مەسىلەن، ghcr.io)", "To" : "To", + "registry URL (e.g. docker.io)" : "تىزىملىك URL (مەسىلەن، docker.io)", "Add" : "قوش", + "Hostname used by Nextcloud to access the ExApps" : "Nextcloud تەرىپىدىن ExApps غا كىرىش ئۈچۈن ئىشلىتىلىدىغان تور بېكەت نامى", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} نىڭ ئىشلىتىشكە بولىدىغان كومپيۇتېر نامى (ۋە پورتى). بۇنىڭ ئاممىۋى كومپيۇتېر بولۇشى شەرت ئەمەس، پەقەت Nextcloud مۇلازىمېتىرى ئارقىلىق كىرگىلى بولىدىغان كومپيۇتېر، مەسىلەن {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} نىڭ ئىشلىتىشكە بولىدىغان كومپيۇتېر نامى (ۋە پورتى) ياكى يولى. بۇنىڭ ئاممىۋى كومپيۇتېر بولۇشى شەرت ئەمەس، پەقەت Nextcloud مۇلازىمېتىرى ئىشلىتەلەيدىغان كومپيۇتېر بولۇشى كېرەك. ئۇ يەنە Docker سوكېتىغا بارىدىغان يولمۇ بولۇشى مۇمكىن. (مەسىلەن، nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "بۇ نامدىكى بىر دېمون مەۋجۇت", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP كونتېينېر ئالاقىسىنىڭ مەخپىي ئاچقۇچى (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "ئۆزگەرتىشلەر پەقەت يېڭىدىن ئورنىتىلغان ExApps ئۈچۈنلا كۈچكە ئىگە. مەۋجۇت ExApps ئۈچۈن، يېڭى تەڭشەك قىممەتلىرىنى قوللىنىش ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "The Docker network that the deployed ExApps will use." : "ئورۇنلاشتۇرۇلغان ExApps ئىشلىتىدىغان Docker تورى.", + "The URL should start with http:// or https://" : "URL http:// ياكى https:// بىلەن باشلىنىشى كېرەك", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "HTTPS دېمون ئۈچۈن، Nextcloud URL ئادرېسى HTTPS بولۇشى كېرەك.", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "daemon كومپيۇتېرىدىكى بارلىق GPU ئۈسكۈنىلىرى Docker تەرىپىدىن ExApp قاچىلىرىدا قوزغىتىلىشى كېرەك.", "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Edit the deploy daemon" : "ئورۇنلاشتۇرۇش دېمونىنى تەھرىرلەڭ", + "Register a new deploy daemon" : "يېڭى ئورۇنلاشتۇرۇش دېمونىنى تىزىملىتىش", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", + "Select a daemon configuration template" : "دېمون سەپلىمە قېلىپىنى تاللاڭ", "Daemon registration form" : "Daemon تىزىملىتىش جەدۋىلى", + "Unique deploy daemon name" : "بىردىنبىر ئورۇنلاشتۇرۇش دېمون نامى", + "Unique deploy Daemon name" : "ئۆزگىچە ئورۇنلاشتۇرۇش دېمون نامى", "Display name" : "كۆرسىتىش ئىسمى", "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", + "Select the daemon deploy method" : "دېمون ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", + "HaRP host" : "HaRP ساھىبى", "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP ئورتاقلاشقان ئاچقۇچ", + "The password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپتىن تەركىب تاپىشى كېرەك", + "Set this daemon as the default one" : "بۇ دېموننى سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Set as the default daemon" : "سۈكۈتتىكى دېمون قىلىپ بەلگىلەش", + "Enable HTTPS" : "HTTPS نى قوزغىتىش", + "Show deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرىنى كۆرسىتىش", + "Hide deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرىنى يوشۇرۇش", + "Enable HaRP" : "HarP نى قوزغىتىش", + "FRP server address" : "FRP سېرۋېر ئادرېسى", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "«Docker تورى» بۆلىكىدە بەلگىلەنگەن توردا ExApp ئارقىلىق يېتەلەيدىغان FRP سېرۋېرىنىڭ ئادرېسى (host:port).", + "Docker socket proxy port" : "Docker سوكېت ۋاكالىت پورتى", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker سوكېت ۋاكالەتچىسى ئۇلىنىدىغان HaRP دىكى پورت. بۇ ئېغىز ئاشكارىلىنىشى كېرەك، ئەمما ئىچكى قىسمىدا ئاشكارىلىنىشى ياكى ئۆزگەرتىلىشى تەلەپ قىلىنمايدۇ.", + "Disable FRP" : "FRP نى چەكلەش", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "پەقەت ئىلغار تەڭشەكلەر ئۈچۈنلا بەلگە قويۇڭ. ExApps بىلەن HaRP ئوتتۇرىسىدىكى FRP تونېلىنى چەكلەيدۇ.", + "Docker network for ex-app deployment must be defined" : "ئىلگىرىكى ئەپ ئورۇنلاشتۇرۇش ئۈچۈن Docker تورى ئېنىقلىنىشى كېرەك", "Compute device" : "ھېسابلاش ئۈسكۈنىسى", + "Memory limit (in MiB)" : "ئىچكى ساقلىغۇچ چەكلىمىسى (MiB بىلەن)", + "Must be a positive integer" : "مۇسبەت پۈتۈن سان بولۇشى كېرەك", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp قاچىسىنىڭ ئىشلىتەلەيدىغان ئەڭ چوڭ ئىچكى ساقلىغۇچ مىقدارى (مېبىبايت)", + "CPU limit as decimal value" : "CPU چەكلىمىسى ئونلۇق سان سۈپىتىدە", + "Must be a positive number" : "مۇسبەت سان بولۇشى كېرەك", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp قاچىسى ئىشلىتەلەيدىغان ئەڭ كۆپ CPU يادروسى سانى (مەسىلەن، يېرىم يادرو ئۈچۈن 0.5، ئىككى يادرو ئۈچۈن 2)", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", "Option key (unique, e.g. my_key)" : "تاللاش ئاچقۇچى (ئۆزگىچە ، مەسىلەن my_key)", @@ -92,6 +190,7 @@ OC.L10N.register( "Save" : "ساقلا", "Register" : "تىزىملىتىڭ", "External Apps" : "سىرتقى ئەپلەر", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى ئارقىلىق Nextcloud سىستېمىڭىزنى كۈچەيتىڭ.\n\nAppAPI Nextcloud ئېكولوگىيە سىستېمىسى ئىچىدىكى قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش جەريانىنى ئاددىيلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن بىر تۈر.\n\nئۇ تەرەققىياتچىلارغا ھەر خىل پروگرامما تىللىرىنى ئىشلىتىپ قوللىنىشچان پروگراممىلارنى يارىتىشقا يول قويىدىغان يېڭى ئۇسۇلنى تونۇشتۇرىدۇ، بۇ تىللار ئەنئەنىۋى ھالدا Nextcloud تەرەققىياتىدا ئىشلىتىلگەن PHP بىلەنلا چەكلىنىپ قالمايدۇ.\n\n### بىرلەشتۈرۈلگەن قوللىنىشچان پروگرامما\n\n**Nextcloud 30.0.1 دىن باشلاپ، بۇ قوللىنىشچان پروگرامما Nextcloud نىڭ ئۆلچەملىك بولىقىغا كىرگۈزۈلگەن.**\n\n### قوللاش\n\nبۇ تۈرگە بولغان ھەر قانداق قوللاشقا رەھمەت ئېيتىمىز:\n\n- ⭐ GitHub دا خىزمىتىمىزنى باشلاڭ\n- ❗ مەسىلە ياكى ئىقتىدار تەلىپىنى يارىتىڭ\n- 💁 مەسىلىنى ھەل قىلىڭ ۋە تارتىش تەلىپىنى يارىتىڭ\n- 🧑‍💻 AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىڭىزنى تەرەققىي قىلدۇرۇڭ\n\nAppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ Nextcloud دا قوللىنىشچان پروگراممىلارنىڭ تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلىنى ئۆزگەرتىش ئىقتىدارىغا چىن دىلىمىزدىن ھاياجانلىنىمىز.\n\nبۇ سەپەرگە ئاتلانغان ۋاقتىمىزدا، سىزنى - ئاچقۇچىلار، ئويلىغۇچىلار، ئىجادكارلار ۋە كەلگۈسىگە ئىنتىلىدىغانلارنى - تېخىمۇ كۆپ ئىقتىدارلىق، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇشقا قىزغىن تەكلىپ قىلىمىز.\n\n*سىزنىڭ چۈشەنچىڭىز، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن قىممەتلىك.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", diff --git a/l10n/ug.json b/l10n/ug.json index 1ddb319e..a710d511 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -3,6 +3,8 @@ "Error starting install of ExApp" : "ExApp نى قاچىلاشتا خاتالىق كۆرۈلدى", "ExApp failed to register, check the NC logs" : "ExApp تىزىملاتمىدى ، NC خاتىرىسىنى تەكشۈرۈڭ", "ExApp not found, failed to get status" : "ExApp تېپىلمىدى ، ئورۇنغا ئېرىشەلمىدى", + "Error adding Docker registry" : "Docker تىزىملىكىنى قوشۇشتا خاتالىق كۆرۈلدى", + "Error removing Docker registry" : "Docker تىزىملىكىنى ئۆچۈرۈشتە خاتالىق كۆرۈلدى", "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "بۇ ئەپ AppStore دىن قاچىلانمىغان. قوشۇمچە ئۇچۇرلار يوق. پەقەت ھەرىكەتنى قوزغىتىش / چەكلەش ۋە ئۆچۈرۈشكە رۇخسەت قىلىنىدۇ.", "Could not perform installation of ExApp" : "ExApp نى ئورنىتالمىدى", "Failed to enable ExApp" : "ExApp نى قوزغىتىش مەغلۇب بولدى", @@ -12,40 +14,75 @@ "Could not perform update of ExApp" : "ExApp نىڭ يېڭىلىنىشىنى قىلالمىدى", "ExApp not found, failed to get logs" : "ExApp تېپىلمىدى ، خاتىرە ئالالمىدى", "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق:% s", + "ExApp not found, failed to get deploy options" : "ExApp تېپىلمىدى، ئورۇنلاشتۇرۇش تاللانمىلىرىنى ئېلىش مەغلۇب بولدى", "AppAPI authentication failed" : "AppAPI دەلىللەش مەغلۇپ بولدى", "AppAPI ExApp notifier" : "AppAPI ExApp ئۇقتۇرۇشى", "AppAPI" : "AppAPI", "AI Integration Team" : "AI بىرلەشتۈرۈش گۇرۇپپىسى", "ExApps Settings" : "ExApps تەڭشەكلىرى", + "AppAPI deploy daemon" : "AppAPI دېموننى ئورۇنلاشتۇرۇش", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI نىڭ ئۆزلۈكىدىن ئورۇنلاشتۇرۇش دېمونى تەڭشىلىنمىگەن. سىرتقى ئەپلەرنى (ئەسلىدىكى ئەپلەر) قاچىلاش ئۈچۈن تەڭشەكلەردە ئۆزلۈكىدىن ئورۇنلاشتۇرۇش دېمونىنى تىزىملىتىڭ.", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى \"%s\" غا كىرگىلى بولمايدۇ. دېمون سەپلىمىسىنى تەكشۈرۈڭ.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى HaRP نى ئىشلەتمىدى. تېخىمۇ ياخشى ئۈنۈمگە ئېرىشىش ئۈچۈن HaRP غا ئالماشتۇرۇشنى ئويلىشىڭ.", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى ئارقىلىق Nextcloud نى كۈچەيتىڭ.\n\nAppAPI Nextcloud ئېكولوگىيە سىستېمىسى ئىچىدىكى قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش جەريانىنى ئاددىيلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن بىر تۈر.\n\nئۇ تەرەققىياتچىلارنىڭ Nextcloud تەرەققىياتىدا ئەنئەنىۋى ھالدا ئىشلىتىلگەن PHP بىلەنلا چەكلىنىپ قالماي، ھەر خىل پروگرامما تىللىرىنى ئىشلىتىپ قوللىنىشچان پروگراممىلارنى يارىتىشىغا يول قويىدىغان يېڭى ئۇسۇلنى تونۇشتۇرىدۇ.\n\n_ئەگەر قوللىنىشچان پروگرامما تەرەققىي قىلدۇرماقچى بولسىڭىز، بىز سىزگە خۇشاللىق بىلەن ياردەم بېرىمىز ۋە ياردەم بېرىمىز._\n\n### قوللاش\n\nبۇ تۈرگە بولغان ھەر قانداق قوللاشقا رەھمەت ئېيتىمىز:\n\n- ⭐ GitHub دا خىزمىتىمىزنى بېكىتىڭ\n- ❗ مەسىلە ياكى ئىقتىدار تەلىپىنى يارىتىڭ\n- 💁 مەسىلىنى ھەل قىلىڭ ۋە تارتىش تەلىپىنى يارىتىڭ\n- 🧑‍💻 AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىڭىزنى تەرەققىي قىلدۇرۇڭ\n\nAppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ Nextcloud دا قوللىنىشچان پروگراممىلارنىڭ تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلىنى ئۆزگەرتىش ئىقتىدارىغا چىن دىلىمىزدىن ھاياجانلىنىمىز.\n\nبۇ سەپەرگە ئاتلانغان ۋاقتىمىزدا، سىزنى - ئاچقۇچىلار، ئويلىغۇچىلار، ئىجادكارلار ۋە كەلگۈسىگە ئىنتىلىدىغانلارنى - تېخىمۇ كۆپ ئىقتىدارلىق، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇشقا قىزغىن تەكلىپ قىلىمىز.\n\n*سىزنىڭ چۈشەنچىڭىز، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن قىممەتلىك.*", "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "AppAPI تۈرى دوكېر كونتېينېرلىرى ئارقىلىق Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش ئۇسۇلىنى ئىنقىلابىيلاشتۇرۇشنى مەقسەت قىلغان قىزىقارلىق بىر تەشەببۇس. بۇ ئارقىلىق پروگرامما تىلىنى تېخىمۇ كۆپ تاللاشقا يول قويۇلىدۇ ۋە ھېسابلاش جەھەتتىن قىممەت ۋەزىپىلەرنى باشقا بىر مۇلازىمېتىرغا يۈكلەشكە يول قويۇلىدۇ.", + "Deploy daemons" : "جىنلارنى ئورۇنلاشتۇرۇش", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش دېمونى (DaemonConfig) ExApps ئوركېستىراتسىيە دېمونى.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "دائېمونلارنى ئورۇنلاشتۇرۇش. ئورۇنلاشتۇرۇش دائېمونى (DaemonConfig) ExApps ئوركېستىراتسىيە دائېمونى.", + "Default deploy daemon is not accessible. Please check its configuration" : "سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونىغا كىرگىلى بولمايدۇ. ئۇنىڭ سەپلىمىسىنى تەكشۈرۈپ بېقىڭ.", "ExApp init timeout (minutes)" : "ExApp init ۋاقتى (مىنۇت)", "ExApp initialization process timeout after which AppAPI will mark it as failed" : "ExApp باشلاش جەريانىنىڭ ۋاقتى ، ئۇنىڭدىن كېيىن AppAPI ئۇنى مەغلۇب دەپ بەلگە قويىدۇ", "ExApp init timeout" : "ExApp init timeout", "ExApp container restart policy" : "ExApp قاچا قايتا قوزغىتىش سىياسىتى", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "سېرۋېر قايتا قوزغىتىلغاندىن كېيىن ExApps نىڭ ئىجرا بولۇشىغا كاپالەتلىك قىلىش ئۈچۈن، مەسىلەن، 'always' دېگەننى تاللاپ، كونتېينېرنى قايتا قوزغىتىش قائىدىسىنى تاللاڭ.", + "This settings changes are effective only for newly created containers" : "بۇ تەڭشەك ئۆزگىرىشلىرى پەقەت يېڭىدىن قۇرۇلغان قاچىلار ئۈچۈنلا كۈچكە ئىگە", + "Deploy daemon deletion confirmation" : "دېموننى ئۆچۈرۈش جەزملەشتۈرۈشنى ئورۇنلاشتۇرۇش", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "«{name}» ئورۇنلاشتۇرۇش دېمونىنى ئۆچۈرمەكچىمۇ؟", + "Remove all ExApps installed on this daemon" : "بۇ دېمونغا ئورنىتىلغان بارلىق ExApps نى ئۆچۈرۈڭ", "Cancel" : "بىكار قىلىش", "Delete" : "ئۆچۈر", + "A \"manual-install\" deploy daemon cannot be set as default" : "«قولدا ئورنىتىش» ئورۇنلاشتۇرۇش دېمونىنى سۈكۈتتىكى قىلىپ تەڭشىگىلى بولمايدۇ", + "Failed to save admin settings. Check the logs" : "باشقۇرۇش تەڭشەكلىرىنى ساقلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "Password confirmation failed" : "پارول جەزملەشتۈرۈش مەغلۇب بولدى", "Default" : "سۈكۈتتىكى", "Set as default" : "سۈكۈتتىكى قىلىپ تەڭشەڭ", "Test deploy" : "سىناق ئورۇنلاشتۇرۇش", + "Docker registries" : "Docker رېگىستىرلىرى", "Edit" : "تەھرىر", "Daemon connection successful" : "Daemon ئۇلىنىشى مۇۋەپپەقىيەتلىك بولدى", + "Failed to connect to the daemon. Check the logs" : "دېمونغا ئۇلىنىش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Failed to check connection to the daemon. Check the logs" : "دېمونغا ئۇلىنىشنى تەكشۈرۈش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "Unlimited" : "چەكسىز", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "Deploy daemon configuration" : "دېمون سەپلىمىسىنى ئورۇنلاشتۇرۇش", + "Deploy daemon configuration details" : "دېموننىڭ سەپلىمىسى تەپسىلاتلىرىنى ئورۇنلاشتۇرۇش", + "Deploy daemon" : "دېموننى ئورۇنلاشتۇرۇش", "Default daemon. ExApps will be installed on it" : "كۆڭۈلدىكى daemon. ئۇنىڭغا ExApps ئورنىتىلىدۇ", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "ئادەتتە «قولدا قاچىلاش» دېمونى تەرەققىيات ئۈچۈن ئىشلىتىلىدۇ. ئۇنى ئۆزلۈكىدىن ئورنىتىلغان دېمون قىلىپ تەڭشىگىلى بولمايدۇ.", "ExApps installed" : "ExApps قاچىلاندى", "Name" : "ئاتى", "Protocol" : "كېلىشىم", "Host" : "باش ئاپپارات", + "ExApp direct communication (FRP disabled)" : "ExApp بىۋاسىتە ئالاقىسى (FRP چەكلەنگەن)", "Deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرى", "Docker network" : "Docker تورى", "Nextcloud URL" : "Nextcloud URL", "HaProxy password" : "HaProxy پارولى", + "GPU support" : "GPU قوللاش", + "Computation device" : "ھېسابلاش ئۈسكۈنىسى", + "Memory limit" : "خاتىرە چېكى", + "CPU limit" : "CPU چەكلىمىسى", "Additional options" : "قوشۇمچە تاللاشلار", "Check connection" : "ئۇلىنىشنى تەكشۈرۈڭ", "Registered Deploy daemons list" : "تىزىملاتقان دامونلار تىزىملىكى", + "No Deploy daemons are registered" : "تىزىملاتقان Deploy دېمونلىرى يوق", + "Register a custom one or configure one from the available templates" : "خاسلاشتۇرۇلغان بىرنى تىزىملىتىڭ ياكى بار بولغان قېلىپلاردىن بىرنى تەڭشەڭ", + "Register daemon" : "تىزىملات دېمون", "Register ExApp in Nextcloud" : "Nextcloud دا ExApp نى تىزىملىتىڭ", "Check if the ExApp is registered in Nextcloud before deployment" : "ExApp نى ئورۇنلاشتۇرۇشتىن بۇرۇن Nextcloud دا تىزىملاتقان ياكى ئەمەسلىكىنى تەكشۈرۈڭ", "Image pull" : "رەسىم تارتىش", @@ -61,25 +98,86 @@ "Only if ExApp container is preset" : "پەقەت ExApp قاچىسى ئالدىن بېكىتىلگەن بولسا", "Deploy test passed successfully!" : "ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك ئۆتتى!", "Deploy test failed at step \"{step}\"" : "ئورۇنلاشتۇرۇش سىنىقى \"{step}\" قەدەمدە مەغلۇپ بولدى", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI دېموننىڭ توغرا سەپلەنگەنلىكىنى ۋە ئورۇنلاشتۇرۇش قەدەملىرىنىڭ مۇۋەپپەقىيەتلىك بولغانلىقىنى تەكشۈرۈش ئۈچۈن كىچىك ExApp نى ئورنىتىشقا ئۇرۇنىدۇ.", + "The following deploy test checks must succeed:" : "تۆۋەندىكى ئورۇنلاشتۇرۇش سىنىقى مۇۋەپپەقىيەتلىك بولۇشى كېرەك:", "More information" : "تېخىمۇ كۆپ ئۇچۇرلار", "Download ExApp logs" : "ExApp خاتىرىسىنى چۈشۈرۈڭ", + "Remove the test ExApp" : "سىناق ExApp نى ئۆچۈرۈڭ", + "Start the deploy test" : "ئورۇنلاشتۇرۇش سىنىقىنى باشلاڭ", + "Stop the deploy test" : "ئورۇنلاشتۇرۇش سىنىقىنى توختىتىش", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "سىناق ExApp تىزىملاتمىغان ۋە ئۇنىڭ قاچىسى «ئورنىتىش سىنىقىنى توختىتىش» دا ئۆچۈرۈۋېتىلدى.", + "Please enter a registry domain" : "تىزىملىتىش دومېنىنى كىرگۈزۈڭ", + "\"From\" cannot be \"local\"" : "«يەرلىك» دېگەن سۆز «يەرلىك» دېگەن سۆز بولالمايدۇ.", + "This registry mapping already exists" : "بۇ تىزىملىك خەرىتىلەش ئاللىقاچان مەۋجۇت", + "\"From\" and \"To\" cannot be the same" : "«باشلاش» بىلەن «ئاخىرلاش» ئوخشاش بولماسلىقى كېرەك.", + "Docker registry mapping added" : "Docker رېگىستىر خەرىتىلەش قوشۇلدى", + "Error adding Docker registry mapping" : "Docker تىزىملىك خەرىتىسىنى قوشۇشتا خاتالىق كۆرۈلدى", + "Docker registry mapping removed" : "Docker رېگىستىر خەرىتىلەش ئۆچۈرۈلدى", + "Error removing Docker registry mapping" : "Docker تىزىملىك خەرىتىسىنى چىقىرىۋېتىشتە خاتالىق كۆرۈلدى", + "Override Docker registries" : "Docker تىزىملىرىنى قايتا بەلگىلەش", + "Configure Docker registry override mappings for the selected daemon." : "تاللانغان دېمون ئۈچۈن Docker رېگىستىر تىزىملىكىنىڭ قايتا بەلگىلەشلىرىنى تەڭشەڭ.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml دىكى ماس كېلىدىغان مەنبە تىزىملىكى ئورۇنلاشتۇرۇش جەريانىدا قايتا يېزىلىدۇ (رەسىمنى تارتىش باسقۇچى).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "بۇ، ئەگەر سىز خاسلاشتۇرۇلغان Docker تىزىملىكىنى ئىشلەتمەكچى بولسىڭىز، مەسىلەن، شەخسىي Docker تىزىملىكىنى ئىشلەتمەكچى بولسىڭىز ياكى سىناق قىلىش ئۈچۈن باشقا Docker تىزىملىكىنى ئىشلەتمەكچى بولسىڭىز پايدىلىق.", + "Image pull will be skipped" : "رەسىم تارتىش ئاتلاپ ئۆتۈلىدۇ", "Remove" : "ئۆچۈرۈڭ", + "No custom Docker registries are registered" : "ھېچقانداق خاسلاشتۇرۇلغان Docker تىزىملىرى تىزىملانمىغان", + "Add registry override mapping" : "تىزىملىكنى قايتا بەلگىلەش خەرىتىسىنى قوشۇش", "From" : "From", + "registry URL (e.g. ghcr.io)" : "تىزىملىك ئادرېسى (مەسىلەن، ghcr.io)", "To" : "To", + "registry URL (e.g. docker.io)" : "تىزىملىك URL (مەسىلەن، docker.io)", "Add" : "قوش", + "Hostname used by Nextcloud to access the ExApps" : "Nextcloud تەرىپىدىن ExApps غا كىرىش ئۈچۈن ئىشلىتىلىدىغان تور بېكەت نامى", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "{name} نىڭ ئىشلىتىشكە بولىدىغان كومپيۇتېر نامى (ۋە پورتى). بۇنىڭ ئاممىۋى كومپيۇتېر بولۇشى شەرت ئەمەس، پەقەت Nextcloud مۇلازىمېتىرى ئارقىلىق كىرگىلى بولىدىغان كومپيۇتېر، مەسىلەن {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "{name} نىڭ ئىشلىتىشكە بولىدىغان كومپيۇتېر نامى (ۋە پورتى) ياكى يولى. بۇنىڭ ئاممىۋى كومپيۇتېر بولۇشى شەرت ئەمەس، پەقەت Nextcloud مۇلازىمېتىرى ئىشلىتەلەيدىغان كومپيۇتېر بولۇشى كېرەك. ئۇ يەنە Docker سوكېتىغا بارىدىغان يولمۇ بولۇشى مۇمكىن. (مەسىلەن، nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "بۇ نامدىكى بىر دېمون مەۋجۇت", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "HaRP كونتېينېر ئالاقىسىنىڭ مەخپىي ئاچقۇچى (HP_SHARED_KEY).", "AppAPI Docker Socket Proxy authentication password" : "AppAPI Docker Socket ۋاكالەتچى دەلىللەش پارولى", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "ئۆزگەرتىشلەر پەقەت يېڭىدىن ئورنىتىلغان ExApps ئۈچۈنلا كۈچكە ئىگە. مەۋجۇت ExApps ئۈچۈن، يېڭى تەڭشەك قىممەتلىرىنى قوللىنىش ئۈچۈن Docker قاچىلىرىنى قايتا قۇرۇش كېرەك.", + "The Docker network that the deployed ExApps will use." : "ئورۇنلاشتۇرۇلغان ExApps ئىشلىتىدىغان Docker تورى.", + "The URL should start with http:// or https://" : "URL http:// ياكى https:// بىلەن باشلىنىشى كېرەك", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "HTTPS دېمون ئۈچۈن، Nextcloud URL ئادرېسى HTTPS بولۇشى كېرەك.", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "daemon كومپيۇتېرىدىكى بارلىق GPU ئۈسكۈنىلىرى Docker تەرىپىدىن ExApp قاچىلىرىدا قوزغىتىلىشى كېرەك.", "DaemonConfig successfully registered" : "DaemonConfig مۇۋەپپەقىيەتلىك تىزىملاتتى", "Failed to register DaemonConfig. Check the logs" : "DaemonConfig نى تىزىملاتمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "DaemonConfig successfully updated" : "DaemonConfig مۇۋەپپەقىيەتلىك يېڭىلاندى", "Failed to update DaemonConfig. Check the logs" : "DaemonConfig نى يېڭىلاش مەغلۇب بولدى. خاتىرىلەرنى تەكشۈرۈڭ", "Failed to connect to Daemon. Check the logs" : "Daemon غا ئۇلىنالمىدى. خاتىرىلەرنى تەكشۈرۈڭ", "Failed to check connection to Daemon. Check the logs" : "Daemon غا ئۇلىنىشنى تەكشۈرەلمىدى. خاتىرىلەرنى تەكشۈرۈڭ", + "Edit the deploy daemon" : "ئورۇنلاشتۇرۇش دېمونىنى تەھرىرلەڭ", + "Register a new deploy daemon" : "يېڭى ئورۇنلاشتۇرۇش دېمونىنى تىزىملىتىش", "Daemon configuration template" : "Daemon سەپلىمە قېلىپى", + "Select a daemon configuration template" : "دېمون سەپلىمە قېلىپىنى تاللاڭ", "Daemon registration form" : "Daemon تىزىملىتىش جەدۋىلى", + "Unique deploy daemon name" : "بىردىنبىر ئورۇنلاشتۇرۇش دېمون نامى", + "Unique deploy Daemon name" : "ئۆزگىچە ئورۇنلاشتۇرۇش دېمون نامى", "Display name" : "كۆرسىتىش ئىسمى", "Deployment method" : "ئورۇنلاشتۇرۇش ئۇسۇلى", + "Select the daemon deploy method" : "دېمون ئورۇنلاشتۇرۇش ئۇسۇلىنى تاللاڭ", + "HaRP host" : "HaRP ساھىبى", "Daemon host" : "Daemon host", + "HaRP shared key" : "HaRP ئورتاقلاشقان ئاچقۇچ", + "The password must be at least 12 characters long" : "پارول كەم دېگەندە 12 ھەرپتىن تەركىب تاپىشى كېرەك", + "Set this daemon as the default one" : "بۇ دېموننى سۈكۈتتىكى قىلىپ تەڭشەڭ", + "Set as the default daemon" : "سۈكۈتتىكى دېمون قىلىپ بەلگىلەش", + "Enable HTTPS" : "HTTPS نى قوزغىتىش", + "Show deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرىنى كۆرسىتىش", + "Hide deploy options" : "ئورۇنلاشتۇرۇش تاللانمىلىرىنى يوشۇرۇش", + "Enable HaRP" : "HarP نى قوزغىتىش", + "FRP server address" : "FRP سېرۋېر ئادرېسى", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "«Docker تورى» بۆلىكىدە بەلگىلەنگەن توردا ExApp ئارقىلىق يېتەلەيدىغان FRP سېرۋېرىنىڭ ئادرېسى (host:port).", + "Docker socket proxy port" : "Docker سوكېت ۋاكالىت پورتى", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker سوكېت ۋاكالەتچىسى ئۇلىنىدىغان HaRP دىكى پورت. بۇ ئېغىز ئاشكارىلىنىشى كېرەك، ئەمما ئىچكى قىسمىدا ئاشكارىلىنىشى ياكى ئۆزگەرتىلىشى تەلەپ قىلىنمايدۇ.", + "Disable FRP" : "FRP نى چەكلەش", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "پەقەت ئىلغار تەڭشەكلەر ئۈچۈنلا بەلگە قويۇڭ. ExApps بىلەن HaRP ئوتتۇرىسىدىكى FRP تونېلىنى چەكلەيدۇ.", + "Docker network for ex-app deployment must be defined" : "ئىلگىرىكى ئەپ ئورۇنلاشتۇرۇش ئۈچۈن Docker تورى ئېنىقلىنىشى كېرەك", "Compute device" : "ھېسابلاش ئۈسكۈنىسى", + "Memory limit (in MiB)" : "ئىچكى ساقلىغۇچ چەكلىمىسى (MiB بىلەن)", + "Must be a positive integer" : "مۇسبەت پۈتۈن سان بولۇشى كېرەك", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp قاچىسىنىڭ ئىشلىتەلەيدىغان ئەڭ چوڭ ئىچكى ساقلىغۇچ مىقدارى (مېبىبايت)", + "CPU limit as decimal value" : "CPU چەكلىمىسى ئونلۇق سان سۈپىتىدە", + "Must be a positive number" : "مۇسبەت سان بولۇشى كېرەك", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp قاچىسى ئىشلىتەلەيدىغان ئەڭ كۆپ CPU يادروسى سانى (مەسىلەن، يېرىم يادرو ئۈچۈن 0.5، ئىككى يادرو ئۈچۈن 2)", "Add additional option" : "قوشۇمچە تاللاش قوشۇڭ", "Option key (unique)" : "تاللاش كۇنۇپكىسى (ئۆزگىچە)", "Option key (unique, e.g. my_key)" : "تاللاش ئاچقۇچى (ئۆزگىچە ، مەسىلەن my_key)", @@ -90,6 +188,7 @@ "Save" : "ساقلا", "Register" : "تىزىملىتىڭ", "External Apps" : "سىرتقى ئەپلەر", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى ئارقىلىق Nextcloud سىستېمىڭىزنى كۈچەيتىڭ.\n\nAppAPI Nextcloud ئېكولوگىيە سىستېمىسى ئىچىدىكى قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش جەريانىنى ئاددىيلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن بىر تۈر.\n\nئۇ تەرەققىياتچىلارغا ھەر خىل پروگرامما تىللىرىنى ئىشلىتىپ قوللىنىشچان پروگراممىلارنى يارىتىشقا يول قويىدىغان يېڭى ئۇسۇلنى تونۇشتۇرىدۇ، بۇ تىللار ئەنئەنىۋى ھالدا Nextcloud تەرەققىياتىدا ئىشلىتىلگەن PHP بىلەنلا چەكلىنىپ قالمايدۇ.\n\n### بىرلەشتۈرۈلگەن قوللىنىشچان پروگرامما\n\n**Nextcloud 30.0.1 دىن باشلاپ، بۇ قوللىنىشچان پروگرامما Nextcloud نىڭ ئۆلچەملىك بولىقىغا كىرگۈزۈلگەن.**\n\n### قوللاش\n\nبۇ تۈرگە بولغان ھەر قانداق قوللاشقا رەھمەت ئېيتىمىز:\n\n- ⭐ GitHub دا خىزمىتىمىزنى باشلاڭ\n- ❗ مەسىلە ياكى ئىقتىدار تەلىپىنى يارىتىڭ\n- 💁 مەسىلىنى ھەل قىلىڭ ۋە تارتىش تەلىپىنى يارىتىڭ\n- 🧑‍💻 AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىڭىزنى تەرەققىي قىلدۇرۇڭ\n\nAppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ Nextcloud دا قوللىنىشچان پروگراممىلارنىڭ تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلىنى ئۆزگەرتىش ئىقتىدارىغا چىن دىلىمىزدىن ھاياجانلىنىمىز.\n\nبۇ سەپەرگە ئاتلانغان ۋاقتىمىزدا، سىزنى - ئاچقۇچىلار، ئويلىغۇچىلار، ئىجادكارلار ۋە كەلگۈسىگە ئىنتىلىدىغانلارنى - تېخىمۇ كۆپ ئىقتىدارلىق، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇشقا قىزغىن تەكلىپ قىلىمىز.\n\n*سىزنىڭ چۈشەنچىڭىز، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن قىممەتلىك.*", "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "AppAPI تۈرى Nextcloud ئۈچۈن قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇشتا ئىنقىلاب قىلىشنى مەقسەت قىلغان كىشىنى ھاياجانلاندۇرىدىغان تەشەببۇس.", "Deploy Daemons" : "Daemons نى ئورۇنلاشتۇرۇڭ", "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "ئورۇنلاشتۇرۇش Daemon (DaemonConfig) بولسا ExApps ئوركېستىرلىق دامون.", From d657038d2f28c08949503d7798cfd9655794b25c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 21 Dec 2025 00:19:49 +0000 Subject: [PATCH 225/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ug.js | 2 ++ l10n/ug.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/l10n/ug.js b/l10n/ug.js index 298a8084..913fef99 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -61,6 +61,7 @@ OC.L10N.register( "Unlimited" : "چەكسىز", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPU لار"], "Deploy daemon configuration" : "دېمون سەپلىمىسىنى ئورۇنلاشتۇرۇش", "Deploy daemon configuration details" : "دېموننىڭ سەپلىمىسى تەپسىلاتلىرىنى ئورۇنلاشتۇرۇش", "Deploy daemon" : "دېموننى ئورۇنلاشتۇرۇش", @@ -225,6 +226,7 @@ OC.L10N.register( "Actions" : "مەشغۇلاتلار", "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ئەپنىڭ يېڭىلانمىسى مەۋجۇت","%n ئەپلەرنىڭ يېڭىلانمىسى مەۋجۇت"], "_Update_::_Update all_" : ["ھەممىنى يېڭىلا","ھەممىنى يېڭىلا"], "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Type" : "تىپ", diff --git a/l10n/ug.json b/l10n/ug.json index a710d511..53d27b77 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -59,6 +59,7 @@ "Unlimited" : "چەكسىز", "{size} GiB" : "{size} GiB", "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPU لار"], "Deploy daemon configuration" : "دېمون سەپلىمىسىنى ئورۇنلاشتۇرۇش", "Deploy daemon configuration details" : "دېموننىڭ سەپلىمىسى تەپسىلاتلىرىنى ئورۇنلاشتۇرۇش", "Deploy daemon" : "دېموننى ئورۇنلاشتۇرۇش", @@ -223,6 +224,7 @@ "Actions" : "مەشغۇلاتلار", "Results from other categories" : "باشقا تۈرلەرنىڭ نەتىجىسى", "No apps found" : "ھېچقانداق ئەپ تېپىلمىدى", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n ئەپنىڭ يېڭىلانمىسى مەۋجۇت","%n ئەپلەرنىڭ يېڭىلانمىسى مەۋجۇت"], "_Update_::_Update all_" : ["ھەممىنى يېڭىلا","ھەممىنى يېڭىلا"], "Deploy Daemon" : "Daemon نى ئورۇنلاشتۇرۇڭ", "Type" : "تىپ", From 8fdb257d04f20bfdb09701cae80a3c2dc7c03e39 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 10 Jan 2026 00:34:00 +0000 Subject: [PATCH 226/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/nl.js | 3 +++ l10n/nl.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/l10n/nl.js b/l10n/nl.js index 5c2ffe5a..d303c8fe 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -111,6 +111,9 @@ OC.L10N.register( "Disable FRP" : "FRB uitschakelen", "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", "Compute device" : "Compute apparaat", + "Memory limit (in MiB)" : "Geheugenlimiet (in MiB)", + "Must be a positive integer" : "Moet een positief geheel getal zijn", + "Must be a positive number" : "Moet een positief getal zijn", "Add additional option" : "Voeg additionele optie toe", "Option key (unique)" : "Optie key (uniek)", "Option key (unique, e.g. my_key)" : "Optie key (uniek, bijv. mijn_key)", diff --git a/l10n/nl.json b/l10n/nl.json index 58895aee..8a1c35ab 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -109,6 +109,9 @@ "Disable FRP" : "FRB uitschakelen", "Docker network for ex-app deployment must be defined" : "Docker netwerk voor ExApp deployment moet gespecificeerd zijn", "Compute device" : "Compute apparaat", + "Memory limit (in MiB)" : "Geheugenlimiet (in MiB)", + "Must be a positive integer" : "Moet een positief geheel getal zijn", + "Must be a positive number" : "Moet een positief getal zijn", "Add additional option" : "Voeg additionele optie toe", "Option key (unique)" : "Optie key (uniek)", "Option key (unique, e.g. my_key)" : "Optie key (uniek, bijv. mijn_key)", From 731ed81ef4b00fbb979ff9538097968721024471 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 11 Jan 2026 00:20:09 +0000 Subject: [PATCH 227/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/bn_BD.js | 20 -------------------- l10n/bn_BD.json | 18 ------------------ l10n/de.js | 4 ++++ l10n/de.json | 4 ++++ l10n/de_DE.js | 4 ++++ l10n/de_DE.json | 4 ++++ l10n/ga.js | 4 ++++ l10n/ga.json | 4 ++++ l10n/gl.js | 4 ++++ l10n/gl.json | 4 ++++ l10n/kab.js | 20 -------------------- l10n/kab.json | 18 ------------------ 12 files changed, 32 insertions(+), 76 deletions(-) delete mode 100644 l10n/bn_BD.js delete mode 100644 l10n/bn_BD.json delete mode 100644 l10n/kab.js delete mode 100644 l10n/kab.json diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js deleted file mode 100644 index a7d4c5c6..00000000 --- a/l10n/bn_BD.js +++ /dev/null @@ -1,20 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "বাতিল করুন", - "Delete" : "মুছে", - "Edit" : "সম্পাদনা", - "Unlimited" : "অসীম", - "Name" : "নাম", - "Host" : "হোস্ট", - "Enabled" : "কার্যকর", - "Add" : "যোগ কর", - "Save" : "সংরক্ষণ", - "Version" : "ভার্সন", - "Actions" : "পদক্ষেপসমূহ", - "Type" : "ধরণ", - "Documentation" : "নথিবদ্ধকরণ", - "Details" : "বিসতারিত", - "Disable" : "নিষ্ক্রিয়" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json deleted file mode 100644 index 54e5c903..00000000 --- a/l10n/bn_BD.json +++ /dev/null @@ -1,18 +0,0 @@ -{ "translations": { - "Cancel" : "বাতিল করুন", - "Delete" : "মুছে", - "Edit" : "সম্পাদনা", - "Unlimited" : "অসীম", - "Name" : "নাম", - "Host" : "হোস্ট", - "Enabled" : "কার্যকর", - "Add" : "যোগ কর", - "Save" : "সংরক্ষণ", - "Version" : "ভার্সন", - "Actions" : "পদক্ষেপসমূহ", - "Type" : "ধরণ", - "Documentation" : "নথিবদ্ধকরণ", - "Details" : "বিসতারিত", - "Disable" : "নিষ্ক্রিয়" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/de.js b/l10n/de.js index dc0b3ac1..47c1e60c 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", + "AppAPI HaRP version check" : "AppAPI HaRP Versionsüberprüfung", + "Could not retrieve HaRP version from daemon \"%s\"" : "HaRP-Version konnte nicht vom Daemon \"%s\" abgerufen werden", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", + "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", diff --git a/l10n/de.json b/l10n/de.json index bc8e6fa8..e190a020 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", + "AppAPI HaRP version check" : "AppAPI HaRP Versionsüberprüfung", + "Could not retrieve HaRP version from daemon \"%s\"" : "HaRP-Version konnte nicht vom Daemon \"%s\" abgerufen werden", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", + "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 75d8bc24..60857ca8 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", + "AppAPI HaRP version check" : "AppAPI HaRP Versionsüberprüfung", + "Could not retrieve HaRP version from daemon \"%s\"" : "HaRP-Version konnte nicht vom Daemon \"%s\" abgerufen werden", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", + "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index aee76245..733ba7cb 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Der Standard-Deploy-Daemon von AppAPI ist nicht eingerichtet. Bitte in den Einstellungen einen Standard-Deploy-Daemon registrieren, um externe Apps (Ex-Apps) zu installieren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Auf den AppAPI-Standardbereitstellungs-Daemon \"%s\" kann nicht zugegriffen werden. Bitte die Daemon-Konfiguration überprüfen.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Der AppAPI-Standardbereitstellungsdaemon verwendet nicht HaRP. Bitte für eine bessere Leistung einen Wechsel zu HaRP in Erwägung ziehen.", + "AppAPI HaRP version check" : "AppAPI HaRP Versionsüberprüfung", + "Could not retrieve HaRP version from daemon \"%s\"" : "HaRP-Version konnte nicht vom Daemon \"%s\" abgerufen werden", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", + "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", diff --git a/l10n/ga.js b/l10n/ga.js index 856cd8e6..c99faa3f 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Níl an daemon imscartha réamhshocraithe AppAPI ag úsáid HaRP. Smaoinigh, le do thoil, ar aistriú go HaRP le haghaidh feidhmíocht níos fearr.", + "AppAPI HaRP version check" : "Seiceáil leagan AppAPI HaRP", + "Could not retrieve HaRP version from daemon \"%s\"" : "Níorbh fhéidir leagan HaRP a aisghabháil ón daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Is é \"%s\" leagan HaRP don daemon \"%s\", atá róshean. Is é \"%s\" an leagan íosta atá ag teastáil. Nuashonraigh an daemon go dtí an leagan is déanaí le do thoil.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Theip ar leagan HaRP a sheiceáil don daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", diff --git a/l10n/ga.json b/l10n/ga.json index d01ab1ad..bb9cb5d3 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Níl deamhan imscaradh réamhshocraithe AppAPI socraithe. Le do thoil, cláraigh deamhan imlonnaithe réamhshocraithe sna socruithe chun Aipeanna Seachtracha (Ex-Apps) a shuiteáil.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Níl an deamhan imlonnaithe réamhshocraithe AppAPI \"%s\" inrochtana. Seiceáil le do thoil cumraíocht an deamhan.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Níl an daemon imscartha réamhshocraithe AppAPI ag úsáid HaRP. Smaoinigh, le do thoil, ar aistriú go HaRP le haghaidh feidhmíocht níos fearr.", + "AppAPI HaRP version check" : "Seiceáil leagan AppAPI HaRP", + "Could not retrieve HaRP version from daemon \"%s\"" : "Níorbh fhéidir leagan HaRP a aisghabháil ón daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Is é \"%s\" leagan HaRP don daemon \"%s\", atá róshean. Is é \"%s\" an leagan íosta atá ag teastáil. Nuashonraigh an daemon go dtí an leagan is déanaí le do thoil.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Theip ar leagan HaRP a sheiceáil don daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", diff --git a/l10n/gl.js b/l10n/gl.js index 5b974460..073ab20b 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere cambiar a HaRP para mellorar o rendemento.", + "AppAPI HaRP version check" : "Comprobación da versión HaRP de AppAPI", + "Could not retrieve HaRP version from daemon \"%s\"" : "Non foi posíbel recuperar a versión HaRP do servizo «%s»", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versión de HaRP para o servizo «%s» é «%s», que é antiga de máis. A versión mínima requirida é «%s». Actualice o servizo á última versión.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Produciuse un fallo ao comprobar a versión de HaRP para o servizo «%s»: %s", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", diff --git a/l10n/gl.json b/l10n/gl.json index e5fc06b2..301da08b 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O servizo de despregadura predeterminado de AppAPI non está definido. Rexistre un servizo de despregadura predeterminado nos axustes para instalar aplicacións externas (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O servizo de despregadura predeterminado de «%s»I non é accesíbel. Comprobe a configuración do servizo.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O servizo de despregadura predeterminado de AppAPI non emprega HaRP. Considere cambiar a HaRP para mellorar o rendemento.", + "AppAPI HaRP version check" : "Comprobación da versión HaRP de AppAPI", + "Could not retrieve HaRP version from daemon \"%s\"" : "Non foi posíbel recuperar a versión HaRP do servizo «%s»", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versión de HaRP para o servizo «%s» é «%s», que é antiga de máis. A versión mínima requirida é «%s». Actualice o servizo á última versión.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Produciuse un fallo ao comprobar a versión de HaRP para o servizo «%s»: %s", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", diff --git a/l10n/kab.js b/l10n/kab.js deleted file mode 100644 index 7567f578..00000000 --- a/l10n/kab.js +++ /dev/null @@ -1,20 +0,0 @@ -OC.L10N.register( - "app_api", - { - "Cancel" : "Cancel", - "Delete" : "Kkes", - "Default" : "Prédéfini(e)", - "Edit" : "Ẓreg", - "Name" : "Nom", - "Enabled" : "Yermed", - "Remove" : "Kkes", - "Confirm" : "Serggeg", - "Save" : "Sekles", - "Update to {version}" : "Leqqem ar {version}", - "Update to {update}" : "Leqqem ar {update}", - "Actions" : "Tigawin", - "Type" : "Anaw", - "Details" : "Talqayt", - "Disable" : "Désactiver" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/kab.json b/l10n/kab.json deleted file mode 100644 index e76a1648..00000000 --- a/l10n/kab.json +++ /dev/null @@ -1,18 +0,0 @@ -{ "translations": { - "Cancel" : "Cancel", - "Delete" : "Kkes", - "Default" : "Prédéfini(e)", - "Edit" : "Ẓreg", - "Name" : "Nom", - "Enabled" : "Yermed", - "Remove" : "Kkes", - "Confirm" : "Serggeg", - "Save" : "Sekles", - "Update to {version}" : "Leqqem ar {version}", - "Update to {update}" : "Leqqem ar {update}", - "Actions" : "Tigawin", - "Type" : "Anaw", - "Details" : "Talqayt", - "Disable" : "Désactiver" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file From 4419ecb88ece0ad7b19a62643ac541b3aa7b2b71 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 13 Jan 2026 00:20:45 +0000 Subject: [PATCH 228/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/zh_TW.js | 4 ++++ l10n/zh_TW.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 95538282..d5ff2afb 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", + "AppAPI HaRP version check" : "AppAPI HaRP 版本檢查", + "Could not retrieve HaRP version from daemon \"%s\"" : "無法從「%s」幕後程式擷取 HaRP 版本", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", + "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 8c400564..161ff9d5 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", + "AppAPI HaRP version check" : "AppAPI HaRP 版本檢查", + "Could not retrieve HaRP version from daemon \"%s\"" : "無法從「%s」幕後程式擷取 HaRP 版本", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", + "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", From 89ea98c040157116edfaf4c41dc9e257f4fa2cc8 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 14 Jan 2026 00:20:52 +0000 Subject: [PATCH 229/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/id.js | 1 + l10n/id.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/id.js b/l10n/id.js index 4ba6293f..ee30c7da 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -30,6 +30,7 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", + "Icon" : "Ikon", "Version" : "Versi", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", diff --git a/l10n/id.json b/l10n/id.json index 4184f420..94b9ebcd 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -28,6 +28,7 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", + "Icon" : "Ikon", "Version" : "Versi", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", From 643fa1d9991f57281aee287a938bd87cd1a869e8 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 15 Jan 2026 00:20:36 +0000 Subject: [PATCH 230/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 4 ++++ l10n/pt_BR.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 13607f0d..6d83b856 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O deploy daemon padrão do AppAPI não está usando o HaRP. Considere mudar para o HaRP para obter melhor desempenho.", + "AppAPI HaRP version check" : "Verificação da versão do AppAPI HaRP", + "Could not retrieve HaRP version from daemon \"%s\"" : "Não foi possível recuperar a versão do HaRP do daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon %s: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 96ee0175..cce64081 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "O deploy daemon padrão de AppAPI não está definido. Por favor, registre um deploy daemon padrão nas configurações para instalar Aplicativos Externos (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "O deploy daemon padrão de AppAPI \"%s\" não está acessível. Verifique a configuração do daemon.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "O deploy daemon padrão do AppAPI não está usando o HaRP. Considere mudar para o HaRP para obter melhor desempenho.", + "AppAPI HaRP version check" : "Verificação da versão do AppAPI HaRP", + "Could not retrieve HaRP version from daemon \"%s\"" : "Não foi possível recuperar a versão do HaRP do daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon %s: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", From 89e232531562d95f07bdd18bad2dc9e7d3a75a25 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 17 Jan 2026 00:20:20 +0000 Subject: [PATCH 231/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/tr.js | 4 ++++ l10n/tr.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/l10n/tr.js b/l10n/tr.js index be484689..8374613d 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım HaRP kullanmaya geçmeyi düşünün.", + "AppAPI HaRP version check" : "AppAPI HaRP sürüm denetimi", + "Could not retrieve HaRP version from daemon \"%s\"" : "\"%s\" arka plan işleminden HaRP sürümü alınamadı", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "\"%s\" arka plan işleminin HaRP sürümü \"%s\" çok eski. Kullanılabilecek en eski sürüm \"%s\". Lütfen arka plan işlemini son sürüme güncelleyin.", + "Failed to check HaRP version for daemon \"%s\": %s" : "\"%s\" arka plan işlemi için HaRP sürümü denetlenemedi: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", diff --git a/l10n/tr.json b/l10n/tr.json index a0b2e3dd..68ddd349 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI varsayılan dağıtım işlemi ayarlanmamış. Dış uygulamaları (ExApp) kurmak için lütfen ayarlar bölümünden bir varsayılan dağıtım işlemi kaydedin.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "\"%s\" AppAPI varsayılan dağıtım işlemi erişilebilir değil. Lütfen işlem yapılandırmasını denetleyin.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI varsayılan dağıtım işlemi HaRP kullanmıyor. Lütfen daha iyi başarım HaRP kullanmaya geçmeyi düşünün.", + "AppAPI HaRP version check" : "AppAPI HaRP sürüm denetimi", + "Could not retrieve HaRP version from daemon \"%s\"" : "\"%s\" arka plan işleminden HaRP sürümü alınamadı", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "\"%s\" arka plan işleminin HaRP sürümü \"%s\" çok eski. Kullanılabilecek en eski sürüm \"%s\". Lütfen arka plan işlemini son sürüme güncelleyin.", + "Failed to check HaRP version for daemon \"%s\": %s" : "\"%s\" arka plan işlemi için HaRP sürümü denetlenemedi: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", From d587ec8fb78dca695cd725b2148da1269a5885e8 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 18 Jan 2026 00:19:56 +0000 Subject: [PATCH 232/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/en_GB.js | 4 ++++ l10n/en_GB.json | 4 ++++ l10n/zh_HK.js | 4 ++++ l10n/zh_HK.json | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/l10n/en_GB.js b/l10n/en_GB.js index eab6fcd2..882d2141 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance.", + "AppAPI HaRP version check" : "AppAPI HaRP version check", + "Could not retrieve HaRP version from daemon \"%s\"" : "Could not retrieve HaRP version from daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Failed to check HaRP version for daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 3b7c9267..456f23c0 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance.", + "AppAPI HaRP version check" : "AppAPI HaRP version check", + "Could not retrieve HaRP version from daemon \"%s\"" : "Could not retrieve HaRP version from daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Failed to check HaRP version for daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 3dda1bfd..cf95bd19 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", + "AppAPI HaRP version check" : "AppAPI HaRP 版本檢查", + "Could not retrieve HaRP version from daemon \"%s\"" : "無法從「%s」幕後程式擷取 HaRP 版本", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", + "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index eb8093f7..5278574a 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "未設定 AppAPI 部署幕後程式。請在設定中註冊預設部署幕後程式以安裝外部應用程式 (Ex-Apps)。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI 預設部署幕後程式「%s」無法使用。請檢查幕後程式組態。", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI 預設部署幕後程式未使用 HaRP。請考慮切換至 HaRP 以獲得更好的效能。", + "AppAPI HaRP version check" : "AppAPI HaRP 版本檢查", + "Could not retrieve HaRP version from daemon \"%s\"" : "無法從「%s」幕後程式擷取 HaRP 版本", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", + "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", From 325eddd080c41ebf5a87f68e40bdf935846e5d1d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 20 Jan 2026 00:20:31 +0000 Subject: [PATCH 233/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/id.js | 20 +++++++++++++++++++- l10n/id.json | 20 +++++++++++++++++++- 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/l10n/id.js b/l10n/id.js index ee30c7da..d584f110 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -8,14 +8,19 @@ OC.L10N.register( "Unlimited" : "Tak terbatas", "Name" : "Nama", "Host" : "Host", + "Deploy options" : "Opsi deploy", + "Registered Deploy daemons list" : "Daftar Deploy daemon yang terdaftar", "Enabled" : "Diaktifkan", "Remove" : "Hapus", "Add" : "Tambah", + "Display name" : "Nama tampilan", + "Compute device" : "Perangkat komputasi", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", + "Delete data on remove" : "Hapus data saat penghapusan", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", @@ -30,13 +35,20 @@ OC.L10N.register( "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", + "Default Deploy daemon is not accessible" : "Deploy daemon default tidak dapat diakses", "Icon" : "Ikon", "Version" : "Versi", + "Daemon" : "Daemon", + "Level" : "Level", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", "_Update_::_Update all_" : ["Perbarui semua"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "tipe", "Display Name" : "Nama Tampilan", + "GPUs support" : "Dukungan GPU", + "No Deploy daemons configured" : "Tidak ada Deploy daemon yang dikonfigurasi", + "Register a custom one or setup from available templates" : "Daftarkan yang kustom atau siapkan dari template yang tersedia", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", @@ -45,8 +57,14 @@ OC.L10N.register( "Disabled apps" : "Matikan Aplikasi", "Updates" : "Pembaruan", "Featured apps" : "Aplikasi yang difiturkan", + "Supported apps" : "Aplikasi yang didukung", + "Deploy and Enable" : "Deploy dan Aktifkan", "Enable" : "Aktifkan", "Disable" : "Nonaktifkan", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikasi ini tidak ditandai sebagai versi Nextcloud Anda yang kompatibel. Jika Anda tetap ingin melanjutkannya, Anda tetap dapat memasang aplikasi. Catatan bahwa aplikasinya mungkin tidak akan berjalan seperti yang diharapkan." + "Allow untested app" : "Izinkan aplikasi yang belum diuji", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikasi ini tidak ditandai sebagai versi Nextcloud Anda yang kompatibel. Jika Anda tetap ingin melanjutkannya, Anda tetap dapat memasang aplikasi. Catatan bahwa aplikasinya mungkin tidak akan berjalan seperti yang diharapkan.", + "An error occurred during the request. Unable to proceed." : "Terjadi kesalahan selama permintaan. Tidak dapat melanjutkan.", + "The app has been enabled but needs to be updated." : "Aplikasi telah diaktifkan tetapi perlu diperbarui.", + "Error: This app cannot be enabled because it makes the server unstable" : "Kesalahan: Aplikasi ini tidak dapat diaktifkan karena membuat server tidak stabil" }, "nplurals=1; plural=0;"); diff --git a/l10n/id.json b/l10n/id.json index 94b9ebcd..49cce26c 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -6,14 +6,19 @@ "Unlimited" : "Tak terbatas", "Name" : "Nama", "Host" : "Host", + "Deploy options" : "Opsi deploy", + "Registered Deploy daemons list" : "Daftar Deploy daemon yang terdaftar", "Enabled" : "Diaktifkan", "Remove" : "Hapus", "Add" : "Tambah", + "Display name" : "Nama tampilan", + "Compute device" : "Perangkat komputasi", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", + "Delete data on remove" : "Hapus data saat penghapusan", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", @@ -28,13 +33,20 @@ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", + "Default Deploy daemon is not accessible" : "Deploy daemon default tidak dapat diakses", "Icon" : "Ikon", "Version" : "Versi", + "Daemon" : "Daemon", + "Level" : "Level", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", "_Update_::_Update all_" : ["Perbarui semua"], + "Deploy Daemon" : "Deploy Daemon", "Type" : "tipe", "Display Name" : "Nama Tampilan", + "GPUs support" : "Dukungan GPU", + "No Deploy daemons configured" : "Tidak ada Deploy daemon yang dikonfigurasi", + "Register a custom one or setup from available templates" : "Daftarkan yang kustom atau siapkan dari template yang tersedia", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", @@ -43,8 +55,14 @@ "Disabled apps" : "Matikan Aplikasi", "Updates" : "Pembaruan", "Featured apps" : "Aplikasi yang difiturkan", + "Supported apps" : "Aplikasi yang didukung", + "Deploy and Enable" : "Deploy dan Aktifkan", "Enable" : "Aktifkan", "Disable" : "Nonaktifkan", - "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikasi ini tidak ditandai sebagai versi Nextcloud Anda yang kompatibel. Jika Anda tetap ingin melanjutkannya, Anda tetap dapat memasang aplikasi. Catatan bahwa aplikasinya mungkin tidak akan berjalan seperti yang diharapkan." + "Allow untested app" : "Izinkan aplikasi yang belum diuji", + "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikasi ini tidak ditandai sebagai versi Nextcloud Anda yang kompatibel. Jika Anda tetap ingin melanjutkannya, Anda tetap dapat memasang aplikasi. Catatan bahwa aplikasinya mungkin tidak akan berjalan seperti yang diharapkan.", + "An error occurred during the request. Unable to proceed." : "Terjadi kesalahan selama permintaan. Tidak dapat melanjutkan.", + "The app has been enabled but needs to be updated." : "Aplikasi telah diaktifkan tetapi perlu diperbarui.", + "Error: This app cannot be enabled because it makes the server unstable" : "Kesalahan: Aplikasi ini tidak dapat diaktifkan karena membuat server tidak stabil" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file From f4fb6b7b7022108ef15b605f49c97b4214d105ed Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 21 Jan 2026 00:25:14 +0000 Subject: [PATCH 234/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/ar.js | 1 - l10n/ar.json | 1 - l10n/ca.js | 1 - l10n/ca.json | 1 - l10n/da.js | 1 - l10n/da.json | 1 - l10n/de.js | 1 - l10n/de.json | 1 - l10n/de_DE.js | 1 - l10n/de_DE.json | 1 - l10n/el.js | 1 - l10n/el.json | 1 - l10n/en_GB.js | 1 - l10n/en_GB.json | 1 - l10n/es.js | 1 - l10n/es.json | 1 - l10n/ga.js | 1 - l10n/ga.json | 1 - l10n/gl.js | 1 - l10n/gl.json | 1 - l10n/ja.js | 1 - l10n/ja.json | 1 - l10n/lo.js | 1 - l10n/lo.json | 1 - l10n/nl.js | 1 - l10n/nl.json | 1 - l10n/pl.js | 1 - l10n/pl.json | 1 - l10n/pt_BR.js | 1 - l10n/pt_BR.json | 1 - l10n/ru.js | 1 - l10n/ru.json | 1 - l10n/sk.js | 1 - l10n/sk.json | 1 - l10n/sr.js | 1 - l10n/sr.json | 1 - l10n/sw.js | 1 - l10n/sw.json | 1 - l10n/tr.js | 1 - l10n/tr.json | 1 - l10n/ug.js | 1 - l10n/ug.json | 1 - l10n/uk.js | 1 - l10n/uk.json | 1 - l10n/zh_HK.js | 1 - l10n/zh_HK.json | 1 - l10n/zh_TW.js | 1 - l10n/zh_TW.json | 1 - 48 files changed, 48 deletions(-) diff --git a/l10n/ar.js b/l10n/ar.js index 2742a10d..d837107c 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -24,7 +24,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "البرنامج الخفي التلقائي لنشر AppAPI لم يتم تعيينه. رجاءً؛ قُم بتسجيله في الإعدادات ليمكنك تثبيت التطبيقات الخارجية (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "البرنامج الخفي لنشر AppAPI \"%s\" لايمكن الوصول إليه. رجاءً؛ قُم بفحص تهيئة البرنامج الخفي daemon.", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", diff --git a/l10n/ar.json b/l10n/ar.json index 8c3ffb4c..2fcf4c5e 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -22,7 +22,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "البرنامج الخفي التلقائي لنشر AppAPI لم يتم تعيينه. رجاءً؛ قُم بتسجيله في الإعدادات ليمكنك تثبيت التطبيقات الخارجية (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "البرنامج الخفي لنشر AppAPI \"%s\" لايمكن الوصول إليه. رجاءً؛ قُم بفحص تهيئة البرنامج الخفي daemon.", "Nextcloud AppAPI" : "واجهة تطبيقات نكست كلاود AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### عزِّز نكست كلاود خاصّتك باستخدام AppAPI وتطبيقاته المصممة خصيصاً. \n\nAppAPI هو مشروع ضمن النظام البيئي لنكست كلاود مصمم لتبسيط وتعزيز عملية تطوير التطبيقات ونشرها وإدارتها. \nوهو يقدم منهجية جديدة تسمح للمطورين بإنشاء التطبيقات باستخدام مجموعة متنوعة من لغات البرمجة، وليس فقط PHP، والتي كانت سابقاً تستخدم لوحدها في تطوير نكست كلاود. \n\n_إذا كنت ترغب في تطوير تطبيق، فسنكون سعداء بمساعدتك وتقديم المساعدة لك._ \n\n### الدعم \n\nنحن نقدر أي دعم لهذا المشروع: \n- ⭐ قم بتمييز عملنا على GitHub \n- ❗ قم بإنشاء مشكلة أو طلب ميزة \n- 💁 حل مشكلة وإنشاء طلب سحب \n- 🧑‍💻 تطوير تطبيقك الخاص باستخدام AppAPI \n\nنحن متحمسون حقًا لمستقبل مشروع AppAPI وإمكاناته لتحويل الطريقة التي يتم بها تطوير التطبيقات وتجربتها داخل نكست كلاود. \n\nبينما ننطلق في هذه الرحلة، ندعو بحرارة المطورين والمفكرين والمبدعين وأصحاب الرؤى للانضمام إلينا في تشكيل مشهد تطبيقات أكثر تنوعاً واستقراراً وأماناً. \n\n*أفكارك واقتراحاتك ومساهماتك لا تقدر بثمن بالنسبة لنا.*", "External Apps management" : "إدارة التطبيقات الخارجية", "Admin options saved" : "تمّ حفظ خيارات المدير", "Failed to save admin options" : "تعذّر حفظ خيارات المدير", diff --git a/l10n/ca.js b/l10n/ca.js index d4e2537a..c5859af2 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -21,7 +21,6 @@ OC.L10N.register( "AI Integration Team" : "Equip d'integració d'IA", "ExApps Settings" : "Configuració d'ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n_Si voleu desenvolupar una aplicació, estarem encantats d'ajudar-vos i ajudar-vos._\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", diff --git a/l10n/ca.json b/l10n/ca.json index f114e960..5f3a3bdd 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -19,7 +19,6 @@ "AI Integration Team" : "Equip d'integració d'IA", "ExApps Settings" : "Configuració d'ExApps", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Potencia el teu Nextcloud amb AppAPI i les seves aplicacions especialment dissenyades.\n\n\nL'AppAPI és un projecte dins de l'ecosistema Nextcloud dissenyat per racionalitzar i millorar el procés de\ndesenvolupament, desplegament i gestió d'aplicacions.\n\nIntrodueix una nova metodologia que permet als desenvolupadors crear\naplicacions que utilitzen una varietat de llenguatges de programació, no limitats a PHP, que s'utilitzava tradicionalment en el desenvolupament de Nextcloud.\n\n_Si voleu desenvolupar una aplicació, estarem encantats d'ajudar-vos i ajudar-vos._\n\n### Suport\n\nAgraïm qualsevol suport a aquest projecte:\n\n- ⭐ Destaca el nostre treball a GitHub\n- ❗ Crear un problema o sol·licitud de funció\n- 💁 Resoldre un problema i crear una sol·licitud d'extracció\n- 🧑‍💻 Desenvolupa la teva pròpia aplicació mitjançant AppAPI\n\nEstem realment entusiasmats amb el futur del projecte AppAPI i el seu potencial de transformació\nla manera com es desenvolupen i s'experimenten les aplicacions a Nextcloud.\n\nA mesura que ens embarquem en aquest viatge, us convidem cordialment: desenvolupadors, pensadors, creadors i visionaris.\nper unir-nos a la creació d'un panorama d'aplicacions més versàtil, estable i segur.\n\n*Els vostres coneixements, suggeriments i contribucions són inestimables per a nosaltres.*", "External Apps management" : "Gestió d'Apps externes", "Admin options saved" : "Opcions d'administració desades", "Failed to save admin options" : "No s'han pogut desar les opcions d'administració", diff --git a/l10n/da.js b/l10n/da.js index 3f973d18..114b8d17 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udrulnings systemtjeneste er ikke sat. Registrer venligst en standard udrulnings systemtjeneste under indstillingerne for at installere eksterne apps (Ex-apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udrulnings systemtjeneste \"%s\" er ikke tilgængelig. Kontroller venligst systemtjenestekonfigurationen.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udrulning og styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", diff --git a/l10n/da.json b/l10n/da.json index 6cdbd6d4..078c6cd3 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPI standard udrulnings systemtjeneste er ikke sat. Registrer venligst en standard udrulnings systemtjeneste under indstillingerne for at installere eksterne apps (Ex-apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standard udrulnings systemtjeneste \"%s\" er ikke tilgængelig. Kontroller venligst systemtjenestekonfigurationen.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost din Nextcloud med AppAPI og dets specialdesignede applikationer.\n\n\nAppAPI'en er et projekt i Nextcloud økosystemet, der er designet til at strømline og udvide processen med applikationsudvikling, udrulning og styring.\n\nDet introducerer en ny metode, som giver udviklere mulighed for at oprette applikationer ved anvendelse af et væld af programmeringssprog, og ikke begrænset til PHP, som traditionelt har været anvendt i Nextcloud udvikling.\n\n_Hvis du ønsker at udvikle en applikation, så hjælper og assisterer vi dig gerne._\n\n### Support\n\nVi værdsætter enhver support til dette projekt:\n\n- ⭐ Giv stjerner til vores projekt på GitHub\n- ❗ Opret et problem eller en funktionsforespørgsel\n- 💁 Løs et problem og opret et Pull Request\n- 🧑‍💻 Udvikl din egen applikation ved anvendelse af AppAPI\n\nVi er meget begejstrede for fremtiden for AppAPI projektet og dets potentiale for at tansformere måden hvorpå applikationer udvikles of opleves i Nextcloud.\n\nNå vi starter på denne rejse, så inviterer vi dig - udviklere, tænkere, oprettere og visionære -\ntil at deltage i udformningen af et mere alsidigt, stabilt og sikkert app landskab.\n\n*Dine indsigter, forslag og bidrag er uvurderlige for os.*", "External Apps management" : "Styring af eksterne apps", "Admin options saved" : "Adminindstillinger gemt", "Failed to save admin options" : "Kunne ikke gemme adminindstillinger", diff --git a/l10n/de.js b/l10n/de.js index 47c1e60c..ba0a2289 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/de.json b/l10n/de.json index e190a020..e4056753 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessere deine Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn du eine Anwendung entwickeln möchtest, helfen und unterstützen wir dich gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markiere unsere Arbeit auf GitHub\n- ❗ Erstelle ein Problem oder eine Funktionsanfrage\n- 💁 Löse ein Problem und erstelle einen Pull-Request\n- 🧑‍💻 Entwickele deine eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir dich – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Deine Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 60857ca8..124b5ef8 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 733ba7cb..6665961d 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbessern Sie Ihre Nextcloud mit AppAPI und seinen speziell entwickelten Anwendungen.\n\nAppAPI ist ein Projekt innerhalb des Nextcloud-Ökosystems, das den Prozess der\nAnwendungsentwicklung, -bereitstellung und -verwaltung rationalisieren und verbessern soll.\n\nEs führt eine neue Methodik ein, die es Entwicklern ermöglicht,\nAnwendungen mit einer Vielzahl von Programmiersprachen, nicht nur mit PHP, das traditionell in der Nextcloud-Entwicklung verwendet wurde, zu erstellen.\n\n_Wenn Sie eine Anwendung entwickeln möchten, helfen und unterstützen wir Sie gerne._\n\n### Unterstützung\n\nWir freuen uns über jede Unterstützung für dieses Projekt:\n\n- ⭐ Markieren Sie unsere Arbeit auf GitHub\n- ❗ Erstellen Sie ein Problem oder eine Funktionsanfrage\n- 💁 Lösen Sie ein Problem und erstellen Sie einen Pull-Request\n- 🧑‍💻 Entwickeln Sie Ihre eigene Anwendung mit AppAPI\n\nWir sind wirklich gespannt auf die Zukunft des AppAPI-Projekts und sein Potenzial,\ndie Art und Weise zu verändern, wie Anwendungen innerhalb von Nextcloud entwickelt und erlebt werden.\n\nWährend wir uns auf diese Reise begeben, laden wir Sie – Entwickler, Denker, Schöpfer und Visionäre – herzlich ein,\nmit uns gemeinsam eine vielseitigere, stabilere und sicherere App-Landschaft zu gestalten.\n\n*Ihre Erkenntnisse, Vorschläge und Beiträge sind für uns von unschätzbarem Wert.*", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/el.js b/l10n/el.js index ca060e59..0824ea2e 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Δεν έχει οριστεί προεπιλεγμένο υπηρεσία ανάπτυξης AppAPI. Παρακαλούμε εγγράψτε μια προεπιλεγμένη υπηρεσία ανάπτυξης στις ρυθμίσεις για να εγκαταστήσετε Εξωτερικές Εφαρμογές (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Η προεπιλεγμένη υπηρεσία ανάπτυξης AppAPI \"%s\" δεν είναι προσβάσιμο. Παρακαλούμε ελέγξτε τη διαμόρφωση της υπηρεσίας.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", "External Apps management" : "Διαχείριση Εξωτερικών Εφαρμογών", "Admin options saved" : "Οι επιλογές διαχειριστή αποθηκεύτηκαν", "Failed to save admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή", diff --git a/l10n/el.json b/l10n/el.json index 85fcd522..ddc945b0 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Δεν έχει οριστεί προεπιλεγμένο υπηρεσία ανάπτυξης AppAPI. Παρακαλούμε εγγράψτε μια προεπιλεγμένη υπηρεσία ανάπτυξης στις ρυθμίσεις για να εγκαταστήσετε Εξωτερικές Εφαρμογές (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Η προεπιλεγμένη υπηρεσία ανάπτυξης AppAPI \"%s\" δεν είναι προσβάσιμο. Παρακαλούμε ελέγξτε τη διαμόρφωση της υπηρεσίας.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Ενισχύστε το Nextcloud σας με το AppAPI και τις ειδικά σχεδιασμένες εφαρμογές του.\n\n\nΤο AppAPI είναι ένα έργο στο πλαίσιο του οικοσυστήματος Nextcloud σχεδιασμένο να απλοποιήσει και να βελτιώσει τη διαδικασία\nανάπτυξης, ανάπτυξης και διαχείρισης εφαρμογών.\n\nΕισάγει μια νέα μεθοδολογία που επιτρέπει στους προγραμματιστές να δημιουργούν\nεφαρμογές χρησιμοποιώντας μια ποικιλία γλωσσών προγραμματισμού, όχι μόνο PHP, που παραδοσιακά χρησιμοποιούνταν στην ανάπτυξη Nextcloud.\n\n_Εάν επιθυμείτε να αναπτύξετε μια εφαρμογή, θα σας βοηθήσουμε με μεγάλη μας χαρά._\n\n### Υποστήριξη\n\nΕκτιμούμε κάθε υποστήριξη για αυτό το έργο:\n\n- ⭐ Αστέριστε τη δουλειά μας στο GitHub\n- ❗ Δημιουργήστε ένα Issue ή αίτημα λειτουργίας\n- 💁 Επιλύστε ένα Issue και δημιουργήστε ένα Pull Request\n- 🧑‍💻 Αναπτύξτε τη δική σας εφαρμογή χρησιμοποιώντας το AppAPI\n\nΕίμαστε πραγματικά ενθουσιασμένοι για το μέλλον του έργου AppAPI και τις δυνατότητές του να μεταμορφώσει\nτον τρόπο με τον οποίο αναπτύσσονται και βιώνονται οι εφαρμογές στο Nextcloud.\n\nΚαθώς ξεκινάμε αυτό το ταξίδι, σας προσκαλούμε θερμά - προγραμματιστές, στοχαστές, δημιουργούς και οραματιστές -\nνα έρθετε μαζί μας για να διαμορφώσετε ένα πιο ευέλικτο, σταθερό και ασφαλές τοπίο εφαρμογών.\n\n*Οι γνώμες, οι προτάσεις και οι συνεισφορές σας είναι ανεκτίμητες για εμάς.*", "External Apps management" : "Διαχείριση Εξωτερικών Εφαρμογών", "Admin options saved" : "Οι επιλογές διαχειριστή αποθηκεύτηκαν", "Failed to save admin options" : "Αποτυχία αποθήκευσης επιλογών διαχειριστή", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 882d2141..67c9abc4 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version.", "Failed to check HaRP version for daemon \"%s\": %s" : "Failed to check HaRP version for daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 456f23c0..3119d3d3 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version.", "Failed to check HaRP version for daemon \"%s\": %s" : "Failed to check HaRP version for daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", diff --git a/l10n/es.js b/l10n/es.js index b48da63c..5686ddb9 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "El daemon de despliegue AppAPI predeterminado no está establecido. Por favor, registre un daemon de despliegue predeterminado en los ajustes para poder instalar Apps Externas (Ex-Apps)", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "No se puede acceder a el daemon de despliegue AppAPI \"%s\". Por favor, chequee la configuración del mismo.", "Nextcloud AppAPI" : "AppAPI de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", diff --git a/l10n/es.json b/l10n/es.json index de73a2c3..0d228b23 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "El daemon de despliegue AppAPI predeterminado no está establecido. Por favor, registre un daemon de despliegue predeterminado en los ajustes para poder instalar Apps Externas (Ex-Apps)", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "No se puede acceder a el daemon de despliegue AppAPI \"%s\". Por favor, chequee la configuración del mismo.", "Nextcloud AppAPI" : "AppAPI de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Mejore Nextcloud con AppAPI y sus aplicaciones especialmente diseñadas.\n\n\nAppAPI es un proyecto dentro del ecosistema de Nextcloud \ndiseñado para facilitar y mejorar el proceso de\ndesarrollo de aplicaciones, despliegue y administración.\n\nIntroduce una nueva metodología que permite a los desarrolladores crear\naplicaciones utilizando una variedad de lenguajes, no limitado a PHP, el cual era usado tradicionalmente en el desarrollo de Nextcloud.\n\n_Si desea desarrollar una aplicación, con mucho gusto le daremos ayuda y asistencia._\n\n### Soporte\n\nAgradecemos cualquier soporte a este proyecto:\n\n- ⭐ Marque con una estrella nuestro trabajo en GitHub\n- ❗ Cree un Issue o feature request\n- 💁 Resuelva un Issue y cree un Pull Request\n- 🧑‍💻 Desarrolle su propia aplicación usando AppAPI\n\nEstamos genuinamente entusiasmados con el futuro del proyecto AppAPI y su potencial para transformar\nla experiencia y la manera en que las aplicaciones se desarrollan dentro de Nextcloud.\n\nMientras nos embarcamos en este viaje, le invitamos calurosamente a uds. - desarrolladores, pensadores, creadores y visionarios -\na unirse a nosotros para dar forma a un panorama de apps mucho más versátil, estable y seguro.\n\n*Sus perspectivas, sugerencias y contribuciones son invaluables para nosotros.*", "External Apps management" : "Gestión de Apps externas", "Admin options saved" : "Opciones de administrador guardadas", "Failed to save admin options" : "Fallo al guardar opciones de administración", diff --git a/l10n/ga.js b/l10n/ga.js index c99faa3f..ee5be6cc 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Is é \"%s\" leagan HaRP don daemon \"%s\", atá róshean. Is é \"%s\" an leagan íosta atá ag teastáil. Nuashonraigh an daemon go dtí an leagan is déanaí le do thoil.", "Failed to check HaRP version for daemon \"%s\": %s" : "Theip ar leagan HaRP a sheiceáil don daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", diff --git a/l10n/ga.json b/l10n/ga.json index bb9cb5d3..0f95c994 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Is é \"%s\" leagan HaRP don daemon \"%s\", atá róshean. Is é \"%s\" an leagan íosta atá ag teastáil. Nuashonraigh an daemon go dtí an leagan is déanaí le do thoil.", "Failed to check HaRP version for daemon \"%s\": %s" : "Theip ar leagan HaRP a sheiceáil don daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Déan do Nextcloud a threisiú le AppAPI agus a fheidhmchláir atá saindeartha.\n\n\nIs tionscadal é an AppAPI laistigh d’éiceachóras Nextcloud atá deartha chun an próiseas a shruthlíniú agus a fheabhsú\nforbairt, imscaradh agus bainistíocht feidhmchlár.\n\nTugann sé isteach modheolaíocht nua a ligeann d'fhorbróirí a chruthú\nfeidhmchláir ag baint úsáide as éagsúlacht teangacha ríomhchlárúcháin, gan a bheith teoranta do PHP, a úsáideadh go traidisiúnta i bhforbairt Nextcloud.\n\n_Más mian leat feidhmchlár a fhorbairt, cabhróimid agus cabhróimid leat._\n\n### Tacaíocht\n\nIs mór againn tacaíocht ar bith don tionscadal seo:\n\n- ⭐ Cuir réalta lenár gcuid oibre ar GitHub\n- ❗ Cruthaigh Saincheist nó iarratas gné\n- 💁 Réitigh Saincheist agus cruthaigh Iarratas Tarraingthe\n- 🧑‍💻 Forbair d’fheidhmchlár féin ag úsáid AppAPI\n\nTáimid ar bís faoi thodhchaí an tionscadail AppAPI agus an poitéinseal atá ann athrú a dhéanamh\nan bealach a fhorbraítear feidhmchláir agus an taithí atá acu laistigh de Nextcloud.\n\nAgus muid ag tabhairt faoin turas seo, tugaimid cuireadh ó chroí daoibh - forbróirí, smaointeoirí, cruthaitheoirí agus físairí -\na bheith linn i múnlú a dhéanamh ar thírdhreach aip níos ilúsáidí, níos cobhsaí agus níos sábháilte.\n\n*Tá do léargais, do mholtaí agus do chuid oibre fíor-luachmhar dúinn.*", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", diff --git a/l10n/gl.js b/l10n/gl.js index 073ab20b..d34db40f 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versión de HaRP para o servizo «%s» é «%s», que é antiga de máis. A versión mínima requirida é «%s». Actualice o servizo á última versión.", "Failed to check HaRP version for daemon \"%s\": %s" : "Produciuse un fallo ao comprobar a versión de HaRP para o servizo «%s»: %s", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", diff --git a/l10n/gl.json b/l10n/gl.json index 301da08b..83b3cb51 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versión de HaRP para o servizo «%s» é «%s», que é antiga de máis. A versión mínima requirida é «%s». Actualice o servizo á última versión.", "Failed to check HaRP version for daemon \"%s\": %s" : "Produciuse un fallo ao comprobar a versión de HaRP para o servizo «%s»: %s", "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Reforce o seu Nextcloud con AppAPI e as súas aplicacións deseñadas especialmente.\n\n\nA AppAPI é un proxecto dentro do ecosistema Nextcloud deseñado para axilizar e mellorar o proceso de\ndesenvolvemento, despregadura e xestión de aplicacións.\n\nIntroduce unha nova metodoloxía que permite aos desenvolvedores crear\naplicacións empregando diversas linguaxes de programación, sen limitarse a PHP, que era o que se usaba tradicionalmente no desenvolvemento de Nextcloud.\n\n_Se quere desenvolver unha aplicación, estaremos encantados de axudarlle._\n\n### Apoio\n\nAgradecemos calquera apoio a este proxecto:\n\n- ⭐ Saliente o noso traballo en GitHub\n- ❗ Cree unha incidencia ou solicitude de funcionalidade\n- 💁 Solucione unha incidencia e faga unha solicitude de extracción (PR)\n\n- 🧑‍💻 Desenvolva a súa propia aplicación usando AppAPI\n\nEstamos moi entusiasmados co futuro do proxecto AppAPI e o seu potencial de transformación do\nxeito como se desenvolven e experimentan as aplicacións dentro de Nextcloud.\n\nMentres embarcamos nesta viaxe, convidámosvos cordialmente — desenvolvedores, pensadores, creadores e visionarios —\npara unirse a nós e dar forma a unha paisaxe de aplicacións máis versátil, estábel e segura.\n\n*As súas ideas, suxestións e colaboracións son inestimábeis para nós.*", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", diff --git a/l10n/ja.js b/l10n/ja.js index 596c1f88..b8c3399d 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPIデフォルトのデプロイデーモンが設定されていません。外部アプリ(Ex-Apps)をインストールするための設定で、デフォルトのデプロイデーモンを登録してください。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPIデフォルトのデプロイデーモン\"%s\"にアクセスできません。デーモンの設定を確認してください。", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIとその特別に設計されたアプリケーションでNextcloudを強化しましょう。\n\n\nAppAPIは、アプリケーション開発、デプロイ、管理のプロセスを合理化し、強化するために設計された\nNextcloudエコシステム内のプロジェクトです。\n\n従来Nextcloudの開発で使われてきたPHPに限らず、さまざまなプログラミング言語を使って\nアプリケーションを開発できるようにする新しい手法を導入しています。\n\n_アプリケーションを開発したい場合は、喜んでお手伝いします。_\n\n### サポート\n\n本プロジェクトへのご支援をお願いいたします:\n\n- GitHubにスターをつける\n- ❗ 課題または機能要求を作成する\n- 💁 Issueの解決とPull Requestの作成\n- 🧑‍💻 AppAPIを使用した独自のアプリケーションの開発\n\n私たちは、AppAPIプロジェクトの将来と、Nextcloud内でアプリケーションを開発し体験する方法を\n変革する可能性に心から期待しています。\n\nこの旅に乗り出すにあたり、開発者、思想家、創造者、先見者である皆さんに、より多機能で、安定した、\n安全なアプリの環境を形作るために、私たちに加わっていただくことを温かく歓迎します。\n\n*あなたの洞察、提案、貢献は、私たちにとってかけがえのないものです。*", "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", diff --git a/l10n/ja.json b/l10n/ja.json index 34a1ac1b..20bb083b 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "AppAPIデフォルトのデプロイデーモンが設定されていません。外部アプリ(Ex-Apps)をインストールするための設定で、デフォルトのデプロイデーモンを登録してください。", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPIデフォルトのデプロイデーモン\"%s\"にアクセスできません。デーモンの設定を確認してください。", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPIとその特別に設計されたアプリケーションでNextcloudを強化しましょう。\n\n\nAppAPIは、アプリケーション開発、デプロイ、管理のプロセスを合理化し、強化するために設計された\nNextcloudエコシステム内のプロジェクトです。\n\n従来Nextcloudの開発で使われてきたPHPに限らず、さまざまなプログラミング言語を使って\nアプリケーションを開発できるようにする新しい手法を導入しています。\n\n_アプリケーションを開発したい場合は、喜んでお手伝いします。_\n\n### サポート\n\n本プロジェクトへのご支援をお願いいたします:\n\n- GitHubにスターをつける\n- ❗ 課題または機能要求を作成する\n- 💁 Issueの解決とPull Requestの作成\n- 🧑‍💻 AppAPIを使用した独自のアプリケーションの開発\n\n私たちは、AppAPIプロジェクトの将来と、Nextcloud内でアプリケーションを開発し体験する方法を\n変革する可能性に心から期待しています。\n\nこの旅に乗り出すにあたり、開発者、思想家、創造者、先見者である皆さんに、より多機能で、安定した、\n安全なアプリの環境を形作るために、私たちに加わっていただくことを温かく歓迎します。\n\n*あなたの洞察、提案、貢献は、私たちにとってかけがえのないものです。*", "External Apps management" : "外部アプリの管理", "Admin options saved" : "管理者オプションの保存", "Failed to save admin options" : "管理者オプションの保存に失敗しました", diff --git a/l10n/lo.js b/l10n/lo.js index d781d805..27c934d8 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -27,7 +27,6 @@ OC.L10N.register( "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI \"%s\" ບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າ daemon.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI ບໍ່ໄດ້ໃຊ້ HaRP. ກະລຸນາພິຈາລະນາປ່ຽນໄປໃຊ້ HaRP ເພື່ອປະສິດທິພາບທີ່ດີກວ່າ.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n_ຖ້າທ່ານຕ້ອງການພັດທະນາແອັບພລິເຄຊັນ, ພວກເຮົາຍິນດີຊ່ວຍເຫຼືອ ແລະ ສະໜັບສະໜູນທ່ານ._\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*", "External Apps management" : "ການຈັດການແອັບພາຍນອກ", "Admin options saved" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບແລ້ວ", "Failed to save admin options" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ", diff --git a/l10n/lo.json b/l10n/lo.json index cd975196..591e21d0 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -25,7 +25,6 @@ "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI \"%s\" ບໍ່ສາມາດເຂົ້າເຖິງໄດ້. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າ daemon.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon ການຕິດຕັ້ງເລີ່ມຕົ້ນຂອງ AppAPI ບໍ່ໄດ້ໃຊ້ HaRP. ກະລຸນາພິຈາລະນາປ່ຽນໄປໃຊ້ HaRP ເພື່ອປະສິດທິພາບທີ່ດີກວ່າ.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### ເພີ່ມປະສິດທິພາບ Nextcloud ຂອງທ່ານດ້ວຍ AppAPI ແລະແອັບພລິເຄຊັນທີ່ອອກແບບມາເປັນພິເສດ.\n\n\nAppAPI ແມ່ນໂຄງການພາຍໃນລະບົບນິເວດຂອງ Nextcloud ທີ່ອອກແບບມາເພື່ອປັບປຸງ ແລະ ເສີມຂະຫຍາຍຂະບວນການພັດທະນາ, ຕິດຕັ້ງ ແລະ ຈັດການແອັບພລິເຄຊັນ.\n\nມັນໄດ້ນຳສະເໜີວິທີການໃໝ່ທີ່ຊ່ວຍໃຫ້ນັກພັດທະນາສາມາດສ້າງແອັບພລິເຄຊັນໂດຍໃຊ້ພາສາການຂຽນໂປຣແກຣມທີ່ຫຼາກຫຼາຍ, ບໍ່ຈຳກັດພຽງແຕ່ PHP, ເຊິ່ງເປັນພາສາທີ່ໃຊ້ກັນຕາມປະເພນີໃນການພັດທະນາ Nextcloud.\n\n_ຖ້າທ່ານຕ້ອງການພັດທະນາແອັບພລິເຄຊັນ, ພວກເຮົາຍິນດີຊ່ວຍເຫຼືອ ແລະ ສະໜັບສະໜູນທ່ານ._\n\n### ການສະໜັບສະໜູນ\n\nພວກເຮົາຂໍຂອບໃຈທຸກການສະໜັບສະໜູນສຳລັບໂຄງການນີ້:\n\n- ⭐ ໃຫ້ດາວຜົນງານຂອງພວກເຮົາໃນ GitHub\n- ❗ ສ້າງ Issue ຫຼື ຮ້ອງຂໍຄຸນສົມບັດໃໝ່\n- 💁 ແກ້ໄຂ Issue ແລະ ສ້າງ Pull Request\n- 🧑‍💻 ພັດທະນາແອັບພລິເຄຊັນຂອງທ່ານເອງໂດຍໃຊ້ AppAPI\n\nພວກເຮົາຕື່ນເຕັ້ນຢ່າງແທ້ຈິງກ່ຽວກັບອະນາຄົດຂອງໂຄງການ AppAPI ແລະ ທ່າແຮງຂອງມັນໃນການປ່ຽນແປງວິທີການພັດທະນາ ແລະ ປະສົບການການໃຊ້ງານແອັບພລິເຄຊັນພາຍໃນ Nextcloud.\n\nໃນຂະນະທີ່ພວກເຮົາເລີ່ມຕົ້ນການເດີນທາງນີ້, ພວກເຮົາຂໍເຊີນຊວນທ່ານ - ນັກພັດທະນາ, ນັກຄິດ, ຜູ້ສ້າງສັນ, ແລະ ຜູ້ມີວິໄສທັດ - ເຂົ້າມາຮ່ວມກັບພວກເຮົາໃນການສ້າງຮູບແບບແອັບທີ່ມີຄວາມຫຼາກຫຼາຍ, ໝັ້ນຄົງ, ແລະ ປອດໄພຍິ່ງຂຶ້ນ.\n\n*ຄວາມຄິດເຫັນ, ຄຳແນະນຳ, ແລະ ການປະກອບສ່ວນຂອງທ່ານມີຄຸນຄ່າສູງສຸດສຳລັບພວກເຮົາ.*", "External Apps management" : "ການຈັດການແອັບພາຍນອກ", "Admin options saved" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບແລ້ວ", "Failed to save admin options" : "ບັນທຶກຕົວເລືອກຜູ້ເບິ່ງແຍງລະບົບບໍ່ສຳເລັດ", diff --git a/l10n/nl.js b/l10n/nl.js index d303c8fe..28b72e59 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Standaard AppAPI deploy daemon niet ingesteld. Registreer een standaard deploy daemon bij de instellingen om externe applicaties (ExApps) te installeren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standaard deploy daemon \"%s\" is niet toegankelijk. Controleer de daemon configuratie.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbeter jouw Nextcloud met AppAPI en haar speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud ecosysteem bedoeld om het proces voor applicatie ontwikkeling, deployment en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie dat ontwikkelaars de mogelijkheid geeft applicaties te bouwen met andere programmeertalen dan het voor Nextcloud traditioneel gebruikte PHP.\n\n_We helpen je graag bij het ontwikkelen van een applicatie_\n\n### Ondersteuning\n\nElke ondersteuning van dit project wordt zeer op prijs gesteld:\n\n- ⭐ Star onze repository op GitHub\n- ❗ Meld een issue of maak een feature request aan\n- 💁 Los een issue op en maak een pull request aan\n- 🧑‍💻 Bouw je eigen applicatie met behulp van AppAPI.\n\nWe zijn heel opgetogen over de toekomst van het AppAPI project en haar potentie om de manier van applicatie ontwikkeling voor NextCloud te verbeteren. \n\nNu we beginnen aan deze uitdaging nodigen we jou - ontwikkelaar, denker, bouwer of visionair - graag uit om met ons een meer veelzijdig, stabiel en veilig app landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn van onschatbare waarde voor ons*", "External Apps management" : "External Apps beheer", "Admin options saved" : "Admin opties opgeslagen", "Failed to save admin options" : "Kon admin opties niet opslaan", diff --git a/l10n/nl.json b/l10n/nl.json index 8a1c35ab..cd193253 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Standaard AppAPI deploy daemon niet ingesteld. Registreer een standaard deploy daemon bij de instellingen om externe applicaties (ExApps) te installeren.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI standaard deploy daemon \"%s\" is niet toegankelijk. Controleer de daemon configuratie.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Verbeter jouw Nextcloud met AppAPI en haar speciaal ontworpen applicaties.\n\n\nDe AppAPI is een project binnen het Nextcloud ecosysteem bedoeld om het proces voor applicatie ontwikkeling, deployment en beheer te stroomlijnen en te verbeteren.\n\nHet introduceert een nieuwe methodologie dat ontwikkelaars de mogelijkheid geeft applicaties te bouwen met andere programmeertalen dan het voor Nextcloud traditioneel gebruikte PHP.\n\n_We helpen je graag bij het ontwikkelen van een applicatie_\n\n### Ondersteuning\n\nElke ondersteuning van dit project wordt zeer op prijs gesteld:\n\n- ⭐ Star onze repository op GitHub\n- ❗ Meld een issue of maak een feature request aan\n- 💁 Los een issue op en maak een pull request aan\n- 🧑‍💻 Bouw je eigen applicatie met behulp van AppAPI.\n\nWe zijn heel opgetogen over de toekomst van het AppAPI project en haar potentie om de manier van applicatie ontwikkeling voor NextCloud te verbeteren. \n\nNu we beginnen aan deze uitdaging nodigen we jou - ontwikkelaar, denker, bouwer of visionair - graag uit om met ons een meer veelzijdig, stabiel en veilig app landschap vorm te geven.\n\n*Jouw inzichten, suggesties en bijdragen zijn van onschatbare waarde voor ons*", "External Apps management" : "External Apps beheer", "Admin options saved" : "Admin opties opgeslagen", "Failed to save admin options" : "Kon admin opties niet opslaan", diff --git a/l10n/pl.js b/l10n/pl.js index 91d1dcdd..59b6a4cc 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Domyślny demon wdrożeniowy AppAPI nie jest ustawiony. Zarejestruj domyślny demon wdrożeniowy w ustawieniach, aby zainstalować aplikacje zewnętrzne (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Domyślny demon wdrożeniowy AppAPI \"%s\" jest niedostępny. Sprawdź konfigurację demona.", "Nextcloud AppAPI" : "AppAPI Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zwiększ możliwości swojego Nextclouda dzięki AppAPI i specjalnie zaprojektowanym aplikacjom.\n\n\nAppAPI to projekt w ekosystemie Nextcloud, którego celem jest usprawnienie i ulepszenie procesu\ntworzenia, wdrażania i zarządzania aplikacjami.\n\nWprowadza on nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, który tradycyjnie był używany w rozwoju Nextcloud.\n\nJeśli chcesz stworzyć aplikację, chętnie pomożemy i wesprzemy Cię.\n\n### Wsparcie\n\nDoceniamy wszelkie wsparcie dla tego projektu:\n- ⭐Dodaj gwiazdkę naszemu repozytorium na GitHub.\n- ❗Utwórz zgłoszenie lub prośbę o nową funkcję.\n- 💁 Rozwiąż zgłoszenie i wyślij Pull Request.\n- 🧑‍💻 Rozwijaj własną aplikację przy użyciu AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do transformacji sposobu, w jaki aplikacje są rozwijane i używane w Nextcloud.\n\nZapraszamy deweloperów, pomysłodawców, twórców i wizjonerów, aby dołączyli do nas w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego ekosystemu aplikacji.\n\n*Twoje pomysły, sugestie i wkład są dla nas niezwykle cenne.*", "External Apps management" : "Zarządzanie aplikacjami zewnętrznymi", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", diff --git a/l10n/pl.json b/l10n/pl.json index 01a47503..6ef23c85 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Domyślny demon wdrożeniowy AppAPI nie jest ustawiony. Zarejestruj domyślny demon wdrożeniowy w ustawieniach, aby zainstalować aplikacje zewnętrzne (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Domyślny demon wdrożeniowy AppAPI \"%s\" jest niedostępny. Sprawdź konfigurację demona.", "Nextcloud AppAPI" : "AppAPI Nextcloud", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zwiększ możliwości swojego Nextclouda dzięki AppAPI i specjalnie zaprojektowanym aplikacjom.\n\n\nAppAPI to projekt w ekosystemie Nextcloud, którego celem jest usprawnienie i ulepszenie procesu\ntworzenia, wdrażania i zarządzania aplikacjami.\n\nWprowadza on nową metodologię, która pozwala deweloperom tworzyć aplikacje w różnych językach programowania, nie tylko w PHP, który tradycyjnie był używany w rozwoju Nextcloud.\n\nJeśli chcesz stworzyć aplikację, chętnie pomożemy i wesprzemy Cię.\n\n### Wsparcie\n\nDoceniamy wszelkie wsparcie dla tego projektu:\n- ⭐Dodaj gwiazdkę naszemu repozytorium na GitHub.\n- ❗Utwórz zgłoszenie lub prośbę o nową funkcję.\n- 💁 Rozwiąż zgłoszenie i wyślij Pull Request.\n- 🧑‍💻 Rozwijaj własną aplikację przy użyciu AppAPI.\n\nJesteśmy naprawdę podekscytowani przyszłością projektu AppAPI i jego potencjałem do transformacji sposobu, w jaki aplikacje są rozwijane i używane w Nextcloud.\n\nZapraszamy deweloperów, pomysłodawców, twórców i wizjonerów, aby dołączyli do nas w kształtowaniu bardziej wszechstronnego, stabilnego i bezpiecznego ekosystemu aplikacji.\n\n*Twoje pomysły, sugestie i wkład są dla nas niezwykle cenne.*", "External Apps management" : "Zarządzanie aplikacjami zewnętrznymi", "Admin options saved" : "Opcje administracyjne zostały zapisane", "Failed to save admin options" : "Nie udało się zapisać opcji administratora", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 6d83b856..89a0091a 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon %s: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index cce64081..fe068725 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon %s: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Impulsione seu Nextcloud com o AppAPI e seus aplicativos especialmente projetados.\n\n\nO AppAPI é um projeto dentro do ecossistema Nextcloud desenvolvido para simplificar e aprimorar o processo de\ndesenvolvimento, implementação e gerenciamento de aplicativos.\n\nEle introduz uma nova metodologia que permite que os desenvolvedores criem\naplicativos usando uma variedade de linguagens de programação, não se limitando ao PHP, que era tradicionalmente usado no desenvolvimento do Nextcloud.\n\n_Se você quiser desenvolver um aplicativo, teremos prazer em ajudá-lo e auxiliá-lo._\n\n### Suporte\n\nAgradecemos qualquer apoio a este projeto:\n\n- ⭐ Dê uma estrela ao nosso trabalho no GitHub\n- ❗ Crie um problema ou uma solicitação de recurso\n- 💁 Resolva um problema e crie uma solicitação pull\n- 🧑‍💻 Desenvolva seu próprio aplicativo usando o AppAPI\n\nEstamos genuinamente entusiasmados com o futuro do projeto AppAPI e seu potencial para transformar\na forma como os aplicativos são desenvolvidos e experimentados no Nextcloud.\n\nAo embarcarmos nesta jornada, convidamos vocês - desenvolvedores, pensadores, criadores e visionários -\npara se juntar a nós na criação de um cenário de aplicativos mais versátil, estável e seguro.\n\n*Suas percepções, sugestões e contribuições são inestimáveis para nós.*", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", diff --git a/l10n/ru.js b/l10n/ru.js index a59dc3b9..5c7ebfff 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Служба развертывания AppAPI по умолчанию не установлена. Пожалуйста, зарегистрируйте службу развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", diff --git a/l10n/ru.json b/l10n/ru.json index 1f84ebff..fcf951a2 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Служба развертывания AppAPI по умолчанию не установлена. Пожалуйста, зарегистрируйте службу развертывания по умолчанию в настройках для установки внешних приложений (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Сервис развертывания AppAPI по-умолчанию \"%s\" недоступен. Проверьте настройки сервиса.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Улучшите свой Nextcloud с помощью AppAPI и его специально разработанных приложений.\n\nAppAPI — это проект в экосистеме Nextcloud, призванный оптимизировать и улучшить процесс\nразработки, развертывания и управления приложениями.\n\nОн представляет новую методологию, которая позволяет разработчикам создавать\nприложения с использованием различных языков программирования, не ограничиваясь PHP, который традиционно использовался при разработке Nextcloud.\n\n_Если вы хотите разработать приложение, мы с радостью поможем вам._\n\n### Поддержка\n\nМы ценим любую поддержку этого проекта:\n\n- ⭐ Отметьте нашу работу на GitHub\n- ❗ Создайте задачу или запрос на функцию\n- 💁 Решите задачу и создайте запрос на извлечение\n- 🧑‍💻 Разработайте собственное приложение с помощью AppAPI\n\nМы искренне рады будущему проекта AppAPI и его потенциалу преобразовать способ разработки и использования приложений в Nextcloud.\n\nПоскольку мы отправляемся в это путешествие, мы горячо приглашаем вас — разработчиков, мыслителей, создателей и визионеров — присоединиться к нам в формировании более универсального, стабильного и безопасного ландшафта приложений.\n\n*Ваши идеи, предложения и вклад бесценны для нас.*", "External Apps management" : "Управление внешними приложениями", "Admin options saved" : "Параметры администратора сохранены", "Failed to save admin options" : "Не удалось сохранить параметры администратора.", diff --git a/l10n/sk.js b/l10n/sk.js index a9d72035..134f7637 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -24,7 +24,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Predvolený démon nasadenia AppAPI nie je nastavený. Ak chcete nainštalovať externé aplikácie (Ex-Apps), zaregistrujte si v nastaveniach predvoleného démona nasadenia.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Predvolený démon nasadenia AppAPI \"%s\" nie je prístupný. Skontrolujte konfiguráciu démona.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", "Admin options saved" : "Nastavenia administrátora boli uložené", "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", diff --git a/l10n/sk.json b/l10n/sk.json index 360b2bd6..0a8aedfe 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -22,7 +22,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Predvolený démon nasadenia AppAPI nie je nastavený. Ak chcete nainštalovať externé aplikácie (Ex-Apps), zaregistrujte si v nastaveniach predvoleného démona nasadenia.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Predvolený démon nasadenia AppAPI \"%s\" nie je prístupný. Skontrolujte konfiguráciu démona.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Zlepšite svoj Nextcloud pomocou AppAPI a jeho špeciálne navrhnutých aplikácií.\n\n\nAppAPI je projekt v rámci ekosystému Nextcloud navrhnutý na zefektívnenie a zlepšenie procesu\nvývoja, nasadenia a správy aplikácií.\n\nPredstavuje novú metodiku, ktorá umožňuje vývojárom vytvárať\naplikácie využívajúce rôzne programovacie jazyky, neobmedzujúce sa len na PHP, ktoré sa tradične používalo pri vývoji Nextcloud.\n\n_Ak chcete vyvinúť aplikáciu, radi vám pomôžeme a poradíme._\n\n### Podpora\n\nVážime si akúkoľvek podporu tohto projektu:\n\n- ⭐ Zahviezdite našu prácu na GitHub\n- ❗ Vytvorte žiadosť o vydanie alebo funkciu\n- 💁 Vyriešte problém a vytvorte žiadosť o stiahnutie\n- 🧑‍💻 Vyviňte svoju vlastnú aplikáciu pomocou AppAPI\n\nSme skutočne nadšení z budúcnosti projektu AppAPI a jeho potenciálu transformácie\nspôsob, akým sú aplikácie vyvíjané a používané v rámci Nextcloud.\n\nKeď sa vydávame na túto cestu, srdečne vás pozývame – vývojárov, mysliteľov, tvorcov a vizionárov –\naby ste sa k nám pridali pri vytváraní všestrannejšieho, stabilnejšieho a bezpečnejšieho prostredia aplikácií.\n\n*Vaše postrehy, návrhy a príspevky sú pre nás neoceniteľné.*", "External Apps management" : "Správa externých aplikácií", "Admin options saved" : "Nastavenia administrátora boli uložené", "Failed to save admin options" : "Nepodarilo sa uložiť nastavenia administrátora", diff --git a/l10n/sr.js b/l10n/sr.js index 9d91380b..64206452 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Није постављен подразумевани AppAPI даемон за постављање. Да бисте инсталирали Спољне апликације (Ex-Apps), молимо вас да региструјете подразумевани даемон за постављање.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI подразумевани даемон за постављање „%s” није доступан. Молимо вас да проверите конфигурацију", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", diff --git a/l10n/sr.json b/l10n/sr.json index ee845147..c1c4e7dd 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Није постављен подразумевани AppAPI даемон за постављање. Да бисте инсталирали Спољне апликације (Ex-Apps), молимо вас да региструјете подразумевани даемон за постављање.", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI подразумевани даемон за постављање „%s” није доступан. Молимо вас да проверите конфигурацију", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Унапредите свој Nextcloud са AppAPI и његовим специјално дизајнираним апликацијама.\n\n\nAppAPI је пројекат унутар Nextcloud екосистема који је дизајниран тако да поједностави и унапреди процес развоја \nапликације, постављање и управљање.\n\nУводи нову методологију која програмерима омогућава да\nкреирају апликације користећи разне програмске језике, а не само PHP, који се традиционално користио за Nextcloud програмирање.\n\n_Ако желите да направите апликацију, радо ћемо вам помоћи у томе._\n\n### Подршка\n\nЦенимо сваку подршку овом пројекту:\n\n- ⭐ Дајте звездицу нашем раду на GitHub сервису\n- ❗ Креирајте Извештај о проблему или захтев са новом функцијом\n- 💁 Решите проблем и креирајте Захтев за повлачење\n- 🧑‍💻 Направите сопствену апликацију користећи AppAPI\n\nЗаиста смо узбуђени у вези са будућности AppAPI пројекта и његовог потенцијала да трансформише\nначин на који се апликације програмирају и доживљавају унутар Nextcloud платформе.\n\nДок се укрцавамо на ово путовање, срдачно вас позивамо - програмере, мислиоце, креаторе и визионаре -\nда нам се придружите у обликовању свестранијег, стабилнијег и безбеднијег пејсажа апликација.\n\n*Ваши увиди, сугестије и доприноси су од непроцењивог значаја за нас.*", "External Apps management" : "Управљање спољним апликацијама", "Admin options saved" : "Сачуване су админ опције", "Failed to save admin options" : "Није успело чување админ опција", diff --git a/l10n/sw.js b/l10n/sw.js index 70986448..afec6826 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -27,7 +27,6 @@ OC.L10N.register( "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuhamia HaRP kwa utendakazi bora.", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", diff --git a/l10n/sw.json b/l10n/sw.json index a1577815..4c2e9187 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -25,7 +25,6 @@ "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuhamia HaRP kwa utendakazi bora.", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Boresha Nextcloud yako ukitumia AppAPI na programu zake zilizoundwa mahususi.\n\n\nAppAPI ni mradi ndani ya mfumo ikolojia wa Nextcloud ulioundwa ili kuhuisha na kuboresha mchakato wa\nmaendeleo ya maombi, upelekaji na usimamizi.\n\nInatanguliza mbinu mpya ambayo inaruhusu wasanidi kuunda\nprogramu kwa kutumia lugha mbalimbali za programu, sio tu kwa PHP, ambayo ilitumiwa jadi katika maendeleo ya Nextcloud.\n\n_Ikiwa ungependa kuunda programu, tutakusaidia kwa furaha na kukusaidia._\n\n### Msaada\n\nTunashukuru msaada wowote kwa mradi huu:\n\n- ⭐ Weka nyota kazi yetu kwenye GitHub\n- ❗ Unda Tatizo au ombi la kipengele\n- 💁 Suluhisha Tatizo na uunde Ombi la Kuvuta\n- 🧑‍💻 Tengeneza programu yako mwenyewe kwa kutumia AppAPI\n\nTunayo furaha ya kweli kuhusu mustakabali wa mradi wa AppAPI na uwezekano wake wa kubadilisha\njinsi maombi yanavyotengenezwa na uzoefu ndani ya Nextcloud.\n\nTunapoanza safari hii, tunakualika kwa moyo mkunjufu - watengenezaji, wanafikra, watayarishi na wenye maono -\nili ujiunge nasi katika kuunda mlolongo wa programu nyingi zaidi, thabiti na salama.\n\n*Maarifa, mapendekezo na michango yako ni ya thamani sana kwetu.*", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", diff --git a/l10n/tr.js b/l10n/tr.js index 8374613d..0ddad888 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "\"%s\" arka plan işleminin HaRP sürümü \"%s\" çok eski. Kullanılabilecek en eski sürüm \"%s\". Lütfen arka plan işlemini son sürüme güncelleyin.", "Failed to check HaRP version for daemon \"%s\": %s" : "\"%s\" arka plan işlemi için HaRP sürümü denetlenemedi: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", diff --git a/l10n/tr.json b/l10n/tr.json index 68ddd349..73857b16 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "\"%s\" arka plan işleminin HaRP sürümü \"%s\" çok eski. Kullanılabilecek en eski sürüm \"%s\". Lütfen arka plan işlemini son sürüme güncelleyin.", "Failed to check HaRP version for daemon \"%s\": %s" : "\"%s\" arka plan işlemi için HaRP sürümü denetlenemedi: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Nextcloud kopyanızı AppAPI ve onun özel olarak tasarlanmış uygulamalarıyla güçlendirin.\n\n\nAppAPI, Nextcloud ekosistemi içinde, uygulama geliştirme, dağıtma ve yönetme süreçlerini\nkolaylaştırmak ve geliştirmek için tasarlanmış bir projedir.\n\nGeliştiricilerin geleneksel olarak Nextcloud geliştirmesinde kullanılan PHP ile sınırlı kalmayacağı\nbiçimde çeşitli programlama dillerini kullanarak uygulamalar geliştirmesine olanak tanıyan \nyeni bir yöntem sunar.\n\n### Paket içinde\n\nBir uygulama geliştirmek isterseniz size seve seve yardım ederiz ve destek oluruz.\n\n### Destek\n\nBu projeye yapılacak her türlü desteği minnetle kabul ediyoruz:\n\n- ⭐ Çalışmalarımızı GitHub üzerinde değerlendirin\n- ❗ Bir sorun bildirin ya da özellik isteğinde bulunun\n- 💁 Bir sorunu çözün ve çekme isteğinde bulunun\n- 🧑‍💻 AppAPI kullanarak kendi uygulamanızı geliştirin\n\nAppAPI projesinin geleceği ve Nextcloud üzerinde uygulamaların geliştirilme ve deneyimlenme\nşeklini dönüştürme olanakları konusunda gerçekten heyecan duyuyoruz.\n\nBu yolculuğa çıkarken siz geliştiriciler, düşünürler, yaratıcılar ve vizyonerleri içtenlikle davet ediyoruz.\nÇok yönlü, kararlı ve güvenli bir uygulama ortamını şekillendirmek için bize katılın.\n\n*Görüşleriniz, önerileriniz ve katkılarınız bizim için çok değerlidir.*", "External Apps management" : "Dış uygulamalar yönetimi", "Admin options saved" : "Yönetici ayarları kaydedildi", "Failed to save admin options" : "Yönetici ayarları kaydedilemedi", diff --git a/l10n/ug.js b/l10n/ug.js index 913fef99..b77ba4eb 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -27,7 +27,6 @@ OC.L10N.register( "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى \"%s\" غا كىرگىلى بولمايدۇ. دېمون سەپلىمىسىنى تەكشۈرۈڭ.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى HaRP نى ئىشلەتمىدى. تېخىمۇ ياخشى ئۈنۈمگە ئېرىشىش ئۈچۈن HaRP غا ئالماشتۇرۇشنى ئويلىشىڭ.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى ئارقىلىق Nextcloud نى كۈچەيتىڭ.\n\nAppAPI Nextcloud ئېكولوگىيە سىستېمىسى ئىچىدىكى قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش جەريانىنى ئاددىيلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن بىر تۈر.\n\nئۇ تەرەققىياتچىلارنىڭ Nextcloud تەرەققىياتىدا ئەنئەنىۋى ھالدا ئىشلىتىلگەن PHP بىلەنلا چەكلىنىپ قالماي، ھەر خىل پروگرامما تىللىرىنى ئىشلىتىپ قوللىنىشچان پروگراممىلارنى يارىتىشىغا يول قويىدىغان يېڭى ئۇسۇلنى تونۇشتۇرىدۇ.\n\n_ئەگەر قوللىنىشچان پروگرامما تەرەققىي قىلدۇرماقچى بولسىڭىز، بىز سىزگە خۇشاللىق بىلەن ياردەم بېرىمىز ۋە ياردەم بېرىمىز._\n\n### قوللاش\n\nبۇ تۈرگە بولغان ھەر قانداق قوللاشقا رەھمەت ئېيتىمىز:\n\n- ⭐ GitHub دا خىزمىتىمىزنى بېكىتىڭ\n- ❗ مەسىلە ياكى ئىقتىدار تەلىپىنى يارىتىڭ\n- 💁 مەسىلىنى ھەل قىلىڭ ۋە تارتىش تەلىپىنى يارىتىڭ\n- 🧑‍💻 AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىڭىزنى تەرەققىي قىلدۇرۇڭ\n\nAppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ Nextcloud دا قوللىنىشچان پروگراممىلارنىڭ تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلىنى ئۆزگەرتىش ئىقتىدارىغا چىن دىلىمىزدىن ھاياجانلىنىمىز.\n\nبۇ سەپەرگە ئاتلانغان ۋاقتىمىزدا، سىزنى - ئاچقۇچىلار، ئويلىغۇچىلار، ئىجادكارلار ۋە كەلگۈسىگە ئىنتىلىدىغانلارنى - تېخىمۇ كۆپ ئىقتىدارلىق، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇشقا قىزغىن تەكلىپ قىلىمىز.\n\n*سىزنىڭ چۈشەنچىڭىز، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن قىممەتلىك.*", "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", diff --git a/l10n/ug.json b/l10n/ug.json index 53d27b77..60a6f9d1 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -25,7 +25,6 @@ "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى \"%s\" غا كىرگىلى بولمايدۇ. دېمون سەپلىمىسىنى تەكشۈرۈڭ.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "AppAPI نىڭ سۈكۈتتىكى ئورۇنلاشتۇرۇش دېمونى HaRP نى ئىشلەتمىدى. تېخىمۇ ياخشى ئۈنۈمگە ئېرىشىش ئۈچۈن HaRP غا ئالماشتۇرۇشنى ئويلىشىڭ.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### AppAPI ۋە ئۇنىڭ ئالاھىدە لايىھەلەنگەن قوللىنىشچان پروگراممىلىرى ئارقىلىق Nextcloud نى كۈچەيتىڭ.\n\nAppAPI Nextcloud ئېكولوگىيە سىستېمىسى ئىچىدىكى قوللىنىشچان پروگراممىلارنى تەرەققىي قىلدۇرۇش، ئورۇنلاشتۇرۇش ۋە باشقۇرۇش جەريانىنى ئاددىيلاشتۇرۇش ۋە ياخشىلاش ئۈچۈن لايىھەلەنگەن بىر تۈر.\n\nئۇ تەرەققىياتچىلارنىڭ Nextcloud تەرەققىياتىدا ئەنئەنىۋى ھالدا ئىشلىتىلگەن PHP بىلەنلا چەكلىنىپ قالماي، ھەر خىل پروگرامما تىللىرىنى ئىشلىتىپ قوللىنىشچان پروگراممىلارنى يارىتىشىغا يول قويىدىغان يېڭى ئۇسۇلنى تونۇشتۇرىدۇ.\n\n_ئەگەر قوللىنىشچان پروگرامما تەرەققىي قىلدۇرماقچى بولسىڭىز، بىز سىزگە خۇشاللىق بىلەن ياردەم بېرىمىز ۋە ياردەم بېرىمىز._\n\n### قوللاش\n\nبۇ تۈرگە بولغان ھەر قانداق قوللاشقا رەھمەت ئېيتىمىز:\n\n- ⭐ GitHub دا خىزمىتىمىزنى بېكىتىڭ\n- ❗ مەسىلە ياكى ئىقتىدار تەلىپىنى يارىتىڭ\n- 💁 مەسىلىنى ھەل قىلىڭ ۋە تارتىش تەلىپىنى يارىتىڭ\n- 🧑‍💻 AppAPI ئارقىلىق ئۆزىڭىزنىڭ قوللىنىشچان پروگراممىڭىزنى تەرەققىي قىلدۇرۇڭ\n\nAppAPI تۈرىنىڭ كەلگۈسى ۋە ئۇنىڭ Nextcloud دا قوللىنىشچان پروگراممىلارنىڭ تەرەققىي قىلدۇرۇش ۋە تەجرىبە قىلىش ئۇسۇلىنى ئۆزگەرتىش ئىقتىدارىغا چىن دىلىمىزدىن ھاياجانلىنىمىز.\n\nبۇ سەپەرگە ئاتلانغان ۋاقتىمىزدا، سىزنى - ئاچقۇچىلار، ئويلىغۇچىلار، ئىجادكارلار ۋە كەلگۈسىگە ئىنتىلىدىغانلارنى - تېخىمۇ كۆپ ئىقتىدارلىق، مۇقىم ۋە بىخەتەر ئەپ مەنزىرىسىنى شەكىللەندۈرۈشكە قوشۇلۇشقا قىزغىن تەكلىپ قىلىمىز.\n\n*سىزنىڭ چۈشەنچىڭىز، تەكلىپلىرىڭىز ۋە تۆھپىلىرىڭىز بىز ئۈچۈن قىممەتلىك.*", "External Apps management" : "سىرتقى ئەپلەرنى باشقۇرۇش", "Admin options saved" : "باشقۇرۇش تاللانمىلىرى ساقلاندى", "Failed to save admin options" : "باشقۇرۇش تاللانمىلىرىنى ساقلاش مەغلۇب بولدى", diff --git a/l10n/uk.js b/l10n/uk.js index 0ea40c1c..06c766f1 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -26,7 +26,6 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Стандартний демон розгортання AppAPI не встановлено. Будь ласка, зареєструйте стандартний демон розгортання в налаштуваннях, щоб встановити зовнішні програми (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Демон розгортання AppAPI за замовчуванням \"%s\" недоступний. Будь ласка, перевірте конфігурацію демона.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проекту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", diff --git a/l10n/uk.json b/l10n/uk.json index c8d22d01..c3eecd64 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -24,7 +24,6 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Стандартний демон розгортання AppAPI не встановлено. Будь ласка, зареєструйте стандартний демон розгортання в налаштуваннях, щоб встановити зовнішні програми (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Демон розгортання AppAPI за замовчуванням \"%s\" недоступний. Будь ласка, перевірте конфігурацію демона.", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Покращуйте Nextcloud за допомогою AppAPI та спеціально розроблених додатків.\n\n\nAppAPI — це проект в екосистемі Nextcloud, призначений для оптимізації та вдосконалення процесу\nрозробки, розгортання та управління додатками.\n\nВін запроваджує нову методологію, яка дозволяє розробникам створювати\nдодатки з використанням різних мов програмування, не обмежуючись PHP, який традиційно використовувався в розробці Nextcloud.\n\n_Якщо ви бажаєте розробити додаток, ми з радістю допоможемо вам._\n\n### Підтримка\n\nМи вдячні за будь-яку підтримку цього проекту:\n\n- ⭐ Поставте зірку нашій роботі на GitHub\n- ❗ Створіть проблему або запит на функцію\n- 💁 Вирішіть проблему та створіть запит на витяг\n- 🧑‍💻 Розробіть власний додаток за допомогою AppAPI\n\nМи щиро радіємо майбутньому проекту AppAPI та його потенціалу змінити\nспосіб розробки та використання додатків у Nextcloud.\n\nПочинаючи цю подорож, ми щиро запрошуємо вас — розробників, мислителів, творців та візіонерів —\nприєднатися до нас у формуванні більш універсального, стабільного та безпечного середовища для додатків.\n\n*Ваші думки, пропозиції та внески є для нас безцінними.*", "External Apps management" : "Керування зовнішніми програмами", "Admin options saved" : "Параметри адміністратора збережено", "Failed to save admin options" : "Не вдалося зберегти параметри адміністрування", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index cf95bd19..6c298c60 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 5278574a..a42c200b 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index d5ff2afb..501e7454 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -31,7 +31,6 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 161ff9d5..135b4b98 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -29,7 +29,6 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", - "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### 使用 AppAPI 與其專門設計的應用程式強化您的 Nextcloud\n\n\nAppAPI 是 Nextcloud 生態系中的一個專案,旨在簡化並強化\n應用程式開發、部署及管理。\n\n其引入了一種新的方法,讓開發者可以製作\n使用多種程式語言的應用程式,不僅限於 PHP,後者傳統上用於 Nextcloud 開發。\n\n若您想要開發應用程式,我們很樂意為您提供協助。\n\n### 支援\n\n我們感謝對此專案的任何支援:\n\n- ⭐ 在 GitHub 上給我們的作品星星\n- ❗ 建立問題或功能請求\n- 💁 解決問題並建立拉取請求\n- 🧑‍💻 使用 AppAPI 開發您自己的應用程式\n\n我們對 AppAPI 專案的未來及其改變 Nextcloud 中應用程式開發與\n體驗方式的潛力感到由衷的興奮。\n\n當我們踏上這趟旅程時,我們熱烈邀請您(開發者、思想家、創造者和夢想家)\n與我們一起塑造更通用、穩定和安全的應用程式格局。\n\n*您的見解、建議和貢獻對我們來說非常寶貴。*", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", From df564cbd3fd4128339defd688eed16808e6a6d3a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 22 Jan 2026 00:24:53 +0000 Subject: [PATCH 235/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/pt_BR.js | 2 +- l10n/pt_BR.json | 2 +- l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 8 files changed, 8 insertions(+), 2 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index ba0a2289..ffa854ef 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Was ist AppAPI?\n\nAppAPI ist die Nextcloud-Komponente, die **Externe Apps (ExApps)** ermöglicht.\nExApps sind Apps, deren Backend **außerhalb** des Nextcloud-PHP-Prozesses (normalerweise als Docker-Container) ausgeführt wird, und trotzdem in die Nextcloud-Konten, -Berechtigungen und -Web-Benutzeroberfläche integriert ist.\n\n### Benötige ich es?\n\nNein. Wenn du nicht vorhast, externe Apps zu installieren, kannst du AppAPI deaktivieren.\n\nWenn AppAPI ohne konfigurierten Deploy-Daemon aktiviert ist, zeigt Nextcloud folgende Meldung an:\n\n> \"AppAPI-Standardbereitstellungs-Daemon ist nicht festgelegt …\"\n\nDiese bedeutet: \"Externe Apps sind noch nicht konfiguriert.\"\n\nDu kannst entweder AppAPI deaktivieren oder einen Deploy-Daemon einrichten (siehe unten).\n\n### Wie werden externe Apps bereitgestellt?\n\nEin **Deploy Daemon** ist der Dienst, mit dem Nextcloud kommuniziert, um ExApps zu installieren, zu starten, zu stoppen und zu erreichen.\n\nEs stehen zwei Optionen zur Verfügung:\n\n- **HaRP** (empfohlen für Nextcloud 32+) — ein leistungsstarker Reverse-Proxy mit FRP-Tunneling\n- **Docker Socket Proxy** (Legacy) — Entfernung in Nextcloud 35 geplant\n\nAnleitungen zur Einrichtung finden sich in der [Administrations-Dokumentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html).", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/de.json b/l10n/de.json index e4056753..b939dc9b 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Was ist AppAPI?\n\nAppAPI ist die Nextcloud-Komponente, die **Externe Apps (ExApps)** ermöglicht.\nExApps sind Apps, deren Backend **außerhalb** des Nextcloud-PHP-Prozesses (normalerweise als Docker-Container) ausgeführt wird, und trotzdem in die Nextcloud-Konten, -Berechtigungen und -Web-Benutzeroberfläche integriert ist.\n\n### Benötige ich es?\n\nNein. Wenn du nicht vorhast, externe Apps zu installieren, kannst du AppAPI deaktivieren.\n\nWenn AppAPI ohne konfigurierten Deploy-Daemon aktiviert ist, zeigt Nextcloud folgende Meldung an:\n\n> \"AppAPI-Standardbereitstellungs-Daemon ist nicht festgelegt …\"\n\nDiese bedeutet: \"Externe Apps sind noch nicht konfiguriert.\"\n\nDu kannst entweder AppAPI deaktivieren oder einen Deploy-Daemon einrichten (siehe unten).\n\n### Wie werden externe Apps bereitgestellt?\n\nEin **Deploy Daemon** ist der Dienst, mit dem Nextcloud kommuniziert, um ExApps zu installieren, zu starten, zu stoppen und zu erreichen.\n\nEs stehen zwei Optionen zur Verfügung:\n\n- **HaRP** (empfohlen für Nextcloud 32+) — ein leistungsstarker Reverse-Proxy mit FRP-Tunneling\n- **Docker Socket Proxy** (Legacy) — Entfernung in Nextcloud 35 geplant\n\nAnleitungen zur Einrichtung finden sich in der [Administrations-Dokumentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html).", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 124b5ef8..ed6450c1 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Was ist AppAPI?\n\nAppAPI ist die Nextcloud-Komponente, die **Externe Apps (ExApps)** ermöglicht.\nExApps sind Apps, deren Backend **außerhalb** des Nextcloud-PHP-Prozesses (normalerweise als Docker-Container) ausgeführt wird, und trotzdem in die Nextcloud-Konten, -Berechtigungen und -Web-Benutzeroberfläche integriert ist.\n\n### Benötige ich es?\n\nNein. Wenn Sie nicht vorhaben, externe Apps zu installieren, können Sie AppAPI deaktivieren.\n\nWenn AppAPI ohne konfigurierten Deploy-Daemon aktiviert ist, zeigt Nextcloud folgende Meldung an:\n\n> \"AppAPI-Standardbereitstellungs-Daemon ist nicht festgelegt …\"\n\nDiese bedeutet: \"Externe Apps sind noch nicht konfiguriert.\"\n\nSie können entweder AppAPI deaktivieren oder einen Deploy-Daemon einrichten (siehe unten).\n\n### Wie werden externe Apps bereitgestellt?\n\nEin **Deploy Daemon** ist der Dienst, mit dem Nextcloud kommuniziert, um ExApps zu installieren, zu starten, zu stoppen und zu erreichen.\n\nEs stehen zwei Optionen zur Verfügung:\n\n- **HaRP** (empfohlen für Nextcloud 32+) — ein leistungsstarker Reverse-Proxy mit FRP-Tunneling\n- **Docker Socket Proxy** (Legacy) — Entfernung in Nextcloud 35 geplant\n\nAnleitungen zur Einrichtung finden sich in der [Administrations-Dokumentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html).", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 6665961d..cdcf9af5 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP-Version für den Daemon \"%s\" ist \"%s\" und damit zu alt. Die mindestens erforderliche Version ist \"%s\". Bitte den Daemon auf die neueste Version aktualisieren.", "Failed to check HaRP version for daemon \"%s\": %s" : "HaRP-Version des Daemons \"%s\" konnte nicht überprüft werden: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Was ist AppAPI?\n\nAppAPI ist die Nextcloud-Komponente, die **Externe Apps (ExApps)** ermöglicht.\nExApps sind Apps, deren Backend **außerhalb** des Nextcloud-PHP-Prozesses (normalerweise als Docker-Container) ausgeführt wird, und trotzdem in die Nextcloud-Konten, -Berechtigungen und -Web-Benutzeroberfläche integriert ist.\n\n### Benötige ich es?\n\nNein. Wenn Sie nicht vorhaben, externe Apps zu installieren, können Sie AppAPI deaktivieren.\n\nWenn AppAPI ohne konfigurierten Deploy-Daemon aktiviert ist, zeigt Nextcloud folgende Meldung an:\n\n> \"AppAPI-Standardbereitstellungs-Daemon ist nicht festgelegt …\"\n\nDiese bedeutet: \"Externe Apps sind noch nicht konfiguriert.\"\n\nSie können entweder AppAPI deaktivieren oder einen Deploy-Daemon einrichten (siehe unten).\n\n### Wie werden externe Apps bereitgestellt?\n\nEin **Deploy Daemon** ist der Dienst, mit dem Nextcloud kommuniziert, um ExApps zu installieren, zu starten, zu stoppen und zu erreichen.\n\nEs stehen zwei Optionen zur Verfügung:\n\n- **HaRP** (empfohlen für Nextcloud 32+) — ein leistungsstarker Reverse-Proxy mit FRP-Tunneling\n- **Docker Socket Proxy** (Legacy) — Entfernung in Nextcloud 35 geplant\n\nAnleitungen zur Einrichtung finden sich in der [Administrations-Dokumentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html).", "External Apps management" : "Externe Apps-Verwaltung", "Admin options saved" : "Administrationseinstellungen gespeichert", "Failed to save admin options" : "Administrationseinstellungen konnten nicht gespeichert werden", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 89a0091a..51094c18 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -29,7 +29,7 @@ OC.L10N.register( "AppAPI HaRP version check" : "Verificação da versão do AppAPI HaRP", "Could not retrieve HaRP version from daemon \"%s\"" : "Não foi possível recuperar a versão do HaRP do daemon \"%s\"", "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", - "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon %s: %s", + "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index fe068725..6543db20 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -27,7 +27,7 @@ "AppAPI HaRP version check" : "Verificação da versão do AppAPI HaRP", "Could not retrieve HaRP version from daemon \"%s\"" : "Não foi possível recuperar a versão do HaRP do daemon \"%s\"", "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", - "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon %s: %s", + "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 501e7454..ecab8d8d 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### AppAPI 是什麼?\n\nAppAPI 是用來啟用**外部應用程式 (ExApps)** 的 Nextcloud 元件。\nExApps 是指其後端在 Nextcloud PHP 處理程序**之外**運作(通常是 Docker 容器)的應用程式,同時仍能與您的 Nextcloud 使用者、權限及網頁介面整合。\n\n### 我需要它嗎?\n\n如果您並未規劃安裝外部應用程式的話,您可以停用 AppAPI。\n\n若啟用了 AppAPI 但沒有設定好的部署幕後程式,Nextcloud 將會顯示資訊訊息:\n\n> 「未設定 AppAPI 預設部署幕後程式……」\n\n此警告代表了:「外部應用程式尚未設定完成」。\n\n您可以停用 AppAPI 或設定部署幕後程式(見下)。\n\n### 如何部署外部應用程式?\n\n**部署幕後程式**是 Nextcloud 用來安裝、啟動、停止及存取 ExApps 的通訊服務。\n\n有兩種選項可供選擇:\n\n- **HaRP**(建議用於 Nextcloud 32 或更新版本):有 FRP 隧道的高效能的反向代理伺服器\n- **Docker Socket Proxy**(舊版):計畫於 Nextcloud 35 移除\n\n檢視[管理員文件](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html)以取得設定資訊。", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 135b4b98..82893640 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### AppAPI 是什麼?\n\nAppAPI 是用來啟用**外部應用程式 (ExApps)** 的 Nextcloud 元件。\nExApps 是指其後端在 Nextcloud PHP 處理程序**之外**運作(通常是 Docker 容器)的應用程式,同時仍能與您的 Nextcloud 使用者、權限及網頁介面整合。\n\n### 我需要它嗎?\n\n如果您並未規劃安裝外部應用程式的話,您可以停用 AppAPI。\n\n若啟用了 AppAPI 但沒有設定好的部署幕後程式,Nextcloud 將會顯示資訊訊息:\n\n> 「未設定 AppAPI 預設部署幕後程式……」\n\n此警告代表了:「外部應用程式尚未設定完成」。\n\n您可以停用 AppAPI 或設定部署幕後程式(見下)。\n\n### 如何部署外部應用程式?\n\n**部署幕後程式**是 Nextcloud 用來安裝、啟動、停止及存取 ExApps 的通訊服務。\n\n有兩種選項可供選擇:\n\n- **HaRP**(建議用於 Nextcloud 32 或更新版本):有 FRP 隧道的高效能的反向代理伺服器\n- **Docker Socket Proxy**(舊版):計畫於 Nextcloud 35 移除\n\n檢視[管理員文件](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html)以取得設定資訊。", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", From bdbde72cbb3f423fea7f8e9d0862224d2485f72a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 23 Jan 2026 00:29:44 +0000 Subject: [PATCH 236/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/id.js | 2 ++ l10n/id.json | 2 ++ l10n/it.js | 2 +- l10n/it.json | 2 +- l10n/zh_HK.js | 3 ++- l10n/zh_HK.json | 3 ++- 10 files changed, 14 insertions(+), 4 deletions(-) diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 67c9abc4..5028c844 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version.", "Failed to check HaRP version for daemon \"%s\": %s" : "Failed to check HaRP version for daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions.", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 3119d3d3..734c8abd 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version.", "Failed to check HaRP version for daemon \"%s\": %s" : "Failed to check HaRP version for daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions.", "External Apps management" : "External Apps management", "Admin options saved" : "Admin options saved", "Failed to save admin options" : "Failed to save admin options", diff --git a/l10n/ga.js b/l10n/ga.js index ee5be6cc..37b811f6 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Is é \"%s\" leagan HaRP don daemon \"%s\", atá róshean. Is é \"%s\" an leagan íosta atá ag teastáil. Nuashonraigh an daemon go dtí an leagan is déanaí le do thoil.", "Failed to check HaRP version for daemon \"%s\": %s" : "Theip ar leagan HaRP a sheiceáil don daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Cad is AppAPI ann?\n\nIs é AppAPI an chomhpháirt Nextcloud a chuireann **Aipeanna Seachtracha (ExApps)** ar chumas.\nIs aipeanna iad ExApps a ritheann a gcúltaca **lasmuigh** de phróiseas PHP Nextcloud (de ghnáth mar choimeádán Docker), agus iad fós ag comhtháthú le d’úsáideoirí, ceadanna agus comhéadan úsáideora gréasáin Nextcloud.\n\n### An bhfuil sé de dhíth orm?\n\nNíl. Mura bhfuil sé beartaithe agat Aipeanna Seachtracha a shuiteáil, is féidir leat AppAPI a dhíchumasú.\n\nMá tá AppAPI cumasaithe gan Daemon Imscartha cumraithe, taispeánfaidh Nextcloud an teachtaireacht eolais:\n\n> \"Níl daemon imscartha réamhshocraithe AppAPI socraithe …\"\n\nCiallaíonn an rabhadh sin: \"Níl Aipeanna Seachtracha cumraithe fós\".\n\nIs féidir leat AppAPI a dhíchumasú, nó Daemon Imscartha a chumrú (féach thíos).\n\n### Conas a imscarthar Aipeanna Seachtracha?\n\nIs é **Daemon Imscartha** an tseirbhís a labhraíonn Nextcloud léi chun ExApps a shuiteáil, a thosú, a stopadh agus a bhaint amach.\n\nTá dhá rogha ar fáil:\n\n- **HaRP** (molta do Nextcloud 32+) — seachfhreastalaí droim ar ais ardfheidhmíochta le tollánú FRP\n- **Seachfhreastalaí Docker Socket** (oidhreacht) — sceidealaithe le baint i Nextcloud 35\n\nFéach ar an [dhoiciméadú riarthóra](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) le haghaidh treoracha socraithe.", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", diff --git a/l10n/ga.json b/l10n/ga.json index 0f95c994..3388e447 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Is é \"%s\" leagan HaRP don daemon \"%s\", atá róshean. Is é \"%s\" an leagan íosta atá ag teastáil. Nuashonraigh an daemon go dtí an leagan is déanaí le do thoil.", "Failed to check HaRP version for daemon \"%s\": %s" : "Theip ar leagan HaRP a sheiceáil don daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Cad is AppAPI ann?\n\nIs é AppAPI an chomhpháirt Nextcloud a chuireann **Aipeanna Seachtracha (ExApps)** ar chumas.\nIs aipeanna iad ExApps a ritheann a gcúltaca **lasmuigh** de phróiseas PHP Nextcloud (de ghnáth mar choimeádán Docker), agus iad fós ag comhtháthú le d’úsáideoirí, ceadanna agus comhéadan úsáideora gréasáin Nextcloud.\n\n### An bhfuil sé de dhíth orm?\n\nNíl. Mura bhfuil sé beartaithe agat Aipeanna Seachtracha a shuiteáil, is féidir leat AppAPI a dhíchumasú.\n\nMá tá AppAPI cumasaithe gan Daemon Imscartha cumraithe, taispeánfaidh Nextcloud an teachtaireacht eolais:\n\n> \"Níl daemon imscartha réamhshocraithe AppAPI socraithe …\"\n\nCiallaíonn an rabhadh sin: \"Níl Aipeanna Seachtracha cumraithe fós\".\n\nIs féidir leat AppAPI a dhíchumasú, nó Daemon Imscartha a chumrú (féach thíos).\n\n### Conas a imscarthar Aipeanna Seachtracha?\n\nIs é **Daemon Imscartha** an tseirbhís a labhraíonn Nextcloud léi chun ExApps a shuiteáil, a thosú, a stopadh agus a bhaint amach.\n\nTá dhá rogha ar fáil:\n\n- **HaRP** (molta do Nextcloud 32+) — seachfhreastalaí droim ar ais ardfheidhmíochta le tollánú FRP\n- **Seachfhreastalaí Docker Socket** (oidhreacht) — sceidealaithe le baint i Nextcloud 35\n\nFéach ar an [dhoiciméadú riarthóra](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) le haghaidh treoracha socraithe.", "External Apps management" : "Bainistíocht Aipeanna Seachtracha", "Admin options saved" : "Sábháladh roghanna riaracháin", "Failed to save admin options" : "Theip ar shábháil na roghanna riaracháin", diff --git a/l10n/id.js b/l10n/id.js index d584f110..c2654bf7 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -12,6 +12,8 @@ OC.L10N.register( "Registered Deploy daemons list" : "Daftar Deploy daemon yang terdaftar", "Enabled" : "Diaktifkan", "Remove" : "Hapus", + "From" : "Dari", + "To" : "Hingga", "Add" : "Tambah", "Display name" : "Nama tampilan", "Compute device" : "Perangkat komputasi", diff --git a/l10n/id.json b/l10n/id.json index 49cce26c..260b0a73 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -10,6 +10,8 @@ "Registered Deploy daemons list" : "Daftar Deploy daemon yang terdaftar", "Enabled" : "Diaktifkan", "Remove" : "Hapus", + "From" : "Dari", + "To" : "Hingga", "Add" : "Tambah", "Display name" : "Nama tampilan", "Compute device" : "Perangkat komputasi", diff --git a/l10n/it.js b/l10n/it.js index 1fac2e9a..c90c7622 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -25,7 +25,7 @@ OC.L10N.register( "Register" : "Registra", "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", - "Delete data on remove" : "Cancella dati alla rimozione", + "Delete data on remove" : "Elimina dati alla rimozione", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", diff --git a/l10n/it.json b/l10n/it.json index f93fdea3..9fade498 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -23,7 +23,7 @@ "Register" : "Registra", "{license}-licensed" : "sotto licenza {license}", "Update to {version}" : "Aggiorna a {version}", - "Delete data on remove" : "Cancella dati alla rimozione", + "Delete data on remove" : "Elimina dati alla rimozione", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 6c298c60..38a27662 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### 什麼是 AppAPI?\n\n**AppAPI** 是 Nextcloud 的一個元件,用於啟用 **外部應用程式(External Apps,簡稱 ExApps)**。 \nExApps 指的是其後端服務 **在 Nextcloud 的 PHP 程序以外執行**(通常以 Docker 容器形式運行),但仍然可以與你的 Nextcloud **用戶、權限及網頁介面**整合。\n\n---\n\n### 我需要使用 AppAPI 嗎?\n\n不需要。 \n如果你 **沒有打算安裝外部應用程式(ExApps)**,可以直接停用 AppAPI。\n\n若在 **未設定部署精靈(Deploy Daemon)** 的情況下啟用 AppAPI,Nextcloud 會顯示以下提示訊息:\n\n> **「未設定 AppAPI 預設部署精靈 …」**\n\n這個提示的意思是: \n**「外部應用程式尚未完成設定」**。\n\n你可以選擇:\n- 停用 AppAPI,或\n- 設定一個部署精靈(見下文)。\n\n---\n\n### 外部應用程式是如何部署的?\n\n**部署精靈(Deploy Daemon)** 是 Nextcloud 用來與外部應用程式通訊的服務,負責安裝、啟動、停止及存取 ExApps。\n\n目前提供兩個選項:\n\n- **HaRP**(建議用於 Nextcloud 32 以上版本) \n— 高效能反向代理,配合 FRP 穿透技術 \n- **Docker Socket Proxy**(舊方案) \n— 預計於 Nextcloud 35 移除\n\n設定方式請參閱 \n[管理員文件](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html)。", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", @@ -123,7 +124,7 @@ OC.L10N.register( "Override Docker registries" : "覆蓋 Docker 註冊表", "Configure Docker registry override mappings for the selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", "No custom Docker registries are registered" : "未設定自訂的 Docker registry", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index a42c200b..4ef3d8af 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "幕後程式「%s」的 HaRP 版本為「%s」,太舊了。需要的最低版本為「%s」。請更新幕後程式至最新版本。", "Failed to check HaRP version for daemon \"%s\": %s" : "檢視幕後程式「%s」的 HaRP 版本失敗:%s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### 什麼是 AppAPI?\n\n**AppAPI** 是 Nextcloud 的一個元件,用於啟用 **外部應用程式(External Apps,簡稱 ExApps)**。 \nExApps 指的是其後端服務 **在 Nextcloud 的 PHP 程序以外執行**(通常以 Docker 容器形式運行),但仍然可以與你的 Nextcloud **用戶、權限及網頁介面**整合。\n\n---\n\n### 我需要使用 AppAPI 嗎?\n\n不需要。 \n如果你 **沒有打算安裝外部應用程式(ExApps)**,可以直接停用 AppAPI。\n\n若在 **未設定部署精靈(Deploy Daemon)** 的情況下啟用 AppAPI,Nextcloud 會顯示以下提示訊息:\n\n> **「未設定 AppAPI 預設部署精靈 …」**\n\n這個提示的意思是: \n**「外部應用程式尚未完成設定」**。\n\n你可以選擇:\n- 停用 AppAPI,或\n- 設定一個部署精靈(見下文)。\n\n---\n\n### 外部應用程式是如何部署的?\n\n**部署精靈(Deploy Daemon)** 是 Nextcloud 用來與外部應用程式通訊的服務,負責安裝、啟動、停止及存取 ExApps。\n\n目前提供兩個選項:\n\n- **HaRP**(建議用於 Nextcloud 32 以上版本) \n— 高效能反向代理,配合 FRP 穿透技術 \n- **Docker Socket Proxy**(舊方案) \n— 預計於 Nextcloud 35 移除\n\n設定方式請參閱 \n[管理員文件](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html)。", "External Apps management" : "外部應用程式管理", "Admin options saved" : "已儲存管理選項", "Failed to save admin options" : "儲存管理選項失敗", @@ -121,7 +122,7 @@ "Override Docker registries" : "覆蓋 Docker 註冊表", "Configure Docker registry override mappings for the selected daemon." : "為選取的幕後程式設定 Docker registry 覆寫對映。", "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "ExApp info.xml 中相符的來源 registry 將會在部署時覆寫(映像檔拉取步驟)。", - "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自定義 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "如果您想使用自訂 Docker 註冊表,例如使用私有 Docker 註冊表或使用不同的 Docker 註冊表進行測試,這將非常有用。", "Image pull will be skipped" : "將跳過映像拉取", "Remove" : "移除", "No custom Docker registries are registered" : "未設定自訂的 Docker registry", From 2126d6b29a22e335f6ca86db983ac12ee2d7095f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 24 Jan 2026 00:29:02 +0000 Subject: [PATCH 237/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/id.js | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/id.json | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++- l10n/it.js | 4 +- l10n/it.json | 4 +- l10n/uz.js | 1 + l10n/uz.json | 1 + 6 files changed, 476 insertions(+), 8 deletions(-) diff --git a/l10n/id.js b/l10n/id.js index c2654bf7..5642fc44 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -1,25 +1,208 @@ OC.L10N.register( "app_api", { + "Daemon config not found" : "Konfigurasi daemon tidak ditemukan", + "Error starting install of ExApp" : "Kesalahan saat memulai instalasi ExApp", + "ExApp failed to register, check the NC logs" : "ExApp gagal terdaftar, periksa log NC", + "ExApp not found, failed to get status" : "ExApp tidak ditemukan, gagal mendapatkan status", + "Error adding Docker registry" : "Kesalahan saat menambahkan registry Docker", + "Error removing Docker registry" : "Kesalahan saat menghapus registry Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aplikasi ini tidak diinstal dari AppStore. Tidak ada informasi tambahan tersedia. Hanya tindakan aktifkan/nonaktifkan dan hapus yang diizinkan.", + "Could not perform installation of ExApp" : "Tidak dapat melakukan instalasi ExApp", + "Failed to enable ExApp" : "Gagal mengaktifkan ExApp", + "Failed to disable ExApp" : "Gagal menonaktifkan ExApp", + "Could not update ExApp" : "Tidak dapat memperbarui ExApp", + "Error starting update of ExApp" : "Kesalahan saat memulai pembaruan ExApp", + "Could not perform update of ExApp" : "Tidak dapat melakukan pembaruan ExApp", + "ExApp not found, failed to get logs" : "ExApp tidak ditemukan, gagal mendapatkan log", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Gagal mendapatkan log kontainer. Catatan: Mengunduh kontainer Docker hanya berfungsi untuk kontainer dengan driver logging json-file atau journald. Kesalahan: %s", + "ExApp not found, failed to get deploy options" : "ExApp tidak ditemukan, gagal mendapatkan opsi deployment", + "AppAPI authentication failed" : "Autentikasi AppAPI gagal", + "AppAPI ExApp notifier" : "Notifier ExApp AppAPI", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Tim Integrasi AI", + "ExApps Settings" : "Pengaturan ExApps", + "AppAPI deploy daemon" : "Daemon deploy AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon deploy default AppAPI belum disetel. Silakan daftarkan daemon deploy default di pengaturan untuk menginstal Aplikasi Eksternal (Ex-App).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon deploy default AppAPI \"%s\" tidak dapat diakses. Silakan periksa konfigurasi daemon.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon deploy default AppAPI tidak menggunakan HaRP. Harap pertimbangkan untuk beralih ke HaRP untuk kinerja yang lebih baik.", + "AppAPI HaRP version check" : "Pemeriksaan versi HaRP AppAPI", + "Could not retrieve HaRP version from daemon \"%s\"" : "Tidak dapat mengambil versi HaRP dari daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Versi HaRP untuk daemon \"%s\" adalah \"%s\", yang terlalu lama. Versi minimum yang diperlukan adalah \"%s\". Silakan perbarui daemon ke versi terbaru.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Gagal memeriksa versi HaRP untuk daemon \"%s\": %s", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Apa itu AppAPI?\n\nAppAPI adalah komponen Nextcloud yang mengaktifkan **Aplikasi Eksternal (ExApps)**.\nExApps adalah aplikasi yang backend-nya berjalan **di luar** proses PHP Nextcloud (biasanya sebagai kontainer Docker), sambil tetap terintegrasi dengan pengguna, izin, dan UI web Nextcloud.\n\n### Apakah saya membutuhkannya?\n\nTidak. Jika Anda tidak berencana menginstal Aplikasi Eksternal, Anda dapat menonaktifkan AppAPI.\n\nJika AppAPI diaktifkan tanpa Daemon Deploy yang dikonfigurasi, Nextcloud akan menampilkan pesan informasi:\n\n> \"Daemon deploy default AppAPI belum disetel …\"\n\nPeringatan itu berarti: \"Aplikasi Eksternal belum dikonfigurasi\".\n\nAnda dapat menonaktifkan AppAPI, atau mengonfigurasi Daemon Deploy (lihat di bawah).\n\n### Bagaimana Aplikasi Eksternal dideploy?\n\n**Daemon Deploy** adalah layanan yang dihubungi Nextcloud untuk menginstal, memulai, menghentikan, dan menjangkau ExApps.\n\nDua opsi tersedia:\n\n- **HaRP** (direkomendasikan untuk Nextcloud 32+) — reverse proxy berperforma tinggi dengan tunneling FRP\n- **Docker Socket Proxy** (lama) — dijadwalkan untuk dihapus di Nextcloud 35\n\nLihat [dokumentasi admin](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) untuk instruksi penyiapan.", + "External Apps management" : "Pengelolaan Aplikasi Eksternal", + "Admin options saved" : "Opsi admin disimpan", + "Failed to save admin options" : "Gagal menyimpan opsi admin", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Proyek AppAPI adalah inisiatif menarik yang bertujuan merevolusi cara aplikasi dikembangkan untuk Nextcloud melalui penggunaan kontainer Docker. Ini memungkinkan pilihan bahasa pemrograman yang lebih luas dan memungkinkan tugas yang memerlukan komputasi mahal dialihkan ke server lain.", + "Deploy daemons" : "Daemon deploy", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon deploy. Daemon deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Daemon deploy default tidak dapat diakses. Silakan periksa konfigurasinya", + "ExApp init timeout (minutes)" : "Timeout inisialisasi ExApp (menit)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Batas waktu proses inisialisasi ExApp yang setelahnya AppAPI akan menandainya sebagai gagal", + "ExApp init timeout" : "Timeout inisialisasi ExApp", + "ExApp container restart policy" : "Kebijakan restart kontainer ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Pilih kebijakan restart kontainer, misalnya 'always' untuk memastikan ExApps akan berjalan setelah reboot server daemon", + "This settings changes are effective only for newly created containers" : "Perubahan pengaturan ini hanya berlaku untuk kontainer yang baru dibuat", + "Deploy daemon deletion confirmation" : "Konfirmasi penghapusan daemon deploy", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Apakah Anda yakin ingin menghapus daemon deploy \"{name}\"?", + "Remove all ExApps installed on this daemon" : "Hapus semua ExApp yang diinstal pada daemon ini", "Cancel" : "Batal", "Delete" : "Hapus", + "A \"manual-install\" deploy daemon cannot be set as default" : "Daemon deploy \"manual-install\" tidak dapat ditetapkan sebagai default", + "Failed to save admin settings. Check the logs" : "Gagal menyimpan pengaturan admin. Periksa log", + "Password confirmation failed" : "Konfirmasi kata sandi gagal", "Default" : "Default", + "Set as default" : "Tetapkan sebagai default", + "Test deploy" : "Uji deploy", + "Docker registries" : "Registry Docker", "Edit" : "Sunting", + "Daemon connection successful" : "Koneksi daemon berhasil", + "Failed to connect to the daemon. Check the logs" : "Gagal terhubung ke daemon. Periksa log", + "Failed to check connection to the daemon. Check the logs" : "Gagal memeriksa koneksi ke daemon. Periksa log", "Unlimited" : "Tak terbatas", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU"], + "Deploy daemon configuration" : "Konfigurasi daemon deploy", + "Deploy daemon configuration details" : "Detail konfigurasi daemon deploy", + "Deploy daemon" : "Daemon deploy", + "Default daemon. ExApps will be installed on it" : "Daemon default. ExApp akan diinstal di daemon ini", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Daemon \"Manual install\" biasanya digunakan untuk pengembangan. Daemon ini tidak dapat ditetapkan sebagai daemon default.", + "ExApps installed" : "ExApp terinstal", "Name" : "Nama", + "Protocol" : "Protokol", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Komunikasi langsung ExApp (FRP dinonaktifkan)", "Deploy options" : "Opsi deploy", + "Docker network" : "Jaringan Docker", + "Nextcloud URL" : "URL Nextcloud", + "HaProxy password" : "Kata sandi HaProxy", + "GPU support" : "Dukungan GPU", + "Computation device" : "Perangkat komputasi", + "Memory limit" : "Batas memori", + "CPU limit" : "Batas CPU", + "Additional options" : "Opsi tambahan", + "Check connection" : "Periksa koneksi", "Registered Deploy daemons list" : "Daftar Deploy daemon yang terdaftar", + "No Deploy daemons are registered" : "Tidak ada daemon deploy yang terdaftar", + "Register a custom one or configure one from the available templates" : "Daftarkan daemon kustom atau konfigurasikan salah satu dari templat yang tersedia", + "Register daemon" : "Daftarkan daemon", + "Register ExApp in Nextcloud" : "Daftarkan ExApp di Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Periksa apakah ExApp terdaftar di Nextcloud sebelum deployment", + "Image pull" : "Penarikan image", + "Check if the image is successfully pulled" : "Periksa apakah image berhasil ditarik", + "Container started" : "Kontainer dimulai", + "Check if the image successfully pulled and container is created and started" : "Periksa apakah image berhasil ditarik dan kontainer dibuat serta dimulai", + "Heartbeat" : "Heartbeat", + "Check for the heartbeat is finished and healthy" : "Pemeriksaan heartbeat selesai dan dalam kondisi sehat", + "Init step" : "Langkah init", + "Wait for initialization step to finish" : "Tunggu hingga langkah inisialisasi selesai", "Enabled" : "Diaktifkan", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Periksa apakah ExApp berhasil menangani event enabled dan mendaftarkan semua hal dengan benar", + "Only if ExApp container is preset" : "Hanya jika kontainer ExApp telah tersedia", + "Deploy test passed successfully!" : "Uji deploy berhasil!", + "Deploy test failed at step \"{step}\"" : "Uji deploy gagal pada langkah \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI akan mencoba menginstal ExApp kerangka kecil untuk memeriksa bahwa daemon dikonfigurasi dengan benar dan langkah-langkah deployment berhasil.", + "The following deploy test checks must succeed:" : "Pemeriksaan uji deploy berikut harus berhasil:", + "More information" : "Informasi lebih lanjut", + "Download ExApp logs" : "Unduh log ExApp", + "Remove the test ExApp" : "Hapus ExApp uji", + "Start the deploy test" : "Mulai uji deploy", + "Stop the deploy test" : "Hentikan uji deploy", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "ExApp uji akan dibatalkan pendaftarannya dan kontainernya dihapus saat \"Hentikan uji deploy\"", + "Please enter a registry domain" : "Silakan masukkan domain registry", + "\"From\" cannot be \"local\"" : "\"From\" tidak boleh \"local\"", + "This registry mapping already exists" : "Pemetaan registry ini sudah ada", + "\"From\" and \"To\" cannot be the same" : "\"From\" dan \"To\" tidak boleh sama", + "Docker registry mapping added" : "Pemetaan registry Docker ditambahkan", + "Error adding Docker registry mapping" : "Kesalahan saat menambahkan pemetaan registry Docker", + "Docker registry mapping removed" : "Pemetaan registry Docker dihapus", + "Error removing Docker registry mapping" : "Kesalahan saat menghapus pemetaan registry Docker", + "Override Docker registries" : "Timpa registry Docker", + "Configure Docker registry override mappings for the selected daemon." : "Konfigurasikan pemetaan penimpaan registry Docker untuk daemon yang dipilih.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Registry sumber yang cocok dalam info.xml ExApp akan ditimpa selama deployment (langkah penarikan image).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Ini berguna jika Anda ingin menggunakan registry Docker kustom, misalnya untuk menggunakan registry Docker privat, atau menggunakan registry Docker yang berbeda untuk pengujian.", + "Image pull will be skipped" : "Penarikan image akan dilewati", "Remove" : "Hapus", + "No custom Docker registries are registered" : "Tidak ada registry Docker kustom yang terdaftar", + "Add registry override mapping" : "Tambahkan pemetaan penimpaan registry", "From" : "Dari", + "registry URL (e.g. ghcr.io)" : "URL registry (misalnya ghcr.io)", "To" : "Hingga", + "registry URL (e.g. docker.io)" : "URL registry (misalnya docker.io)", "Add" : "Tambah", + "Hostname used by Nextcloud to access the ExApps" : "Nama host yang digunakan oleh Nextcloud untuk mengakses ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Nama host (dan port) tempat {name} tersedia. Ini tidak harus berupa host publik, cukup host yang dapat diakses oleh server Nextcloud, misalnya {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nama host (dan port) atau path tempat {name} tersedia. Ini tidak harus berupa host publik, cukup host yang dapat diakses oleh server Nextcloud. Ini juga dapat berupa path ke soket Docker. (misalnya nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Daemon dengan nama ini sudah ada", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Kunci rahasia untuk komunikasi kontainer HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Kata sandi autentikasi AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Perubahan hanya berlaku untuk ExApp yang baru diinstal. Untuk ExApp yang sudah ada, kontainer Docker harus dibuat ulang agar nilai pengaturan baru diterapkan.", + "The Docker network that the deployed ExApps will use." : "Jaringan Docker yang akan digunakan ExApp yang dideploy.", + "The URL should start with http:// or https://" : "URL harus diawali dengan http:// atau https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Untuk daemon HTTPS, URL Nextcloud harus HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Semua perangkat GPU yang tersedia di host daemon perlu diaktifkan pada kontainer ExApp oleh Docker.", + "DaemonConfig successfully registered" : "DaemonConfig berhasil didaftarkan", + "Failed to register DaemonConfig. Check the logs" : "Gagal mendaftarkan DaemonConfig. Periksa log", + "DaemonConfig successfully updated" : "DaemonConfig berhasil diperbarui", + "Failed to update DaemonConfig. Check the logs" : "Gagal memperbarui DaemonConfig. Periksa log", + "Failed to connect to Daemon. Check the logs" : "Gagal terhubung ke Daemon. Periksa log", + "Failed to check connection to Daemon. Check the logs" : "Gagal memeriksa koneksi ke Daemon. Periksa log", + "Edit the deploy daemon" : "Edit daemon deploy", + "Register a new deploy daemon" : "Daftarkan daemon deploy baru", + "Daemon configuration template" : "Templat konfigurasi daemon", + "Select a daemon configuration template" : "Pilih templat konfigurasi daemon", + "Daemon registration form" : "Formulir pendaftaran daemon", + "Unique deploy daemon name" : "Nama daemon deploy yang unik", + "Unique deploy Daemon name" : "Nama Daemon deploy yang unik", "Display name" : "Nama tampilan", + "Deployment method" : "Metode deployment", + "Select the daemon deploy method" : "Pilih metode deploy daemon", + "HaRP host" : "Host HaRP", + "Daemon host" : "Host daemon", + "HaRP shared key" : "Kunci bersama HaRP", + "The password must be at least 12 characters long" : "Kata sandi harus terdiri dari minimal 12 karakter", + "Set this daemon as the default one" : "Tetapkan daemon ini sebagai daemon default", + "Set as the default daemon" : "Tetapkan sebagai daemon default", + "Enable HTTPS" : "Aktifkan HTTPS", + "Show deploy options" : "Tampilkan opsi deploy", + "Hide deploy options" : "Sembunyikan opsi deploy", + "Enable HaRP" : "Aktifkan HaRP", + "FRP server address" : "Alamat server FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Alamat (host:port) server FRP yang harus dapat dijangkau oleh ExApp di jaringan yang ditentukan pada bagian 'Jaringan Docker'.", + "Docker socket proxy port" : "Port proxy soket Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port di HaRP tempat proxy soket Docker terhubung. Port ini harus diekspos, tetapi untuk yang bawaan, tidak perlu diekspos atau diubah.", + "Disable FRP" : "Nonaktifkan FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Penanda hanya untuk penyiapan lanjutan. Menonaktifkan tunnel FRP antara ExApps dan HaRP.", + "Docker network for ex-app deployment must be defined" : "Jaringan Docker untuk deployment ex-app harus didefinisikan", "Compute device" : "Perangkat komputasi", + "Memory limit (in MiB)" : "Batas memori (dalam MiB)", + "Must be a positive integer" : "Harus berupa bilangan bulat positif", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Jumlah maksimum memori yang dapat digunakan kontainer ExApp dalam mebibyte", + "CPU limit as decimal value" : "Batas CPU sebagai nilai desimal", + "Must be a positive number" : "Harus berupa angka positif", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Jumlah maksimum core CPU yang dapat digunakan kontainer ExApp (misalnya 0.5 untuk setengah core, 2 untuk dua core)", + "Add additional option" : "Tambahkan opsi tambahan", + "Option key (unique)" : "Kunci opsi (unik)", + "Option key (unique, e.g. my_key)" : "Kunci opsi (unik, misalnya my_key)", + "Option key is required" : "Kunci opsi wajib diisi", + "Option value" : "Nilai opsi", + "Option value is required" : "Nilai opsi wajib diisi", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", + "External Apps" : "Aplikasi Eksternal", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Tingkatkan Nextcloud Anda dengan AppAPI dan aplikasi yang dirancang khusus.\n\n\nAppAPI adalah proyek dalam ekosistem Nextcloud yang dirancang untuk merampingkan dan meningkatkan proses\npengembangan, deployment, dan pengelolaan aplikasi.\n\nAppAPI memperkenalkan metodologi baru yang memungkinkan pengembang membuat\naplikasi menggunakan berbagai bahasa pemrograman, tidak terbatas pada PHP, yang secara tradisional digunakan dalam pengembangan Nextcloud.\n\n### Aplikasi Bundel\n\n**Mulai Nextcloud 30.0.1, aplikasi ini disertakan dalam paket Nextcloud default.**\n\n### Dukungan\n\nKami menghargai dukungan apa pun untuk proyek ini:\n\n- ⭐ Beri bintang pekerjaan kami di GitHub\n- ❗ Buat Issue atau permintaan fitur\n- 💁 Selesaikan Issue dan buat Pull Request\n- 🧑‍💻 Kembangkan aplikasi Anda sendiri menggunakan AppAPI\n\nKami sungguh antusias dengan masa depan proyek AppAPI dan potensinya untuk mentransformasi\ncara aplikasi dikembangkan dan dialami dalam Nextcloud.\n\nSaat kami memulai perjalanan ini, kami mengundang Anda dengan hangat - para pengembang, pemikir, kreator, dan visioner -\nuntuk bergabung bersama kami dalam membentuk lanskap aplikasi yang lebih serbaguna, stabil, dan aman.\n\n*Wawasan, saran, dan kontribusi Anda sangat berharga bagi kami.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Proyek AppAPI adalah inisiatif menarik yang bertujuan merevolusi cara aplikasi dikembangkan untuk Nextcloud.", + "Deploy Daemons" : "Daemon Deploy", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon Deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon Deploy. Daemon Deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon Deploy default tidak dapat diakses. Silakan verifikasi konfigurasinya", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Tentukan kebijakan restart kontainer, misalnya 'always' untuk memastikan ExApp berjalan setelah reboot server daemon", + "This settings changes are reflected only for newly created containers" : "Perubahan pengaturan ini hanya tercermin untuk kontainer yang baru dibuat", "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", "Delete data on remove" : "Hapus data saat penghapusan", @@ -32,11 +215,13 @@ OC.L10N.register( "User documentation" : "Dokumentasi pengguna", "Admin documentation" : "Dokumentasi admin", "Developer documentation" : "Dokumentasi pengembang", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aplikasi ini tidak terdaftar di AppStore. Tidak ada informasi tambahan tersedia. Hanya tindakan aktifkan/nonaktifkan dan hapus yang diizinkan.", "This app is supported via your current Nextcloud subscription." : "Aplikasi ini didukung dengan langganan Nextcloud Anda saat ini.", "Supported" : "Didukung", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", + "All ExApps are up-to-date." : "Semua ExApp sudah yang terbaru.", "Default Deploy daemon is not accessible" : "Deploy daemon default tidak dapat diakses", "Icon" : "Ikon", "Version" : "Versi", @@ -44,13 +229,55 @@ OC.L10N.register( "Level" : "Level", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", + "No apps found" : "Tidak ada aplikasi ditemukan", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplikasi memiliki pembaruan tersedia"], "_Update_::_Update all_" : ["Perbarui semua"], "Deploy Daemon" : "Deploy Daemon", "Type" : "tipe", "Display Name" : "Nama Tampilan", "GPUs support" : "Dukungan GPU", + "Are you sure you want delete Deploy Daemon" : "Apakah Anda yakin ingin menghapus Daemon Deploy", + "All ExApps on this daemon will be removed" : "Semua ExApp pada daemon ini akan dihapus", + "All ExApps installed on this daemon will be removed" : "Semua ExApp yang diinstal pada daemon ini akan dihapus", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Daemon Deploy \"manual-install\" tidak dapat ditetapkan sebagai default", + "Failed to save admin options. Check the logs" : "Gagal menyimpan opsi admin. Periksa log", + "Deploy daemon config details" : "Detail konfigurasi daemon deploy", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon instalasi manual biasanya digunakan untuk pengembangan. Daemon ini tidak dapat ditetapkan sebagai daemon default.", + "Deploy config" : "Konfigurasi deploy", + "Verify connection" : "Verifikasi koneksi", "No Deploy daemons configured" : "Tidak ada Deploy daemon yang dikonfigurasi", "Register a custom one or setup from available templates" : "Daftarkan yang kustom atau siapkan dari template yang tersedia", + "Register Daemon" : "Daftarkan Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI akan mencoba menginstal ExApp kerangka kecil untuk memverifikasi bahwa Daemon dikonfigurasi dengan benar dan langkah-langkah deployment berhasil.", + "The following Deploy test checks must be passed to succeed:" : "Pemeriksaan uji Deploy berikut harus lolos agar berhasil:", + "More info" : "Info lebih lanjut", + "Remove test ExApp" : "Hapus ExApp uji", + "Start Deploy test" : "Mulai uji Deploy", + "Stop Deploy test" : "Hentikan uji Deploy", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp akan dibatalkan pendaftarannya dan kontainernya dihapus saat \"Hentikan uji deploy\"", + "Hostname to access ExApps" : "Nama host untuk mengakses ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nama host atau path untuk mengakses daemon Docker (misalnya nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon dengan nama ini sudah ada", + "Password must be at least 12 characters long" : "Kata sandi harus terdiri dari minimal 12 karakter", + "With https enabled network is set to host" : "Dengan https diaktifkan, jaringan disetel ke host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Perubahan akan diterapkan hanya untuk ExApp yang baru diinstal. Untuk ExApp yang sudah ada, kontainer Docker harus dibuat ulang.", + "URL should start with http:// or https://" : "URL harus diawali dengan http:// atau https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Untuk daemon HTTPS, URL Nextcloud harus HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Semua perangkat GPU yang tersedia di host daemon akan diminta untuk diaktifkan pada kontainer ExApp oleh Docker.", + "Edit Deploy Daemon" : "Edit Daemon Deploy", + "Register Deploy Daemon" : "Daftarkan Daemon Deploy", + "Select daemon configuration template" : "Pilih templat konfigurasi daemon", + "Unique Deploy Daemon Name" : "Nama Daemon Deploy Unik", + "Select daemon deploy method" : "Pilih metode deploy daemon", + "Set daemon as default" : "Tetapkan daemon sebagai default", + "Set as default daemon" : "Tetapkan sebagai daemon default", + "Enable https" : "Aktifkan https", + "Show deploy config" : "Tampilkan konfigurasi deploy", + "Hide deploy config" : "Sembunyikan konfigurasi deploy", + "Network" : "Jaringan", + "Docker network name" : "Nama jaringan Docker", + "Additional option" : "Opsi tambahan", + "by {author}\n{license}" : "oleh {author}\n{license}", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", @@ -60,13 +287,21 @@ OC.L10N.register( "Updates" : "Pembaruan", "Featured apps" : "Aplikasi yang difiturkan", "Supported apps" : "Aplikasi yang didukung", + "manual-install apps cannot be updated" : "aplikasi manual-install tidak dapat diperbarui", + "{progress}% Deploying" : "{progress}% Sedang dideploy", + "{progress}% Initializing" : "{progress}% Sedang diinisialisasi", + "Healthchecking" : "Pemeriksaan kesehatan", "Deploy and Enable" : "Deploy dan Aktifkan", "Enable" : "Aktifkan", "Disable" : "Nonaktifkan", "Allow untested app" : "Izinkan aplikasi yang belum diuji", + "Default Deploy daemon is not accessible. Please verify configuration" : "Daemon Deploy default tidak dapat diakses. Silakan verifikasi konfigurasi", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Aplikasi akan diunduh dari App Store dan dideploy pada Daemon Deploy default", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikasi ini tidak ditandai sebagai versi Nextcloud Anda yang kompatibel. Jika Anda tetap ingin melanjutkannya, Anda tetap dapat memasang aplikasi. Catatan bahwa aplikasinya mungkin tidak akan berjalan seperti yang diharapkan.", + "Your ExApps" : "ExApp Anda", "An error occurred during the request. Unable to proceed." : "Terjadi kesalahan selama permintaan. Tidak dapat melanjutkan.", "The app has been enabled but needs to be updated." : "Aplikasi telah diaktifkan tetapi perlu diperbarui.", - "Error: This app cannot be enabled because it makes the server unstable" : "Kesalahan: Aplikasi ini tidak dapat diaktifkan karena membuat server tidak stabil" + "Error: This app cannot be enabled because it makes the server unstable" : "Kesalahan: Aplikasi ini tidak dapat diaktifkan karena membuat server tidak stabil", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Tingkatkan Nextcloud Anda dengan AppAPI dan aplikasi yang dirancang khusus.\n\n\nAppAPI adalah proyek dalam ekosistem Nextcloud yang dirancang untuk merampingkan dan meningkatkan proses\npengembangan, deployment, dan pengelolaan aplikasi.\n\nAppAPI memperkenalkan metodologi baru yang memungkinkan pengembang membuat\naplikasi menggunakan berbagai bahasa pemrograman, tidak terbatas pada PHP, yang secara tradisional digunakan dalam pengembangan Nextcloud.\n\n\n### Daftar aplikasi yang memerlukan AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Jika Anda ingin mengembangkan aplikasi, kami dengan senang hati akan membantu dan mendampingi Anda._\n\n### Dukungan\n\nKami menghargai dukungan apa pun untuk proyek ini:\n\n- ⭐ Beri bintang pekerjaan kami di GitHub\n- ❗ Buat Issue atau permintaan fitur\n- 💁 Selesaikan Issue dan buat Pull Request\n- 🧑‍💻 Kembangkan aplikasi Anda sendiri menggunakan AppAPI\n\nKami sungguh antusias dengan masa depan proyek AppAPI dan potensinya untuk mentransformasi\ncara aplikasi dikembangkan dan dialami dalam Nextcloud.\n\nSaat kami memulai perjalanan ini, kami mengundang Anda dengan hangat - para pengembang, pemikir, kreator, dan visioner -\nuntuk bergabung bersama kami dalam membentuk lanskap aplikasi yang lebih serbaguna, stabil, dan aman.\n\n*Wawasan, saran, dan kontribusi Anda sangat berharga bagi kami.*" }, "nplurals=1; plural=0;"); diff --git a/l10n/id.json b/l10n/id.json index 260b0a73..68812bbb 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -1,23 +1,206 @@ { "translations": { + "Daemon config not found" : "Konfigurasi daemon tidak ditemukan", + "Error starting install of ExApp" : "Kesalahan saat memulai instalasi ExApp", + "ExApp failed to register, check the NC logs" : "ExApp gagal terdaftar, periksa log NC", + "ExApp not found, failed to get status" : "ExApp tidak ditemukan, gagal mendapatkan status", + "Error adding Docker registry" : "Kesalahan saat menambahkan registry Docker", + "Error removing Docker registry" : "Kesalahan saat menghapus registry Docker", + "This app is not installed from the AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aplikasi ini tidak diinstal dari AppStore. Tidak ada informasi tambahan tersedia. Hanya tindakan aktifkan/nonaktifkan dan hapus yang diizinkan.", + "Could not perform installation of ExApp" : "Tidak dapat melakukan instalasi ExApp", + "Failed to enable ExApp" : "Gagal mengaktifkan ExApp", + "Failed to disable ExApp" : "Gagal menonaktifkan ExApp", + "Could not update ExApp" : "Tidak dapat memperbarui ExApp", + "Error starting update of ExApp" : "Kesalahan saat memulai pembaruan ExApp", + "Could not perform update of ExApp" : "Tidak dapat melakukan pembaruan ExApp", + "ExApp not found, failed to get logs" : "ExApp tidak ditemukan, gagal mendapatkan log", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "Gagal mendapatkan log kontainer. Catatan: Mengunduh kontainer Docker hanya berfungsi untuk kontainer dengan driver logging json-file atau journald. Kesalahan: %s", + "ExApp not found, failed to get deploy options" : "ExApp tidak ditemukan, gagal mendapatkan opsi deployment", + "AppAPI authentication failed" : "Autentikasi AppAPI gagal", + "AppAPI ExApp notifier" : "Notifier ExApp AppAPI", + "AppAPI" : "AppAPI", + "AI Integration Team" : "Tim Integrasi AI", + "ExApps Settings" : "Pengaturan ExApps", + "AppAPI deploy daemon" : "Daemon deploy AppAPI", + "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon deploy default AppAPI belum disetel. Silakan daftarkan daemon deploy default di pengaturan untuk menginstal Aplikasi Eksternal (Ex-App).", + "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon deploy default AppAPI \"%s\" tidak dapat diakses. Silakan periksa konfigurasi daemon.", + "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon deploy default AppAPI tidak menggunakan HaRP. Harap pertimbangkan untuk beralih ke HaRP untuk kinerja yang lebih baik.", + "AppAPI HaRP version check" : "Pemeriksaan versi HaRP AppAPI", + "Could not retrieve HaRP version from daemon \"%s\"" : "Tidak dapat mengambil versi HaRP dari daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Versi HaRP untuk daemon \"%s\" adalah \"%s\", yang terlalu lama. Versi minimum yang diperlukan adalah \"%s\". Silakan perbarui daemon ke versi terbaru.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Gagal memeriksa versi HaRP untuk daemon \"%s\": %s", + "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Apa itu AppAPI?\n\nAppAPI adalah komponen Nextcloud yang mengaktifkan **Aplikasi Eksternal (ExApps)**.\nExApps adalah aplikasi yang backend-nya berjalan **di luar** proses PHP Nextcloud (biasanya sebagai kontainer Docker), sambil tetap terintegrasi dengan pengguna, izin, dan UI web Nextcloud.\n\n### Apakah saya membutuhkannya?\n\nTidak. Jika Anda tidak berencana menginstal Aplikasi Eksternal, Anda dapat menonaktifkan AppAPI.\n\nJika AppAPI diaktifkan tanpa Daemon Deploy yang dikonfigurasi, Nextcloud akan menampilkan pesan informasi:\n\n> \"Daemon deploy default AppAPI belum disetel …\"\n\nPeringatan itu berarti: \"Aplikasi Eksternal belum dikonfigurasi\".\n\nAnda dapat menonaktifkan AppAPI, atau mengonfigurasi Daemon Deploy (lihat di bawah).\n\n### Bagaimana Aplikasi Eksternal dideploy?\n\n**Daemon Deploy** adalah layanan yang dihubungi Nextcloud untuk menginstal, memulai, menghentikan, dan menjangkau ExApps.\n\nDua opsi tersedia:\n\n- **HaRP** (direkomendasikan untuk Nextcloud 32+) — reverse proxy berperforma tinggi dengan tunneling FRP\n- **Docker Socket Proxy** (lama) — dijadwalkan untuk dihapus di Nextcloud 35\n\nLihat [dokumentasi admin](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) untuk instruksi penyiapan.", + "External Apps management" : "Pengelolaan Aplikasi Eksternal", + "Admin options saved" : "Opsi admin disimpan", + "Failed to save admin options" : "Gagal menyimpan opsi admin", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud through the use of docker containers. Allowing for greater programming language choice and allowing computationally expensive tasks to be offloaded to a different server." : "Proyek AppAPI adalah inisiatif menarik yang bertujuan merevolusi cara aplikasi dikembangkan untuk Nextcloud melalui penggunaan kontainer Docker. Ini memungkinkan pilihan bahasa pemrograman yang lebih luas dan memungkinkan tugas yang memerlukan komputasi mahal dialihkan ke server lain.", + "Deploy daemons" : "Daemon deploy", + "A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Deploy daemons. A deploy daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon deploy. Daemon deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Default deploy daemon is not accessible. Please check its configuration" : "Daemon deploy default tidak dapat diakses. Silakan periksa konfigurasinya", + "ExApp init timeout (minutes)" : "Timeout inisialisasi ExApp (menit)", + "ExApp initialization process timeout after which AppAPI will mark it as failed" : "Batas waktu proses inisialisasi ExApp yang setelahnya AppAPI akan menandainya sebagai gagal", + "ExApp init timeout" : "Timeout inisialisasi ExApp", + "ExApp container restart policy" : "Kebijakan restart kontainer ExApp", + "Choose the container restart policy, e.g. 'always' to ensure ExApps will be running after a daemon server reboot" : "Pilih kebijakan restart kontainer, misalnya 'always' untuk memastikan ExApps akan berjalan setelah reboot server daemon", + "This settings changes are effective only for newly created containers" : "Perubahan pengaturan ini hanya berlaku untuk kontainer yang baru dibuat", + "Deploy daemon deletion confirmation" : "Konfirmasi penghapusan daemon deploy", + "Are you sure you want delete the \"{name}\" deploy daemon?" : "Apakah Anda yakin ingin menghapus daemon deploy \"{name}\"?", + "Remove all ExApps installed on this daemon" : "Hapus semua ExApp yang diinstal pada daemon ini", "Cancel" : "Batal", "Delete" : "Hapus", + "A \"manual-install\" deploy daemon cannot be set as default" : "Daemon deploy \"manual-install\" tidak dapat ditetapkan sebagai default", + "Failed to save admin settings. Check the logs" : "Gagal menyimpan pengaturan admin. Periksa log", + "Password confirmation failed" : "Konfirmasi kata sandi gagal", "Default" : "Default", + "Set as default" : "Tetapkan sebagai default", + "Test deploy" : "Uji deploy", + "Docker registries" : "Registry Docker", "Edit" : "Sunting", + "Daemon connection successful" : "Koneksi daemon berhasil", + "Failed to connect to the daemon. Check the logs" : "Gagal terhubung ke daemon. Periksa log", + "Failed to check connection to the daemon. Check the logs" : "Gagal memeriksa koneksi ke daemon. Periksa log", "Unlimited" : "Tak terbatas", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU"], + "Deploy daemon configuration" : "Konfigurasi daemon deploy", + "Deploy daemon configuration details" : "Detail konfigurasi daemon deploy", + "Deploy daemon" : "Daemon deploy", + "Default daemon. ExApps will be installed on it" : "Daemon default. ExApp akan diinstal di daemon ini", + "The \"Manual install\" daemon is usually used for development. It cannot be set as the default daemon." : "Daemon \"Manual install\" biasanya digunakan untuk pengembangan. Daemon ini tidak dapat ditetapkan sebagai daemon default.", + "ExApps installed" : "ExApp terinstal", "Name" : "Nama", + "Protocol" : "Protokol", "Host" : "Host", + "ExApp direct communication (FRP disabled)" : "Komunikasi langsung ExApp (FRP dinonaktifkan)", "Deploy options" : "Opsi deploy", + "Docker network" : "Jaringan Docker", + "Nextcloud URL" : "URL Nextcloud", + "HaProxy password" : "Kata sandi HaProxy", + "GPU support" : "Dukungan GPU", + "Computation device" : "Perangkat komputasi", + "Memory limit" : "Batas memori", + "CPU limit" : "Batas CPU", + "Additional options" : "Opsi tambahan", + "Check connection" : "Periksa koneksi", "Registered Deploy daemons list" : "Daftar Deploy daemon yang terdaftar", + "No Deploy daemons are registered" : "Tidak ada daemon deploy yang terdaftar", + "Register a custom one or configure one from the available templates" : "Daftarkan daemon kustom atau konfigurasikan salah satu dari templat yang tersedia", + "Register daemon" : "Daftarkan daemon", + "Register ExApp in Nextcloud" : "Daftarkan ExApp di Nextcloud", + "Check if the ExApp is registered in Nextcloud before deployment" : "Periksa apakah ExApp terdaftar di Nextcloud sebelum deployment", + "Image pull" : "Penarikan image", + "Check if the image is successfully pulled" : "Periksa apakah image berhasil ditarik", + "Container started" : "Kontainer dimulai", + "Check if the image successfully pulled and container is created and started" : "Periksa apakah image berhasil ditarik dan kontainer dibuat serta dimulai", + "Heartbeat" : "Heartbeat", + "Check for the heartbeat is finished and healthy" : "Pemeriksaan heartbeat selesai dan dalam kondisi sehat", + "Init step" : "Langkah init", + "Wait for initialization step to finish" : "Tunggu hingga langkah inisialisasi selesai", "Enabled" : "Diaktifkan", + "Check if ExApp successfully handled the enabled event and registered all stuff properly" : "Periksa apakah ExApp berhasil menangani event enabled dan mendaftarkan semua hal dengan benar", + "Only if ExApp container is preset" : "Hanya jika kontainer ExApp telah tersedia", + "Deploy test passed successfully!" : "Uji deploy berhasil!", + "Deploy test failed at step \"{step}\"" : "Uji deploy gagal pada langkah \"{step}\"", + "AppAPI will try to install small skeleton ExApp to check that the daemon is configured correctly and the deployment steps are successful." : "AppAPI akan mencoba menginstal ExApp kerangka kecil untuk memeriksa bahwa daemon dikonfigurasi dengan benar dan langkah-langkah deployment berhasil.", + "The following deploy test checks must succeed:" : "Pemeriksaan uji deploy berikut harus berhasil:", + "More information" : "Informasi lebih lanjut", + "Download ExApp logs" : "Unduh log ExApp", + "Remove the test ExApp" : "Hapus ExApp uji", + "Start the deploy test" : "Mulai uji deploy", + "Stop the deploy test" : "Hentikan uji deploy", + "The test ExApp is unregistered and its container is removed on \"Stop the deploy test\"" : "ExApp uji akan dibatalkan pendaftarannya dan kontainernya dihapus saat \"Hentikan uji deploy\"", + "Please enter a registry domain" : "Silakan masukkan domain registry", + "\"From\" cannot be \"local\"" : "\"From\" tidak boleh \"local\"", + "This registry mapping already exists" : "Pemetaan registry ini sudah ada", + "\"From\" and \"To\" cannot be the same" : "\"From\" dan \"To\" tidak boleh sama", + "Docker registry mapping added" : "Pemetaan registry Docker ditambahkan", + "Error adding Docker registry mapping" : "Kesalahan saat menambahkan pemetaan registry Docker", + "Docker registry mapping removed" : "Pemetaan registry Docker dihapus", + "Error removing Docker registry mapping" : "Kesalahan saat menghapus pemetaan registry Docker", + "Override Docker registries" : "Timpa registry Docker", + "Configure Docker registry override mappings for the selected daemon." : "Konfigurasikan pemetaan penimpaan registry Docker untuk daemon yang dipilih.", + "The matching source registry in ExApp info.xml will be overwritten during deployment (image pull step)." : "Registry sumber yang cocok dalam info.xml ExApp akan ditimpa selama deployment (langkah penarikan image).", + "This is useful if you want to use a custom Docker registry, for example, to use a private Docker registry, or to use a different Docker registry for testing." : "Ini berguna jika Anda ingin menggunakan registry Docker kustom, misalnya untuk menggunakan registry Docker privat, atau menggunakan registry Docker yang berbeda untuk pengujian.", + "Image pull will be skipped" : "Penarikan image akan dilewati", "Remove" : "Hapus", + "No custom Docker registries are registered" : "Tidak ada registry Docker kustom yang terdaftar", + "Add registry override mapping" : "Tambahkan pemetaan penimpaan registry", "From" : "Dari", + "registry URL (e.g. ghcr.io)" : "URL registry (misalnya ghcr.io)", "To" : "Hingga", + "registry URL (e.g. docker.io)" : "URL registry (misalnya docker.io)", "Add" : "Tambah", + "Hostname used by Nextcloud to access the ExApps" : "Nama host yang digunakan oleh Nextcloud untuk mengakses ExApps", + "The hostname (and port) at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server, e.g. {host}." : "Nama host (dan port) tempat {name} tersedia. Ini tidak harus berupa host publik, cukup host yang dapat diakses oleh server Nextcloud, misalnya {host}.", + "The hostname (and port) or path at which the {name} is available. This does not need to be a public host, just a host accessible by the Nextcloud server. It can also be the path to the Docker socket. (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nama host (dan port) atau path tempat {name} tersedia. Ini tidak harus berupa host publik, cukup host yang dapat diakses oleh server Nextcloud. Ini juga dapat berupa path ke soket Docker. (misalnya nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "A daemon with this name already exists" : "Daemon dengan nama ini sudah ada", + "The secret key for the HaRP container communication (HP_SHARED_KEY)." : "Kunci rahasia untuk komunikasi kontainer HaRP (HP_SHARED_KEY).", + "AppAPI Docker Socket Proxy authentication password" : "Kata sandi autentikasi AppAPI Docker Socket Proxy", + "Changes are only effective for newly installed ExApps. For existing ExApps, the Docker containers should be recreated to apply the new settings values." : "Perubahan hanya berlaku untuk ExApp yang baru diinstal. Untuk ExApp yang sudah ada, kontainer Docker harus dibuat ulang agar nilai pengaturan baru diterapkan.", + "The Docker network that the deployed ExApps will use." : "Jaringan Docker yang akan digunakan ExApp yang dideploy.", + "The URL should start with http:// or https://" : "URL harus diawali dengan http:// atau https://", + "For a HTTPS daemon, the Nextcloud URL should be HTTPS" : "Untuk daemon HTTPS, URL Nextcloud harus HTTPS", + "All available GPU devices on the daemon host need to be enabled in ExApp containers by Docker." : "Semua perangkat GPU yang tersedia di host daemon perlu diaktifkan pada kontainer ExApp oleh Docker.", + "DaemonConfig successfully registered" : "DaemonConfig berhasil didaftarkan", + "Failed to register DaemonConfig. Check the logs" : "Gagal mendaftarkan DaemonConfig. Periksa log", + "DaemonConfig successfully updated" : "DaemonConfig berhasil diperbarui", + "Failed to update DaemonConfig. Check the logs" : "Gagal memperbarui DaemonConfig. Periksa log", + "Failed to connect to Daemon. Check the logs" : "Gagal terhubung ke Daemon. Periksa log", + "Failed to check connection to Daemon. Check the logs" : "Gagal memeriksa koneksi ke Daemon. Periksa log", + "Edit the deploy daemon" : "Edit daemon deploy", + "Register a new deploy daemon" : "Daftarkan daemon deploy baru", + "Daemon configuration template" : "Templat konfigurasi daemon", + "Select a daemon configuration template" : "Pilih templat konfigurasi daemon", + "Daemon registration form" : "Formulir pendaftaran daemon", + "Unique deploy daemon name" : "Nama daemon deploy yang unik", + "Unique deploy Daemon name" : "Nama Daemon deploy yang unik", "Display name" : "Nama tampilan", + "Deployment method" : "Metode deployment", + "Select the daemon deploy method" : "Pilih metode deploy daemon", + "HaRP host" : "Host HaRP", + "Daemon host" : "Host daemon", + "HaRP shared key" : "Kunci bersama HaRP", + "The password must be at least 12 characters long" : "Kata sandi harus terdiri dari minimal 12 karakter", + "Set this daemon as the default one" : "Tetapkan daemon ini sebagai daemon default", + "Set as the default daemon" : "Tetapkan sebagai daemon default", + "Enable HTTPS" : "Aktifkan HTTPS", + "Show deploy options" : "Tampilkan opsi deploy", + "Hide deploy options" : "Sembunyikan opsi deploy", + "Enable HaRP" : "Aktifkan HaRP", + "FRP server address" : "Alamat server FRP", + "The address (host:port) of the FRP server that should be reachable by the ExApp in the network defined in the 'Docker network' section." : "Alamat (host:port) server FRP yang harus dapat dijangkau oleh ExApp di jaringan yang ditentukan pada bagian 'Jaringan Docker'.", + "Docker socket proxy port" : "Port proxy soket Docker", + "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port di HaRP tempat proxy soket Docker terhubung. Port ini harus diekspos, tetapi untuk yang bawaan, tidak perlu diekspos atau diubah.", + "Disable FRP" : "Nonaktifkan FRP", + "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Penanda hanya untuk penyiapan lanjutan. Menonaktifkan tunnel FRP antara ExApps dan HaRP.", + "Docker network for ex-app deployment must be defined" : "Jaringan Docker untuk deployment ex-app harus didefinisikan", "Compute device" : "Perangkat komputasi", + "Memory limit (in MiB)" : "Batas memori (dalam MiB)", + "Must be a positive integer" : "Harus berupa bilangan bulat positif", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "Jumlah maksimum memori yang dapat digunakan kontainer ExApp dalam mebibyte", + "CPU limit as decimal value" : "Batas CPU sebagai nilai desimal", + "Must be a positive number" : "Harus berupa angka positif", + "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "Jumlah maksimum core CPU yang dapat digunakan kontainer ExApp (misalnya 0.5 untuk setengah core, 2 untuk dua core)", + "Add additional option" : "Tambahkan opsi tambahan", + "Option key (unique)" : "Kunci opsi (unik)", + "Option key (unique, e.g. my_key)" : "Kunci opsi (unik, misalnya my_key)", + "Option key is required" : "Kunci opsi wajib diisi", + "Option value" : "Nilai opsi", + "Option value is required" : "Nilai opsi wajib diisi", "Confirm" : "Konfirmasi", "Save" : "Simpan", "Register" : "Daftar", + "External Apps" : "Aplikasi Eksternal", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n### Bundled App\n\n**Starting with Nextcloud 30.0.1, this application is included in the default Nextcloud package.**\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Tingkatkan Nextcloud Anda dengan AppAPI dan aplikasi yang dirancang khusus.\n\n\nAppAPI adalah proyek dalam ekosistem Nextcloud yang dirancang untuk merampingkan dan meningkatkan proses\npengembangan, deployment, dan pengelolaan aplikasi.\n\nAppAPI memperkenalkan metodologi baru yang memungkinkan pengembang membuat\naplikasi menggunakan berbagai bahasa pemrograman, tidak terbatas pada PHP, yang secara tradisional digunakan dalam pengembangan Nextcloud.\n\n### Aplikasi Bundel\n\n**Mulai Nextcloud 30.0.1, aplikasi ini disertakan dalam paket Nextcloud default.**\n\n### Dukungan\n\nKami menghargai dukungan apa pun untuk proyek ini:\n\n- ⭐ Beri bintang pekerjaan kami di GitHub\n- ❗ Buat Issue atau permintaan fitur\n- 💁 Selesaikan Issue dan buat Pull Request\n- 🧑‍💻 Kembangkan aplikasi Anda sendiri menggunakan AppAPI\n\nKami sungguh antusias dengan masa depan proyek AppAPI dan potensinya untuk mentransformasi\ncara aplikasi dikembangkan dan dialami dalam Nextcloud.\n\nSaat kami memulai perjalanan ini, kami mengundang Anda dengan hangat - para pengembang, pemikir, kreator, dan visioner -\nuntuk bergabung bersama kami dalam membentuk lanskap aplikasi yang lebih serbaguna, stabil, dan aman.\n\n*Wawasan, saran, dan kontribusi Anda sangat berharga bagi kami.*", + "The AppAPI Project is an exciting initiative that aims to revolutionize the way applications are developed for Nextcloud." : "Proyek AppAPI adalah inisiatif menarik yang bertujuan merevolusi cara aplikasi dikembangkan untuk Nextcloud.", + "Deploy Daemons" : "Daemon Deploy", + "Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon Deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Deploy Daemons. Deploy Daemon (DaemonConfig) is an ExApps orchestration daemon." : "Daemon Deploy. Daemon Deploy (DaemonConfig) adalah daemon orkestrasi ExApps.", + "Default Deploy Daemon is not accessible. Please verify its configuration" : "Daemon Deploy default tidak dapat diakses. Silakan verifikasi konfigurasinya", + "Specify container restart policy, e.g. 'always' to ensure ExApp running after daemon server reboot" : "Tentukan kebijakan restart kontainer, misalnya 'always' untuk memastikan ExApp berjalan setelah reboot server daemon", + "This settings changes are reflected only for newly created containers" : "Perubahan pengaturan ini hanya tercermin untuk kontainer yang baru dibuat", "{license}-licensed" : "{license}-dilisensikan", "Update to {version}" : "Perbarui ke {version}", "Delete data on remove" : "Hapus data saat penghapusan", @@ -30,11 +213,13 @@ "User documentation" : "Dokumentasi pengguna", "Admin documentation" : "Dokumentasi admin", "Developer documentation" : "Dokumentasi pengembang", + "This app is not registered in AppStore. No extra information available. Only enable/disable and remove actions are allowed." : "Aplikasi ini tidak terdaftar di AppStore. Tidak ada informasi tambahan tersedia. Hanya tindakan aktifkan/nonaktifkan dan hapus yang diizinkan.", "This app is supported via your current Nextcloud subscription." : "Aplikasi ini didukung dengan langganan Nextcloud Anda saat ini.", "Supported" : "Didukung", "Featured apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi unggulan dikembangkan oleh dan dalam komunitas. Mereka menawarkan fungsionalitas sentral dan mereka siap dipakai untuk produksi.", "Featured" : "Unggulan", "Update to {update}" : "Perbarui ke {update}", + "All ExApps are up-to-date." : "Semua ExApp sudah yang terbaru.", "Default Deploy daemon is not accessible" : "Deploy daemon default tidak dapat diakses", "Icon" : "Ikon", "Version" : "Versi", @@ -42,13 +227,55 @@ "Level" : "Level", "Actions" : "Tindakan", "Results from other categories" : "Hasil dari kategori lainnya", + "No apps found" : "Tidak ada aplikasi ditemukan", + "_%n ExApp has an update available_::_%n apps have an update available_" : ["%n aplikasi memiliki pembaruan tersedia"], "_Update_::_Update all_" : ["Perbarui semua"], "Deploy Daemon" : "Deploy Daemon", "Type" : "tipe", "Display Name" : "Nama Tampilan", "GPUs support" : "Dukungan GPU", + "Are you sure you want delete Deploy Daemon" : "Apakah Anda yakin ingin menghapus Daemon Deploy", + "All ExApps on this daemon will be removed" : "Semua ExApp pada daemon ini akan dihapus", + "All ExApps installed on this daemon will be removed" : "Semua ExApp yang diinstal pada daemon ini akan dihapus", + "\"manual-install\" Deploy Daemon cannot be set as default" : "Daemon Deploy \"manual-install\" tidak dapat ditetapkan sebagai default", + "Failed to save admin options. Check the logs" : "Gagal menyimpan opsi admin. Periksa log", + "Deploy daemon config details" : "Detail konfigurasi daemon deploy", + "Manual install daemon usually used for development. It cannot be set as default daemon." : "Daemon instalasi manual biasanya digunakan untuk pengembangan. Daemon ini tidak dapat ditetapkan sebagai daemon default.", + "Deploy config" : "Konfigurasi deploy", + "Verify connection" : "Verifikasi koneksi", "No Deploy daemons configured" : "Tidak ada Deploy daemon yang dikonfigurasi", "Register a custom one or setup from available templates" : "Daftarkan yang kustom atau siapkan dari template yang tersedia", + "Register Daemon" : "Daftarkan Daemon", + "AppAPI will try to install small skeleton ExApp to verify Daemon configured correctly and deployment steps are passing." : "AppAPI akan mencoba menginstal ExApp kerangka kecil untuk memverifikasi bahwa Daemon dikonfigurasi dengan benar dan langkah-langkah deployment berhasil.", + "The following Deploy test checks must be passed to succeed:" : "Pemeriksaan uji Deploy berikut harus lolos agar berhasil:", + "More info" : "Info lebih lanjut", + "Remove test ExApp" : "Hapus ExApp uji", + "Start Deploy test" : "Mulai uji Deploy", + "Stop Deploy test" : "Hentikan uji Deploy", + "ExApp is unregistered and container is removed on \"Stop deploy test\"" : "ExApp akan dibatalkan pendaftarannya dan kontainernya dihapus saat \"Hentikan uji deploy\"", + "Hostname to access ExApps" : "Nama host untuk mengakses ExApps", + "Hostname or path to access Docker daemon (e.g. nextcloud-appapi-dsp:2375, /var/run/docker.sock)" : "Nama host atau path untuk mengakses daemon Docker (misalnya nextcloud-appapi-dsp:2375, /var/run/docker.sock)", + "Daemon with this name already exists" : "Daemon dengan nama ini sudah ada", + "Password must be at least 12 characters long" : "Kata sandi harus terdiri dari minimal 12 karakter", + "With https enabled network is set to host" : "Dengan https diaktifkan, jaringan disetel ke host", + "Changes would be applied only for newly installed ExApps. For existing ExApps, Docker containers should be recreated." : "Perubahan akan diterapkan hanya untuk ExApp yang baru diinstal. Untuk ExApp yang sudah ada, kontainer Docker harus dibuat ulang.", + "URL should start with http:// or https://" : "URL harus diawali dengan http:// atau https://", + "For HTTPS daemon, Nextcloud URL should be HTTPS" : "Untuk daemon HTTPS, URL Nextcloud harus HTTPS", + "All available GPU devices on daemon host will be requested to be enabled in ExApp containers by Docker." : "Semua perangkat GPU yang tersedia di host daemon akan diminta untuk diaktifkan pada kontainer ExApp oleh Docker.", + "Edit Deploy Daemon" : "Edit Daemon Deploy", + "Register Deploy Daemon" : "Daftarkan Daemon Deploy", + "Select daemon configuration template" : "Pilih templat konfigurasi daemon", + "Unique Deploy Daemon Name" : "Nama Daemon Deploy Unik", + "Select daemon deploy method" : "Pilih metode deploy daemon", + "Set daemon as default" : "Tetapkan daemon sebagai default", + "Set as default daemon" : "Tetapkan sebagai daemon default", + "Enable https" : "Aktifkan https", + "Show deploy config" : "Tampilkan konfigurasi deploy", + "Hide deploy config" : "Sembunyikan konfigurasi deploy", + "Network" : "Jaringan", + "Docker network name" : "Nama jaringan Docker", + "Additional option" : "Opsi tambahan", + "by {author}\n{license}" : "oleh {author}\n{license}", "Your apps" : "Aplikasi Anda", "Documentation" : "Dokumentasi", "Details" : "Detail", @@ -58,13 +285,21 @@ "Updates" : "Pembaruan", "Featured apps" : "Aplikasi yang difiturkan", "Supported apps" : "Aplikasi yang didukung", + "manual-install apps cannot be updated" : "aplikasi manual-install tidak dapat diperbarui", + "{progress}% Deploying" : "{progress}% Sedang dideploy", + "{progress}% Initializing" : "{progress}% Sedang diinisialisasi", + "Healthchecking" : "Pemeriksaan kesehatan", "Deploy and Enable" : "Deploy dan Aktifkan", "Enable" : "Aktifkan", "Disable" : "Nonaktifkan", "Allow untested app" : "Izinkan aplikasi yang belum diuji", + "Default Deploy daemon is not accessible. Please verify configuration" : "Daemon Deploy default tidak dapat diakses. Silakan verifikasi konfigurasi", + "The app will be downloaded from the App Store and deployed on default Deploy Daemon" : "Aplikasi akan diunduh dari App Store dan dideploy pada Daemon Deploy default", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Aplikasi ini tidak ditandai sebagai versi Nextcloud Anda yang kompatibel. Jika Anda tetap ingin melanjutkannya, Anda tetap dapat memasang aplikasi. Catatan bahwa aplikasinya mungkin tidak akan berjalan seperti yang diharapkan.", + "Your ExApps" : "ExApp Anda", "An error occurred during the request. Unable to proceed." : "Terjadi kesalahan selama permintaan. Tidak dapat melanjutkan.", "The app has been enabled but needs to be updated." : "Aplikasi telah diaktifkan tetapi perlu diperbarui.", - "Error: This app cannot be enabled because it makes the server unstable" : "Kesalahan: Aplikasi ini tidak dapat diaktifkan karena membuat server tidak stabil" + "Error: This app cannot be enabled because it makes the server unstable" : "Kesalahan: Aplikasi ini tidak dapat diaktifkan karena membuat server tidak stabil", + "### Boost your Nextcloud with AppAPI and its specially designed applications.\n\n\nThe AppAPI is a project within the Nextcloud ecosystem designed to streamline and enhance the process of\napplication development, deployment, and management.\n\nIt introduces a new methodology that allows developers to create\napplications using a variety of programming languages, not limited to PHP, which was traditionally used in Nextcloud development.\n\n\n### List of applications that require AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_If you wish to develop an application, we will gladly help and assist you._\n\n### Support\n\nWe appreciate any support for this project:\n\n- ⭐ Star our work on GitHub\n- ❗ Create an Issue or feature request\n- 💁 Resolve an Issue and create a Pull Request\n- 🧑‍💻 Develop your own application using AppAPI\n\nWe are genuinely excited about the future of the AppAPI project and its potential to transform\nthe way applications are developed and experienced within Nextcloud.\n\nAs we embark on this journey, we warmly invite you - developers, thinkers, creators, and visionaries -\nto join us in shaping a more versatile, stable, and secure app landscape.\n\n*Your insights, suggestions, and contributions are invaluable to us.*" : "### Tingkatkan Nextcloud Anda dengan AppAPI dan aplikasi yang dirancang khusus.\n\n\nAppAPI adalah proyek dalam ekosistem Nextcloud yang dirancang untuk merampingkan dan meningkatkan proses\npengembangan, deployment, dan pengelolaan aplikasi.\n\nAppAPI memperkenalkan metodologi baru yang memungkinkan pengembang membuat\naplikasi menggunakan berbagai bahasa pemrograman, tidak terbatas pada PHP, yang secara tradisional digunakan dalam pengembangan Nextcloud.\n\n\n### Daftar aplikasi yang memerlukan AppAPI:\n\n- [talk_bot_ai_example](https://github.com/cloud-py-api/talk_bot_ai_example)\n- [upscaler_example](https://github.com/cloud-py-api/upscaler_example)\n- [image_to_text_example](https://github.com/cloud-py-api/file_to_text_example)\n- [ai_image_generator_bot](https://github.com/cloud-py-api/ai_image_generator_bot)\n- [SummarAI](https://github.com/nextcloud/sumupbot)\n\n_Jika Anda ingin mengembangkan aplikasi, kami dengan senang hati akan membantu dan mendampingi Anda._\n\n### Dukungan\n\nKami menghargai dukungan apa pun untuk proyek ini:\n\n- ⭐ Beri bintang pekerjaan kami di GitHub\n- ❗ Buat Issue atau permintaan fitur\n- 💁 Selesaikan Issue dan buat Pull Request\n- 🧑‍💻 Kembangkan aplikasi Anda sendiri menggunakan AppAPI\n\nKami sungguh antusias dengan masa depan proyek AppAPI dan potensinya untuk mentransformasi\ncara aplikasi dikembangkan dan dialami dalam Nextcloud.\n\nSaat kami memulai perjalanan ini, kami mengundang Anda dengan hangat - para pengembang, pemikir, kreator, dan visioner -\nuntuk bergabung bersama kami dalam membentuk lanskap aplikasi yang lebih serbaguna, stabil, dan aman.\n\n*Wawasan, saran, dan kontribusi Anda sangat berharga bagi kami.*" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/it.js b/l10n/it.js index c90c7622..f46b33c8 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -11,7 +11,6 @@ OC.L10N.register( "Deploy options" : "Opzioni di distribuzione", "Nextcloud URL" : "URL Nextcloud", "Memory limit" : "Limite di memoria", - "Registered Deploy daemons list" : "Elenco dei Deploy Daemons registrati", "Enabled" : "Abilitata", "More information" : "Altre informazioni", "Remove" : "Rimuovi", @@ -52,7 +51,6 @@ OC.L10N.register( "Type" : "Tipo", "Display Name" : "Nome visualizzato", "GPUs support" : "Supporto GPUs", - "No Deploy daemons configured" : "Nessun Deploy Deamons configurato", "Register a custom one or setup from available templates" : "Registra uno personalizzato o configuralo dai modelli disponibili", "Network" : "Rete", "by {author}\n{license}" : "di {author}\n{license}", @@ -71,7 +69,7 @@ OC.L10N.register( "Allow untested app" : "Consenti applicazione non verificata", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Questa applicazione non è marcata come compatibile con la tua versione di Nextcloud. Se continui sarai ancora in grado di installare l'applicazione. Nota che l'applicazione potrebbe non funzionare come previsto.", "An error occurred during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare.", - "The app has been enabled but needs to be updated." : "L'app è stata abilitata ma deve essere aggiornata.", + "The app has been enabled but needs to be updated." : "L'applicazione è stata abilitata, ma deve essere aggiornata.", "Error: This app cannot be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/it.json b/l10n/it.json index 9fade498..57550cc0 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -9,7 +9,6 @@ "Deploy options" : "Opzioni di distribuzione", "Nextcloud URL" : "URL Nextcloud", "Memory limit" : "Limite di memoria", - "Registered Deploy daemons list" : "Elenco dei Deploy Daemons registrati", "Enabled" : "Abilitata", "More information" : "Altre informazioni", "Remove" : "Rimuovi", @@ -50,7 +49,6 @@ "Type" : "Tipo", "Display Name" : "Nome visualizzato", "GPUs support" : "Supporto GPUs", - "No Deploy daemons configured" : "Nessun Deploy Deamons configurato", "Register a custom one or setup from available templates" : "Registra uno personalizzato o configuralo dai modelli disponibili", "Network" : "Rete", "by {author}\n{license}" : "di {author}\n{license}", @@ -69,7 +67,7 @@ "Allow untested app" : "Consenti applicazione non verificata", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Questa applicazione non è marcata come compatibile con la tua versione di Nextcloud. Se continui sarai ancora in grado di installare l'applicazione. Nota che l'applicazione potrebbe non funzionare come previsto.", "An error occurred during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare.", - "The app has been enabled but needs to be updated." : "L'app è stata abilitata ma deve essere aggiornata.", + "The app has been enabled but needs to be updated." : "L'applicazione è stata abilitata, ma deve essere aggiornata.", "Error: This app cannot be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/uz.js b/l10n/uz.js index 7bdda785..03b7ac4e 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -26,6 +26,7 @@ OC.L10N.register( "Actions" : "Actions", "Type" : "Turi", "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", + "Network" : "Tarmoq", "Documentation" : "Hujjatlar", "Details" : "Details", "Enable" : "Enable", diff --git a/l10n/uz.json b/l10n/uz.json index 40cd7d18..dc3c37a9 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -24,6 +24,7 @@ "Actions" : "Actions", "Type" : "Turi", "URL should start with http:// or https://" : "URL http:// yoki https:// bilan boshlanishi kerak", + "Network" : "Tarmoq", "Documentation" : "Hujjatlar", "Details" : "Details", "Enable" : "Enable", From ffa24a9212b4b39babb28f31d914defd22dbcfab Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 25 Jan 2026 00:28:44 +0000 Subject: [PATCH 238/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/en_GB.js | 1 + l10n/en_GB.json | 1 + l10n/it.js | 3 +++ l10n/it.json | 3 +++ l10n/zh_HK.js | 1 + l10n/zh_HK.json | 1 + 10 files changed, 14 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index ffa854ef..91c2e117 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -176,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "FRP is always disabled for the All-in-One setup." : "FRP ist für das All-in-One-Setup immer deaktiviert.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", diff --git a/l10n/de.json b/l10n/de.json index b939dc9b..eb4ff730 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -174,6 +174,7 @@ "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "FRP is always disabled for the All-in-One setup." : "FRP ist für das All-in-One-Setup immer deaktiviert.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index ed6450c1..21f74ed1 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -176,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "FRP is always disabled for the All-in-One setup." : "FRP ist für das All-in-One-Setup immer deaktiviert.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index cdcf9af5..2972b307 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -174,6 +174,7 @@ "Docker socket proxy port" : "Docker-Socket-Proxy-Port", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Der Port in HaRP, mit dem der Docker-Socket-Proxy eine Verbindung herstellt. Dieser sollte angegeben werden, für den integrierten Port ist dies jedoch nicht erforderlich.", "Disable FRP" : "FRP deaktivieren", + "FRP is always disabled for the All-in-One setup." : "FRP ist für das All-in-One-Setup immer deaktiviert.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag nur für erweiterte Setups. Deaktiviert den FRP-Tunnel zwischen ExApps und HaRP.", "Docker network for ex-app deployment must be defined" : "Docker-Netzwerk für Ex-App-Bereitstellung muss definiert werden", "Compute device" : "Compute-Gerät", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 5028c844..34294374 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -176,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", + "FRP is always disabled for the All-in-One setup." : "FRP is always disabled for the All-in-One setup.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Compute device" : "Compute device", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 734c8abd..29a703bf 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -174,6 +174,7 @@ "Docker socket proxy port" : "Docker socket proxy port", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed.", "Disable FRP" : "Disable FRP", + "FRP is always disabled for the All-in-One setup." : "FRP is always disabled for the All-in-One setup.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP.", "Docker network for ex-app deployment must be defined" : "Docker network for ex-app deployment must be defined", "Compute device" : "Compute device", diff --git a/l10n/it.js b/l10n/it.js index f46b33c8..065bb69b 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -6,6 +6,9 @@ OC.L10N.register( "Default" : "Predefinito", "Edit" : "Modifica", "Unlimited" : "Illimitata", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPU","{n} CPU"], "Name" : "Nome", "Host" : "Host", "Deploy options" : "Opzioni di distribuzione", diff --git a/l10n/it.json b/l10n/it.json index 57550cc0..e58f9533 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -4,6 +4,9 @@ "Default" : "Predefinito", "Edit" : "Modifica", "Unlimited" : "Illimitata", + "{size} GiB" : "{size} GiB", + "{size} MiB" : "{size} MiB", + "_{n} CPU_::_{n} CPUs_" : ["{n} CPU","{n} CPU","{n} CPU"], "Name" : "Nome", "Host" : "Host", "Deploy options" : "Opzioni di distribuzione", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 38a27662..7639fbee 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -176,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", + "FRP is always disabled for the All-in-One setup." : "對於一體化設置,FRP一律處於停用狀態。", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 4ef3d8af..63c63ab2 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -174,6 +174,7 @@ "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "禁用 FRP", + "FRP is always disabled for the All-in-One setup." : "對於一體化設置,FRP一律處於停用狀態。", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", From 5014e5f35597c57798f2519f4a7e7ae07f46c0c4 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 26 Jan 2026 00:49:31 +0000 Subject: [PATCH 239/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 5 +++++ l10n/cs.json | 5 +++++ l10n/ga.js | 1 + l10n/ga.json | 1 + l10n/ug.js | 4 ++-- l10n/ug.json | 4 ++-- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index e5d08bec..0ff72184 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -26,6 +26,10 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", + "AppAPI HaRP version check" : "AppAPI HaRP kontrola verze", + "Could not retrieve HaRP version from daemon \"%s\"" : "Nezdařilo se získat HaRP verzi od démona \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP verze pro démona \"%s\" je \"%s\", která je příliš zastaralá. Minimální vyžadovaná verze je \"%s\". Aktualizujte démona na novější verzi.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Selhalo ověření HaRP verze pro démona \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", @@ -171,6 +175,7 @@ OC.L10N.register( "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", + "FRP is always disabled for the All-in-One setup." : "FRP je vždy vypnuto pro All-in-One setup.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", diff --git a/l10n/cs.json b/l10n/cs.json index 06cd0c89..dd83d380 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -24,6 +24,10 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Výchozí AppAPI proces služby nasazování není nastavený. Zaregistrujte takový v nastavení pro instalaci Externích aplikací (Ex-Apps).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", + "AppAPI HaRP version check" : "AppAPI HaRP kontrola verze", + "Could not retrieve HaRP version from daemon \"%s\"" : "Nezdařilo se získat HaRP verzi od démona \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP verze pro démona \"%s\" je \"%s\", která je příliš zastaralá. Minimální vyžadovaná verze je \"%s\". Aktualizujte démona na novější verzi.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Selhalo ověření HaRP verze pro démona \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", @@ -169,6 +173,7 @@ "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", + "FRP is always disabled for the All-in-One setup." : "FRP je vždy vypnuto pro All-in-One setup.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", diff --git a/l10n/ga.js b/l10n/ga.js index 37b811f6..edc622ab 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -176,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An port i HaRP lena nascann seachfhreastalaí soicéad Docker. Ba chóir é seo a nochtadh ach i gcás an cheann ionsuite, ní gá é a nochtadh ná a athrú.", "Disable FRP" : "Díchumasaigh FRP", + "FRP is always disabled for the All-in-One setup." : "Bíonn FRP díchumasaithe i gcónaí don socrú Uile-i-n-Aon.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach le haghaidh socruithe ardleibhéil amháin. Díchumasaíonn sé an tollán FRP idir ExApps agus HaRP.", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Compute device" : "Gléas ríomh", diff --git a/l10n/ga.json b/l10n/ga.json index 3388e447..d292ef04 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -174,6 +174,7 @@ "Docker socket proxy port" : "Port seachfhreastalaí soicéad docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "An port i HaRP lena nascann seachfhreastalaí soicéad Docker. Ba chóir é seo a nochtadh ach i gcás an cheann ionsuite, ní gá é a nochtadh ná a athrú.", "Disable FRP" : "Díchumasaigh FRP", + "FRP is always disabled for the All-in-One setup." : "Bíonn FRP díchumasaithe i gcónaí don socrú Uile-i-n-Aon.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Bratach le haghaidh socruithe ardleibhéil amháin. Díchumasaíonn sé an tollán FRP idir ExApps agus HaRP.", "Docker network for ex-app deployment must be defined" : "Ní mór líonra dugaí le haghaidh imscaradh ex-app a shainiú", "Compute device" : "Gléas ríomh", diff --git a/l10n/ug.js b/l10n/ug.js index b77ba4eb..f9c882ad 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -15,7 +15,7 @@ OC.L10N.register( "Error starting update of ExApp" : "ExApp نى يېڭىلاشنى باشلاشتا خاتالىق", "Could not perform update of ExApp" : "ExApp نىڭ يېڭىلىنىشىنى قىلالمىدى", "ExApp not found, failed to get logs" : "ExApp تېپىلمىدى ، خاتىرە ئالالمىدى", - "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق:% s", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق: %s", "ExApp not found, failed to get deploy options" : "ExApp تېپىلمىدى، ئورۇنلاشتۇرۇش تاللانمىلىرىنى ئېلىش مەغلۇب بولدى", "AppAPI authentication failed" : "AppAPI دەلىللەش مەغلۇپ بولدى", "AppAPI ExApp notifier" : "AppAPI ExApp ئۇقتۇرۇشى", @@ -176,7 +176,7 @@ OC.L10N.register( "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Memory limit (in MiB)" : "ئىچكى ساقلىغۇچ چەكلىمىسى (MiB بىلەن)", "Must be a positive integer" : "مۇسبەت پۈتۈن سان بولۇشى كېرەك", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp قاچىسىنىڭ ئىشلىتەلەيدىغان ئەڭ چوڭ ئىچكى ساقلىغۇچ مىقدارى (مېبىبايت)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp قاچىسىنىڭ ئىشلىتەلەيدىغان ئەڭ چوڭ ئىچكى ساقلىغۇچ مىقدارى مېبىبايت", "CPU limit as decimal value" : "CPU چەكلىمىسى ئونلۇق سان سۈپىتىدە", "Must be a positive number" : "مۇسبەت سان بولۇشى كېرەك", "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp قاچىسى ئىشلىتەلەيدىغان ئەڭ كۆپ CPU يادروسى سانى (مەسىلەن، يېرىم يادرو ئۈچۈن 0.5، ئىككى يادرو ئۈچۈن 2)", diff --git a/l10n/ug.json b/l10n/ug.json index 60a6f9d1..1e5f3b4d 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -13,7 +13,7 @@ "Error starting update of ExApp" : "ExApp نى يېڭىلاشنى باشلاشتا خاتالىق", "Could not perform update of ExApp" : "ExApp نىڭ يېڭىلىنىشىنى قىلالمىدى", "ExApp not found, failed to get logs" : "ExApp تېپىلمىدى ، خاتىرە ئالالمىدى", - "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق:% s", + "Failed to get container logs. Note: Downloading Docker container works only for containers with the json-file or journald logging driver. Error: %s" : "قاچا خاتىرىسىنى ئالالمىدى. ئەسكەرتىش: Docker قاچىسىنى چۈشۈرۈش پەقەت json ھۆججىتى ياكى ژۇرنال خاتىرىلەش قوزغاتقۇسى بار قاچىلارغا ئىشلىتىلىدۇ. خاتالىق: %s", "ExApp not found, failed to get deploy options" : "ExApp تېپىلمىدى، ئورۇنلاشتۇرۇش تاللانمىلىرىنى ئېلىش مەغلۇب بولدى", "AppAPI authentication failed" : "AppAPI دەلىللەش مەغلۇپ بولدى", "AppAPI ExApp notifier" : "AppAPI ExApp ئۇقتۇرۇشى", @@ -174,7 +174,7 @@ "Compute device" : "ھېسابلاش ئۈسكۈنىسى", "Memory limit (in MiB)" : "ئىچكى ساقلىغۇچ چەكلىمىسى (MiB بىلەن)", "Must be a positive integer" : "مۇسبەت پۈتۈن سان بولۇشى كېرەك", - "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp قاچىسىنىڭ ئىشلىتەلەيدىغان ئەڭ چوڭ ئىچكى ساقلىغۇچ مىقدارى (مېبىبايت)", + "Maximum amount of memory that the ExApp container can use in mebibytes" : "ExApp قاچىسىنىڭ ئىشلىتەلەيدىغان ئەڭ چوڭ ئىچكى ساقلىغۇچ مىقدارى مېبىبايت", "CPU limit as decimal value" : "CPU چەكلىمىسى ئونلۇق سان سۈپىتىدە", "Must be a positive number" : "مۇسبەت سان بولۇشى كېرەك", "Maximum number of CPU cores that the ExApp container can use (e.g. 0.5 for half a core, 2 for two cores)" : "ExApp قاچىسى ئىشلىتەلەيدىغان ئەڭ كۆپ CPU يادروسى سانى (مەسىلەن، يېرىم يادرو ئۈچۈن 0.5، ئىككى يادرو ئۈچۈن 2)", From b893c2bab868b7c3a6b99e825b3c8ae3a9dbe7ef Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 27 Jan 2026 00:28:48 +0000 Subject: [PATCH 240/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + l10n/zh_TW.js | 1 + l10n/zh_TW.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 51094c18..45372cf9 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -175,6 +175,7 @@ OC.L10N.register( "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta no HaRP à qual o proxy do soquete Docker se conecta. Ela deve ser exposta, mas, no caso da porta embutida, não é necessário expô-la ou alterá-la.", "Disable FRP" : "Desativar FRP", + "FRP is always disabled for the All-in-One setup." : "O FRP está sempre desativado para a configuração All-in-One.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador apenas para configurações avançadas. Desativa o túnel FRP entre o ExApps e o HaRP.", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Compute device" : "Dispositivo de computação", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 6543db20..f66efc2f 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -173,6 +173,7 @@ "Docker socket proxy port" : "Porta de proxy de soquete de Docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "A porta no HaRP à qual o proxy do soquete Docker se conecta. Ela deve ser exposta, mas, no caso da porta embutida, não é necessário expô-la ou alterá-la.", "Disable FRP" : "Desativar FRP", + "FRP is always disabled for the All-in-One setup." : "O FRP está sempre desativado para a configuração All-in-One.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Sinalizador apenas para configurações avançadas. Desativa o túnel FRP entre o ExApps e o HaRP.", "Docker network for ex-app deployment must be defined" : "A rede de Docker para implantação de ex-app deve ser definida", "Compute device" : "Dispositivo de computação", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index ecab8d8d..8f814d4e 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -176,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", + "FRP is always disabled for the All-in-One setup." : "在 All-in-One 組態中,FRP 一律處於停用狀態。", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 82893640..200e2a45 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -174,6 +174,7 @@ "Docker socket proxy port" : "Docker socket 代理伺服器連接埠", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Docker socket 代理伺服器連線到的 HaRP 連接埠。這應該是公開的,但對於內建的版本,則不需要公開或變更。", "Disable FRP" : "停用 FRP", + "FRP is always disabled for the All-in-One setup." : "在 All-in-One 組態中,FRP 一律處於停用狀態。", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "僅適用於進階設定的旗標。停用 ExApps 與 HaRP 間的 FRP 通道。", "Docker network for ex-app deployment must be defined" : "必須定義用於外部應用程式部署的 docker 網路", "Compute device" : "計算裝置", From c18e9c2f4c232b5cd07597b44172eba1157b1f5a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 28 Jan 2026 00:28:53 +0000 Subject: [PATCH 241/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/sv.js | 3 +++ l10n/sv.json | 3 +++ l10n/sw.js | 6 ++++++ l10n/sw.json | 6 ++++++ 4 files changed, 18 insertions(+) diff --git a/l10n/sv.js b/l10n/sv.js index fc4fbe64..7b524c00 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -24,6 +24,7 @@ OC.L10N.register( "External Apps" : "Externa appar", "{license}-licensed" : "{license}-licensierad", "Update to {version}" : "Uppdatera till {version}", + "Delete data on remove" : "Radera data vid borttagning", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda:", @@ -47,6 +48,7 @@ OC.L10N.register( "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", + "GPUs support" : "GPU stöd", "Network" : "Nätverk", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dina appar", @@ -63,6 +65,7 @@ OC.L10N.register( "Allow untested app" : "Tillåt otestad app", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Den här appen är inte markerad som kompatibel med din Nextcloud-version. Om du fortsätter kan du fortfarande installera appen. Observera att appen kanske inte fungerar som förväntat.", "An error occurred during the request. Unable to proceed." : "Ett fel uppstod under begäran. Det gick inte att fortsätta.", + "The app has been enabled but needs to be updated." : "Appen har aktiverats men behöver uppdateras.", "Error: This app cannot be enabled because it makes the server unstable" : "Fel: Denna appen kan inte aktiveras eftersom den gör servern instabil" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sv.json b/l10n/sv.json index 05a9ed2e..24fd98e6 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -22,6 +22,7 @@ "External Apps" : "Externa appar", "{license}-licensed" : "{license}-licensierad", "Update to {version}" : "Uppdatera till {version}", + "Delete data on remove" : "Radera data vid borttagning", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen lägsta Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda:", @@ -45,6 +46,7 @@ "_Update_::_Update all_" : ["Uppdatera","Uppdatera alla"], "Type" : "Typ", "Display Name" : "Visningsnamn", + "GPUs support" : "GPU stöd", "Network" : "Nätverk", "by {author}\n{license}" : "av {author}\n{license}", "Your apps" : "Dina appar", @@ -61,6 +63,7 @@ "Allow untested app" : "Tillåt otestad app", "This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected." : "Den här appen är inte markerad som kompatibel med din Nextcloud-version. Om du fortsätter kan du fortfarande installera appen. Observera att appen kanske inte fungerar som förväntat.", "An error occurred during the request. Unable to proceed." : "Ett fel uppstod under begäran. Det gick inte att fortsätta.", + "The app has been enabled but needs to be updated." : "Appen har aktiverats men behöver uppdateras.", "Error: This app cannot be enabled because it makes the server unstable" : "Fel: Denna appen kan inte aktiveras eftersom den gör servern instabil" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sw.js b/l10n/sw.js index afec6826..4e5abaec 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -26,7 +26,12 @@ OC.L10N.register( "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuhamia HaRP kwa utendakazi bora.", + "AppAPI HaRP version check" : "Angalia toleo la AppAPI HaRP", + "Could not retrieve HaRP version from daemon \"%s\"" : " Haikuweza kupata toleo la HaRP kutoka kwa daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Toleo la HaRP la daemon \"%s\" ni \"%s\", ambalo ni nzee sana. Toleo la chini linalohitajika ni \"%s\". Tafadhali sasisha daemon hadi toleo jipya zaidi.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Imeshindwa kuangalia toleo la HaRP kwa daemon \"%s\": %s", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### AppAPI ni nini?\n\nAppAPI ni kijenzi cha Nextcloud kinachowasha **Programu za Nje (ExApps)**.\nExApps ni programu ambazo mazingira yake ya nyuma huendesha **nje** mchakato wa Nextcloud PHP (kawaida kama chombo cha Docker), huku zikiendelea kuunganishwa na watumiaji wako wa Nextcloud, ruhusa na UI ya wavuti.\n\n### Je, ninaihitaji?\n\nHapana. Ikiwa huna mpango wa kusakinisha Programu za Nje, unaweza kuzima AppAPI.\n\nIkiwa AppAPI imewashwa bila Deploy Daemon iliyosanidiwa, Nextcloud itaonyesha ujumbe wa maelezo:\n\n> \"Daemon chaguomsingi ya kusambaza ya AppAPI haijawekwa ...\"\n\nOnyo hilo linamaanisha: \"Programu za Nje bado hazijasanidiwa\".\n\nUnaweza kuzima AppAPI, au kusanidi Deploy Daemon (tazama hapa chini).\n\n### Programu za Nje hutumwa vipi?\n\n**Tumia Daemon** ni huduma Nextcloud inazungumza nayo ili kusakinisha, kuanzisha, kusimamisha na kufikia ExApps.\n\nChaguzi mbili zinapatikana:\n\n- **HaRP** (imependekezwa kwa Nextcloud 32+) - seva mbadala ya utendakazi wa hali ya juu iliyo na tunnel ya FRP\n- **Proksi ya Soketi ya Docker** (urithi) - imeratibiwa kuondolewa katika Nextcloud 35\n\nTazama [hati za msimamizi](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) kwa maagizo ya usanidi.", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", @@ -171,6 +176,7 @@ OC.L10N.register( "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango katika HaRP ambayo proksi ya soketi ya Docker inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", + "FRP is always disabled for the All-in-One setup." : "FRP imezimwa kila wakati kwa usanidi wa All-in-One.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", "Compute device" : "Kuhesabu kifaa", diff --git a/l10n/sw.json b/l10n/sw.json index 4c2e9187..3ef43dcb 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -24,7 +24,12 @@ "AppAPI default deploy daemon is not set. Please register a default deploy daemon in the settings to install External Apps (Ex-Apps)." : "Daemon chaguo-msingi ya AppAPI haijawekwa. Tafadhali sajili daemoni chaguo-msingi ya kutumia katika mipangilio ili kusakinisha Programu za Nje (Programu za Zamani).", "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Daemon chaguo-msingi ya programu ya kusambaza \"%s\" haipatikani. Tafadhali angalia usanidi wa daemoni.", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Daemon chaguo-msingi ya AppAPI haitumii HaRP. Tafadhali zingatia kuhamia HaRP kwa utendakazi bora.", + "AppAPI HaRP version check" : "Angalia toleo la AppAPI HaRP", + "Could not retrieve HaRP version from daemon \"%s\"" : " Haikuweza kupata toleo la HaRP kutoka kwa daemon \"%s\"", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "Toleo la HaRP la daemon \"%s\" ni \"%s\", ambalo ni nzee sana. Toleo la chini linalohitajika ni \"%s\". Tafadhali sasisha daemon hadi toleo jipya zaidi.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Imeshindwa kuangalia toleo la HaRP kwa daemon \"%s\": %s", "Nextcloud AppAPI" : "AppAPI ya Nextcloud ", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### AppAPI ni nini?\n\nAppAPI ni kijenzi cha Nextcloud kinachowasha **Programu za Nje (ExApps)**.\nExApps ni programu ambazo mazingira yake ya nyuma huendesha **nje** mchakato wa Nextcloud PHP (kawaida kama chombo cha Docker), huku zikiendelea kuunganishwa na watumiaji wako wa Nextcloud, ruhusa na UI ya wavuti.\n\n### Je, ninaihitaji?\n\nHapana. Ikiwa huna mpango wa kusakinisha Programu za Nje, unaweza kuzima AppAPI.\n\nIkiwa AppAPI imewashwa bila Deploy Daemon iliyosanidiwa, Nextcloud itaonyesha ujumbe wa maelezo:\n\n> \"Daemon chaguomsingi ya kusambaza ya AppAPI haijawekwa ...\"\n\nOnyo hilo linamaanisha: \"Programu za Nje bado hazijasanidiwa\".\n\nUnaweza kuzima AppAPI, au kusanidi Deploy Daemon (tazama hapa chini).\n\n### Programu za Nje hutumwa vipi?\n\n**Tumia Daemon** ni huduma Nextcloud inazungumza nayo ili kusakinisha, kuanzisha, kusimamisha na kufikia ExApps.\n\nChaguzi mbili zinapatikana:\n\n- **HaRP** (imependekezwa kwa Nextcloud 32+) - seva mbadala ya utendakazi wa hali ya juu iliyo na tunnel ya FRP\n- **Proksi ya Soketi ya Docker** (urithi) - imeratibiwa kuondolewa katika Nextcloud 35\n\nTazama [hati za msimamizi](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) kwa maagizo ya usanidi.", "External Apps management" : "Usimamizi wa Programu za Nje", "Admin options saved" : "Chaguo za msimamizi zimehifadhiwa", "Failed to save admin options" : "Imeshindwa kuhifadhi chaguo za msimamizi", @@ -169,6 +174,7 @@ "Docker socket proxy port" : "Mlango wa wakala wa tundu la Docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Lango katika HaRP ambayo proksi ya soketi ya Docker inaunganishwa nayo. Hii inapaswa kufichuliwa lakini kwa iliyojengwa ndani, haihitajiki kufichuliwa au kubadilishwa.", "Disable FRP" : "Zima FRP", + "FRP is always disabled for the All-in-One setup." : "FRP imezimwa kila wakati kwa usanidi wa All-in-One.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Ripoti kwa usanidi wa hali ya juu pekee. Huzima njia ya FRP kati ya ExApps na HaRP.", "Docker network for ex-app deployment must be defined" : "Mtandao wa Docker kwa utumaji wa programu ya zamani lazima ufafanuliwe", "Compute device" : "Kuhesabu kifaa", From 5b615de4fc1ed9b462681e601e9beb538d0dd26a Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 30 Jan 2026 00:28:44 +0000 Subject: [PATCH 242/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/cs.js | 8 ++++---- l10n/cs.json | 8 ++++---- l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/l10n/cs.js b/l10n/cs.js index 0ff72184..71e6bfd6 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -27,9 +27,9 @@ OC.L10N.register( "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "AppAPI HaRP version check" : "AppAPI HaRP kontrola verze", - "Could not retrieve HaRP version from daemon \"%s\"" : "Nezdařilo se získat HaRP verzi od démona \"%s\"", - "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP verze pro démona \"%s\" je \"%s\", která je příliš zastaralá. Minimální vyžadovaná verze je \"%s\". Aktualizujte démona na novější verzi.", - "Failed to check HaRP version for daemon \"%s\": %s" : "Selhalo ověření HaRP verze pro démona \"%s\": %s", + "Could not retrieve HaRP version from daemon \"%s\"" : "Nezdařilo se získat HaRP verzi od procesu služby „%s“", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP verze pro proces služby „%s“ je „%s“, která je příliš zastaralá. Minimální vyžadovaná verze je „%s“. Aktualizujte proces služby na novější verzi.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Nezdařilo se ověření HaRP verze pro proces služby „%s“: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", @@ -175,7 +175,7 @@ OC.L10N.register( "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", - "FRP is always disabled for the All-in-One setup." : "FRP je vždy vypnuto pro All-in-One setup.", + "FRP is always disabled for the All-in-One setup." : "FRP v případě uspořádání vše v jednom vždy vypnuté.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", diff --git a/l10n/cs.json b/l10n/cs.json index dd83d380..47c5bf32 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -25,9 +25,9 @@ "AppAPI default deploy daemon \"%s\" is not accessible. Please check the daemon configuration." : "Výchozí AppAPI proces služby nasazování „%s“ není dostupný. Ověřte její nastavení", "The AppAPI default deploy daemon is not using HaRP. Please consider switching to HaRP for better performance." : "Výchozí AppAPI proces služby nasazování nepoužívá HaRP. Zvažte přechod na něj a vylepšete tak výkon.", "AppAPI HaRP version check" : "AppAPI HaRP kontrola verze", - "Could not retrieve HaRP version from daemon \"%s\"" : "Nezdařilo se získat HaRP verzi od démona \"%s\"", - "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP verze pro démona \"%s\" je \"%s\", která je příliš zastaralá. Minimální vyžadovaná verze je \"%s\". Aktualizujte démona na novější verzi.", - "Failed to check HaRP version for daemon \"%s\": %s" : "Selhalo ověření HaRP verze pro démona \"%s\": %s", + "Could not retrieve HaRP version from daemon \"%s\"" : "Nezdařilo se získat HaRP verzi od procesu služby „%s“", + "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "HaRP verze pro proces služby „%s“ je „%s“, která je příliš zastaralá. Minimální vyžadovaná verze je „%s“. Aktualizujte proces služby na novější verzi.", + "Failed to check HaRP version for daemon \"%s\": %s" : "Nezdařilo se ověření HaRP verze pro proces služby „%s“: %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", "External Apps management" : "Správa externích aplikací", "Admin options saved" : "Předvolby pro správu uloženy", @@ -173,7 +173,7 @@ "Docker socket proxy port" : "Port Docker proxy soketu", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "Port v HaRP, ke kterému se proxy Docker soketu připojuje. Toto by mělo být exponováno, ale pro vestavěné, není vyžadováno, aby bylo exponováno nebo změněno.", "Disable FRP" : "Vypnout FRP", - "FRP is always disabled for the All-in-One setup." : "FRP je vždy vypnuto pro All-in-One setup.", + "FRP is always disabled for the All-in-One setup." : "FRP v případě uspořádání vše v jednom vždy vypnuté.", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Příznak pouze pro pokročilá uspořádání. Vypíná FRP tunel mezi ExApplikacem a HaRP.", "Docker network for ex-app deployment must be defined" : "Je třeba definovat Docker síť pro nasazování ex-app", "Compute device" : "Výpočetní zařízení", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 45372cf9..0cd2e1a1 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -31,6 +31,7 @@ OC.L10N.register( "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### O que é AppAPI?\n\nAppAPI é o componente do Nextcloud que habilita **Aplicativos Externos (ExApps)**.\nExApps são aplicativos cujo back-end é executado **fora** do processo PHP do Nextcloud (geralmente como um contêiner Docker), mas ainda assim se integra aos usuários, permissões e interface web do Nextcloud.\n\n### Eu preciso disso?\n\nNão. Se você não planeja instalar aplicativos externos, pode desativar o AppAPI.\n\nSe o AppAPI estiver ativado sem um Deploy Daemon configurado, o Nextcloud exibirá a mensagem informativa:\n\n> \"O deploy daemon padrão de AppAPI não está definido …\"\n\nEsse aviso significa: \"Os aplicativos externos ainda não estão configurados\".\n\nVocê pode desativar o AppAPI ou configurar um Deploy Daemon (veja abaixo).\n\n### Como os aplicativos externos são implantados?\n\nUm **Deploy Daemon** é o serviço com o qual o Nextcloud se comunica para instalar, iniciar, parar e acessar os ExApps.\n\nDuas opções estão disponíveis:\n\n- **HaRP** (recomendado para Nextcloud 32+) — um proxy reverso de alto desempenho com tunelamento FRP\n- **Docker Socket Proxy** (legado) — com remoção prevista no Nextcloud 35\n\nConsulte a [documentação de administração](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) para obter instruções de configuração.", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index f66efc2f..bec3766d 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -29,6 +29,7 @@ "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versão do HaRP para o daemon \"%s\" é \"%s\", que é muito antiga. A versão mínima necessária é \"%s\". Atualize o daemon para a versão mais recente.", "Failed to check HaRP version for daemon \"%s\": %s" : "Falha ao verificar a versão do HaRP para o daemon \"%s\": %s", "Nextcloud AppAPI" : "Nextcloud AppAPI", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### O que é AppAPI?\n\nAppAPI é o componente do Nextcloud que habilita **Aplicativos Externos (ExApps)**.\nExApps são aplicativos cujo back-end é executado **fora** do processo PHP do Nextcloud (geralmente como um contêiner Docker), mas ainda assim se integra aos usuários, permissões e interface web do Nextcloud.\n\n### Eu preciso disso?\n\nNão. Se você não planeja instalar aplicativos externos, pode desativar o AppAPI.\n\nSe o AppAPI estiver ativado sem um Deploy Daemon configurado, o Nextcloud exibirá a mensagem informativa:\n\n> \"O deploy daemon padrão de AppAPI não está definido …\"\n\nEsse aviso significa: \"Os aplicativos externos ainda não estão configurados\".\n\nVocê pode desativar o AppAPI ou configurar um Deploy Daemon (veja abaixo).\n\n### Como os aplicativos externos são implantados?\n\nUm **Deploy Daemon** é o serviço com o qual o Nextcloud se comunica para instalar, iniciar, parar e acessar os ExApps.\n\nDuas opções estão disponíveis:\n\n- **HaRP** (recomendado para Nextcloud 32+) — um proxy reverso de alto desempenho com tunelamento FRP\n- **Docker Socket Proxy** (legado) — com remoção prevista no Nextcloud 35\n\nConsulte a [documentação de administração](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) para obter instruções de configuração.", "External Apps management" : "Gerenciamento de Aplicativos Externos", "Admin options saved" : "Opções de administrador salvas", "Failed to save admin options" : "Falha ao salvar as opções do administrador", From 25659e62cfec2540daa044baa5287b4caf775c91 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 31 Jan 2026 00:28:43 +0000 Subject: [PATCH 243/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 1 + l10n/gl.json | 1 + l10n/hr.js | 1 + l10n/hr.json | 1 + 4 files changed, 4 insertions(+) diff --git a/l10n/gl.js b/l10n/gl.js index d34db40f..ecc9a082 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -175,6 +175,7 @@ OC.L10N.register( "Docker socket proxy port" : "Porto do proxy do conectador Docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", + "FRP is always disabled for the All-in-One setup." : "FRP está sempre desactivado para a configuración «Todo en un».", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Compute device" : "Dispositivo de computación", diff --git a/l10n/gl.json b/l10n/gl.json index 83b3cb51..8cef4a35 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -173,6 +173,7 @@ "Docker socket proxy port" : "Porto do proxy do conectador Docker", "The port in HaRP which the Docker socket proxy connects to. This should be exposed but for the in-built one, it is not required to be exposed or changed." : "O porto en HaRP ao que se conecta o proxy do conectador Docker. Este debe estar exposto, mais no caso do porto incorporado, non é necesario expoñelo nin cambialo.", "Disable FRP" : "Desactivar FRP", + "FRP is always disabled for the All-in-One setup." : "FRP está sempre desactivado para a configuración «Todo en un».", "Flag for advanced setups only. Disables the FRP tunnel between ExApps and HaRP." : "Indicador só para as configuracións avanzadas. Desactiva o túnel FRP entre ExApps e HaRP.", "Docker network for ex-app deployment must be defined" : "Debe definirse a rede Docker para a despregadura da ExApp", "Compute device" : "Dispositivo de computación", diff --git a/l10n/hr.js b/l10n/hr.js index fa811f12..1a7fc160 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -15,6 +15,7 @@ OC.L10N.register( "From" : "Od", "To" : "Do", "Add" : "Dodaj", + "Display name" : "Ime za prikaz", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", diff --git a/l10n/hr.json b/l10n/hr.json index 9ae4c628..48f7a11c 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -13,6 +13,7 @@ "From" : "Od", "To" : "Do", "Add" : "Dodaj", + "Display name" : "Ime za prikaz", "Confirm" : "Potvrdi", "Save" : "Spremi", "Register" : "Registriraj se", From 356c05276eae96ea0cf021d8854f082d114d3ced Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 2 Feb 2026 00:28:31 +0000 Subject: [PATCH 244/244] fix(l10n): Update translations from Transifex Signed-off-by: Nextcloud bot --- l10n/gl.js | 3 ++- l10n/gl.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/l10n/gl.js b/l10n/gl.js index ecc9a082..62104691 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -30,7 +30,8 @@ OC.L10N.register( "Could not retrieve HaRP version from daemon \"%s\"" : "Non foi posíbel recuperar a versión HaRP do servizo «%s»", "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versión de HaRP para o servizo «%s» é «%s», que é antiga de máis. A versión mínima requirida é «%s». Actualice o servizo á última versión.", "Failed to check HaRP version for daemon \"%s\": %s" : "Produciuse un fallo ao comprobar a versión de HaRP para o servizo «%s»: %s", - "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", + "Nextcloud AppAPI" : "AppAPI de Nextcloud", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Que é AppAPI?\n\nAppAPI é o compoñente de Nextcloud que permite **Aplicacións Externas (ExApps)**.\nAs ExApps son aplicacións cuxa infraestrutura funciona **fóra** do proceso PHP de Nextcloud (normalmente como un contedor Docker), mais que seguen a integrarse cos usuarios, permisos e interface web de Nextcloud.\n\n### Necesítoo?\n\nNon. Se non ten previsto instalar aplicacións externas, pode desactivar AppAPI.\n\nSe AppAPI está activada sen un servizo de despregadura configurado, Nextcloud amosará a mensaxe de información:\n\n«O servizo de despregadura predeterminado de AppAPI non está definido…»'\n\nEsta advertencia quere dicir: «As aplicacións externas aínda non están configuradas».\n\nPode desactivar AppAPI ou configurar un servizo de despregadura (ver embaixo).\n\n### Como se despregan as aplicacións externas?\n\nUn **servizo de despregadura** é o servizo co que Nextcloud se comunica para instalar, iniciar, deter e acceder a ExApps.\n\nHai dúas opcións dispoñíbeis:\n\n- **HaRP** (recomendado para Nextcloud 32+) — un proxy inverso de alto rendemento con túnel FRP\n- **Docker Socket Proxy** (herdado) — esta prevista a súa eliminación en Nextcloud 35\n\nConsulta a [documentación de administración](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) para obter instrucións de configuración.", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.", diff --git a/l10n/gl.json b/l10n/gl.json index 8cef4a35..cde07b0b 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -28,7 +28,8 @@ "Could not retrieve HaRP version from daemon \"%s\"" : "Non foi posíbel recuperar a versión HaRP do servizo «%s»", "HaRP version for daemon \"%s\" is \"%s\", which is too old. The minimum required version is \"%s\". Please update the daemon to the latest version." : "A versión de HaRP para o servizo «%s» é «%s», que é antiga de máis. A versión mínima requirida é «%s». Actualice o servizo á última versión.", "Failed to check HaRP version for daemon \"%s\": %s" : "Produciuse un fallo ao comprobar a versión de HaRP para o servizo «%s»: %s", - "Nextcloud AppAPI" : "AppAPI (API de ExApps) de Nextcloud", + "Nextcloud AppAPI" : "AppAPI de Nextcloud", + "### What is AppAPI?\n\nAppAPI is the Nextcloud component that enables **External Apps (ExApps)**.\nExApps are apps whose backend runs **outside** the Nextcloud PHP process (usually as a Docker container), while still integrating with your Nextcloud users, permissions and web UI.\n\n### Do I need it?\n\nNo. If you do not plan to install External Apps, you can disable AppAPI.\n\nIf AppAPI is enabled without a configured Deploy Daemon, Nextcloud will show the info message:\n\n> \"AppAPI default deploy daemon is not set …\"\n\nThat warning means: \"External Apps are not configured yet\".\n\nYou can either disable AppAPI, or configure a Deploy Daemon (see below).\n\n### How do External Apps get deployed?\n\nA **Deploy Daemon** is the service Nextcloud talks to in order to install, start, stop and reach ExApps.\n\nTwo options are available:\n\n- **HaRP** (recommended for Nextcloud 32+) — a high-performance reverse proxy with FRP tunneling\n- **Docker Socket Proxy** (legacy) — scheduled for removal in Nextcloud 35\n\nSee the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions." : "### Que é AppAPI?\n\nAppAPI é o compoñente de Nextcloud que permite **Aplicacións Externas (ExApps)**.\nAs ExApps son aplicacións cuxa infraestrutura funciona **fóra** do proceso PHP de Nextcloud (normalmente como un contedor Docker), mais que seguen a integrarse cos usuarios, permisos e interface web de Nextcloud.\n\n### Necesítoo?\n\nNon. Se non ten previsto instalar aplicacións externas, pode desactivar AppAPI.\n\nSe AppAPI está activada sen un servizo de despregadura configurado, Nextcloud amosará a mensaxe de información:\n\n«O servizo de despregadura predeterminado de AppAPI non está definido…»'\n\nEsta advertencia quere dicir: «As aplicacións externas aínda non están configuradas».\n\nPode desactivar AppAPI ou configurar un servizo de despregadura (ver embaixo).\n\n### Como se despregan as aplicacións externas?\n\nUn **servizo de despregadura** é o servizo co que Nextcloud se comunica para instalar, iniciar, deter e acceder a ExApps.\n\nHai dúas opcións dispoñíbeis:\n\n- **HaRP** (recomendado para Nextcloud 32+) — un proxy inverso de alto rendemento con túnel FRP\n- **Docker Socket Proxy** (herdado) — esta prevista a súa eliminación en Nextcloud 35\n\nConsulta a [documentación de administración](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) para obter instrucións de configuración.", "External Apps management" : "Xestión de aplicacións externas", "Admin options saved" : "Gardáronse as opcións de administración", "Failed to save admin options" : "Produciuse un fallo ao gardar as opcións de administración.",