Compare commits

..

6 Commits

Author SHA1 Message Date
Crowdin Bot
1d3cd6f7ee New Crowdin translations by GitHub Action 2026-05-04 04:30:42 +00:00
Dan Brown
3ddfa9b948 Meta: Updated security info and fixed some tests/links 2026-04-30 00:32:27 +01:00
Dan Brown
55317039ac Meta: Converted GitHub references in codebase to Codeberg 2026-04-28 09:30:48 +01:00
Dan Brown
24e6087ef8 Meta: Updated readme shields and fixed workflow value 2026-04-27 21:13:05 +01:00
Dan Brown
7c1d30bc8f Translations: Added crowdin workflow action 2026-04-27 20:56:05 +01:00
Dan Brown
c1610c4532 Meta: Migrated repo content to forgejo
Kept some GitHub templates with warnings about the migration.
Made some initial updates to readme for the migration.
2026-04-27 17:48:27 +01:00
152 changed files with 2079 additions and 102 deletions

View File

@@ -0,0 +1,2 @@
Please find our community rules on our website here:
https://www.bookstackapp.com/about/community-rules/

View File

@@ -0,0 +1,13 @@
blank_issues_enabled: false
contact_links:
- name: Community Forum Support
url: https://community.bookstackapp.com
about: Get support by talking with the BookStack team & community.
- name: Debugging & Common Issues
url: https://www.bookstackapp.com/docs/admin/debugging/
about: Find details on how to debug issues and view common issues with their resolutions.
- name: Official Support Plans
url: https://www.bookstackapp.com/support/
about: View our official support plans that offer assured support for business.

View File

@@ -33,7 +33,7 @@ body:
attributes: attributes:
label: Have you searched for an existing open/closed issue? label: Have you searched for an existing open/closed issue?
description: | description: |
To help us keep these issues under control, please ensure you have first [searched our issue list](https://github.com/BookStackApp/BookStack/issues?q=is%3Aissue) for any existing issues that cover the fundamental benefit/goal of your request. To help us keep these issues under control, please ensure you have first [searched our issue list](https://codeberg.org/bookstack/bookstack/issues) for any existing issues that cover the fundamental benefit/goal of your request.
options: options:
- label: I have searched for existing issues and none cover my fundamental request - label: I have searched for existing issues and none cover my fundamental request
required: true required: true

View File

@@ -15,11 +15,11 @@ body:
- type: checkboxes - type: checkboxes
id: searchissue id: searchissue
attributes: attributes:
label: Searched GitHub Issues label: Searched Existing Issues
description: | description: |
I have searched for the issue and potential resolutions within the [project's GitHub issue list](https://github.com/BookStackApp/BookStack/issues) I have searched for the issue and potential resolutions within the [project's issue list](https://codeberg.org/bookstack/bookstack/issues)
options: options:
- label: I have searched GitHub for the issue. - label: I have searched for the issue.
required: true required: true
- type: textarea - type: textarea
id: scenario id: scenario

View File

@@ -2,7 +2,7 @@
## Supported Versions ## Supported Versions
Only the [latest version](https://github.com/BookStackApp/BookStack/releases) of BookStack is supported. Only the [latest version](https://codeberg.org/bookstack/bookstack/releases) of BookStack is supported.
We generally don't support older versions of BookStack due to maintenance effort and We generally don't support older versions of BookStack due to maintenance effort and
since we aim to provide a fairly stable upgrade path for new versions. since we aim to provide a fairly stable upgrade path for new versions.
@@ -12,16 +12,14 @@ If you'd like to be notified of new potential security concerns you can [sign-up
## Reporting a Vulnerability ## Reporting a Vulnerability
If you've found an issue that likely has no impact to existing users (For example, in a development-only branch) If you've found an issue that likely has no impact to existing users (For example, an issue only in the development branch)
feel free to raise it via a standard GitHub bug report issue. feel free to raise it via a standard Codeberg bug report issue.
If the issue could have a security impact to BookStack instances, If the issue could have a security impact to BookStack instances,
please directly contact the lead maintainer [@ssddanbrown](https://github.com/ssddanbrown). please directly contact the lead maintainer via email Dan Brown using the [details found here](https://www.bookstackapp.com/links/contact/).
You will need to log in to be able to see the email address on the [GitHub profile page](https://github.com/ssddanbrown).
Alternatively you can send a DM via Mastodon to [@danb@fosstodon.org](https://fosstodon.org/@danb).
Please be patient while the vulnerability is being reviewed. Deploying the fix to address the vulnerability Please be patient while the vulnerability is being reviewed. Deploying the fix to address the vulnerability
can often take a little time due to the amount of preparation required, to ensure the vulnerability has can often take a little time due to the amount of preparation required, to ensure the vulnerability has
been covered, and to create the content required to adequately notify the user-base. been covered, and to create the content required to adequately notify the user-base.
Thank you for keeping BookStack instances safe! Thank you for keeping BookStack instances safe!

View File

@@ -0,0 +1,11 @@
## Details
<!-- Write details of your pull request in here -->
<!-- Include references to any relevant issues/discussions -->
## Checklist
<!-- Put an 'x' in between the brackets below to confirm these elements -->
- [ ] I have read the [BookStack community rules](https://www.bookstackapp.com/about/community-rules/).
- [ ] This PR does not feature significant use of LLM/AI generation as per the community rules above.

View File

@@ -0,0 +1,33 @@
name: Crowdin Action
on:
push:
branches: [ development ]
paths:
- 'lang/**.php'
schedule:
- cron: '30 4 * * *'
workflow_dispatch:
jobs:
synchronize-with-crowdin:
runs-on: docker
container:
image: docker.io/library/node:24-trixie
steps:
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v6
- name: crowdin action
uses: https://github.com/crowdin/github-action@v2
with:
upload_sources: true
upload_translations: false
download_translations: true
localization_branch_name: l10n_development
create_pull_request: false
github_base_url: codeberg.org
env:
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

View File

@@ -1,8 +1,8 @@
blank_issues_enabled: false blank_issues_enabled: false
contact_links: contact_links:
- name: Discord Chat Support - name: Open Issues Here Instead
url: https://discord.gg/ztkBqR2 url: https://codeberg.org/bookstack/bookstack/issues
about: Realtime support & chat with the BookStack community and the team. about: This project has migrated to Codeberg, please open issues there instead.
- name: Debugging & Common Issues - name: Debugging & Common Issues
url: https://www.bookstackapp.com/docs/admin/debugging/ url: https://www.bookstackapp.com/docs/admin/debugging/

View File

@@ -1,11 +1,10 @@
## Details **Warning:**
<!-- Write details of your pull request in here --> This project has migrated to Codeberg:
<!-- Include references to any relevant issues/discussions --> https://codeberg.org/bookstack/bookstack
## Checklist Please open pull requests here instead.
<!-- Put an 'x' in between the brackets below to confirm these elements --> ANY PULL REQUESTS OPENED HERE WILL BE CLOSED WITHOUT COMMENT OR MERGE.
- [ ] I have read the [BookStack community rules](https://www.bookstackapp.com/about/community-rules/). ---
- [ ] This PR does not feature significant use of LLM/AI generation as per the community rules above.

View File

@@ -10,7 +10,7 @@ class PwaManifestBuilder
// does not start a session, so we won't have current user context. // does not start a session, so we won't have current user context.
// This was attempted but removed since manifest calls could affect user session // This was attempted but removed since manifest calls could affect user session
// history tracking and back redirection. // history tracking and back redirection.
// Context: https://github.com/BookStackApp/BookStack/issues/4649 // Context: https://codeberg.org/bookstack/bookstack/issues/4649
$darkMode = (bool) setting()->getForCurrentUser('dark-mode-enabled'); $darkMode = (bool) setting()->getForCurrentUser('dark-mode-enabled');
$appName = setting('app-name'); $appName = setting('app-name');

View File

@@ -1,10 +1,13 @@
project_id: "377219" project_id: "377219"
project_identifier: bookstack project_identifier: bookstack
api_token_env: CROWDIN_PERSONAL_TOKEN
base_path: . base_path: .
preserve_hierarchy: false preserve_hierarchy: false
pull_request_title: Updated translations with latest Crowdin changes pull_request_title: Updated translations with latest Crowdin changes
pull_request_labels: pull_request_labels:
- ":earth_africa: Translations" - "Translations"
files: files:
- source: /lang/en/*.php - source: /lang/en/*.php
translation: /lang/%two_letters_code%/%original_file_name% translation: /lang/%two_letters_code%/%original_file_name%

View File

@@ -18,7 +18,7 @@ ARG BRANCH=development
# Download BookStack & install PHP deps # Download BookStack & install PHP deps
RUN mkdir -p /var/www && \ RUN mkdir -p /var/www && \
git clone https://github.com/bookstackapp/bookstack.git --branch "$BRANCH" --single-branch /var/www/bookstack && \ git clone https://codeberg.org/bookstack/bookstack.git --branch "$BRANCH" --single-branch /var/www/bookstack && \
cd /var/www/bookstack && \ cd /var/www/bookstack && \
wget https://raw.githubusercontent.com/composer/getcomposer.org/f3108f64b4e1c1ce6eb462b159956461592b3e3e/web/installer -O - -q | php -- --quiet --filename=composer && \ wget https://raw.githubusercontent.com/composer/getcomposer.org/f3108f64b4e1c1ce6eb462b159956461592b3e3e/web/installer -O - -q | php -- --quiet --filename=composer && \
php composer install php composer install

View File

@@ -74,7 +74,7 @@ Theme::registerCommand(new SayHelloCommand());
## Available Events ## Available Events
All available events dispatched by BookStack are exposed as static properties on the `\BookStack\Theming\ThemeEvents` class, which can be found within the file `app/Theming/ThemeEvents.php` relative to your root BookStack folder. Alternatively, the events for the latest release can be [seen on GitHub here](https://github.com/BookStackApp/BookStack/blob/release/app/Theming/ThemeEvents.php). All available events dispatched by BookStack are exposed as static properties on the `\BookStack\Theming\ThemeEvents` class, which can be found within the file `app/Theming/ThemeEvents.php` relative to your root BookStack folder. Alternatively, the events for the latest release can be [seen on Codeberg here](https://codeberg.org/bookstack/bookstack/src/branch/release/app/Theming/ThemeEvents.php).
The comments above each constant with the `ThemeEvents.php` file describe the dispatch conditions of the event, in addition to the arguments the action will receive. The comments may also describe any ways the return value of the action may be used. The comments above each constant with the `ThemeEvents.php` file describe the dispatch conditions of the event, in addition to the arguments the action will receive. The comments may also describe any ways the return value of the action may be used.

View File

@@ -12,13 +12,13 @@ Feature releases are generally larger, bringing new features in addition to fixe
### Release Planning Process ### Release Planning Process
Each BookStack release will have a [milestone](https://github.com/BookStackApp/BookStack/milestones) created with issues & pull requests assigned to it to define what will be in that release. Milestones are built up then worked through until complete at which point, after some testing and documentation updates, the release will be deployed. Each BookStack release will have a [milestone](https://codeberg.org/bookstack/bookstack/milestones) created with issues & pull requests assigned to it to define what will be in that release. Milestones are built up then worked through until complete at which point, after some testing and documentation updates, the release will be deployed.
### Release Announcements ### Release Announcements
Feature releases, and some patch releases, will be accompanied by a post on the [BookStack blog](https://www.bookstackapp.com/blog/) which will provide additional detail on features, changes & updates otherwise the [GitHub release page](https://github.com/BookStackApp/BookStack/releases) will show a list of changes. You can sign up to be alerted to new BookStack blog posts (once per week maximum) [at this link](https://updates.bookstackapp.com/signup/bookstack-news-and-updates). Feature releases, and some patch releases, will be accompanied by a post on the [BookStack blog](https://www.bookstackapp.com/blog/) which will provide additional detail on features, changes & updates otherwise the [Codeberg release page](https://codeberg.org/bookstack/bookstack/releases) will show a list of changes. You can sign up to be alerted to new BookStack blog posts (once per week maximum) [at this link](https://updates.bookstackapp.com/signup/bookstack-news-and-updates).
### Release Technical Process ### Release Technical Process
Deploying a release, at a high level, simply involves merging the development branch into the release branch before then building & committing any release-only assets. Deploying a release, at a high level, simply involves merging the development branch into the release branch before then building & committing any release-only assets.
A helper script [can be found in our](https://github.com/BookStackApp/devops/blob/main/meta-scripts/bookstack-release-steps) devops repo which provides the steps and commands for deploying a new release. A helper script [can be found in our](https://codeberg.org/bookstack/devops/src/branch/main/meta-scripts/bookstack-release-steps) devops repo which provides the steps and commands for deploying a new release.

View File

@@ -2,7 +2,7 @@
**Warning: This API is currently in development and may change without notice.** **Warning: This API is currently in development and may change without notice.**
Feedback is very much welcomed via this issue: https://github.com/BookStackApp/BookStack/issues/5937 Feedback is very much welcomed via this issue: https://codeberg.org/bookstack/bookstack/issues/5937
This document covers the JavaScript API for the (newer Lexical-based) WYSIWYG editor. This document covers the JavaScript API for the (newer Lexical-based) WYSIWYG editor.
This API is built and designed to abstract the internals of the editor away This API is built and designed to abstract the internals of the editor away

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'نقل الفصول والصفحات داخل الكتاب لإعادة تنظيم محتوياته. يمكن إضافة كتب أخرى مما يسمح بنقل الفصول والصفحات بسهولة بين الكتب. اختياريًا، يمكن تعيين قاعدة فرز تلقائي لفرز محتويات هذا الكتاب تلقائيًا عند حدوث تغييرات.', 'books_sort_desc' => 'نقل الفصول والصفحات داخل الكتاب لإعادة تنظيم محتوياته. يمكن إضافة كتب أخرى مما يسمح بنقل الفصول والصفحات بسهولة بين الكتب. اختياريًا، يمكن تعيين قاعدة فرز تلقائي لفرز محتويات هذا الكتاب تلقائيًا عند حدوث تغييرات.',
'books_sort_auto_sort' => 'خِيار الفرز التلقائي', 'books_sort_auto_sort' => 'خِيار الفرز التلقائي',
'books_sort_auto_sort_active' => 'الفرز التلقائي الشَغَّال: :sortName', 'books_sort_auto_sort_active' => 'الفرز التلقائي الشَغَّال: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'فرز كتاب :bookName', 'books_sort_named' => 'فرز كتاب :bookName',
'books_sort_name' => 'ترتيب حسب الإسم', 'books_sort_name' => 'ترتيب حسب الإسم',
'books_sort_created' => 'ترتيب حسب تاريخ الإنشاء', 'books_sort_created' => 'ترتيب حسب تاريخ الإنشاء',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'الكل', 'role_all' => 'الكل',
'role_own' => 'ما يخص', 'role_own' => 'ما يخص',
'role_controlled_by_asset' => 'يتحكم فيها الأصول التي يتم رفعها إلى', 'role_controlled_by_asset' => 'يتحكم فيها الأصول التي يتم رفعها إلى',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'حفظ الدور', 'role_save' => 'حفظ الدور',
'role_users' => 'مستخدمون داخل هذا الدور', 'role_users' => 'مستخدمون داخل هذا الدور',
'role_users_none' => 'لم يتم تعيين أي مستخدمين لهذا الدور', 'role_users_none' => 'لم يتم تعيين أي مستخدمين لهذا الدور',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Сортирай книга :bookName', 'books_sort_named' => 'Сортирай книга :bookName',
'books_sort_name' => 'Сортиране по име', 'books_sort_name' => 'Сортиране по име',
'books_sort_created' => 'Сортирай по дата на създаване', 'books_sort_created' => 'Сортирай по дата на създаване',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Всички', 'role_all' => 'Всички',
'role_own' => 'Собствени', 'role_own' => 'Собствени',
'role_controlled_by_asset' => 'Контролирани от актива, към който са качени', 'role_controlled_by_asset' => 'Контролирани от актива, към който са качени',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Запази ролята', 'role_save' => 'Запази ролята',
'role_users' => 'Потребители в тази роля', 'role_users' => 'Потребители в тази роля',
'role_users_none' => 'В момента няма потребители, назначени за тази роля', 'role_users_none' => 'В момента няма потребители, назначени за тази роля',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sort Book :bookName', 'books_sort_named' => 'Sort Book :bookName',
'books_sort_name' => 'Sort by Name', 'books_sort_name' => 'Sort by Name',
'books_sort_created' => 'Sort by Created Date', 'books_sort_created' => 'Sort by Created Date',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'All', 'role_all' => 'All',
'role_own' => 'Own', 'role_own' => 'Own',
'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to', 'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Save Role', 'role_save' => 'Save Role',
'role_users' => 'Users in this role', 'role_users' => 'Users in this role',
'role_users_none' => 'No users are currently assigned to this role', 'role_users_none' => 'No users are currently assigned to this role',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sortiraj knjigu :bookName', 'books_sort_named' => 'Sortiraj knjigu :bookName',
'books_sort_name' => 'Sortiraj po imenu', 'books_sort_name' => 'Sortiraj po imenu',
'books_sort_created' => 'Sortiraj po datumu kreiranja', 'books_sort_created' => 'Sortiraj po datumu kreiranja',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'All', 'role_all' => 'All',
'role_own' => 'Own', 'role_own' => 'Own',
'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to', 'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Save Role', 'role_save' => 'Save Role',
'role_users' => 'Users in this role', 'role_users' => 'Users in this role',
'role_users_none' => 'No users are currently assigned to this role', 'role_users_none' => 'No users are currently assigned to this role',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Mou capítols i pàgines dins d\'un llibre per reorganitzar el seu contingut. Es poden afegir altres llibres que permetin moure fàcilment capítols i pàgines entre llibres. De manera opcional, es poden establir regles d\'ordenació automàtica per ordenar automàticament el contingut d\'aquest llibre quan hi hagi canvis.', 'books_sort_desc' => 'Mou capítols i pàgines dins d\'un llibre per reorganitzar el seu contingut. Es poden afegir altres llibres que permetin moure fàcilment capítols i pàgines entre llibres. De manera opcional, es poden establir regles d\'ordenació automàtica per ordenar automàticament el contingut d\'aquest llibre quan hi hagi canvis.',
'books_sort_auto_sort' => 'Opció d\'ordenació automàtica', 'books_sort_auto_sort' => 'Opció d\'ordenació automàtica',
'books_sort_auto_sort_active' => 'Opció d\'ordenació activa :sortName', 'books_sort_auto_sort_active' => 'Opció d\'ordenació activa :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Ordena el llibre &laquo;:bookName&raquo;', 'books_sort_named' => 'Ordena el llibre &laquo;:bookName&raquo;',
'books_sort_name' => 'Ordena pel nom', 'books_sort_name' => 'Ordena pel nom',
'books_sort_created' => 'Ordena per la data de creació', 'books_sort_created' => 'Ordena per la data de creació',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Tot', 'role_all' => 'Tot',
'role_own' => 'Propi', 'role_own' => 'Propi',
'role_controlled_by_asset' => 'Controlat pel recurs a què estan pujats', 'role_controlled_by_asset' => 'Controlat pel recurs a què estan pujats',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Desa el rol', 'role_save' => 'Desa el rol',
'role_users' => 'Usuaris assignats en aquest rol', 'role_users' => 'Usuaris assignats en aquest rol',
'role_users_none' => 'No hi ha cap usuari assignat en aquest rol', 'role_users_none' => 'No hi ha cap usuari assignat en aquest rol',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Pro přeuspořádání obsahu přesuňte kapitoly a stránky v knize. Mohou být přidány další knihy, které umožní snadný přesun kapitol a stránek mezi knihami. Volitelně lze nastavit pravidlo automatického řazení, aby se při změnách automaticky seřadil obsah této knihy.', 'books_sort_desc' => 'Pro přeuspořádání obsahu přesuňte kapitoly a stránky v knize. Mohou být přidány další knihy, které umožní snadný přesun kapitol a stránek mezi knihami. Volitelně lze nastavit pravidlo automatického řazení, aby se při změnách automaticky seřadil obsah této knihy.',
'books_sort_auto_sort' => 'Možnost automatického řazení', 'books_sort_auto_sort' => 'Možnost automatického řazení',
'books_sort_auto_sort_active' => 'Aktivní automatické řazení: :sortName', 'books_sort_auto_sort_active' => 'Aktivní automatické řazení: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Seřadit knihu :bookName', 'books_sort_named' => 'Seřadit knihu :bookName',
'books_sort_name' => 'Seřadit podle názvu', 'books_sort_name' => 'Seřadit podle názvu',
'books_sort_created' => 'Seřadit podle data vytvoření', 'books_sort_created' => 'Seřadit podle data vytvoření',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Vše', 'role_all' => 'Vše',
'role_own' => 'Vlastní', 'role_own' => 'Vlastní',
'role_controlled_by_asset' => 'Řídí se obsahem, do kterého jsou nahrávány', 'role_controlled_by_asset' => 'Řídí se obsahem, do kterého jsou nahrávány',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Uložit roli', 'role_save' => 'Uložit roli',
'role_users' => 'Uživatelé mající tuto roli', 'role_users' => 'Uživatelé mající tuto roli',
'role_users_none' => 'Žádný uživatel nemá tuto roli', 'role_users_none' => 'Žádný uživatel nemá tuto roli',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Trefnu Llyfr :bookName', 'books_sort_named' => 'Trefnu Llyfr :bookName',
'books_sort_name' => 'Trefnu yn ôl Enw', 'books_sort_name' => 'Trefnu yn ôl Enw',
'books_sort_created' => 'Trefnu yn ôl Dyddiad Creu', 'books_sort_created' => 'Trefnu yn ôl Dyddiad Creu',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Popeth', 'role_all' => 'Popeth',
'role_own' => 'Meddu', 'role_own' => 'Meddu',
'role_controlled_by_asset' => 'Wedi\'u rheoli gan yr ased y maent yn cael eu huwchlwytho iddo', 'role_controlled_by_asset' => 'Wedi\'u rheoli gan yr ased y maent yn cael eu huwchlwytho iddo',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Cadw Rôl', 'role_save' => 'Cadw Rôl',
'role_users' => 'Defnyddwyr yn y rôl hon', 'role_users' => 'Defnyddwyr yn y rôl hon',
'role_users_none' => 'Nid oes unrhyw ddefnyddwyr wediu neilltuo i\'r rôl hon ar hyn o bryd', 'role_users_none' => 'Nid oes unrhyw ddefnyddwyr wediu neilltuo i\'r rôl hon ar hyn o bryd',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Flyt kapitler og sider i en bog for at omorganisere dens indhold. Der kan tilføjes andre bøger, som gør det nemt at flytte kapitler og sider mellem bøgerne. Man kan indstille en automatisk sorteringsregel, så bogens indhold automatisk sorteres efter ændringer.', 'books_sort_desc' => 'Flyt kapitler og sider i en bog for at omorganisere dens indhold. Der kan tilføjes andre bøger, som gør det nemt at flytte kapitler og sider mellem bøgerne. Man kan indstille en automatisk sorteringsregel, så bogens indhold automatisk sorteres efter ændringer.',
'books_sort_auto_sort' => 'Mulighed for automatisk sortering', 'books_sort_auto_sort' => 'Mulighed for automatisk sortering',
'books_sort_auto_sort_active' => 'Automatisk sortering Aktiv: :sortName', 'books_sort_auto_sort_active' => 'Automatisk sortering Aktiv: :sortName',
'books_sort_auto_sort_creation_hint' => 'En bruger med de nødvendige rettigheder kan oprette regler for automatisk sortering i indstillingsområdet »Lister og sortering«.',
'books_sort_named' => 'Sorter bog :bookName', 'books_sort_named' => 'Sorter bog :bookName',
'books_sort_name' => 'Sortér efter navn', 'books_sort_name' => 'Sortér efter navn',
'books_sort_created' => 'Sortér efter oprettelsesdato', 'books_sort_created' => 'Sortér efter oprettelsesdato',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Alle', 'role_all' => 'Alle',
'role_own' => 'Eget', 'role_own' => 'Eget',
'role_controlled_by_asset' => 'Styres af det medie/"asset", de uploades til', 'role_controlled_by_asset' => 'Styres af det medie/"asset", de uploades til',
'role_controlled_by_page_delete' => 'Styres af tilladelser til sletning af sider',
'role_save' => 'Gem rolle', 'role_save' => 'Gem rolle',
'role_users' => 'Brugere med denne rolle', 'role_users' => 'Brugere med denne rolle',
'role_users_none' => 'Ingen brugere er i øjeblikket tildelt denne rolle', 'role_users_none' => 'Ingen brugere er i øjeblikket tildelt denne rolle',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Verschieben Sie Kapitel und Seiten innerhalb eines Buches, um dessen Inhalt neu zu ordnen. Es können weitere Bücher hinzugefügt werden, wodurch Kapitel und Seiten problemlos zwischen den Büchern verschoben werden können. Optional kann eine automatische Sortierregel festgelegt werden, um den Inhalt dieses Buches bei Änderungen automatisch zu sortieren.', 'books_sort_desc' => 'Verschieben Sie Kapitel und Seiten innerhalb eines Buches, um dessen Inhalt neu zu ordnen. Es können weitere Bücher hinzugefügt werden, wodurch Kapitel und Seiten problemlos zwischen den Büchern verschoben werden können. Optional kann eine automatische Sortierregel festgelegt werden, um den Inhalt dieses Buches bei Änderungen automatisch zu sortieren.',
'books_sort_auto_sort' => 'Automatische Sortierfunktionsoption', 'books_sort_auto_sort' => 'Automatische Sortierfunktionsoption',
'books_sort_auto_sort_active' => 'Automatische Sortierung aktiv: :sortName', 'books_sort_auto_sort_active' => 'Automatische Sortierung aktiv: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Buch ":bookName" sortieren', 'books_sort_named' => 'Buch ":bookName" sortieren',
'books_sort_name' => 'Sortieren nach Namen', 'books_sort_name' => 'Sortieren nach Namen',
'books_sort_created' => 'Sortieren nach Erstellungsdatum', 'books_sort_created' => 'Sortieren nach Erstellungsdatum',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Alle', 'role_all' => 'Alle',
'role_own' => 'Eigene', 'role_own' => 'Eigene',
'role_controlled_by_asset' => 'Abhängig von dem Asset, in das sie hochgeladen werden', 'role_controlled_by_asset' => 'Abhängig von dem Asset, in das sie hochgeladen werden',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Rolle speichern', 'role_save' => 'Rolle speichern',
'role_users' => 'Dieser Rolle zugeordnete Benutzer', 'role_users' => 'Dieser Rolle zugeordnete Benutzer',
'role_users_none' => 'Derzeit sind diesem Rollentyp keine Benutzer zugewiesen', 'role_users_none' => 'Derzeit sind diesem Rollentyp keine Benutzer zugewiesen',

View File

@@ -106,7 +106,7 @@ return [
'uploaded' => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.', 'uploaded' => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.',
'zip_file' => ':attribute muss eine Datei innerhalb des ZIP referenzieren.', 'zip_file' => ':attribute muss eine Datei innerhalb des ZIP referenzieren.',
'zip_file_size' => 'The file :attribute must not exceed :size MB.', 'zip_file_size' => 'Die Datei :attribute darf :size MB nicht überschreiten.',
'zip_file_mime' => ':attribute muss eine Datei des Typs :validType referenzieren, gefunden :foundType.', 'zip_file_mime' => ':attribute muss eine Datei des Typs :validType referenzieren, gefunden :foundType.',
'zip_model_expected' => 'Datenobjekt erwartet, aber ":type" gefunden.', 'zip_model_expected' => 'Datenobjekt erwartet, aber ":type" gefunden.',
'zip_unique' => ':attribute muss für den Objekttyp innerhalb des ZIP eindeutig sein.', 'zip_unique' => ':attribute muss für den Objekttyp innerhalb des ZIP eindeutig sein.',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Kapitel und Seiten innerhalb eines Buches verschieben, um dessen Inhalt zu reorganisieren. Andere Bücher können hinzugefügt werden, was das Verschieben von Kapiteln und Seiten zwischen Büchern erleichtert. Optional kann eine automatische Sortierregel erstellt werden, um den Inhalt dieses Buches nach Änderungen automatisch zu sortieren.', 'books_sort_desc' => 'Kapitel und Seiten innerhalb eines Buches verschieben, um dessen Inhalt zu reorganisieren. Andere Bücher können hinzugefügt werden, was das Verschieben von Kapiteln und Seiten zwischen Büchern erleichtert. Optional kann eine automatische Sortierregel erstellt werden, um den Inhalt dieses Buches nach Änderungen automatisch zu sortieren.',
'books_sort_auto_sort' => 'Auto-Sortieroption', 'books_sort_auto_sort' => 'Auto-Sortieroption',
'books_sort_auto_sort_active' => 'Automatische Sortierung aktiv: :sortName', 'books_sort_auto_sort_active' => 'Automatische Sortierung aktiv: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Buch ":bookName" sortieren', 'books_sort_named' => 'Buch ":bookName" sortieren',
'books_sort_name' => 'Sortieren nach Namen', 'books_sort_name' => 'Sortieren nach Namen',
'books_sort_created' => 'Sortieren nach Erstellungsdatum', 'books_sort_created' => 'Sortieren nach Erstellungsdatum',
@@ -410,10 +411,10 @@ return [
'comment_deleted_success' => 'Kommentar gelöscht', 'comment_deleted_success' => 'Kommentar gelöscht',
'comment_created_success' => 'Kommentar hinzugefügt', 'comment_created_success' => 'Kommentar hinzugefügt',
'comment_updated_success' => 'Kommentar aktualisiert', 'comment_updated_success' => 'Kommentar aktualisiert',
'comment_archive_success' => 'Kommentar archiviert', 'comment_archive_success' => 'Kommentar wurde archiviert',
'comment_unarchive_success' => 'Kommentar nicht mehr archiviert', 'comment_unarchive_success' => 'Kommentar nicht mehr archiviert',
'comment_view' => 'Kommentar ansehen', 'comment_view' => 'Kommentar ansehen',
'comment_jump_to_thread' => 'Zum Thema springen', 'comment_jump_to_thread' => 'Zu diesem Thema springen',
'comment_delete_confirm' => 'Möchtst du diesen Kommentar wirklich löschen?', 'comment_delete_confirm' => 'Möchtst du diesen Kommentar wirklich löschen?',
'comment_in_reply_to' => 'Antwort auf :commentId', 'comment_in_reply_to' => 'Antwort auf :commentId',
'comment_reference' => 'Referenz', 'comment_reference' => 'Referenz',

View File

@@ -11,8 +11,8 @@ return [
'updated_page_subject' => 'Aktualisierte Seite: :pageName', 'updated_page_subject' => 'Aktualisierte Seite: :pageName',
'updated_page_intro' => 'Eine Seite wurde in :appName aktualisiert:', 'updated_page_intro' => 'Eine Seite wurde in :appName aktualisiert:',
'updated_page_debounce' => 'Um eine Flut von Benachrichtigungen zu vermeiden, wirst du für eine gewisse Zeit keine Benachrichtigungen für weitere Bearbeitungen dieser Seite durch denselben Bearbeiter erhalten.', 'updated_page_debounce' => 'Um eine Flut von Benachrichtigungen zu vermeiden, wirst du für eine gewisse Zeit keine Benachrichtigungen für weitere Bearbeitungen dieser Seite durch denselben Bearbeiter erhalten.',
'comment_mention_subject' => 'Sie wurden in einem Kommentar auf der Seite :pageName erwähnt', 'comment_mention_subject' => 'Du wurdest in einem Kommentar auf der Seite :pageName erwähnt',
'comment_mention_intro' => 'Sie wurden in einem Kommentar zu :appName: erwähnt', 'comment_mention_intro' => 'Du wurdest in einem Kommentar zu :appName erwähnt:',
'detail_page_name' => 'Seitenname:', 'detail_page_name' => 'Seitenname:',
'detail_page_path' => 'Seitenpfad:', 'detail_page_path' => 'Seitenpfad:',

View File

@@ -76,7 +76,7 @@ Hinweis: Benutzer können ihre E-Mail Adresse nach erfolgreicher Registrierung
'reg_confirm_restrict_domain_placeholder' => 'Keine Einschränkung gesetzt', 'reg_confirm_restrict_domain_placeholder' => 'Keine Einschränkung gesetzt',
// Sorting Settings // Sorting Settings
'sorting' => 'Listen & Sortieren', 'sorting' => 'Listen und Sortierung',
'sorting_book_default' => 'Standardregel für die Sortierung von Büchern', 'sorting_book_default' => 'Standardregel für die Sortierung von Büchern',
'sorting_book_default_desc' => 'Wähle die Standard-Sortierregel aus, die auf neue Bücher angewendet werden soll. Dies wirkt sich nicht auf bestehende Bücher aus und kann pro Buch überschrieben werden.', 'sorting_book_default_desc' => 'Wähle die Standard-Sortierregel aus, die auf neue Bücher angewendet werden soll. Dies wirkt sich nicht auf bestehende Bücher aus und kann pro Buch überschrieben werden.',
'sorting_rules' => 'Sortierregeln', 'sorting_rules' => 'Sortierregeln',
@@ -208,6 +208,7 @@ Hinweis: Benutzer können ihre E-Mail Adresse nach erfolgreicher Registrierung
'role_all' => 'Alle', 'role_all' => 'Alle',
'role_own' => 'Eigene', 'role_own' => 'Eigene',
'role_controlled_by_asset' => 'Berechtigungen werden vom Uploadziel bestimmt', 'role_controlled_by_asset' => 'Berechtigungen werden vom Uploadziel bestimmt',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Rolle speichern', 'role_save' => 'Rolle speichern',
'role_users' => 'Dieser Rolle zugeordnete Benutzer', 'role_users' => 'Dieser Rolle zugeordnete Benutzer',
'role_users_none' => 'Bisher sind dieser Rolle keine Benutzer zugeordnet', 'role_users_none' => 'Bisher sind dieser Rolle keine Benutzer zugeordnet',

View File

@@ -106,7 +106,7 @@ return [
'uploaded' => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.', 'uploaded' => 'Die Datei konnte nicht hochgeladen werden. Der Server akzeptiert möglicherweise keine Dateien dieser Größe.',
'zip_file' => ':attribute muss auf eine Datei innerhalb des ZIP verweisen.', 'zip_file' => ':attribute muss auf eine Datei innerhalb des ZIP verweisen.',
'zip_file_size' => 'The file :attribute must not exceed :size MB.', 'zip_file_size' => 'Die Datei :attribute darf :size MB nicht überschreiten.',
'zip_file_mime' => ':attribute muss eine Datei des Typs :validType referenzieren, gefunden :foundType.', 'zip_file_mime' => ':attribute muss eine Datei des Typs :validType referenzieren, gefunden :foundType.',
'zip_model_expected' => 'Datenobjekt erwartet, aber ":type" gefunden.', 'zip_model_expected' => 'Datenobjekt erwartet, aber ":type" gefunden.',
'zip_unique' => ':attribute muss für den Objekttyp innerhalb des ZIP eindeutig sein.', 'zip_unique' => ':attribute muss für den Objekttyp innerhalb des ZIP eindeutig sein.',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Ταξινόμηση Βιβλίου :bookname', 'books_sort_named' => 'Ταξινόμηση Βιβλίου :bookname',
'books_sort_name' => 'Ταξινόμηση κατά όνομα', 'books_sort_name' => 'Ταξινόμηση κατά όνομα',
'books_sort_created' => 'Ταξινόμηση κατά ημερομηνία δημιουργίας', 'books_sort_created' => 'Ταξινόμηση κατά ημερομηνία δημιουργίας',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Ολα', 'role_all' => 'Ολα',
'role_own' => 'Τα δικά του', 'role_own' => 'Τα δικά του',
'role_controlled_by_asset' => 'Ελέγχονται από το στοιχείο στο οποίο ανεβαίνουν (Ράφια, Βιβλία)', 'role_controlled_by_asset' => 'Ελέγχονται από το στοιχείο στο οποίο ανεβαίνουν (Ράφια, Βιβλία)',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Αποθήκευση Ρόλου', 'role_save' => 'Αποθήκευση Ρόλου',
'role_users' => 'Χρήστες σε αυτόν τον Ρόλο', 'role_users' => 'Χρήστες σε αυτόν τον Ρόλο',
'role_users_none' => 'Σε κανένα χρήστη δεν έχει ανατεθεί αυτήν τη στιγμή αυτός ο ρόλος.', 'role_users_none' => 'Σε κανένα χρήστη δεν έχει ανατεθεί αυτήν τη στιγμή αυτός ο ρόλος.',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Mueve capítulos y páginas dentro de un libro para reorganizar su contenido. Se pueden añadir otros libros que permiten mover fácilmente capítulos y páginas entre libros. Opcionalmente, se puede establecer una regla de ordenación automática para ordenar automáticamente el contenido de este libro cuando haya cambios.', 'books_sort_desc' => 'Mueve capítulos y páginas dentro de un libro para reorganizar su contenido. Se pueden añadir otros libros que permiten mover fácilmente capítulos y páginas entre libros. Opcionalmente, se puede establecer una regla de ordenación automática para ordenar automáticamente el contenido de este libro cuando haya cambios.',
'books_sort_auto_sort' => 'Opción de ordenación automática', 'books_sort_auto_sort' => 'Opción de ordenación automática',
'books_sort_auto_sort_active' => 'Opción de ordenación activa: sortName', 'books_sort_auto_sort_active' => 'Opción de ordenación activa: sortName',
'books_sort_auto_sort_creation_hint' => 'Las reglas para los ajustes de ordenación automática pueden ser creadas en el área de configuración "Listas y ordenación" por un usuario con los permisos pertinentes.',
'books_sort_named' => 'Organizar libro :bookName', 'books_sort_named' => 'Organizar libro :bookName',
'books_sort_name' => 'Organizar por Nombre', 'books_sort_name' => 'Organizar por Nombre',
'books_sort_created' => 'Organizar por Fecha de creación', 'books_sort_created' => 'Organizar por Fecha de creación',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Todo', 'role_all' => 'Todo',
'role_own' => 'Propio', 'role_own' => 'Propio',
'role_controlled_by_asset' => 'Controlado por el contenido al que ha sido subido', 'role_controlled_by_asset' => 'Controlado por el contenido al que ha sido subido',
'role_controlled_by_page_delete' => 'Controlado por página de eliminación de permisos',
'role_save' => 'Guardar rol', 'role_save' => 'Guardar rol',
'role_users' => 'Usuarios en este rol', 'role_users' => 'Usuarios en este rol',
'role_users_none' => 'No hay usuarios asignados a este rol', 'role_users_none' => 'No hay usuarios asignados a este rol',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Mueve capítulos y páginas dentro de un libro para reorganizar su contenido. Se pueden añadir otros libros que permiten mover fácilmente capítulos y páginas entre libros. Opcionalmente, se puede establecer una regla de ordenación automática para el contenido de este libro cuando haya cambios.', 'books_sort_desc' => 'Mueve capítulos y páginas dentro de un libro para reorganizar su contenido. Se pueden añadir otros libros que permiten mover fácilmente capítulos y páginas entre libros. Opcionalmente, se puede establecer una regla de ordenación automática para el contenido de este libro cuando haya cambios.',
'books_sort_auto_sort' => 'Opción de ordenación automática', 'books_sort_auto_sort' => 'Opción de ordenación automática',
'books_sort_auto_sort_active' => 'Opción de ordenación activa: sortName', 'books_sort_auto_sort_active' => 'Opción de ordenación activa: sortName',
'books_sort_auto_sort_creation_hint' => 'Las reglas para los ajustes de ordenación automática pueden ser creadas en el área de configuración "Listas y ordenación" por un usuario con los permisos pertinentes.',
'books_sort_named' => 'Organizar libro :bookName', 'books_sort_named' => 'Organizar libro :bookName',
'books_sort_name' => 'Organizar por nombre', 'books_sort_name' => 'Organizar por nombre',
'books_sort_created' => 'Organizar por fecha de creación', 'books_sort_created' => 'Organizar por fecha de creación',

View File

@@ -208,6 +208,7 @@ return [
'role_all' => 'Todo', 'role_all' => 'Todo',
'role_own' => 'Propio', 'role_own' => 'Propio',
'role_controlled_by_asset' => 'Controlado por el activo al que ha sido subido', 'role_controlled_by_asset' => 'Controlado por el activo al que ha sido subido',
'role_controlled_by_page_delete' => 'Controlado por página de eliminación de permisos',
'role_save' => 'Guardar rol', 'role_save' => 'Guardar rol',
'role_users' => 'Usuarios en este rol', 'role_users' => 'Usuarios en este rol',
'role_users_none' => 'No hay usuarios asignados a este rol', 'role_users_none' => 'No hay usuarios asignados a este rol',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Liiguta raamatu sees peatükke ja lehti, et selle sisu ümber organiseerida. Saad lisada teisi raamatuid, mis võimaldab peatükke ja lehti lihtsasti raamatute vahel liigutada. Lisaks saad määrata automaatse sorteerimise reegli, et selle raamatu sisu muudatuste puhul automaatselt järjestada.', 'books_sort_desc' => 'Liiguta raamatu sees peatükke ja lehti, et selle sisu ümber organiseerida. Saad lisada teisi raamatuid, mis võimaldab peatükke ja lehti lihtsasti raamatute vahel liigutada. Lisaks saad määrata automaatse sorteerimise reegli, et selle raamatu sisu muudatuste puhul automaatselt järjestada.',
'books_sort_auto_sort' => 'Automaatne sorteerimine', 'books_sort_auto_sort' => 'Automaatne sorteerimine',
'books_sort_auto_sort_active' => 'Automaatne sorteerimine aktiivne: :sortName', 'books_sort_auto_sort_active' => 'Automaatne sorteerimine aktiivne: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sorteeri raamat :bookName', 'books_sort_named' => 'Sorteeri raamat :bookName',
'books_sort_name' => 'Sorteeri nime järgi', 'books_sort_name' => 'Sorteeri nime järgi',
'books_sort_created' => 'Sorteeri loomisaja järgi', 'books_sort_created' => 'Sorteeri loomisaja järgi',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Kõik', 'role_all' => 'Kõik',
'role_own' => 'Enda omad', 'role_own' => 'Enda omad',
'role_controlled_by_asset' => 'Õigused määratud seotud objekti kaudu', 'role_controlled_by_asset' => 'Õigused määratud seotud objekti kaudu',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Salvesta roll', 'role_save' => 'Salvesta roll',
'role_users' => 'Selle rolliga kasutajad', 'role_users' => 'Selle rolliga kasutajad',
'role_users_none' => 'Seda rolli ei ole hetkel ühelgi kasutajal', 'role_users_none' => 'Seda rolli ei ole hetkel ühelgi kasutajal',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Ordenatu :bookName liburua', 'books_sort_named' => 'Ordenatu :bookName liburua',
'books_sort_name' => 'Ordenatu izenaren arabera', 'books_sort_name' => 'Ordenatu izenaren arabera',
'books_sort_created' => 'Ordenatu argitaratze-dataren arabera', 'books_sort_created' => 'Ordenatu argitaratze-dataren arabera',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Guztiak', 'role_all' => 'Guztiak',
'role_own' => 'Norberarenak', 'role_own' => 'Norberarenak',
'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to', 'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Gorde rol-a', 'role_save' => 'Gorde rol-a',
'role_users' => 'Rol honetako erabiltzaileak', 'role_users' => 'Rol honetako erabiltzaileak',
'role_users_none' => 'No users are currently assigned to this role', 'role_users_none' => 'No users are currently assigned to this role',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'برای سامان‌دهی محتوای یک کتاب، می‌توانید فصل‌ها و صفحات آن را جابه‌جا کنید. همچنین می‌توانید کتاب‌های دیگری بیفزایید تا جابه‌جایی فصل‌ها و صفحات میان کتاب‌ها آسان شود. در صورت تمایل، می‌توانید قاعده‌ای برای مرتب‌سازی خودکار تعیین کنید تا محتوای کتاب در صورت ایجاد تغییرات، به طور خودکار مرتب شود.', 'books_sort_desc' => 'برای سامان‌دهی محتوای یک کتاب، می‌توانید فصل‌ها و صفحات آن را جابه‌جا کنید. همچنین می‌توانید کتاب‌های دیگری بیفزایید تا جابه‌جایی فصل‌ها و صفحات میان کتاب‌ها آسان شود. در صورت تمایل، می‌توانید قاعده‌ای برای مرتب‌سازی خودکار تعیین کنید تا محتوای کتاب در صورت ایجاد تغییرات، به طور خودکار مرتب شود.',
'books_sort_auto_sort' => 'گزینه مرتب‌سازی خودکار', 'books_sort_auto_sort' => 'گزینه مرتب‌سازی خودکار',
'books_sort_auto_sort_active' => 'مرتب‌سازی خودکار با قاعده: :sortName فعال است', 'books_sort_auto_sort_active' => 'مرتب‌سازی خودکار با قاعده: :sortName فعال است',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'مرتب‌سازی کتاب:bookName', 'books_sort_named' => 'مرتب‌سازی کتاب:bookName',
'books_sort_name' => 'مرتب‌سازی بر اساس نام', 'books_sort_name' => 'مرتب‌سازی بر اساس نام',
'books_sort_created' => 'مرتب‌سازی بر اساس تاریخ ایجاد', 'books_sort_created' => 'مرتب‌سازی بر اساس تاریخ ایجاد',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'همه', 'role_all' => 'همه',
'role_own' => 'صاحب', 'role_own' => 'صاحب',
'role_controlled_by_asset' => 'توسط دارایی که در آن آپلود می شود کنترل می شود', 'role_controlled_by_asset' => 'توسط دارایی که در آن آپلود می شود کنترل می شود',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'ذخیره نقش', 'role_save' => 'ذخیره نقش',
'role_users' => 'کاربران در این نقش', 'role_users' => 'کاربران در این نقش',
'role_users_none' => 'در حال حاضر هیچ کاربری به این نقش اختصاص داده نشده است', 'role_users_none' => 'در حال حاضر هیچ کاربری به این نقش اختصاص داده نشده است',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Järjestä kirja :bookName', 'books_sort_named' => 'Järjestä kirja :bookName',
'books_sort_name' => 'Järjestä nimen mukaan', 'books_sort_name' => 'Järjestä nimen mukaan',
'books_sort_created' => 'Järjestä luontipäiväyksen mukaan', 'books_sort_created' => 'Järjestä luontipäiväyksen mukaan',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Kaikki', 'role_all' => 'Kaikki',
'role_own' => 'Omat', 'role_own' => 'Omat',
'role_controlled_by_asset' => 'Määräytyy sen sisällön mukaan, johon ne on ladattu', 'role_controlled_by_asset' => 'Määräytyy sen sisällön mukaan, johon ne on ladattu',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Tallenna rooli', 'role_save' => 'Tallenna rooli',
'role_users' => 'Käyttäjät tässä roolissa', 'role_users' => 'Käyttäjät tässä roolissa',
'role_users_none' => 'Yhtään käyttäjää ei ole osoitettuna tähän rooliin', 'role_users_none' => 'Yhtään käyttäjää ei ole osoitettuna tähän rooliin',

View File

@@ -12,9 +12,9 @@ return [
// Login & Register // Login & Register
'sign_up' => 'S\'inscrire', 'sign_up' => 'S\'inscrire',
'log_in' => 'Se connecter', 'log_in' => 'Se connecter',
'log_in_with' => 'Se connecter avec :socialDriver', 'log_in_with' => 'Connexion avec :socialDriver',
'sign_up_with' => 'S\'inscrire avec :socialDriver', 'sign_up_with' => 'S\'inscrire avec :socialDriver',
'logout' => 'Se déconnecter', 'logout' => 'Déconnexion',
'name' => 'Nom', 'name' => 'Nom',
'username' => 'Nom d\'utilisateur', 'username' => 'Nom d\'utilisateur',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Déplacer les pages et chapitres au sein dun livre pour en réorganiser le contenu. Dautres livres peuvent être ajoutés pour faciliter le déplacement des pages et chapitres entre les livres. Facultativement, une règle de tri automatique peut être mise en place afin de trier le livre lorsquil est édité.', 'books_sort_desc' => 'Déplacer les pages et chapitres au sein dun livre pour en réorganiser le contenu. Dautres livres peuvent être ajoutés pour faciliter le déplacement des pages et chapitres entre les livres. Facultativement, une règle de tri automatique peut être mise en place afin de trier le livre lorsquil est édité.',
'books_sort_auto_sort' => 'Option de tri automatique', 'books_sort_auto_sort' => 'Option de tri automatique',
'books_sort_auto_sort_active' => 'Tri automatique actif : :sortName', 'books_sort_auto_sort_active' => 'Tri automatique actif : :sortName',
'books_sort_auto_sort_creation_hint' => 'Les règles de tri automatiques peuvent être créées dans la section « Listes et tri » des préférences par un utilisateur disposant des autorisations appropriées.',
'books_sort_named' => 'Trier le livre :bookName', 'books_sort_named' => 'Trier le livre :bookName',
'books_sort_name' => 'Trier par le nom', 'books_sort_name' => 'Trier par le nom',
'books_sort_created' => 'Trier par la date de création', 'books_sort_created' => 'Trier par la date de création',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Tous', 'role_all' => 'Tous',
'role_own' => 'Propres', 'role_own' => 'Propres',
'role_controlled_by_asset' => 'Contrôlé par les ressources les ayant envoyés', 'role_controlled_by_asset' => 'Contrôlé par les ressources les ayant envoyés',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Enregistrer le rôle', 'role_save' => 'Enregistrer le rôle',
'role_users' => 'Utilisateurs ayant ce rôle', 'role_users' => 'Utilisateurs ayant ce rôle',
'role_users_none' => 'Aucun utilisateur avec ce rôle actuellement', 'role_users_none' => 'Aucun utilisateur avec ce rôle actuellement',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'מיין את הספר :bookName', 'books_sort_named' => 'מיין את הספר :bookName',
'books_sort_name' => 'מיין לפי שם', 'books_sort_name' => 'מיין לפי שם',
'books_sort_created' => 'מיין לפי תאריך יצירה', 'books_sort_created' => 'מיין לפי תאריך יצירה',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'הכל', 'role_all' => 'הכל',
'role_own' => 'שלי', 'role_own' => 'שלי',
'role_controlled_by_asset' => 'נשלטים על ידי המשאב אליו הועלו', 'role_controlled_by_asset' => 'נשלטים על ידי המשאב אליו הועלו',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'שמור תפקיד', 'role_save' => 'שמור תפקיד',
'role_users' => 'משתמשים משוייכים לתפקיד זה', 'role_users' => 'משתמשים משוייכים לתפקיד זה',
'role_users_none' => 'אין משתמשים המשוייכים לתפקיד זה', 'role_users_none' => 'אין משתמשים המשוייכים לתפקיד זה',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Razvrstaj knjigu :bookName', 'books_sort_named' => 'Razvrstaj knjigu :bookName',
'books_sort_name' => 'Razvrstaj po imenu', 'books_sort_name' => 'Razvrstaj po imenu',
'books_sort_created' => 'Razvrstaj po datumu nastanka', 'books_sort_created' => 'Razvrstaj po datumu nastanka',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Sve', 'role_all' => 'Sve',
'role_own' => 'Vlastito', 'role_own' => 'Vlastito',
'role_controlled_by_asset' => 'Kontrolirano od strane vlasnika', 'role_controlled_by_asset' => 'Kontrolirano od strane vlasnika',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Spremi ulogu', 'role_save' => 'Spremi ulogu',
'role_users' => 'Korisnici u ovoj ulozi', 'role_users' => 'Korisnici u ovoj ulozi',
'role_users_none' => 'Trenutno nijedan korisnik nije u ovoj ulozi', 'role_users_none' => 'Trenutno nijedan korisnik nije u ovoj ulozi',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => ':bookName könyv rendezése', 'books_sort_named' => ':bookName könyv rendezése',
'books_sort_name' => 'Rendezés név szerint', 'books_sort_name' => 'Rendezés név szerint',
'books_sort_created' => 'Rendezés létrehozás dátuma szerint', 'books_sort_created' => 'Rendezés létrehozás dátuma szerint',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Összes', 'role_all' => 'Összes',
'role_own' => 'Saját', 'role_own' => 'Saját',
'role_controlled_by_asset' => 'Az általuk feltöltött eszköz által ellenőrzött', 'role_controlled_by_asset' => 'Az általuk feltöltött eszköz által ellenőrzött',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Szerepkör mentése', 'role_save' => 'Szerepkör mentése',
'role_users' => 'Felhasználók ebben a szerepkörben', 'role_users' => 'Felhasználók ebben a szerepkörben',
'role_users_none' => 'Jelenleg nincsenek felhasználók hozzárendelve ehhez a szerepkörhöz', 'role_users_none' => 'Jelenleg nincsenek felhasználók hozzárendelve ehhez a szerepkörhöz',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sortir Buku :bookName', 'books_sort_named' => 'Sortir Buku :bookName',
'books_sort_name' => 'Diurutkan berdasarkan nama', 'books_sort_name' => 'Diurutkan berdasarkan nama',
'books_sort_created' => 'Urutkan berdasarkan Tanggal Dibuat', 'books_sort_created' => 'Urutkan berdasarkan Tanggal Dibuat',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Semua', 'role_all' => 'Semua',
'role_own' => 'Sendiri', 'role_own' => 'Sendiri',
'role_controlled_by_asset' => 'Dikendalikan oleh aset tempat mereka diunggah', 'role_controlled_by_asset' => 'Dikendalikan oleh aset tempat mereka diunggah',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Simpan Peran', 'role_save' => 'Simpan Peran',
'role_users' => 'Peran berhasil diperbarui', 'role_users' => 'Peran berhasil diperbarui',
'role_users_none' => 'Saat ini tidak ada pengguna yang ditugaskan untuk peran ini', 'role_users_none' => 'Saat ini tidak ada pengguna yang ditugaskan untuk peran ini',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Raða bók :bookName', 'books_sort_named' => 'Raða bók :bookName',
'books_sort_name' => 'Raða eftir nafni', 'books_sort_name' => 'Raða eftir nafni',
'books_sort_created' => 'Raða eftir skráningar dagsetningu', 'books_sort_created' => 'Raða eftir skráningar dagsetningu',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Allt', 'role_all' => 'Allt',
'role_own' => 'Eigin', 'role_own' => 'Eigin',
'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to', 'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Vista hlutverk', 'role_save' => 'Vista hlutverk',
'role_users' => 'Notendur í þessu hlutverki', 'role_users' => 'Notendur í þessu hlutverki',
'role_users_none' => 'Engir notendur eru eins og er í þessu hlutverki', 'role_users_none' => 'Engir notendur eru eins og er í þessu hlutverki',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Spostare i capitoli e le pagine di un libro per riorganizzarne il contenuto. Possono essere aggiunti altri libri che permettono di spostare facilmente capitoli e pagine tra i libri. Opzionalmente una regola di ordinamento automatico può essere impostata per ordinare automaticamente i contenuti di questo libro in caso di modifiche.', 'books_sort_desc' => 'Spostare i capitoli e le pagine di un libro per riorganizzarne il contenuto. Possono essere aggiunti altri libri che permettono di spostare facilmente capitoli e pagine tra i libri. Opzionalmente una regola di ordinamento automatico può essere impostata per ordinare automaticamente i contenuti di questo libro in caso di modifiche.',
'books_sort_auto_sort' => 'Opzione Ordinamento Automatico', 'books_sort_auto_sort' => 'Opzione Ordinamento Automatico',
'books_sort_auto_sort_active' => 'Ordinamento Automatico Attivo: :sortName', 'books_sort_auto_sort_active' => 'Ordinamento Automatico Attivo: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Ordina il libro :bookName', 'books_sort_named' => 'Ordina il libro :bookName',
'books_sort_name' => 'Ordina per Nome', 'books_sort_name' => 'Ordina per Nome',
'books_sort_created' => 'Ordina per Data di creazione', 'books_sort_created' => 'Ordina per Data di creazione',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Tutti', 'role_all' => 'Tutti',
'role_own' => 'Propri', 'role_own' => 'Propri',
'role_controlled_by_asset' => 'Controllato dall\'entità in cui sono caricati', 'role_controlled_by_asset' => 'Controllato dall\'entità in cui sono caricati',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Salva ruolo', 'role_save' => 'Salva ruolo',
'role_users' => 'Utenti in questo ruolo', 'role_users' => 'Utenti in questo ruolo',
'role_users_none' => 'Nessun utente assegnato a questo ruolo', 'role_users_none' => 'Nessun utente assegnato a questo ruolo',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'ブック内のチャプタおよびページを移動して内容を再編成できます。他のブックを並べて、ブック間でチャプタやページを簡単に移動することもできます。オプションで自動ソートルールを設定すると、変更時にブックの内容を自動的にソートすることができます。', 'books_sort_desc' => 'ブック内のチャプタおよびページを移動して内容を再編成できます。他のブックを並べて、ブック間でチャプタやページを簡単に移動することもできます。オプションで自動ソートルールを設定すると、変更時にブックの内容を自動的にソートすることができます。',
'books_sort_auto_sort' => '自動ソートオプション', 'books_sort_auto_sort' => '自動ソートオプション',
'books_sort_auto_sort_active' => '自動ソート有効: :sortName', 'books_sort_auto_sort_active' => '自動ソート有効: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'ブック「:bookName」を並べ替え', 'books_sort_named' => 'ブック「:bookName」を並べ替え',
'books_sort_name' => '名前で並べ替え', 'books_sort_name' => '名前で並べ替え',
'books_sort_created' => '作成日で並べ替え', 'books_sort_created' => '作成日で並べ替え',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => '全て', 'role_all' => '全て',
'role_own' => '自身', 'role_own' => '自身',
'role_controlled_by_asset' => 'このアセットに対し、右記の操作を許可:', 'role_controlled_by_asset' => 'このアセットに対し、右記の操作を許可:',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => '役割を保存', 'role_save' => '役割を保存',
'role_users' => 'この役割を持つユーザー', 'role_users' => 'この役割を持つユーザー',
'role_users_none' => 'この役割が付与されたユーザーはいません', 'role_users_none' => 'この役割が付与されたユーザーはいません',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sort Book :bookName', 'books_sort_named' => 'Sort Book :bookName',
'books_sort_name' => 'Sort by Name', 'books_sort_name' => 'Sort by Name',
'books_sort_created' => 'Sort by Created Date', 'books_sort_created' => 'Sort by Created Date',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'All', 'role_all' => 'All',
'role_own' => 'Own', 'role_own' => 'Own',
'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to', 'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Save Role', 'role_save' => 'Save Role',
'role_users' => 'Users in this role', 'role_users' => 'Users in this role',
'role_users_none' => 'No users are currently assigned to this role', 'role_users_none' => 'No users are currently assigned to this role',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => '책 내의 챕터와 페이지를 이동하여 콘텐츠를 재구성할 수 있습니다. 다른 책들을 추가하여 책 간의 챕터와 페이지를 쉽게 이동할 수 있습니다. 선택적으로 자동 정렬 규칙을 설정하여 변경 시 이 책의 콘텐츠를 자동으로 정렬할 수 있습니다.', 'books_sort_desc' => '책 내의 챕터와 페이지를 이동하여 콘텐츠를 재구성할 수 있습니다. 다른 책들을 추가하여 책 간의 챕터와 페이지를 쉽게 이동할 수 있습니다. 선택적으로 자동 정렬 규칙을 설정하여 변경 시 이 책의 콘텐츠를 자동으로 정렬할 수 있습니다.',
'books_sort_auto_sort' => '자동 정렬 옵션', 'books_sort_auto_sort' => '자동 정렬 옵션',
'books_sort_auto_sort_active' => '현재 설정된 자동 정렬: :sortName', 'books_sort_auto_sort_active' => '현재 설정된 자동 정렬: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => ':bookName 정렬', 'books_sort_named' => ':bookName 정렬',
'books_sort_name' => '제목', 'books_sort_name' => '제목',
'books_sort_created' => '만든 날짜', 'books_sort_created' => '만든 날짜',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => '모든 항목', 'role_all' => '모든 항목',
'role_own' => '직접 만든 항목', 'role_own' => '직접 만든 항목',
'role_controlled_by_asset' => '저마다 다름', 'role_controlled_by_asset' => '저마다 다름',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => '저장', 'role_save' => '저장',
'role_users' => '이 역할을 가진 사용자들', 'role_users' => '이 역할을 가진 사용자들',
'role_users_none' => '역할이 부여된 사용자가 없습니다.', 'role_users_none' => '역할이 부여된 사용자가 없습니다.',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sort Book :bookName', 'books_sort_named' => 'Sort Book :bookName',
'books_sort_name' => 'Sort by Name', 'books_sort_name' => 'Sort by Name',
'books_sort_created' => 'Sort by Created Date', 'books_sort_created' => 'Sort by Created Date',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'All', 'role_all' => 'All',
'role_own' => 'Own', 'role_own' => 'Own',
'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to', 'role_controlled_by_asset' => 'Controlled by the asset they are uploaded to',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Save Role', 'role_save' => 'Save Role',
'role_users' => 'Users in this role', 'role_users' => 'Users in this role',
'role_users_none' => 'No users are currently assigned to this role', 'role_users_none' => 'No users are currently assigned to this role',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Rūšiuoti knygą :bookName', 'books_sort_named' => 'Rūšiuoti knygą :bookName',
'books_sort_name' => 'Rūšiuoti pagal vardą', 'books_sort_name' => 'Rūšiuoti pagal vardą',
'books_sort_created' => 'Rūšiuoti pagal sukūrimo datą', 'books_sort_created' => 'Rūšiuoti pagal sukūrimo datą',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Visi', 'role_all' => 'Visi',
'role_own' => 'Nuosavi', 'role_own' => 'Nuosavi',
'role_controlled_by_asset' => 'Kontroliuojami nuosavybės, į kurią yra įkelti', 'role_controlled_by_asset' => 'Kontroliuojami nuosavybės, į kurią yra įkelti',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Išsaugoti vaidmenį', 'role_save' => 'Išsaugoti vaidmenį',
'role_users' => 'Naudotojai šiame vaidmenyje', 'role_users' => 'Naudotojai šiame vaidmenyje',
'role_users_none' => 'Šiuo metu prie šio vaidmens nėra priskirta naudotojų', 'role_users_none' => 'Šiuo metu prie šio vaidmens nėra priskirta naudotojų',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Kārtot grāmatu :bookName', 'books_sort_named' => 'Kārtot grāmatu :bookName',
'books_sort_name' => 'Kārtot pēc nosaukuma', 'books_sort_name' => 'Kārtot pēc nosaukuma',
'books_sort_created' => 'Kārtot pēc izveidošanas datuma', 'books_sort_created' => 'Kārtot pēc izveidošanas datuma',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Visi', 'role_all' => 'Visi',
'role_own' => 'Savi', 'role_own' => 'Savi',
'role_controlled_by_asset' => 'Kontrolē resurss, uz ko tie ir augšupielādēti', 'role_controlled_by_asset' => 'Kontrolē resurss, uz ko tie ir augšupielādēti',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Saglabāt grupu', 'role_save' => 'Saglabāt grupu',
'role_users' => 'Lietotāji šajā grupā', 'role_users' => 'Lietotāji šajā grupā',
'role_users_none' => 'Pagaidām neviens lietotājs nav pievienots šai grupai', 'role_users_none' => 'Pagaidām neviens lietotājs nav pievienots šai grupai',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Flytt kapitler og sider innen en bok for å reorganisere innholdet. Andre bøker kan legges til, noe som gjør det enkelt å flytte kapitler og sider mellom bøkene. Valgfritt kan en automatisk sorteringsregel settes for å automatisk sortere innholdet i denne boken ved endringer.', 'books_sort_desc' => 'Flytt kapitler og sider innen en bok for å reorganisere innholdet. Andre bøker kan legges til, noe som gjør det enkelt å flytte kapitler og sider mellom bøkene. Valgfritt kan en automatisk sorteringsregel settes for å automatisk sortere innholdet i denne boken ved endringer.',
'books_sort_auto_sort' => 'Automatisk sorteringsalternativ', 'books_sort_auto_sort' => 'Automatisk sorteringsalternativ',
'books_sort_auto_sort_active' => 'Automatisk sortering aktiv: :sortName', 'books_sort_auto_sort_active' => 'Automatisk sortering aktiv: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Omorganisér :bookName (bok)', 'books_sort_named' => 'Omorganisér :bookName (bok)',
'books_sort_name' => 'Sorter på navn', 'books_sort_name' => 'Sorter på navn',
'books_sort_created' => 'Sorter på opprettet dato', 'books_sort_created' => 'Sorter på opprettet dato',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Alle', 'role_all' => 'Alle',
'role_own' => 'Egne', 'role_own' => 'Egne',
'role_controlled_by_asset' => 'Kontrollert av eiendelen de er lastet opp til', 'role_controlled_by_asset' => 'Kontrollert av eiendelen de er lastet opp til',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Lagre rolle', 'role_save' => 'Lagre rolle',
'role_users' => 'Kontoholdere med denne rollen', 'role_users' => 'Kontoholdere med denne rollen',
'role_users_none' => 'Ingen kontoholdere er gitt denne rollen', 'role_users_none' => 'Ingen kontoholdere er gitt denne rollen',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'पुस्तकमा अध्यायहरू र पृष्ठहरूलाई पुनः व्यवस्थित गर्नका लागि सार्नुहोस्। अन्य पुस्तकहरू थप्न सकिन्छ जसले अध्याय र पृष्ठहरूलाई पुस्तकहरू बीच सजिलै सर्न मद्दत गर्दछ। वैकल्पिक रूपमा एक स्वचालित वर्गीकरण नियम सेट गर्न सकिन्छ जसले पुस्तकको सामग्रीहरू परिवर्तन भएपछि स्वत: वर्गीकृत गर्छ।', 'books_sort_desc' => 'पुस्तकमा अध्यायहरू र पृष्ठहरूलाई पुनः व्यवस्थित गर्नका लागि सार्नुहोस्। अन्य पुस्तकहरू थप्न सकिन्छ जसले अध्याय र पृष्ठहरूलाई पुस्तकहरू बीच सजिलै सर्न मद्दत गर्दछ। वैकल्पिक रूपमा एक स्वचालित वर्गीकरण नियम सेट गर्न सकिन्छ जसले पुस्तकको सामग्रीहरू परिवर्तन भएपछि स्वत: वर्गीकृत गर्छ।',
'books_sort_auto_sort' => 'स्वचालित वर्गीकरण विकल्प', 'books_sort_auto_sort' => 'स्वचालित वर्गीकरण विकल्प',
'books_sort_auto_sort_active' => 'स्वचालित वर्गीकरण सक्रिय: :sortName', 'books_sort_auto_sort_active' => 'स्वचालित वर्गीकरण सक्रिय: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'पुस्तक :bookName को वर्गीकरण गर्नुहोस्', 'books_sort_named' => 'पुस्तक :bookName को वर्गीकरण गर्नुहोस्',
'books_sort_name' => 'नाम अनुसार वर्गीकृत गर्नुहोस्', 'books_sort_name' => 'नाम अनुसार वर्गीकृत गर्नुहोस्',
'books_sort_created' => 'सिर्जना मितिअनुसार वर्गीकृत गर्नुहोस्', 'books_sort_created' => 'सिर्जना मितिअनुसार वर्गीकृत गर्नुहोस्',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'सबै', 'role_all' => 'सबै',
'role_own' => 'आफ्नो', 'role_own' => 'आफ्नो',
'role_controlled_by_asset' => 'अपलोड गरिएको सम्पत्तिले नियन्त्रण गरेको', 'role_controlled_by_asset' => 'अपलोड गरिएको सम्पत्तिले नियन्त्रण गरेको',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'भूमिका सुरक्षित गर्नुहोस्', 'role_save' => 'भूमिका सुरक्षित गर्नुहोस्',
'role_users' => 'यस भूमिकाका प्रयोगकर्ताहरू', 'role_users' => 'यस भूमिकाका प्रयोगकर्ताहरू',
'role_users_none' => 'यो भूमिकामा हाल कुनै प्रयोगकर्ता छैन', 'role_users_none' => 'यो भूमिकामा हाल कुनै प्रयोगकर्ता छैन',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Verplaats hoofdstukken en pagina\'s door het boek om ze te organiseren. Andere boeken kunnen worden toegevoegd zodat hoofdstukken en pagina\'s gemakkelijk tussen boeken kunnen worden verplaatst. Het is mogelijk om een automatische sorteerregel in te stellen die de inhoud zal sorteren bij wijzigingen.', 'books_sort_desc' => 'Verplaats hoofdstukken en pagina\'s door het boek om ze te organiseren. Andere boeken kunnen worden toegevoegd zodat hoofdstukken en pagina\'s gemakkelijk tussen boeken kunnen worden verplaatst. Het is mogelijk om een automatische sorteerregel in te stellen die de inhoud zal sorteren bij wijzigingen.',
'books_sort_auto_sort' => 'Automatisch Sorteren', 'books_sort_auto_sort' => 'Automatisch Sorteren',
'books_sort_auto_sort_active' => 'Automatisch Sorteren Actief: :sortName', 'books_sort_auto_sort_active' => 'Automatisch Sorteren Actief: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sorteer boek :bookName', 'books_sort_named' => 'Sorteer boek :bookName',
'books_sort_name' => 'Sorteren op naam', 'books_sort_name' => 'Sorteren op naam',
'books_sort_created' => 'Sorteren op datum van aanmaken', 'books_sort_created' => 'Sorteren op datum van aanmaken',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Alles', 'role_all' => 'Alles',
'role_own' => 'Eigen', 'role_own' => 'Eigen',
'role_controlled_by_asset' => 'Gecontroleerd door de asset waar deze is geüpload', 'role_controlled_by_asset' => 'Gecontroleerd door de asset waar deze is geüpload',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Rol Opslaan', 'role_save' => 'Rol Opslaan',
'role_users' => 'Gebruikers in deze rol', 'role_users' => 'Gebruikers in deze rol',
'role_users_none' => 'Geen enkele gebruiker heeft deze rol', 'role_users_none' => 'Geen enkele gebruiker heeft deze rol',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Omorganiser :bookName', 'books_sort_named' => 'Omorganiser :bookName',
'books_sort_name' => 'Sorter på namn', 'books_sort_name' => 'Sorter på namn',
'books_sort_created' => 'Sorter på oppretta dato', 'books_sort_created' => 'Sorter på oppretta dato',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Alle', 'role_all' => 'Alle',
'role_own' => 'Egne', 'role_own' => 'Egne',
'role_controlled_by_asset' => 'Kontrollert av eiendelen de er lastet opp til', 'role_controlled_by_asset' => 'Kontrollert av eiendelen de er lastet opp til',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Lagre rolle', 'role_save' => 'Lagre rolle',
'role_users' => 'Kontoholdere med denne rollen', 'role_users' => 'Kontoholdere med denne rollen',
'role_users_none' => 'Ingen kontoholdere er gitt denne rollen', 'role_users_none' => 'Ingen kontoholdere er gitt denne rollen',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Opcja automatycznego sortowania', 'books_sort_auto_sort' => 'Opcja automatycznego sortowania',
'books_sort_auto_sort_active' => 'Automatyczne sortowanie aktywne: :sortName', 'books_sort_auto_sort_active' => 'Automatyczne sortowanie aktywne: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sortuj książkę :bookName', 'books_sort_named' => 'Sortuj książkę :bookName',
'books_sort_name' => 'Sortuj według nazwy', 'books_sort_name' => 'Sortuj według nazwy',
'books_sort_created' => 'Sortuj według daty utworzenia', 'books_sort_created' => 'Sortuj według daty utworzenia',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Wszyscy', 'role_all' => 'Wszyscy',
'role_own' => 'Własne', 'role_own' => 'Własne',
'role_controlled_by_asset' => 'Kontrolowane przez zasób, do którego zostały udostępnione', 'role_controlled_by_asset' => 'Kontrolowane przez zasób, do którego zostały udostępnione',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Zapisz rolę', 'role_save' => 'Zapisz rolę',
'role_users' => 'Użytkownicy w tej roli', 'role_users' => 'Użytkownicy w tej roli',
'role_users_none' => 'Brak użytkowników zapisanych do tej roli', 'role_users_none' => 'Brak użytkowników zapisanych do tej roli',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Mova capítulos e páginas de um livro para reorganizar o seu conteúdo. É possível acrescentar outros livros, o que permite uma movimentação fácil de capítulos e páginas entre livros. Opcionalmente, uma regra de organização automática pode ser definida para classificar automaticamente o conteúdo deste livro após alterações.', 'books_sort_desc' => 'Mova capítulos e páginas de um livro para reorganizar o seu conteúdo. É possível acrescentar outros livros, o que permite uma movimentação fácil de capítulos e páginas entre livros. Opcionalmente, uma regra de organização automática pode ser definida para classificar automaticamente o conteúdo deste livro após alterações.',
'books_sort_auto_sort' => '', 'books_sort_auto_sort' => '',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Ordenar Livro :bookName', 'books_sort_named' => 'Ordenar Livro :bookName',
'books_sort_name' => 'Ordenar por Nome', 'books_sort_name' => 'Ordenar por Nome',
'books_sort_created' => 'Ordenar por Data de Criação', 'books_sort_created' => 'Ordenar por Data de Criação',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Todos', 'role_all' => 'Todos',
'role_own' => 'Próprio', 'role_own' => 'Próprio',
'role_controlled_by_asset' => 'Controlado pelo ativo para o qual eles são enviados', 'role_controlled_by_asset' => 'Controlado pelo ativo para o qual eles são enviados',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Guardar Cargo', 'role_save' => 'Guardar Cargo',
'role_users' => 'Utilizadores com este cargo', 'role_users' => 'Utilizadores com este cargo',
'role_users_none' => 'Nenhum utilizador está atualmente vinculado a este cargo', 'role_users_none' => 'Nenhum utilizador está atualmente vinculado a este cargo',

View File

@@ -89,7 +89,7 @@ return [
'mfa_setup_action' => 'Configurações', 'mfa_setup_action' => 'Configurações',
'mfa_backup_codes_usage_limit_warning' => 'Você tem menos de 5 códigos de backup restantes, Por favor, gere e armazene um novo conjunto antes de esgotar suas opções de códigos de backup para evitar estar bloqueado para fora da sua conta.', 'mfa_backup_codes_usage_limit_warning' => 'Você tem menos de 5 códigos de backup restantes, Por favor, gere e armazene um novo conjunto antes de esgotar suas opções de códigos de backup para evitar estar bloqueado para fora da sua conta.',
'mfa_option_totp_title' => 'Aplicativo Móvel', 'mfa_option_totp_title' => 'Aplicativo Móvel',
'mfa_option_totp_desc' => 'Para usar a autenticação multi-fator, você precisará de um aplicativo móvel que suporte TOTP como o Google Authenticator, Authy ou o Microsoft Authenticator.', 'mfa_option_totp_desc' => 'Para usar a autenticação multi-fator, você precisará de um aplicativo móvel que suporte TOTP como o Google Authenticator, Authy, Microsoft Authenticator ou Proton Authenticator.',
'mfa_option_backup_codes_title' => 'Códigos de backup', 'mfa_option_backup_codes_title' => 'Códigos de backup',
'mfa_option_backup_codes_desc' => 'Gera um conjunto de códigos de backup de uso único que você inserirá no login para verificar sua identidade. Certifique-se de armazená-los em um local seguro e protegido.', 'mfa_option_backup_codes_desc' => 'Gera um conjunto de códigos de backup de uso único que você inserirá no login para verificar sua identidade. Certifique-se de armazená-los em um local seguro e protegido.',
'mfa_gen_confirm_and_enable' => 'Confirmar e habilitar', 'mfa_gen_confirm_and_enable' => 'Confirmar e habilitar',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Mova capítulos e páginas de um livro para reorganizar seu conteúdo. É possível acrescentar outros livros, o que permite uma movimentação fácil de capítulos e páginas entre livros. Opcionalmente, uma regra de ordenação automática pode ser definida para ordenar automaticamente o conteúdo deste livro após alterações.', 'books_sort_desc' => 'Mova capítulos e páginas de um livro para reorganizar seu conteúdo. É possível acrescentar outros livros, o que permite uma movimentação fácil de capítulos e páginas entre livros. Opcionalmente, uma regra de ordenação automática pode ser definida para ordenar automaticamente o conteúdo deste livro após alterações.',
'books_sort_auto_sort' => 'Opção de ordenação automática', 'books_sort_auto_sort' => 'Opção de ordenação automática',
'books_sort_auto_sort_active' => 'Ordenação automática ativa: :sortName', 'books_sort_auto_sort_active' => 'Ordenação automática ativa: :sortName',
'books_sort_auto_sort_creation_hint' => 'Regras de ordenação automática podem ser criadas na área de configurações "Lista e Classificação" por um usuário com as permissões relevantes.',
'books_sort_named' => 'Ordenar Livro :bookName', 'books_sort_named' => 'Ordenar Livro :bookName',
'books_sort_name' => 'Ordernar por Nome', 'books_sort_name' => 'Ordernar por Nome',
'books_sort_created' => 'Ordenar por Data de Criação', 'books_sort_created' => 'Ordenar por Data de Criação',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Todos', 'role_all' => 'Todos',
'role_own' => 'Próprio', 'role_own' => 'Próprio',
'role_controlled_by_asset' => 'Controlado pelos ativos nos quais o upload foi realizado', 'role_controlled_by_asset' => 'Controlado pelos ativos nos quais o upload foi realizado',
'role_controlled_by_page_delete' => 'Controlado pelas permissões de exclusão de página',
'role_save' => 'Salvar Perfil', 'role_save' => 'Salvar Perfil',
'role_users' => 'Usuários com este perfil', 'role_users' => 'Usuários com este perfil',
'role_users_none' => 'Nenhum usuário está atualmente vinculado a este perfil', 'role_users_none' => 'Nenhum usuário está atualmente vinculado a este perfil',

View File

@@ -173,6 +173,7 @@ return [
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.', 'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books. Optionally an auto sort rule can be set to automatically sort this book\'s contents upon changes.',
'books_sort_auto_sort' => 'Auto Sort Option', 'books_sort_auto_sort' => 'Auto Sort Option',
'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName', 'books_sort_auto_sort_active' => 'Auto Sort Active: :sortName',
'books_sort_auto_sort_creation_hint' => 'Auto sort option rules can be created in the "Lists & Sorting" settings area by a user with the relevant permissions.',
'books_sort_named' => 'Sortează cartea :bookName', 'books_sort_named' => 'Sortează cartea :bookName',
'books_sort_name' => 'Sortează după nume', 'books_sort_name' => 'Sortează după nume',
'books_sort_created' => 'Sortează după data creării', 'books_sort_created' => 'Sortează după data creării',

View File

@@ -207,6 +207,7 @@ return [
'role_all' => 'Tot', 'role_all' => 'Tot',
'role_own' => 'Propriu', 'role_own' => 'Propriu',
'role_controlled_by_asset' => 'Controlat de activele pe care sunt încărcate', 'role_controlled_by_asset' => 'Controlat de activele pe care sunt încărcate',
'role_controlled_by_page_delete' => 'Controlled by page delete permissions',
'role_save' => 'Salvare rol', 'role_save' => 'Salvare rol',
'role_users' => 'Utilizatori cu acest rol', 'role_users' => 'Utilizatori cu acest rol',
'role_users_none' => 'Nici un utilizator nu este asociat acestui rol', 'role_users_none' => 'Nici un utilizator nu este asociat acestui rol',

Some files were not shown because too many files have changed in this diff Show More