From 65faf31d6f514893bf8006e1c4b1eb560c46ebad Mon Sep 17 00:00:00 2001 From: Jenkins Date: Fri, 23 Feb 2024 16:31:56 +0000 Subject: [PATCH 01/13] TASK: Add changelog for 7.3.20 [skip ci] See https://jenkins.neos.io/job/neos-release/420/ --- .../Appendixes/ChangeLogs/7320.rst | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 Neos.Neos/Documentation/Appendixes/ChangeLogs/7320.rst diff --git a/Neos.Neos/Documentation/Appendixes/ChangeLogs/7320.rst b/Neos.Neos/Documentation/Appendixes/ChangeLogs/7320.rst new file mode 100644 index 00000000000..c9b8460eb02 --- /dev/null +++ b/Neos.Neos/Documentation/Appendixes/ChangeLogs/7320.rst @@ -0,0 +1,56 @@ +`7.3.20 (2024-02-23) `_ +================================================================================================ + +Overview of merged pull requests +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +`BUGFIX: Add assetcollection privilege condition to asset edit view in Media.Browser `_ +------------------------------------------------------------------------------------------------------------------------------------------------------ + +In the Media.Browser you can change the AssetCollections via checkboxes even when you don't have the privilege (Neos.Media.Browser:ManageAssetCollections) to do so. +With this PR the checkboxes are only rendered with the right privilege. + +* Packages: ``Neos`` ``Media.Browser`` + +`BUGFIX: MenuHelper uses content dimensions to get node for privilege check `_ +--------------------------------------------------------------------------------------------------------------------------------------------- + +* Resolves: `#4625 `_ + +The Neos backend MenuHelper received a bugfix to filter sites listed by the menu using NodePrivileges. In case of sites with multiple dimensions the dimensionCombinations are considered too. + +**Upgrade instructions** + +**Review instructions** + +This bugfix tries to fix #4025. If 7.3 and upwards is used on a multi site project with multiple dimensions, it might be that +``` +$node = $context->getNode(\\Neos\\ContentRepository\\Domain\\Utility\\NodePaths::addNodePathSegment(SiteService::SITES_ROOT_PATH, $site->getNodeName())); +``` +returns ``null``, causing the next line +``` +if ($this->privilegeManager->isGranted(NodeTreePrivilege::class, new NodePrivilegeSubject($node))) { +``` +to throw an exception. Thus the backend is not accessible anymore. +The reason is, that for multisite projects with multiple dimensions it might be that ``$node`` cannot be retrieved by the default context created. + +The fix is to use ``contentDimensionCombinator`` and also to explicitly check if ``$node`` could be retrieved. +I'm also using the property ``invisibleContentShown`` and ``inaccessibleContentShown`` because it might be that an editor set the Home of a site to ``hidden`` by mistake. Thus the site might not accessible via the menu anymore to possibly fix an editor mistake. + + +* Packages: ``Neos`` + +`BUGFIX: Add dimensions to Workspace module `_ +------------------------------------------------------------------------------------------------------------- + +resolves: `#3470 `_ + +This adds Dimension handling to the current workspaces module. + +Currently the Module only displays changes in different languages as one change. This is because the node path is the same in different languages after they are copied. + + +* Packages: ``Neos`` + +`Detailed log `_ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 5be130ac1bca0ade7840ed8d4939d40e2ad63244 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Fri, 23 Feb 2024 16:38:52 +0000 Subject: [PATCH 02/13] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 10162b16acd..0894edab212 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-02-08 +The following reference was automatically generated from code on 2024-02-23 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 16fd019ced6..36926c46583 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 8efd132cdbe..3161d5f826c 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 37eb193c995..b46f0cfa667 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index aee9dce82f9..ed3bf560a28 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 892c9f3a771..484504d7b19 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index b9584514d7a..aaf4ae12003 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 241e1ec144f..804ce67ac20 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index fb6d1b98241..7ecf6c81025 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index f04412c7576..10ea9468e98 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index d20269868d1..2e4940064e2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 3c3e34d30d2..442153392b6 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index 1c6d7c0eb75..a4a120ebfcc 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index f1b1b0865d4..1528580d0ac 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index d9b9070614d..3c9c0d7fa94 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 2dce019ba08..b3a78a0c559 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index bfe2e988f69..7e8e100693a 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-02-08 +This reference was automatically generated from code on 2024-02-23 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From ac2986625315487fe00c72fb772405f325bba2a9 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Thu, 7 Mar 2024 19:01:49 +0100 Subject: [PATCH 03/13] TASK: Translated using Weblate (Portuguese) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 100.0% (4 of 4 strings) Co-authored-by: Cláudio Esperança Translate-URL: https://hosted.weblate.org/projects/neos/neosneos-validationerrors-73/pt/ Translation: Neos/Neos.Neos - ValidationErrors - 7.3 --- .../Translations/pt/ValidationErrors.xlf | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/Neos.Neos/Resources/Private/Translations/pt/ValidationErrors.xlf b/Neos.Neos/Resources/Private/Translations/pt/ValidationErrors.xlf index 03ff5344a60..b8ab0996ef9 100644 --- a/Neos.Neos/Resources/Private/Translations/pt/ValidationErrors.xlf +++ b/Neos.Neos/Resources/Private/Translations/pt/ValidationErrors.xlf @@ -4,19 +4,23 @@ - The username is already in use. - O nome de usuário já está em uso. + The username is already in use. + O nome de utilizador já está a ser utilizado. + - The hostname "{0}" was not valid. - O nome do host "{0}" não era válido. + The hostname "{0}" was not valid. + O nome do host "{0}" não era válido. + - The given password was empty. - A senha fornecida estava vazia. + The given password was empty. + A senha fornecida estava vazia. + - The passwords did not match. - As senhas não conferem. + The passwords did not match. + As senhas não conferem. + From e34cc365451de160623b490c6ba2a9581afb1b29 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Thu, 7 Mar 2024 18:04:09 +0000 Subject: [PATCH 04/13] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 0894edab212..99426d328a5 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-02-23 +The following reference was automatically generated from code on 2024-03-07 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 36926c46583..23f5a94dfca 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 3161d5f826c..bfb39a7f18f 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index b46f0cfa667..d7472524e4d 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index ed3bf560a28..80d19b4c2bb 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 484504d7b19..80e50ed65e0 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index aaf4ae12003..24b57eed791 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 804ce67ac20..5ba899ba3a4 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 7ecf6c81025..8615b966e6b 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 10ea9468e98..6ad09f55f53 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 2e4940064e2..013343b238d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 442153392b6..af6b6df84d0 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index a4a120ebfcc..f9d1aac1482 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index 1528580d0ac..d0fb616930b 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 3c9c0d7fa94..9d9719591cd 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index b3a78a0c559..690d4278ef4 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 7e8e100693a..3bcdab7abdf 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-02-23 +This reference was automatically generated from code on 2024-03-07 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From c068cc6198d988f8f4bf6c2074566ba7f76dda4a Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sun, 24 Mar 2024 21:01:47 +0100 Subject: [PATCH 05/13] TASK: Translated using Weblate (Portuguese) Currently translated at 98.6% (141 of 143 strings) Co-authored-by: ssantos Translate-URL: https://hosted.weblate.org/projects/neos/neosmediabrowser-main-73/pt/ Translation: Neos/Neos.Media.Browser - Main - 7.3 --- .../Private/Translations/pt/Main.xlf | 286 +++++++++--------- 1 file changed, 144 insertions(+), 142 deletions(-) diff --git a/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf index a97856a202a..debabfc8a5f 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf @@ -3,567 +3,569 @@ - Drag and drop an asset on a collection / tag to add them to it. + Drag and drop an asset on a collection / tag to add them to it. Arraste e solte um ativo numa coleção / tag para los adicionar. - Keep the filename "{0}" + Keep the filename "{0}" Manter o nome do ficheiro "{0}" - Media + Media Mídia - This module allows managing of media assets including pictures, videos, audio and documents. + This module allows managing of media assets including pictures, videos, audio and documents. Este módulo permite o gerenciamento de conteúdos de mídia, incluindo fotos, vídeos, áudio e documentos. - Name + Name Nome - Title + Title Título - Label + Label Etiqueta - Caption + Caption Legenda - Copyright Notice + Copyright Notice Aviso de Direitos Autorais - Last modified + Last modified Último alterado - File size + File size Tamanho do ficheiro - Type + Type Tipo - Tags + Tags Tags - Sort by name + Sort by name Ordenar por nome - Sort by last modified + Sort by last modified Ordenar por modificado - Sort by + Sort by Ordenar por - Sort direction + Sort direction Direção da ordenação - Ascending + Ascending Ascendente - Descending + Descending Descendente - Sort direction Ascending + Sort direction Ascending Ordenar por ordem crescente - Sort direction Descending + Sort direction Descending Ordenar por ordem decrescente - Drag and drop on tag or collection + Drag and drop on tag or collection Arrastar e soltar na tag ou coleção - View + View Ver - View asset + View asset Ver Pacote - Edit asset + Edit asset Editar item - Delete asset + Delete asset Excluir item - Do you really want to delete asset "{0}"? + Do you really want to delete asset "{0}"? Quer mesmo excluir item "{0}"? - Do you really want to delete collection "{0}"? + Do you really want to delete collection "{0}"? Quer mesmo excluir coleção "{0}"? - Do you really want to delete tag "{0}"? + Do you really want to delete tag "{0}"? Quer realmente apagar a tag "{0}"? - This will delete the asset. + This will delete the asset. Isto irá eliminar o item. - This will delete the collection, but not the assets that it contains. + This will delete the collection, but not the assets that it contains. Isto irá apagar a coleção, mas não os itens que ele contém. - This will delete the tag, but not the assets that has it. + This will delete the tag, but not the assets that has it. Isto irá apagar a tag, mas não os itens que ele tem. - This operation cannot be undone. + This operation cannot be undone. Esta operação não pode ser desfeita. - Cancel + Cancel Cancelar - Replace + Replace Substituir - Replace asset resource + Replace asset resource Subtituir o recurso do ativo - Save + Save Gravar - Yes, delete the asset + Yes, delete the asset Sim, excluir o item - Yes, delete the collection + Yes, delete the collection Sim, excluir a coleção - Yes, delete the tag + Yes, delete the tag Sim, excluir a tag - Edit {0} + Edit {0} Editar {0} - Search in assets + Search in assets Pesquisar em itens - Search + Search Procurar - {0} items + {0} items {0} itens - found matching "{0}" + found matching "{0}" encontrado correspondente "{0}" - Upload + Upload Carregar - Filter options + Filter options Opções de filtro - Display all asset types + Display all asset types Exibir todos os tipos de itens - Only display image assets + Only display image assets Exibir somente os itens de imagem - Only display document assets + Only display document assets Exibir somente os itens de documento - Only display video assets + Only display video assets Exibir somente os itens de vídeo - Only display audio assets + Only display audio assets Exibir somente itens de áudio - All + All Tudo - Images + Images Imagens - Documents + Documents Documentos - Video + Video Vídeo - Audio + Audio Áudio - Sort options + Sort options Opções de ordenação - List view + List view Exibir em lista - Thumbnail view + Thumbnail view Exibição de miniaturas - Connection error + Connection error Erro de conexão - Media source + Media source Fonte de mídia - Media sources + Media sources Fontes de Mídia - Collections + Collections Coleções - Edit collections + Edit collections Editar coleções - Edit collection + Edit collection Editar coleção - Delete collection + Delete collection Excluir coleção - Create collection + Create collection Criar coleção - Enter collection title + Enter collection title Digite o título da coleção - All collections + All collections Todas as coleções - Tags + Tags Tags - Edit tags + Edit tags Editar tags - Edit tag + Edit tag Editar tag - Delete tag + Delete tag Excluir tag - Enter tag label + Enter tag label Digite um rótulo - Create tag + Create tag Criar tag - All assets + All assets Todos os ficheiros - All + All Tudo - Untagged assets + Untagged assets Ativos sem tags - Untagged + Untagged Sem marcação - Max. upload size {0} per file + Max. upload size {0} per file Tamanha de upload máximo de {0} por ficheiro - Drop files here + Drop files here Solte os ficheiros aqui - or click to upload + or click to upload ou clique para fazer upload - Choose file + Choose file Escolher ficheiro - No Assets found. + No Assets found. Nenhum item encontrado. - Basics + Basics Básicos - Delete + Delete Excluir - Click to delete + Click to delete Clique para apagar - Save + Save Gravar - Metadata + Metadata Metadados - Filename + Filename Nome do Ficheiro - Last modified (resource) + Last modified (resource) Última modificação (recurso) - File size + File size Tamanho do ficheiro - Dimensions + Dimensions Dimensões - Type + Type Tipo - Identifier + Identifier Identificador - Title + Title Título - Caption + Caption Legenda - Copyright Notice + Copyright Notice Aviso de Direitos Autorais - Preview + Preview Visualizar - Download - Download + Download + Descarregar - Next + Next Próximo - Previous + Previous Anterior - Cannot upload the file + Cannot upload the file Não foi possível carregar o ficheiro - No file selected + No file selected Nenhum ficheiro selecionado - The file size of {0} exceeds the allowed limit of {1} + The file size of {0} exceeds the allowed limit of {1} O tamanho do ficheiro de {0} excede o limite permitido de {1} - for the file + for the file para o ficheiro - Only some of the files were successfully uploaded. Refresh the page to see the those. + Only some of the files were successfully uploaded. Refresh the page to see the those. Apenas alguns dos ficheiros foram enviados com sucesso. Atualize a página para vê-los. - Tagging the asset failed. + Tagging the asset failed. O recurso de tag falhou. - Adding the asset to the collection failed. + Adding the asset to the collection failed. Adicionar item para a coleção falhou. - Creating + Creating Criando - Asset could not be deleted, because there are still Nodes using it + Asset could not be deleted, because there are still Nodes using it Ficheiro não pôde ser excluído, porque ainda está em uso {0} usages - {0} uso + {0} uso + {0} usages - {0} usos + {0} usos + - References to "{asset}" + References to "{asset}" Referências a "{asset}" - Replace "{filename}" + Replace "{filename}" Substituir "{filename}" - You can replace this asset by uploading a new file. Once replaced, the new asset will be used on all places where the asset is used on your website. + You can replace this asset by uploading a new file. Once replaced, the new asset will be used on all places where the asset is used on your website. Pode substituir esse ativo fazendo o upload de um ficheiro novo. Uma vez substituído, o novo ativo será usado em todos os lugares onde o ativo é usado no seu site. - Note + Note Nota - This operation will replace the asset in all published or unpublished workspaces, including the live website. + This operation will replace the asset in all published or unpublished workspaces, including the live website. Esta operação irá substituir o ativo em todos os espaços de trabalho publicados ou não publicados, incluindo o site ao vivo. - Choose a new file + Choose a new file Escolha um novo ficheiro - Currently the asset is used {usageCount} times. + Currently the asset is used {usageCount} times. Atualmente, o ativo é usado {usageCount} vezes. - Show all usages + Show all usages Exibir todos os usos - Currently the asset is not in used anywhere on the website. + Currently the asset is not in used anywhere on the website. Atualmente o ativo não é usado nenhum lugar no site. - Preview current file + Preview current file Pré-visualizar o ficheiro atual - Could not replace asset + Could not replace asset Não foi possível substituir o ativo - Asset "{0}" has been replaced. + Asset "{0}" has been replaced. Mídia "{0}" foi substituída. - Asset "{0}" has been updated. + Asset "{0}" has been updated. A mídia "{0}" foi atualizada. - Asset "{0}" has been added. + Asset "{0}" has been added. A mídia "{0}" foi adicionada. - Asset "{0}" has been deleted. + Asset "{0}" has been deleted. A mídia "{0}" foi apagada. - Asset could not be deleted. + Asset could not be deleted. A mídia não pode ser excluída. - Tag "{0}" already exists and was added to collection. + Tag "{0}" already exists and was added to collection. A tag "{0}" já existe e foi adicionada à coleção. - Tag "{0}" has been created. + Tag "{0}" has been created. Tag "{0}" foi criada. - Tag "{0}" has been updated. + Tag "{0}" has been updated. Tag "{0}" foi atualizada. - Tag "{0}" has been deleted. + Tag "{0}" has been deleted. Tag "{0}" foi excluída. - Collection "{0}" has been created. + Collection "{0}" has been created. Coleção "{0}" foi criada. - Collection "{0}" has been updated. + Collection "{0}" has been updated. Coleção "{0}" foi atualizada. - Collection "{0}" has been deleted. + Collection "{0}" has been deleted. Coleção "{0}" foi excluída. - Generate redirects from original file url to the new url + Generate redirects from original file url to the new url Gerar redirecionamentos da url do ficheiro original para a nova url - 'Resources of type "{0}" can only be replaced by a similar resource. Got type "{1}"' + 'Resources of type "{0}" can only be replaced by a similar resource. Got type "{1}"' ' Recursos do tipo "{0}" apenas podem ser substituídos por um recurso semelhante. Obter tipo "{1}"' - No access to workspace "{0}" + No access to workspace "{0}" Sem acesso ao espaço de trabalho "{0}" - No document node found for this node + No document node found for this node Não foi encontrado nenhum documento de nó para este nó From ff2aa9a557b9ca5f0d9131033a34efa3b396b0c8 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Sun, 24 Mar 2024 20:04:25 +0000 Subject: [PATCH 06/13] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 99426d328a5..1902415ef22 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-03-07 +The following reference was automatically generated from code on 2024-03-24 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 23f5a94dfca..4538af9362d 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index bfb39a7f18f..1dcc792afdd 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index d7472524e4d..77401471dc1 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 80d19b4c2bb..784d611000b 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 80e50ed65e0..98b8907fc70 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 24b57eed791..c1b6d3a9d16 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 5ba899ba3a4..ce1b1a29154 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 8615b966e6b..246c3d533be 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 6ad09f55f53..e1e8219c6a1 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 013343b238d..6c8240a0e31 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index af6b6df84d0..2c9e2126f71 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index f9d1aac1482..99774df347d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index d0fb616930b..d4c9952a1f8 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 9d9719591cd..edecfe1a098 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 690d4278ef4..07c0f136850 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 3bcdab7abdf..888e72b8c40 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-03-07 +This reference was automatically generated from code on 2024-03-24 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From 87a07c9033037c541aa2b502f5f93164f2ac9010 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Thu, 28 Mar 2024 13:02:00 +0100 Subject: [PATCH 07/13] =?UTF-8?q?TASK:=20Translated=20using=20Weblate=20(N?= =?UTF-8?q?orwegian=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 79.8% (218 of 273 strings) Co-authored-by: Allan Nordhøy Translate-URL: https://hosted.weblate.org/projects/neos/neosneos-main-73/nb_NO/ Translation: Neos/Neos.Neos - Main - 7.3 --- .../Private/Translations/no/Main.xlf | 544 +++++++++--------- 1 file changed, 272 insertions(+), 272 deletions(-) diff --git a/Neos.Neos/Resources/Private/Translations/no/Main.xlf b/Neos.Neos/Resources/Private/Translations/no/Main.xlf index 023c95b5aa9..58b091333e9 100644 --- a/Neos.Neos/Resources/Private/Translations/no/Main.xlf +++ b/Neos.Neos/Resources/Private/Translations/no/Main.xlf @@ -4,1098 +4,1098 @@ - Auto-Publish + Auto-Publish Autopubliser - Auto-Publish to {0} + Auto-Publish to {0} Autopubliser til {0} - Review changes + Review changes Se gjennom endringene - Apply + Apply Ta i bruk - Apply changes + Apply changes Bruk endringer - Cancel + Cancel Avbryt - Back + Back Tilbake - Choose + Choose Velg - Type to search + Type to search Skriv for å søke - Content + Content Innhold - Node + Node Node - Content View + Content View Innholdsvisning - Create after + Create after Opprett etter - Create new + Create new Opprett ny - Close + Close Lukk - Copy + Copy Kopier - Cut + Cut Klipp ut - Delete + Delete Slett - Yes, delete the element + Yes, delete the element Ja, slett elementet - Delete the element + Delete the element Slett elementet - Discard + Discard Forkast - Discard changes + Discard changes Forkast endringer - Edit title + Edit title Rediger tittel - Edit / Preview + Edit / Preview Rediger / Forhåndsvis - Edit + Edit Rediger - Hide / Unhide + Hide / Unhide Skjul / Vis - Hide + Hide Skjul - Unhide + Unhide Opphev skjuling - into + into inn i - before + before før - after + after etter - Loading + Loading Laster inn - New After + New After Ny etter - New Before + New Before Ny før - New Into + New Into Ny inn i - Navigate + Navigate Naviger - OK + OK OK - Page + Page Side - Paste + Paste Lim inn - Paste After + Paste After Lim inn etter - Paste Before + Paste Before Lim inn før - Paste Into + Paste Into Lim inn i - Password + Password Passord - Preview + Preview Forhåndsvis - Publish + Publish Publiser - Publish to {0} + Publish to {0} Publiser til {0} - Publish all changes for current page + Publish all changes for current page Publiser alle endringer for gjeldende side - Can't publish because the target workspace is read-only + Can't publish because the target workspace is read-only Kan ikke publisere fordi arbeidsområdet du vil publisere til er skrivebeskyttet - Select target workspace + Select target workspace Velg et arbeidsområde - Publishing + Publishing Publisering - Published + Published Publisert - Toggle publish menu + Toggle publish menu Slå av/på publiseringsmeny - Target workspace + Target workspace Målarbeidsområde - Current workspace + Current workspace Gjeldende arbeidsområde - Remove + Remove Fjern - Refresh + Refresh Oppdater - Save + Save Lagre - Saving + Saving Lagrer... - Saved + Saved Lagret - Search + Search Søk - Toggle inspector + Toggle inspector Vis/skjul inspektør - Username + Username Brukernavn - You + You Deg - [no title] + [no title] [uten navn] - Label + Label Etikett - Content Type + Content Type Nodetype - Path + Path Bane - Relative Path + Relative Path Relativ bane - Version + Version Versjon - This operation cannot be undone. + This operation cannot be undone. Denne operasjonen kan ikke angres. - Asset + Asset Ressurs - Created + Created Opprettet - Last modification + Last modification Sist endret - Last publication + Last publication Sist publisert - Identifier + Identifier Identifikator - Name + Name Navn - Workspace + Workspace Arbeidsområde - Structure + Structure Struktur - Toggle context structure + Toggle context structure Velg kontekststruktur - Filter + Filter Filter - Toggle menu + Toggle menu Vis/skjul meny - Load error! + Load error! Feil under innlasting! - You have to select a node + You have to select a node Du må velge en node - The Root node cannot be deleted. + The Root node cannot be deleted. Rotnoden kan ikke slettes - You cannot copy this node + You cannot copy this node Du kan ikke kopiere denne noden - You cannot cut this node + You cannot cut this node Du kan ikke klippe ut denne noden - Content Dimensions + Content Dimensions Innholdsdimensjoner - Site + Site Site - Document + Document Dokument - Reference + Reference Referanse - Host + Host Vert - Scheme + Scheme Oppsett - Port + Port Port - Primary + Primary Primært - Package + Package Package - Deactivated + Deactivated Deactivated - Unavailable + Unavailable Unavailable - Inactive + Inactive Inactive - Click to edit + Click to edit Klikk for å redigere - Click to deactivate + Click to deactivate Click to deactivate - Click to activate + Click to activate Click to activate - Click to delete + Click to delete Klikk for å slette - Click to create new + Click to create new Click to create new - Status + Status Status - Active + Active Active - Domains + Domains Domains - Domain + Domain Domain - Yes, delete it! + Yes, delete it! Yes, delete it! - Package Key + Package Key Package Key - Description + Description Beskrivelse - Toggle content tree + Toggle content tree Toggle content tree - Show publish options + Show publish options Show publish options - Activate Fullscreen edit mode + Activate Fullscreen edit mode Activate Fullscreen edit mode - Deactivate Fullscreen edit mode + Deactivate Fullscreen edit mode Deactivate Fullscreen edit mode - Show preview + Show preview Show preview - General + General Generelt - Structure + Structure Struktur - Plugins + Plugins Plugins - Click {0} to continue to the page. + Click {0} to continue to the page. Klikk {0} å fortsette til siden. - Click {0} to see the file. + Click {0} to see the file. Klikk {0} for å se filen. - Click {0} to open the link. + Click {0} to open the link. Klikk {0} for å åpne koblingen. - (no target has been selected) + (no target has been selected) (ingen mål er valgt) - This is a shortcut to the first child page.<br />Click {0} to continue to the page. + This is a shortcut to the first child page.<br />Click {0} to continue to the page. Dette er en snarvei til den første undersiden.<br />Klikk {0} for å fortsette til siden. - This is a shortcut to the parent page.<br />Click {0} to continue to the page. + This is a shortcut to the parent page.<br />Click {0} to continue to the page. Dette er en snarvei til den overordnede siden. <br /> Klikk {0} å fortsette til siden. - Full Screen + Full Screen Fullskjerm - Open page in live workspace + Open page in live workspace Deprecated, replaced by previewShortcutButton.title Åpne siden i live-arbeidsområdet - Open page in target workspace + Open page in target workspace Åpne siden i valgt arbeidsområde - Discard all + Discard all Forkast alt - Discard all changes + Discard all changes Forkast alle endringer - Are you sure that you want to discard all changes in this workspace? + Are you sure that you want to discard all changes in this workspace? Er du sikker på at du vil forkaste alle endringer i dette arbeidsområdet? - Are you sure that you want to discard {numberOfChanges} change(s) in this workspace? + Are you sure that you want to discard {numberOfChanges} change(s) in this workspace? Are you sure that you want to discard {numberOfChanges} change(s) in this workspace? - Publish all + Publish all Publiser alt - Publish all changes + Publish all changes Publiser alle endringer - Are you sure that you want to publish all changes? + Are you sure that you want to publish all changes? Er du sikker på at du vil publisere alle endringer? - Pending changes + Pending changes Ventende endringer - Your personal workspace currently contains unpublished changes. In order to switch to a different target workspace you need to either publish or discard pending changes first. + Your personal workspace currently contains unpublished changes. In order to switch to a different target workspace you need to either publish or discard pending changes first. Det personlige arbeidsområde inneholder upubliserte endringer. For å bytte til et annet arbeidsområde må du enten publisere eller forkaste ventende endringer først. - Please review your changes, publish or discard them, and then choose a new target workspace again. + Please review your changes, publish or discard them, and then choose a new target workspace again. Se gjennom endringene og publiser eller forkast dem og velg deretter et nytt arbeidsområde. - Editing Modes + Editing Modes Redigeringsmoduser - Preview Central + Preview Central Forhåndsvisningssentral - You still have changes. What do you want to do with them? + You still have changes. What do you want to do with them? Du har fortsatt endringer. Hva vil du gjøre med dem? - Selected element + Selected element Markert element - There are fields that are not correctly filled in. + There are fields that are not correctly filled in. Det er felt som ikke er fylt ut riktig. - The fields marked with an error are not yet correctly filled in. Please complete them properly. + The fields marked with an error are not yet correctly filled in. Please complete them properly. Feltene merket med feil er ikke ennå riktig fylt ut. Fyll dem ut riktig. - Continue editing + Continue editing Fortsett redigeringen - Throw away + Throw away Forkast - Apply + Apply Ta i bruk - Select a Plugin + Select a Plugin Velg en plugin - No plugin configured + No plugin configured Ingen plugin konfigurert - view is displayed on page + view is displayed on page visningen finnes på siden - view is displayed on current page + view is displayed on current page visningen finnes på den aktive siden - No date set + No date set Ingen dato - Edit code + Edit code Rediger kode - Paste a link, or type to search + Paste a link, or type to search Lim inn en kobling eller skriv for å søke - Unable to load sub node types of: + Unable to load sub node types of: Kan ikke laste inn undernoden av typen: - Change type + Change type Endre type - Additional info + Additional info Ytterligere info - Visibility + Visibility Synlighet - Document options + Document options Dokumentegenskaper - The length of this text must be between {minimum} and {maximum} characters. + The length of this text must be between {minimum} and {maximum} characters. Lengden på denne teksten må være mellom {{minimum}} og {{maximum}} tegn. - This field must contain at least {minimum} characters. + This field must contain at least {minimum} characters. Dette feltet må inneholde minst {{minimum}} tegn. - This text may not exceed {maximum} characters. + This text may not exceed {maximum} characters. Denne teksten kan ikke være lenger enn {{maximum}} tegn. - Only regular characters (a to z, umlauts, ...) and numbers are allowed. + Only regular characters (a to z, umlauts, ...) and numbers are allowed. Bare vanlige tegn (a til å, omlyder, m. fl.) og tall er tillatt. - The given subject was not countable. + The given subject was not countable. Verdien var ikke tellbar. - The count must be between {minimum} and {maximum}. + The count must be between {minimum} and {maximum}. Antallet må være mellom {{minimum}} og {{maximum}}. - The given value was not a valid date. + The given value was not a valid date. Den gitte verdien var ikke en gyldig dato. - The given date must be between {formatEarliestDate} and {formatLatestDate} + The given date must be between {formatEarliestDate} and {formatLatestDate} Den angitte datoen må være mellom {{formatEarliestDate}} og {{formatLatestDate}} - The given date must be after {formatEarliestDate} + The given date must be after {formatEarliestDate} Den angitte datoen må være etter {{formatEarliestDate}} - The given date must be before {formatLatestDate} + The given date must be before {formatLatestDate} Den angitte datoen må være før {{formatLatestDate}} - Please specify a valid email address. - Angi en gyldig epostadresse. + Please specify a valid email address. + Angi en gyldig e-postadresse. - A valid float number is expected. + A valid float number is expected. Verdien må være et gyldig desimaltall. - A valid integer number is expected. + A valid integer number is expected. Verdien må være et gyldig heltall. - Only letters, numbers, spaces and certain punctuation marks are expected. + Only letters, numbers, spaces and certain punctuation marks are expected. Bare bokstaver, tall, mellomrom og visse tegn kan brukes. - This property is required. + This property is required. Denne verdien er påkrevet. - A valid number is expected. + A valid number is expected. Verdien må være et gyldig tall. - Please enter a valid number between {minimum} and {maximum} + Please enter a valid number between {minimum} and {maximum} Angi et tall mellom {{minimum}} og {{maximum}} - The given subject did not match the pattern ({pattern}) + The given subject did not match the pattern ({pattern}) Verdien samsvarte ikke med mønsteret ({{pattern}}) - A valid string is expected. + A valid string is expected. Verdien må være en tekst. - Valid text without any XML tags is expected. + Valid text without any XML tags is expected. Teksten må være uten XML-tagger. - The given subject is not a valid UUID. + The given subject is not a valid UUID. Verdien er ikke en gyldig UUID. - Toggle content dimensions selector + Toggle content dimensions selector Vis/skjul velger for innholdsdimensjoner - Start with an empty or pre-filled document? + Start with an empty or pre-filled document? Start med et tomt eller forhåndsutfylt dokument? - This {nodeTypeLabel} does not exist yet in {currentDimensionChoiceText}. + This {nodeTypeLabel} does not exist yet in {currentDimensionChoiceText}. Denne {nodeTypeLabel} eksisterer ikke ennå i {currentDimensionChoiceText}. - You can create it now, either starting with an empty {nodeTypeLabel} or copying all content from the currently visible {nodeTypeLabel} in {currentDocumentDimensionChoiceText}. + You can create it now, either starting with an empty {nodeTypeLabel} or copying all content from the currently visible {nodeTypeLabel} in {currentDocumentDimensionChoiceText}. Du kan opprette den nå, enten ved å starte med en tom {nodeTypeLabel} eller å kopiere innholdet fra den nåværende, synlige {nodeTypeLabel} i {currentDocumentDimensionChoiceText}. - Additionally, there are {numberOfNodesMissingInRootline} ancestor documents which do not exist in the chosen variant either, and which will be created as well. + Additionally, there are {numberOfNodesMissingInRootline} ancestor documents which do not exist in the chosen variant either, and which will be created as well. I tillegg er det {numberOfNodesMissingInRootline} forgjenger-dokumenter som ikke eksisterer i den valgte varienten heller, som vil opprettes. - Create empty + Create empty Opprett tom - Create and copy + Create and copy Opprett og kopier - Content + Content Innhold - Toggle menu group + Toggle menu group Vis/skjul menygruppe - Toggle sticky menu mode + Toggle sticky menu mode Skru av/på festbar meny-modus - Do you really want to delete + Do you really want to delete Ønsker du virkelig å slette - This will delete the element + This will delete the element Dette vil slette elementet - and it's children + and it's children og dets underelementer - This action can be undone in the workspace management. + This action can be undone in the workspace management. Denne handlingen kan angres i administrasjonsmodulen for arbeidsområder. - Height + Height Høyde - Do you really want to delete + Do you really want to delete Ønsker du virkelig å slette - this element + this element dette elementet - This will delete the element. + This will delete the element. Dette vil slette elementet. - This action can be undone in the workspace management. + This action can be undone in the workspace management. Denne handlingen kan angres i administrasjonsmodulen for arbeidsområder. - Media + Media Media - Crop + Crop Beskjær - Width + Width Bredde - Missing required property: + Missing required property: Mangler nødvendig verdi: - Workspace + Workspace Arbeidsområde - Workspaces + Workspaces Arbeidsområder - An error occurred during saving + An error occurred during saving Feil under lagring - Reload the page to attempt to fix the problem. + Reload the page to attempt to fix the problem. Oppdater siden for å løse problemet. - Reload the backend + Reload the backend Last inn backend på nytt - Reload + Reload Last inn på nytt - In-Place + In-Place Direkte - Raw Content + Raw Content Uten layout - Raw Content Mode + Raw Content Mode Rå innholds-modus - Desktop + Desktop Skrivebord - Login to + Login to Innlogging for TYPO3 Neos - Authenticating + Authenticating Godkjenner - Logout + Logout Logg ut - The entered username or password was wrong + The entered username or password was wrong Det inntastede brukernavnet eller passordet er feil - Your login has expired. Please log in again. + Your login has expired. Please log in again. Din innlogging har utløpt. Vennligst logg inn på nytt. - Welcome to Neos + Welcome to Neos Welcome to Neos - Go to setup + Go to setup Gå til oppsett - Technical Information + Technical Information Technical Information - Missing Homepage + Missing Homepage Mangler Hjem-side - Either no site has been defined, the site does not contain a homepage or the active site couldn't be determined. + Either no site has been defined, the site does not contain a homepage or the active site couldn't be determined. Enten har ingen nettsteder blitt definert eller nettstedet mangler en hjem-side eller det var umulig å fastslå hvilket nettsted som er aktivt. - You might want to set the site's domain or import a new site in the setup. + You might want to set the site's domain or import a new site in the setup. Du kan angi domenet til nettstedet eller importere et nytt område. - Database Error + Database Error Databasefeil - There is no database connection yet or the Neos database schema has not been created. + There is no database connection yet or the Neos database schema has not been created. There is no database connection yet or the Neos database schema has not been created. - Run the setup to configure your database. + Run the setup to configure your database. Run the setup to configure your database. - Page Not Found + Page Not Found Finner ikke siden - Sorry, the page you requested was not found. + Sorry, the page you requested was not found. Beklager, men den ønskede siden ble ikke funnet. - Invalid NodeType + Invalid NodeType Ugyldig nodetype - The configuration of the NodeType that is supposed to be rendered here is not available. Probably you renamed the NodeType and are missing a migration or you simply misspelled it. + The configuration of the NodeType that is supposed to be rendered here is not available. Probably you renamed the NodeType and are missing a migration or you simply misspelled it. Konfigurasjonen av nodetypen som skal gjengis her er ikke tilgjengelig. Sannsynligvis har du omdøpt nodetypen og mangler en migrasjon eller du har feilstavet navnet. - Unexpected error while creating node + Unexpected error while creating node En uforventet feil oppsto under oppretting av node - Unexpected error while deleting node + Unexpected error while deleting node En uforventet feil oppsto under sletting av node - Unexpected error while updating node + Unexpected error while updating node En uforventet feil oppsto under oppdatering av node - Unexpected error while moving node + Unexpected error while moving node En uforventet feil oppsto under flytting av node - Node Tree loading error. + Node Tree loading error. Feil under lasting av nodetre - The entered username or password was wrong + The entered username or password was wrong Det inntastede brukernavnet eller passordet er feil - "{nodeTypeName}" on page "{pageLabel}" + "{nodeTypeName}" on page "{pageLabel}" "{nodeTypeName}" på siden "{pageLabel}" - Nodes + Nodes Noder - Show + Show Vis - This node cannot be accessed through a public URL + This node cannot be accessed through a public URL Denne noden kan ikke nås gjennom en offentlig URL-adresse - Node Properties + Node Properties Egenskaper for node - Copy {source} to {target} + Copy {source} to {target} Copy {source} to {target} - Move {source} to {target} + Move {source} to {target} Move {source} to {target} - Please select the position at which you want {source} inserted relative to {target}. + Please select the position at which you want {source} inserted relative to {target}. Please select the position at which you want {source} inserted relative to {target}. - Insert + Insert Insert - Insert mode + Insert mode Insert mode - Choose an Aspect Ratio + Choose an Aspect Ratio Choose an Aspect Ratio - Bold + Bold Bold - Italic + Italic Italic - Underline + Underline Underline - Subscript + Subscript Subscript - Superscript + Superscript Superscript - Strikethrough + Strikethrough Strikethrough - Link + Link Link - Ordered list + Ordered list Ordered list - Unordered list + Unordered list Unordered list - Align left + Align left Align left - Align right + Align right Align right - Align center + Align center Align center - Align justify + Align justify Align justify - Table + Table Table - Remove format + Remove format Remove format - Outdent + Outdent Outdent - Indent + Indent Indent - Create new + Create new Opprett ny - No matches found + No matches found No matches found - Please enter ###CHARACTERS### more character + Please enter ###CHARACTERS### more character Please enter ###CHARACTERS### more character - Wrong Credentials + Wrong Credentials Wrong Credentials - The entered username or password was wrong + The entered username or password was wrong Det inntastede brukernavnet eller passordet er feil - Logged Out + Logged Out Logged Out - Successfully logged out + Successfully logged out Successfully logged out From d3ce51cb868ed4fbef9446db54b0d0e511e940ee Mon Sep 17 00:00:00 2001 From: Jenkins Date: Thu, 28 Mar 2024 12:07:25 +0000 Subject: [PATCH 08/13] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 1902415ef22..01e7925333d 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-03-24 +The following reference was automatically generated from code on 2024-03-28 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index 4538af9362d..a1f5a4699fe 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 1dcc792afdd..1c1157205be 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index 77401471dc1..e7e7d3e3b40 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 784d611000b..3859eb740b1 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 98b8907fc70..d1b742c58a3 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index c1b6d3a9d16..97c0b56bccd 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index ce1b1a29154..636b3b11fbc 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 246c3d533be..40c22e0ea9d 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index e1e8219c6a1..6b4312071c9 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 6c8240a0e31..912ebf0f3b0 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 2c9e2126f71..a6ca2930407 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index 99774df347d..e3c4f0fba6b 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index d4c9952a1f8..ecf083036f5 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index edecfe1a098..6f989ac1e2d 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index 07c0f136850..ae23f272e8c 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 888e72b8c40..8f05cc8219e 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-03-24 +This reference was automatically generated from code on 2024-03-28 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From 2524b024a19462e600eb7a7e2258eac521590ac3 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sat, 30 Mar 2024 15:02:17 +0100 Subject: [PATCH 09/13] TASK: Update translation files Updated by "Squash Git commits" hook in Weblate. Co-authored-by: Hosted Weblate Translate-URL: https://hosted.weblate.org/projects/neos/neosnodetypesnavigation-nodetypesnavigation-73/ Translation: Neos/Neos.NodeTypes.Navigation - NodeTypes/Navigation - 7.3 --- .../Resources/Private/Translations/pt/Main.xlf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf b/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf index debabfc8a5f..36d730eca84 100644 --- a/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf +++ b/Neos.Media.Browser/Resources/Private/Translations/pt/Main.xlf @@ -568,6 +568,14 @@ No document node found for this node Não foi encontrado nenhum documento de nó para este nó + + Create missing variants + Criar variantes que faltam + + + This asset might contain malicious content! + Este recurso pode conter conteúdo malicioso! + From 4ca4c9a1d6825c83e66a41c26be3c982d8250e47 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Sat, 30 Mar 2024 15:02:18 +0100 Subject: [PATCH 10/13] TASK: Update translation files Updated by "Squash Git commits" hook in Weblate. Translation: Neos/Neos.Media.Browser - Main - 7.3 Translate-URL: https://hosted.weblate.org/projects/neos/neosmediabrowser-main-73/ --- .../Private/Translations/pt/Main.xlf | 554 +++++++++--------- .../Translations/pt/NodeTypes/Navigation.xlf | 38 +- 2 files changed, 302 insertions(+), 290 deletions(-) diff --git a/Neos.Neos/Resources/Private/Translations/pt/Main.xlf b/Neos.Neos/Resources/Private/Translations/pt/Main.xlf index 4d7dc4ad55b..72dd3f51c5b 100644 --- a/Neos.Neos/Resources/Private/Translations/pt/Main.xlf +++ b/Neos.Neos/Resources/Private/Translations/pt/Main.xlf @@ -4,1105 +4,1117 @@ - Auto-Publish + Auto-Publish Auto-Publicar - Auto-Publish to {0} + Auto-Publish to {0} Publicar automaticamente para {0} - Review changes + Review changes Rever alterações - Apply + Apply Aplicar - Apply changes + Apply changes Aplicar alterações - Cancel + Cancel Cancelar - Back + Back Voltar - Choose + Choose Escolha - Type to search + Type to search Digite para pesquisar - Content + Content Conteúdo - Node + Node Node - Content View + Content View Visualização de Conteúdo - Create after + Create after Criar depois - Create new + Create new Criar novo - Close + Close Fechar - Copy + Copy Copiar - Cut + Cut Recortar - Delete + Delete Excluir - Yes, delete the element + Yes, delete the element Sim, excluir o elemento - Delete the element + Delete the element Excluir o elemento - Discard + Discard Descartar - Discard changes + Discard changes Descartar alterações - Edit title + Edit title Editar título - Edit / Preview + Edit / Preview Editar / Visualizar - Edit + Edit Editar - Hide / Unhide + Hide / Unhide Ocultar / Exibir - Hide + Hide Esconder - Unhide + Unhide Tornar visível - into + into em - before + before antes - after + after após - Loading + Loading A carregar - New After + New After Novo Depois - New Before + New Before Novo Antes - New Into + New Into Novo Em - Navigate + Navigate Navegar - OK + OK OK - Page + Page Página - Paste + Paste Colar - Paste After + Paste After Colar Depois - Paste Before + Paste Before Colar Antes - Paste Into + Paste Into Colar Em - Password + Password Senha - Preview + Preview Visualizar - Publish + Publish Publicar - Publish to {0} + Publish to {0} Publicar para {0} - Publish all changes for current page + Publish all changes for current page Publicar todas as alterações para a página atual - Can't publish because the target workspace is read-only + Can't publish because the target workspace is read-only Não é possível publicar porque a área de trabalho alvo é somente para leitura - Select target workspace + Select target workspace Selecione o espaço de trabalho de destino - Publishing + Publishing A publicar - Published + Published Publicado - Toggle publish menu + Toggle publish menu Abrir/Fechar menu de publicação - Target workspace + Target workspace Espaço de trabalho de destino - Current workspace + Current workspace Espaço de trabalho atual - Remove + Remove Remover - Refresh + Refresh Atualizar - Save + Save Gravar - Saving + Saving Salvando... - Saved + Saved Salvo - Search + Search Procurar - Toggle inspector + Toggle inspector Ativar/Desativar inspetor - Username + Username Nome de Usuário - You + You Você - [no title] + [no title] [sem título] - Label + Label Etiqueta - Content Type + Content Type Tipo de Conteúdo - Path + Path Caminho - Relative Path + Relative Path Caminho relativo - Version + Version Versão - This operation cannot be undone. + This operation cannot be undone. Esta operação não pode ser desfeita. - Asset + Asset Ítem - Created + Created Criado - Last modification + Last modification Última Modificação - Last publication + Last publication Última publicação - Identifier + Identifier Identificador - Name + Name Nome - Workspace + Workspace Workspace - Structure + Structure Estrutura - Toggle context structure + Toggle context structure Abrir/Fechar estrutura do contexto - Filter + Filter Filtro - Toggle menu + Toggle menu Alternar o menu - Load error! + Load error! Erro ao carregar! - You have to select a node + You have to select a node Selecione um nó - The Root node cannot be deleted. + The Root node cannot be deleted. O nó raíz não pode ser removido. - You cannot copy this node + You cannot copy this node Não pode copiar este nó - You cannot cut this node + You cannot cut this node Não pode cortar este nó - Content Dimensions + Content Dimensions Dimensões de conteúdo - Site + Site Site - Document + Document Documento - Reference + Reference Referência - Host + Host Servidor - Scheme + Scheme Esquema - Port + Port Porta - Primary + Primary Primário - Package + Package Pacote - Deactivated + Deactivated Desativado - Unavailable + Unavailable Indisponível - Inactive + Inactive Inativo - Click to edit + Click to edit Clique para editar - Click to deactivate + Click to deactivate Clique para desativar - Click to activate + Click to activate Clique para ativar - Click to delete + Click to delete Clique para apagar - Click to create new + Click to create new Clique para criar um novo - Status + Status Estado - Active + Active Ativo - Domains + Domains Domínios - Domain + Domain Domínio - Yes, delete it! + Yes, delete it! Sim, elimine-o! - Package Key + Package Key Chave de pacote - Description + Description Descrição - Toggle content tree + Toggle content tree Alternar painel de conteúdo - Show publish options + Show publish options Mostrar opções de publicação - Activate Fullscreen edit mode + Activate Fullscreen edit mode Ativar modo de edição de ecrã inteiro - Deactivate Fullscreen edit mode + Deactivate Fullscreen edit mode Desativar modo de edição de ecrã inteiro - Show preview + Show preview Mostrar pré-visualização - General + General Geral - Structure + Structure Estrutura - Plugins + Plugins Extensões - Click {0} to continue to the page. + Click {0} to continue to the page. Clique aqui para continuar para a página {0}. - Click {0} to see the file. + Click {0} to see the file. Clique aqui para continuar o recurso {0}. - Click {0} to open the link. + Click {0} to open the link. Clique aqui para continuar para a página de ext {0}. - (no target has been selected) + (no target has been selected) (nenhum alvo foi selecionado) - This is a shortcut to the first child page.<br />Click {0} to continue to the page. + This is a shortcut to the first child page.<br />Click {0} to continue to the page. Isto é um atalho para a primeira página filha. <br />Clique em {0} para continuar para a página. - This is a shortcut to the parent page.<br />Click {0} to continue to the page. + This is a shortcut to the parent page.<br />Click {0} to continue to the page. Este é um atalho para a página pai.<br />Clique em {0} para continuar para a página. - Full Screen + Full Screen Tela Cheia - Open page in live workspace + Open page in live workspace Deprecated, replaced by previewShortcutButton.title Página aberta em espaço de trabalho ao vivo - Open page in target workspace + Open page in target workspace Abrir página em espaço de trabalho de destino - Discard all + Discard all Descartar todos - Discard all changes + Discard all changes Descartar todas as alterações - Are you sure that you want to discard all changes in this workspace? + Are you sure that you want to discard all changes in this workspace? Tem certeza que deseja descartar todas as alterações neste espaço de trabalho? - Are you sure that you want to discard {numberOfChanges} change(s) in this workspace? + Are you sure that you want to discard {numberOfChanges} change(s) in this workspace? Tem certeza de que deseja descartar {numberOfChanges} mudança(s) neste espaço de trabalho? - Publish all + Publish all Publicar todos - Publish all changes + Publish all changes Publicar todas as alterações - Are you sure that you want to publish all changes? + Are you sure that you want to publish all changes? Tem certeza que deseja publicar todas as alterações? - Pending changes + Pending changes Alterações pendentes - Your personal workspace currently contains unpublished changes. In order to switch to a different target workspace you need to either publish or discard pending changes first. + Your personal workspace currently contains unpublished changes. In order to switch to a different target workspace you need to either publish or discard pending changes first. O seu espaço de trabalho pessoal atualmente contém alterações inéditas. Para alternar para uma área de destino diferente, precisa publicar ou descartar as alterações pendentes primeiro. - Please review your changes, publish or discard them, and then choose a new target workspace again. + Please review your changes, publish or discard them, and then choose a new target workspace again. Por favor reveja as suas alterações, publique ou descarte-as e em seguida escolha um novo espaço de trabalho de destino. - Editing Modes + Editing Modes Modos de Edição - Preview Central + Preview Central Central de Visualização - You still have changes. What do you want to do with them? + You still have changes. What do you want to do with them? Você ainda tem mudanças. O que quer fazer com eles? - Selected element + Selected element Elemento selecionado - There are fields that are not correctly filled in. + There are fields that are not correctly filled in. Existem campos que não estão corretamente preenchidos. - The fields marked with an error are not yet correctly filled in. Please complete them properly. + The fields marked with an error are not yet correctly filled in. Please complete them properly. Os campos marcados com um erro ainda não estão corretamente preenchidos. Por favor preencha-os corretamente. - Continue editing + Continue editing Continuar editando - Throw away + Throw away Jogar fora - Apply + Apply Aplicar - Select a Plugin + Select a Plugin Selecione um plugin - No plugin configured + No plugin configured Nenhum plugin configurado - view is displayed on page + view is displayed on page modo de exibição é exibido na página - view is displayed on current page + view is displayed on current page modo de exibição é exibido na página atual - No date set + No date set Sem data definida - Edit code + Edit code Editar código - Paste a link, or type to search + Paste a link, or type to search Cole uma ligação ou digite para procurar - Unable to load sub node types of: + Unable to load sub node types of: Não é possível carregar tipos de sub node: - Change type + Change type Mudar escrita - Additional info + Additional info Informação adicional - Visibility + Visibility Visibilidade - Document options + Document options Opções do documento - The length of this text must be between {minimum} and {maximum} characters. + The length of this text must be between {minimum} and {maximum} characters. O comprimento deste texto deve estar entre {{minimum}} e {{maximum}} caracteres. - This field must contain at least {minimum} characters. + This field must contain at least {minimum} characters. Este campo deve conter pelo menos {{minimum}} caracteres. - This text may not exceed {maximum} characters. + This text may not exceed {maximum} characters. Este texto não pode exceder {{maximum}} caracteres. - Only regular characters (a to z, umlauts, ...) and numbers are allowed. + Only regular characters (a to z, umlauts, ...) and numbers are allowed. Apenas caracteres regulares (a a z, tremas, ...) e números são permitidos. - The given subject was not countable. + The given subject was not countable. O assunto fornecido não é contável. - The count must be between {minimum} and {maximum}. + The count must be between {minimum} and {maximum}. A contagem deve estar entre {{minimum}} e {{maximum}}. - The given value was not a valid date. + The given value was not a valid date. O valor fornecido não é uma data válida. - The given date must be between {formatEarliestDate} and {formatLatestDate} + The given date must be between {formatEarliestDate} and {formatLatestDate} A data deve estar entre {{formatEarliestDate}} e {{formatLatestDate}} - The given date must be after {formatEarliestDate} + The given date must be after {formatEarliestDate} A data deve ser depois de {{formatEarliestDate}} - The given date must be before {formatLatestDate} + The given date must be before {formatLatestDate} A data deve ser antes de {{formatLatestDate}} - Please specify a valid email address. + Please specify a valid email address. Por favor, especifique um endereço de email válido. - A valid float number is expected. + A valid float number is expected. É esperado um número flutuador válido. - A valid integer number is expected. + A valid integer number is expected. É esperado um número inteiro válido. - Only letters, numbers, spaces and certain punctuation marks are expected. + Only letters, numbers, spaces and certain punctuation marks are expected. São esperados apenas letras, números, espaços e certas marcas de pontuação. - This property is required. + This property is required. Esta propriedade é necessária. - A valid number is expected. + A valid number is expected. É esperado um número válido. - Please enter a valid number between {minimum} and {maximum} + Please enter a valid number between {minimum} and {maximum} Por favor, digite um número válido entre {{minimum}} e {{maximum}} - The given subject did not match the pattern ({pattern}) + The given subject did not match the pattern ({pattern}) O determinado assunto não corresponde ao padrão ({{pattern}}) - A valid string is expected. + A valid string is expected. Espera-se uma cadeia de caracteres válida - Valid text without any XML tags is expected. + Valid text without any XML tags is expected. Texto válido sem quaisquer tags XML é esperado. - The given subject is not a valid UUID. + The given subject is not a valid UUID. O determinado assunto não é um válido UUID. - Toggle content dimensions selector + Toggle content dimensions selector Abrir/Fechar selecionador das dimensões de conteúdo - Start with an empty or pre-filled document? + Start with an empty or pre-filled document? Começar com um documento vazio ou já preenchido? - This {nodeTypeLabel} does not exist yet in {currentDimensionChoiceText}. + This {nodeTypeLabel} does not exist yet in {currentDimensionChoiceText}. Este {nodeTypeLabel} ainda não existe no {currentDimensionChoiceText}. - You can create it now, either starting with an empty {nodeTypeLabel} or copying all content from the currently visible {nodeTypeLabel} in {currentDocumentDimensionChoiceText}. + You can create it now, either starting with an empty {nodeTypeLabel} or copying all content from the currently visible {nodeTypeLabel} in {currentDocumentDimensionChoiceText}. Pode criá-lo agora, começando com um {nodeTypeLabel} vazio ou copiar todo o conteúdo do {nodeTypeLabel} atualmente visível no {currentDocumentDimensionChoiceText}. - Additionally, there are {numberOfNodesMissingInRootline} ancestor documents which do not exist in the chosen variant either, and which will be created as well. + Additionally, there are {numberOfNodesMissingInRootline} ancestor documents which do not exist in the chosen variant either, and which will be created as well. Além disso, há {numberOfNodesMissingInRootline} documentos ancestrais que também não existem na variante escolhida e que serão igualmente criados. - Create empty + Create empty Criar vazio - Create and copy + Create and copy Criar e copiar - Content + Content Conteúdo - Toggle menu group + Toggle menu group Abrir/Fechar grupo de menus - Toggle sticky menu mode + Toggle sticky menu mode Ativar/Desativar modo de menú colado - Do you really want to delete + Do you really want to delete Deseja realmente excluir - This will delete the element + This will delete the element Isto irá excluir o elemento - and it's children + and it's children e seus filhos - This action can be undone in the workspace management. + This action can be undone in the workspace management. Esta ação pode ser desfeita no gerenciamento do espaço de trabalho. - Height + Height Altura - Do you really want to delete + Do you really want to delete Deseja realmente excluir - this element + this element este elemento - This will delete the element. + This will delete the element. Isto irá excluir o elemento. - This action can be undone in the workspace management. + This action can be undone in the workspace management. Esta ação pode ser desfeita no gerenciamento do espaço de trabalho. - Media + Media Mídia - Crop + Crop Corte - Width + Width Largura - Missing required property: + Missing required property: Faltando propriedade necessária: - Workspace + Workspace Espaço de Trabalho - Workspaces + Workspaces Espaços de Trabalho - An error occurred during saving + An error occurred during saving Ocorreu um erro durante o salvamento - Reload the page to attempt to fix the problem. + Reload the page to attempt to fix the problem. Recarregue a página para tentar corrigir o problema. - Reload the backend + Reload the backend Recarregar o backend - Reload + Reload Recarregar - In-Place + In-Place No local - Raw Content + Raw Content Conteúdo bruto - Raw Content Mode + Raw Content Mode Modo de conteúdo nú - Desktop + Desktop Área de Trabalho - Login to + Login to Typo3 Neos Login - Authenticating + Authenticating Autenticando - Logout + Logout Sair - The entered username or password was wrong + The entered username or password was wrong O nome de utilizador ou a palavra-passe estão incorretos - Your login has expired. Please log in again. + Your login has expired. Please log in again. O login expirou. Por favor faça um novo login. - Welcome to Neos + Welcome to Neos Bem-vindo(a) ao Neos - Go to setup + Go to setup Ir para instalação - Technical Information + Technical Information Informação Técnica - Missing Homepage + Missing Homepage Faltando Homepage - Either no site has been defined, the site does not contain a homepage or the active site couldn't be determined. + Either no site has been defined, the site does not contain a homepage or the active site couldn't be determined. O site não foi definido, o site não contém uma página inicial ou o site ativo não pôde ser determinado. - You might want to set the site's domain or import a new site in the setup. + You might want to set the site's domain or import a new site in the setup. Você pode querer definir o domínio do site, ou importar um novo site na configuração. - Database Error + Database Error Erro no banco de dados - There is no database connection yet or the Neos database schema has not been created. + There is no database connection yet or the Neos database schema has not been created. Ainda não existe uma conexão de banco de dados ou o esquema de banco de dados Neos não foi criado. - Run the setup to configure your database. + Run the setup to configure your database. Execute a configuração para configurar o seu banco de dados. - Page Not Found + Page Not Found Página Não Encontrada - Sorry, the page you requested was not found. + Sorry, the page you requested was not found. Desculpe, a página que você solicitou não foi encontrada. - Invalid NodeType + Invalid NodeType NodeType inválido - The configuration of the NodeType that is supposed to be rendered here is not available. Probably you renamed the NodeType and are missing a migration or you simply misspelled it. + The configuration of the NodeType that is supposed to be rendered here is not available. Probably you renamed the NodeType and are missing a migration or you simply misspelled it. A configuração do NodeType que é suposto ser processado aqui não está disponível. Provavelmente renomeou o NodeType e falta uma migração ou simplesmente escreveu errado. - Unexpected error while creating node + Unexpected error while creating node Erro não esperado ao criar o nó - Unexpected error while deleting node + Unexpected error while deleting node Erro não esperado ao apagar o nó - Unexpected error while updating node + Unexpected error while updating node Erro não esperado ao atualizar o nó - Unexpected error while moving node + Unexpected error while moving node Erro não esperado ao mover o nó - Node Tree loading error. + Node Tree loading error. Erro ao carregar a árvore de nós. - The entered username or password was wrong + The entered username or password was wrong O nome de utilizador ou a palavra-passe estão incorretos - "{nodeTypeName}" on page "{pageLabel}" + "{nodeTypeName}" on page "{pageLabel}" "{nodeTypeName}" na página "{pageLabel}" - Nodes + Nodes Nós - Show + Show Mostrar - This node cannot be accessed through a public URL + This node cannot be accessed through a public URL Este nó não pode ser acessado através de uma URL pública - Node Properties + Node Properties Propriedades do nó - Copy {source} to {target} + Copy {source} to {target} Copiar {source} para {target} - Move {source} to {target} + Move {source} to {target} Mover {source} para {target} - Please select the position at which you want {source} inserted relative to {target}. + Please select the position at which you want {source} inserted relative to {target}. Por favor, selecione a posição onde deseja inserir a {source} em relação a {target}. - Insert + Insert Inserir - Insert mode + Insert mode Modo de inserção - Choose an Aspect Ratio + Choose an Aspect Ratio Escolha uma proporção - Bold + Bold Negrito - Italic + Italic Itálico - Underline + Underline Sublinhado - Subscript + Subscript Subscrito - Superscript + Superscript Sobrescrito - Strikethrough + Strikethrough Rasurado - Link + Link Link - Ordered list + Ordered list Lista ordenada - Unordered list + Unordered list Lista desordenada - Align left + Align left Alinhar à esquerda - Align right + Align right Alinhar à direita - Align center + Align center Alinhar ao centro - Align justify + Align justify Justificar - Table + Table Tabela - Remove format + Remove format Remover a formatação - Outdent + Outdent Diminuir o recuo - Indent + Indent Aumentar o recuo - Create new + Create new Criar novo - No matches found + No matches found Não foram encontradas correspondências - Please enter ###CHARACTERS### more character + Please enter ###CHARACTERS### more character Por favor, inserir ###CHARACTERS### mais carateres - Wrong Credentials + Wrong Credentials Credenciais Erradas - The entered username or password was wrong + The entered username or password was wrong O nome de utilizador ou a palavra-passe estão incorretos - Logged Out + Logged Out Logged Out - Successfully logged out + Successfully logged out Successfully logged out This is a shortcut to a specific target: Este é um atalho para um alvo específico: + + Can't publish a single node in a new page + Não pode publicar um único nó numa página nova + + + Document Tree + Árvore do documento + + + Content Tree + Árvore de conteúdo + diff --git a/Neos.NodeTypes.Navigation/Resources/Private/Translations/pt/NodeTypes/Navigation.xlf b/Neos.NodeTypes.Navigation/Resources/Private/Translations/pt/NodeTypes/Navigation.xlf index 3ce8f11f28d..92b5ffe8e06 100644 --- a/Neos.NodeTypes.Navigation/Resources/Private/Translations/pt/NodeTypes/Navigation.xlf +++ b/Neos.NodeTypes.Navigation/Resources/Private/Translations/pt/NodeTypes/Navigation.xlf @@ -3,75 +3,75 @@ - Menu - Menu + Menu + Menu - Options + Options Opções - Starting Level + Starting Level Nível Inicial - Four Levels Above Current Page + Four Levels Above Current Page Quatro níveis acima da página atual - Three Levels Above Current Page + Three Levels Above Current Page Três níveis acima da página atual - Two Levels Above Current Page + Two Levels Above Current Page Dois níveis acima da página atual - One Level Above Current Page + One Level Above Current Page Um nível acima da página atual - Same Level As Current Page + Same Level As Current Page Mesmo nível que a página atual - First Level Of Website + First Level Of Website Primeiro nível do site - Second Level Of Website + Second Level Of Website Segundo nível do site - Third Level Of Website + Third Level Of Website Terceiro nível do site - Fourth Level Of Website + Fourth Level Of Website Quarto nível do site - Fifth Level Of Website + Fifth Level Of Website Quinto nível do site - Sixth Level Of Website + Sixth Level Of Website Sexto nível do site - Selection + Selection Seleção - Starting Point + Starting Point Ponto de partida - Maximum Levels + Maximum Levels Níveis Máximos - Empty Menu + Empty Menu Menu Vazio From 69ce5e8a3a711dbbcded0ed73ce206141c5a40a2 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Sat, 30 Mar 2024 14:07:45 +0000 Subject: [PATCH 11/13] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 01e7925333d..217971621c0 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-03-28 +The following reference was automatically generated from code on 2024-03-30 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index a1f5a4699fe..dc62409cc32 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index 1c1157205be..fe8d6dc315b 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index e7e7d3e3b40..d63c5a9f0d2 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 3859eb740b1..83cbe488473 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index d1b742c58a3..99ea7f3b719 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 97c0b56bccd..cc7e304f0ac 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 636b3b11fbc..9facebe4727 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 40c22e0ea9d..8ed3d20df5e 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index 6b4312071c9..c04c71cae2b 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 912ebf0f3b0..57273fa14a0 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index a6ca2930407..5c5ec268f7c 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index e3c4f0fba6b..8fa41de5fec 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index ecf083036f5..f5d33bc7e06 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index 6f989ac1e2d..ca971ebf563 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index ae23f272e8c..cc844813ba8 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 8f05cc8219e..3d89a7d24e2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-03-28 +This reference was automatically generated from code on 2024-03-30 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: From b6b0044be623d607677f6726ccd814eee5b4dd7e Mon Sep 17 00:00:00 2001 From: Denny Lubitz Date: Fri, 19 Apr 2024 17:15:02 +0200 Subject: [PATCH 12/13] TASK: Update plupload library to latest 2.3.9 --- .../plupload/jquery.plupload.queue/jquery.plupload.queue.js | 4 ++-- .../jquery.plupload.queue/jquery.plupload.queue.min.js | 2 +- .../plupload/jquery.ui.plupload/jquery.ui.plupload.js | 6 +++--- .../plupload/jquery.ui.plupload/jquery.ui.plupload.min.js | 2 +- .../Public/Libraries/plupload/plupload.full.min.js | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.js b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.js index f3f46288f2c..8c3b62b3822 100644 --- a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.js +++ b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.js @@ -223,7 +223,7 @@ used as it is. fileList.append( '
  • ' + - '
    ' + file.name + '
    ' + + '
    ' + plupload.xmlEncode(file.name) + '
    ' + '
    ' + '
    ' + file.percent + '%
    ' + '
    ' + plupload.formatSize(file.size) + '
    ' + @@ -306,7 +306,7 @@ used as it is. // Rename file and glue extension back on file.name = targetInput.val() + ext; - targetSpan.html(file.name); + targetSpan.text(file.name); targetInput.blur(); } }); diff --git a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.min.js b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.min.js index aaa71d9d427..e6aacd579e8 100644 --- a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.min.js +++ b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.plupload.queue/jquery.plupload.queue.min.js @@ -1 +1 @@ -!function(e,t){function i(e){return t.translate(e)||e}function s(t,s){s.contents().each(function(t,i){i=e(i),i.is(".plupload")||i.remove()}),s.prepend('
    '+'
    '+'
    '+'
    '+'
    '+i("Select files")+"
    "+'
    '+i("Add files to the upload queue and click the start button.")+"
    "+"
    "+"
    "+'
    '+'
    '+'
    '+i("Filename")+"
    "+'
     
    '+'
    '+i("Status")+"
    "+'
    '+i("Size")+"
    "+'
     
    '+"
    "+'
      '+'"+"
      "+"
      "+"
      "+''+"
      ")}var l={};e.fn.pluploadQueue=function(a){return a?(this.each(function(){function n(i){var s;i.status==t.DONE&&(s="plupload_done"),i.status==t.FAILED&&(s="plupload_failed"),i.status==t.QUEUED&&(s="plupload_delete"),i.status==t.UPLOADING&&(s="plupload_uploading");var l=e("#"+i.id).attr("class",s).find("a").css("display","block");i.hint&&l.attr("title",i.hint)}function o(){e("span.plupload_total_status",p).html(u.total.percent+"%"),e("div.plupload_progress_bar",p).css("width",u.total.percent+"%"),e("span.plupload_upload_status",p).html(t.sprintf(i("Uploaded %d/%d files"),u.total.uploaded,u.files.length))}function r(){var s,l=e("ul.plupload_filelist",p).html(""),a=0;e.each(u.files,function(i,o){s="",o.status==t.DONE&&(o.target_name&&(s+=''),s+='',s+='',a++,e("#"+c+"_count").val(a)),l.append('
    • '+'
      '+o.name+"
      "+'
      '+'
      '+o.percent+"%
      "+'
      '+t.formatSize(o.size)+"
      "+'
       
      '+s+"
    • "),n(o),e("#"+o.id+".plupload_delete a").click(function(t){e("#"+o.id).remove(),u.removeFile(o),t.preventDefault()})}),e("span.plupload_total_file_size",p).html(t.formatSize(u.total.size)),0===u.total.queued?e("span.plupload_add_text",p).html(i("Add Files")):e("span.plupload_add_text",p).html(t.sprintf(i("%d files queued"),u.total.queued)),e("a.plupload_start",p).toggleClass("plupload_disabled",u.files.length==u.total.uploaded+u.total.failed),l[0].scrollTop=l[0].scrollHeight,o(),!u.files.length&&u.features.dragdrop&&u.settings.dragdrop&&e("#"+c+"_filelist").append('
    • '+i("Drag files here.")+"
    • ")}function d(){delete l[c],u.destroy(),p.html(_),u=p=_=null}var u,p,c,_;p=e(this),c=p.attr("id"),c||(c=t.guid(),p.attr("id",c)),_=p.html(),s(c,p),a=e.extend({dragdrop:!0,browse_button:c+"_browse",container:c},a),a.dragdrop&&(a.drop_element=c+"_filelist"),u=new t.Uploader(a),l[c]=u,u.bind("UploadFile",function(t,i){e("#"+i.id).addClass("plupload_current_file")}),u.bind("Init",function(t,i){!a.unique_names&&a.rename&&p.on("click","#"+c+"_filelist div.plupload_file_name span",function(i){var s,l,a,n=e(i.target),o="",r=n.closest("li");r.hasClass("plupload_delete")&&(s=t.getFile(n.parents("li")[0].id),a=s.name,l=/^(.+)(\.[^.]+)$/.exec(a),l&&(a=l[1],o=l[2]),n.hide().after(''),n.next().val(a).focus().blur(function(){n.show().next().remove()}).keydown(function(t){var i=e(this);13==t.keyCode&&(t.preventDefault(),s.name=i.val()+o,n.html(s.name),i.blur())}))}),e("#"+c+"_container").attr("title","Using runtime: "+i.runtime),e("a.plupload_start",p).click(function(t){e(this).hasClass("plupload_disabled")||u.start(),t.preventDefault()}),e("a.plupload_stop",p).click(function(e){e.preventDefault(),u.stop()}),e("a.plupload_start",p).addClass("plupload_disabled")}),u.bind("Error",function(s,l){var a,n=l.file;n&&(a=l.message,l.details&&(a+=" ("+l.details+")"),l.code==t.FILE_SIZE_ERROR&&alert(i("Error: File too large:")+" "+n.name),l.code==t.FILE_EXTENSION_ERROR&&alert(i("Error: Invalid file extension:")+" "+n.name),n.hint=a,e("#"+n.id).attr("class","plupload_failed").find("a").css("display","block").attr("title",a)),l.code===t.INIT_ERROR&&setTimeout(function(){d()},1)}),u.bind("PostInit",function(t){t.settings.dragdrop&&t.features.dragdrop&&e("#"+c+"_filelist").append('
    • '+i("Drag files here.")+"
    • ")}),u.init(),u.bind("StateChanged",function(){u.state===t.STARTED?(e("li.plupload_delete a,div.plupload_buttons",p).hide(),u.disableBrowse(!0),e("span.plupload_upload_status,div.plupload_progress,a.plupload_stop",p).css("display","block"),e("span.plupload_upload_status",p).html("Uploaded "+u.total.uploaded+"/"+u.files.length+" files"),a.multiple_queues&&e("span.plupload_total_status,span.plupload_total_file_size",p).show()):(r(),e("a.plupload_stop,div.plupload_progress",p).hide(),e("a.plupload_delete",p).css("display","block"),a.multiple_queues&&u.total.uploaded+u.total.failed==u.files.length&&(e(".plupload_buttons,.plupload_upload_status",p).css("display","inline"),u.disableBrowse(!1),e(".plupload_start",p).addClass("plupload_disabled"),e("span.plupload_total_status,span.plupload_total_file_size",p).hide()))}),u.bind("FilesAdded",r),u.bind("FilesRemoved",function(){var t=e("#"+c+"_filelist").scrollTop();r(),e("#"+c+"_filelist").scrollTop(t)}),u.bind("FileUploaded",function(e,t){n(t)}),u.bind("UploadProgress",function(t,i){e("#"+i.id+" div.plupload_file_status",p).html(i.percent+"%"),n(i),o()}),a.setup&&a.setup(u)}),this):l[e(this[0]).attr("id")]}}(jQuery,plupload); \ No newline at end of file +!function (e, t) { function i(e) { return t.translate(e) || e } function s(t, s) { s.contents().each(function (t, i) { i = e(i), i.is(".plupload") || i.remove() }), s.prepend('
      ' + '
      ' + '
      ' + '
      ' + '
      ' + i("Select files") + "
      " + '
      ' + i("Add files to the upload queue and click the start button.") + "
      " + "
      " + "
      " + '
      ' + '
      ' + '
      ' + i("Filename") + "
      " + '
       
      ' + '
      ' + i("Status") + "
      " + '
      ' + i("Size") + "
      " + '
       
      ' + "
      " + '
        ' + '" + "
        " + "
        " + "
        " + '' + "
        ") } var l = {}; e.fn.pluploadQueue = function (a) { return a ? (this.each(function () { function n(i) { var s; i.status == t.DONE && (s = "plupload_done"), i.status == t.FAILED && (s = "plupload_failed"), i.status == t.QUEUED && (s = "plupload_delete"), i.status == t.UPLOADING && (s = "plupload_uploading"); var l = e("#" + i.id).attr("class", s).find("a").css("display", "block"); i.hint && l.attr("title", i.hint) } function o() { e("span.plupload_total_status", p).html(u.total.percent + "%"), e("div.plupload_progress_bar", p).css("width", u.total.percent + "%"), e("span.plupload_upload_status", p).html(t.sprintf(i("Uploaded %d/%d files"), u.total.uploaded, u.files.length)) } function r() { var s, l = e("ul.plupload_filelist", p).html(""), a = 0; e.each(u.files, function (i, o) { s = "", o.status == t.DONE && (o.target_name && (s += ''), s += '', s += '', a++, e("#" + c + "_count").val(a)), l.append('
      • ' + '
        ' + t.xmlEncode(o.name) + "
        " + '
        ' + '
        ' + o.percent + "%
        " + '
        ' + t.formatSize(o.size) + "
        " + '
         
        ' + s + "
      • "), n(o), e("#" + o.id + ".plupload_delete a").click(function (t) { e("#" + o.id).remove(), u.removeFile(o), t.preventDefault() }) }), e("span.plupload_total_file_size", p).html(t.formatSize(u.total.size)), 0 === u.total.queued ? e("span.plupload_add_text", p).html(i("Add Files")) : e("span.plupload_add_text", p).html(t.sprintf(i("%d files queued"), u.total.queued)), e("a.plupload_start", p).toggleClass("plupload_disabled", u.files.length == u.total.uploaded + u.total.failed), l[0].scrollTop = l[0].scrollHeight, o(), !u.files.length && u.features.dragdrop && u.settings.dragdrop && e("#" + c + "_filelist").append('
      • ' + i("Drag files here.") + "
      • ") } function d() { delete l[c], u.destroy(), p.html(_), u = p = _ = null } var u, p, c, _; p = e(this), c = p.attr("id"), c || (c = t.guid(), p.attr("id", c)), _ = p.html(), s(c, p), a = e.extend({ dragdrop: !0, browse_button: c + "_browse", container: c }, a), a.dragdrop && (a.drop_element = c + "_filelist"), u = new t.Uploader(a), l[c] = u, u.bind("UploadFile", function (t, i) { e("#" + i.id).addClass("plupload_current_file") }), u.bind("Init", function (t, i) { !a.unique_names && a.rename && p.on("click", "#" + c + "_filelist div.plupload_file_name span", function (i) { var s, l, a, n = e(i.target), o = "", r = n.closest("li"); r.hasClass("plupload_delete") && (s = t.getFile(n.parents("li")[0].id), a = s.name, l = /^(.+)(\.[^.]+)$/.exec(a), l && (a = l[1], o = l[2]), n.hide().after(''), n.next().val(a).focus().blur(function () { n.show().next().remove() }).keydown(function (t) { var i = e(this); 13 == t.keyCode && (t.preventDefault(), s.name = i.val() + o, n.text(s.name), i.blur()) })) }), e("#" + c + "_container").attr("title", "Using runtime: " + i.runtime), e("a.plupload_start", p).click(function (t) { e(this).hasClass("plupload_disabled") || u.start(), t.preventDefault() }), e("a.plupload_stop", p).click(function (e) { e.preventDefault(), u.stop() }), e("a.plupload_start", p).addClass("plupload_disabled") }), u.bind("Error", function (s, l) { var a, n = l.file; n && (a = l.message, l.details && (a += " (" + l.details + ")"), l.code == t.FILE_SIZE_ERROR && alert(i("Error: File too large:") + " " + n.name), l.code == t.FILE_EXTENSION_ERROR && alert(i("Error: Invalid file extension:") + " " + n.name), n.hint = a, e("#" + n.id).attr("class", "plupload_failed").find("a").css("display", "block").attr("title", a)), l.code === t.INIT_ERROR && setTimeout(function () { d() }, 1) }), u.bind("PostInit", function (t) { t.settings.dragdrop && t.features.dragdrop && e("#" + c + "_filelist").append('
      • ' + i("Drag files here.") + "
      • ") }), u.init(), u.bind("StateChanged", function () { u.state === t.STARTED ? (e("li.plupload_delete a,div.plupload_buttons", p).hide(), u.disableBrowse(!0), e("span.plupload_upload_status,div.plupload_progress,a.plupload_stop", p).css("display", "block"), e("span.plupload_upload_status", p).html("Uploaded " + u.total.uploaded + "/" + u.files.length + " files"), a.multiple_queues && e("span.plupload_total_status,span.plupload_total_file_size", p).show()) : (r(), e("a.plupload_stop,div.plupload_progress", p).hide(), e("a.plupload_delete", p).css("display", "block"), a.multiple_queues && u.total.uploaded + u.total.failed == u.files.length && (e(".plupload_buttons,.plupload_upload_status", p).css("display", "inline"), u.disableBrowse(!1), e(".plupload_start", p).addClass("plupload_disabled"), e("span.plupload_total_status,span.plupload_total_file_size", p).hide())) }), u.bind("FilesAdded", r), u.bind("FilesRemoved", function () { var t = e("#" + c + "_filelist").scrollTop(); r(), e("#" + c + "_filelist").scrollTop(t) }), u.bind("FileUploaded", function (e, t) { n(t) }), u.bind("UploadProgress", function (t, i) { e("#" + i.id + " div.plupload_file_status", p).html(i.percent + "%"), n(i), o() }), a.setup && a.setup(u) }), this) : l[e(this[0]).attr("id")] } }(jQuery, plupload); \ No newline at end of file diff --git a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.js b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.js index 4dee32ce87d..3a4f6b96715 100644 --- a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.js +++ b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.js @@ -491,7 +491,7 @@ $.widget("ui.plupload", { break; } - message += "
        " + details + ""; + message += "
        " + plupload.xmlEncode(details) + ""; self._trigger('error', null, { up: up, error: err } ); @@ -1167,7 +1167,7 @@ $.widget("ui.plupload", { return ext; default: - return file[$1] || ''; + return plupload.xmlEncode(file[$1] || ''); } }); }); @@ -1313,7 +1313,7 @@ $.widget("ui.plupload", { // Rename file and glue extension back on if (e.keyCode === 13) { file.name = nameInput.val() + ext; - nameSpan.html(file.name); + nameSpan.text(file.name); } nameInput.blur(); } diff --git a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.min.js b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.min.js index ca0608d438d..0fa5d66a469 100644 --- a/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.min.js +++ b/Neos.Media.Browser/Resources/Public/Libraries/plupload/jquery.ui.plupload/jquery.ui.plupload.min.js @@ -1 +1 @@ -!function(e,t,i,s,n){function l(e){return i.translate(e)||e}function o(e){e.id=e.attr("id"),e.html('
        '+l("Select files")+"
        "+'
        '+l("Add files to the upload queue and click the start button.")+"
        "+'
        '+'"+'"+"
        "+"
        "+"
        "+''+""+'"+'"+'"+''+""+"
        '+l("Filename")+"'+l("Status")+"'+l("Size")+" 
        "+'
        '+'
        '+l("Drag files here.")+"
        "+'
        '+'
         
        '+"
        "+''+""+'"+''+''+''+""+""+"
        "+''+"
        ")}var a={};n.widget("ui.plupload",{widgetEventPrefix:"",contents_bak:"",options:{browse_button_hover:"ui-state-hover",browse_button_active:"ui-state-active",filters:{},buttons:{browse:!0,start:!0,stop:!0},views:{list:!0,thumbs:!1,active:"list",remember:!0},thumb_width:100,thumb_height:60,multiple_queues:!0,dragdrop:!0,autostart:!1,sortable:!1,rename:!1},FILE_COUNT_ERROR:-9001,_create:function(){var e=this.element.attr("id");e||(e=i.guid(),this.element.attr("id",e)),this.id=e,this.contents_bak=this.element.html(),o(this.element),this.container=n(".plupload_container",this.element).attr("id",e+"_container"),this.content=n(".plupload_content",this.element),n.fn.resizable&&this.container.resizable({handles:"s",minHeight:300}),this.filelist=n(".plupload_filelist_content",this.container).attr({id:e+"_filelist",unselectable:"on"}),this.browse_button=n(".plupload_add",this.container).attr("id",e+"_browse"),this.start_button=n(".plupload_start",this.container).attr("id",e+"_start"),this.stop_button=n(".plupload_stop",this.container).attr("id",e+"_stop"),this.thumbs_switcher=n("#"+e+"_view_thumbs"),this.list_switcher=n("#"+e+"_view_list"),n.ui.button&&(this.browse_button.button({icons:{primary:"ui-icon-circle-plus"},disabled:!0}),this.start_button.button({icons:{primary:"ui-icon-circle-arrow-e"},disabled:!0}),this.stop_button.button({icons:{primary:"ui-icon-circle-close"}}),this.list_switcher.button({text:!1,icons:{secondary:"ui-icon-grip-dotted-horizontal"}}),this.thumbs_switcher.button({text:!1,icons:{secondary:"ui-icon-image"}})),this.progressbar=n(".plupload_progress_container",this.container),n.ui.progressbar&&this.progressbar.progressbar(),this.counter=n(".plupload_count",this.element).attr({id:e+"_count",name:e+"_count"}),this._initUploader()},_initUploader:function(){var e,t=this,s=this.id,o={container:s+"_buttons",browse_button:s+"_browse"};n(".plupload_buttons",this.element).attr("id",s+"_buttons"),t.options.dragdrop&&(this.filelist.parent().attr("id",this.id+"_dropbox"),o.drop_element=this.id+"_dropbox"),this.filelist.on("click",function(e){var i,s=n(e.target);s.hasClass("plupload_action_icon")&&(i=s.closest(".plupload_file"),i.hasClass("plupload_delete")&&(t.removeFile(i.attr("id")),e.preventDefault()))}),e=this.uploader=a[s]=new i.Uploader(n.extend(this.options,o)),this.options=e.getOption(),t.options.views.thumbs&&(e.settings.required_features.display_media=!0),t.options.max_file_count&&i.extend(e.getOption("filters"),{max_file_count:t.options.max_file_count}),i.addFileFilter("max_file_count",function(e,i,s){e<=this.files.length-(this.total.uploaded+this.total.failed)?(t.browse_button.button("disable"),this.disableBrowse(),this.trigger("Error",{code:t.FILE_COUNT_ERROR,message:l("File count error."),file:i}),s(!1)):s(!0)}),e.bind("Error",function(e,s){var n,o="";switch(n=""+s.message+"",s.code){case i.FILE_EXTENSION_ERROR:o=i.sprintf(l("File: %s"),s.file.name);break;case i.FILE_SIZE_ERROR:o=i.sprintf(l("File: %s, size: %d, max file size: %d"),s.file.name,i.formatSize(s.file.size),i.formatSize(i.parseSize(e.getOption("filters").max_file_size)));break;case i.FILE_DUPLICATE_ERROR:o=i.sprintf(l("%s already present in the queue."),s.file.name);break;case t.FILE_COUNT_ERROR:o=i.sprintf(l("Upload element accepts only %d file(s) at a time. Extra files were stripped."),e.getOption("filters").max_file_count||0);break;case i.IMAGE_FORMAT_ERROR:o=l("Image format either wrong or not supported.");break;case i.IMAGE_MEMORY_ERROR:o=l("Runtime ran out of available memory.");break;case i.HTTP_ERROR:o=l("Upload URL might be wrong or doesn't exist.")}n+="
        "+o+"",t._trigger("error",null,{up:e,error:s}),s.code===i.INIT_ERROR?setTimeout(function(){t.destroy()},1):t.notify("error",n)}),e.bind("PostInit",function(e){t.options.buttons.browse?t.browse_button.button("enable"):(t.browse_button.button("disable").hide(),e.disableBrowse(!0)),t.options.buttons.start||t.start_button.button("disable").hide(),t.options.buttons.stop||t.stop_button.button("disable").hide(),!t.options.unique_names&&t.options.rename&&t._enableRenaming(),t.options.dragdrop&&e.features.dragdrop&&t.filelist.parent().addClass("plupload_dropbox"),t._enableViewSwitcher(),t.start_button.click(function(e){n(this).button("option","disabled")||t.start(),e.preventDefault()}),t.stop_button.click(function(e){t.stop(),e.preventDefault()}),t._trigger("ready",null,{up:e})}),e.init(),e.bind("FileFiltered",function(e,i){t._addFiles(i)}),e.bind("FilesAdded",function(e,i){t._trigger("selected",null,{up:e,files:i}),t.options.sortable&&n.ui.sortable&&t._enableSortingList(),t._trigger("updatelist",null,{filelist:t.filelist}),t.options.autostart&&setTimeout(function(){t.start()},10)}),e.bind("FilesRemoved",function(e,i){n.ui.sortable&&t.options.sortable&&n("tbody",t.filelist).sortable("destroy"),n.each(i,function(e,t){n("#"+t.id).toggle("highlight",function(){n(this).remove()})}),e.files.length&&t.options.sortable&&n.ui.sortable&&t._enableSortingList(),t._trigger("updatelist",null,{filelist:t.filelist}),t._trigger("removed",null,{up:e,files:i})}),e.bind("QueueChanged",function(){t._handleState()}),e.bind("StateChanged",function(e){t._handleState(),i.STARTED===e.state?t._trigger("started",null,{up:this.uploader}):i.STOPPED===e.state&&t._trigger("stopped",null,{up:this.uploader})}),e.bind("UploadFile",function(e,i){t._handleFileStatus(i)}),e.bind("FileUploaded",function(e,i,s){t._handleFileStatus(i),t._trigger("uploaded",null,{up:e,file:i,result:s})}),e.bind("UploadProgress",function(e,i){t._handleFileStatus(i),t._updateTotalProgress(),t._trigger("progress",null,{up:e,file:i})}),e.bind("UploadComplete",function(e,i){t._addFormFields(),t._trigger("complete",null,{up:e,files:i})})},_setOption:function(e,t){var i=this;"buttons"==e&&"object"==typeof t&&(t=n.extend(i.options.buttons,t),t.browse?(i.browse_button.button("enable").show(),i.uploader.disableBrowse(!1)):(i.browse_button.button("disable").hide(),i.uploader.disableBrowse(!0)),t.start?i.start_button.button("enable").show():i.start_button.button("disable").hide(),t.stop?i.start_button.button("enable").show():i.stop_button.button("disable").hide()),i.uploader.setOption(e,t)},start:function(){this.uploader.start()},stop:function(){this.uploader.stop()},enable:function(){this.browse_button.button("enable"),this.uploader.disableBrowse(!1)},disable:function(){this.browse_button.button("disable"),this.uploader.disableBrowse(!0)},getFile:function(e){var t;return t="number"==typeof e?this.uploader.files[e]:this.uploader.getFile(e)},getFiles:function(){return this.uploader.files},removeFile:function(e){"string"===i.typeOf(e)&&(e=this.getFile(e)),this.uploader.removeFile(e)},clearQueue:function(){this.uploader.splice()},getUploader:function(){return this.uploader},refresh:function(){this.uploader.refresh()},notify:function(e,t){var i=n('
        '+'

        '+t+"

        "+"
        ");i.addClass("ui-state-"+("error"===e?"error":"highlight")).find("p .ui-icon").addClass("ui-icon-"+("error"===e?"alert":"info")).end().find(".plupload_message_close").click(function(){i.remove()}).end(),n(".plupload_header",this.container).append(i)},destroy:function(){this.uploader.destroy(),n(".plupload_button",this.element).unbind(),n.ui.button&&n(".plupload_add, .plupload_start, .plupload_stop",this.container).button("destroy"),n.ui.progressbar&&this.progressbar.progressbar("destroy"),n.ui.sortable&&this.options.sortable&&n("tbody",this.filelist).sortable("destroy"),this.element.empty().html(this.contents_bak),this.contents_bak="",n.Widget.prototype.destroy.apply(this)},_handleState:function(){var e=this.uploader,t=e.files.length-(e.total.uploaded+e.total.failed),s=e.getOption("filters").max_file_count||0;i.STARTED===e.state?(n([]).add(this.stop_button).add(".plupload_started").removeClass("plupload_hidden"),this.start_button.button("disable"),this.options.multiple_queues||(this.browse_button.button("disable"),e.disableBrowse()),n(".plupload_upload_status",this.element).html(i.sprintf(l("Uploaded %d/%d files"),e.total.uploaded,e.files.length)),n(".plupload_header_content",this.element).addClass("plupload_header_content_bw")):i.STOPPED===e.state&&(n([]).add(this.stop_button).add(".plupload_started").addClass("plupload_hidden"),t?this.start_button.button("enable"):this.start_button.button("disable"),this.options.multiple_queues&&n(".plupload_header_content",this.element).removeClass("plupload_header_content_bw"),this.options.multiple_queues&&s&&s>t&&(this.browse_button.button("enable"),e.disableBrowse(!1)),this._updateTotalProgress()),0===e.total.queued?n(".ui-button-text",this.browse_button).html(l("Add Files")):n(".ui-button-text",this.browse_button).html(i.sprintf(l("%d files queued"),e.total.queued)),this.container.toggleClass("plupload_files_queued",e.files.length),e.refresh()},_handleFileStatus:function(e){var t,s,l=n("#"+e.id);if(l.length){switch(e.status){case i.DONE:t="plupload_done",s="plupload_action_icon ui-icon ui-icon-circle-check";break;case i.FAILED:t="ui-state-error plupload_failed",s="plupload_action_icon ui-icon ui-icon-alert";break;case i.QUEUED:t="plupload_delete",s="plupload_action_icon ui-icon ui-icon-circle-minus";break;case i.UPLOADING:t="ui-state-highlight plupload_uploading",s="plupload_action_icon ui-icon ui-icon-circle-arrow-w";var o=n(".plupload_scroll",this.container),a=o.scrollTop(),r=o.height(),d=l.position().top+l.height();d>r&&o.scrollTop(a+d-r),l.find(".plupload_file_percent").html(e.percent+"%").end().find(".plupload_file_progress").css("width",e.percent+"%").end().find(".plupload_file_size").html(i.formatSize(e.size))}t+=" ui-state-default plupload_file",l.attr("class",t).find(".plupload_action_icon").attr("class",s)}},_updateTotalProgress:function(){var e=this.uploader;this.filelist[0].scrollTop=this.filelist[0].scrollHeight,this.progressbar.progressbar("value",e.total.percent),this.element.find(".plupload_total_status").html(e.total.percent+"%").end().find(".plupload_total_file_size").html(i.formatSize(e.total.size)).end().find(".plupload_upload_status").html(i.sprintf(l("Uploaded %d/%d files"),e.total.uploaded,e.files.length))},_displayThumbs:function(){function e(e,t,i){var s;e.on(t,function(){clearTimeout(s),s=setTimeout(function(){clearTimeout(s),i()},300)})}function t(){if(!r||!d){var e=n(".plupload_file:eq(0)",p.filelist);r=e.outerWidth(!0),d=e.outerHeight(!0)}var t=p.content.width(),i=p.content.height();u=Math.floor(t/r),c=u*(Math.ceil(i/d)+1)}function i(){var e=Math.floor(p.content.scrollTop()/d)*u;_=n(".plupload_file .plupload_file_thumb",p.filelist).slice(e,e+c).filter(".plupload_thumb_toload").get()}function l(){function s(){"thumbs"===p.view_mode&&(t(),i(),a())}n.fn.resizable&&e(p.container,"resize",s),e(p.window,"resize",s),e(p.content,"scroll",s),p.element.on("viewchanged selected",s),s()}function o(e,t){var i=new s.image.Image,l=s.core.utils.Url.resolveUrl;i.onload=function(){var t=n("#"+e.id+" .plupload_file_thumb",p.filelist);this.embed(t[0],{width:p.options.thumb_width,height:p.options.thumb_height,crop:!0,fit:!0,preserveHeaders:!1,swf_url:l(p.options.flash_swf_url),xap_url:l(p.options.silverlight_xap_url)})},i.bind("embedded error",function(i){n("#"+e.id,p.filelist).find(".plupload_file_thumb").removeClass("plupload_thumb_loading").addClass("plupload_thumb_"+i.type),this.destroy(),setTimeout(t,1)}),n("#"+e.id,p.filelist).find(".plupload_file_thumb").removeClass("plupload_thumb_toload").addClass("plupload_thumb_loading"),i.load(e.getSource())}function a(){"thumbs"!==p.view_mode||h||(i(),_.length&&(h=!0,o(p.getFile(n(_.shift()).closest(".plupload_file").attr("id")),function(){h=!1,a()})))}var r,d,u,p=this,c=0,_=[],h=!1;this.options.views.thumbs&&this.element.on("selected",function f(){p.element.off("selected",f),l()})},_addFiles:function(e){var t,l=this,o="";t='
      • {ext}
        {percent}
        {name}
        {size}
      • ',"array"!==i.typeOf(e)&&(e=[e]),n.each(e,function(e,n){var a=s.core.utils.Mime.getFileExtension(n.name)||"none";o+=t.replace(/\{(\w+)\}/g,function(e,t){switch(t){case"thumb_width":case"thumb_height":return l.options[t];case"size":return i.formatSize(n.size);case"ext":return a;default:return n[t]||""}})}),l.filelist.append(o)},_addFormFields:function(){var e=this;n(".plupload_file_fields",this.filelist).html(""),i.each(this.uploader.files,function(t,s){var l="",o=e.id+"_"+s;t.target_name&&(l+=''),l+='',l+='',n("#"+t.id).find(".plupload_file_fields").html(l)}),this.counter.val(this.uploader.files.length)},_viewChanged:function(e){this.options.views.remember&&n.cookie&&n.cookie("plupload_ui_view",e,{expires:7,path:"/"}),"IE"===i.ua.browser&&i.ua.version<7&&this.content.attr("style",'height:expression(document.getElementById("'+this.id+"_container"+'").clientHeight - '+("list"===e?132:102)+")"),this.container.removeClass("plupload_view_list plupload_view_thumbs").addClass("plupload_view_"+e),this.view_mode=e,this._trigger("viewchanged",null,{view:e})},_enableViewSwitcher:function(){var e,t,s,l=this,o=n(".plupload_view_switch",this.container);i.each(["list","thumbs"],function(e){l.options.views[e]||o.find('[for="'+l.id+"_view_"+e+'"], #'+l.id+"_view_"+e).remove()}),t=o.find(".plupload_button"),1===t.length?(o.hide(),e=t.eq(0).data("view"),this._viewChanged(e)):n.ui.button&&t.length>1?(this.options.views.remember&&n.cookie&&(e=n.cookie("plupload_ui_view")),~i.inArray(e,["list","thumbs"])||(e=this.options.views.active),o.show().buttonset().find(".ui-button").click(function(t){e=n(this).data("view"),l._viewChanged(e),t.preventDefault()}),s=o.find('[for="'+l.id+"_view_"+e+'"]'),s.length&&s.trigger("click")):(o.show(),this._viewChanged(this.options.views.active)),this.options.views.thumbs&&this._displayThumbs()},_enableRenaming:function(){var e=this;this.filelist.dblclick(function(t){var i,s,l,o,a,r="",d=n(t.target);d.hasClass("plupload_file_name_wrapper")&&(s=d.closest(".plupload_file"),s.hasClass("plupload_delete")&&(l=e.uploader.getFile(s[0].id),a=l.name,o=/^(.+)(\.[^.]+)$/.exec(a),o&&(a=o[1],r=o[2]),i=n('').width(d.width()).insertAfter(d.hide()),i.val(a).blur(function(){d.show().parent().scrollLeft(0).end().next().remove()}).keydown(function(e){var t=n(this);-1!==n.inArray(e.keyCode,[13,27])&&(e.preventDefault(),13===e.keyCode&&(l.name=t.val()+r,d.html(l.name)),t.blur())})[0].focus()))})},_enableSortingList:function(){var e=this;n(".plupload_file",this.filelist).length<2||(n("tbody",this.filelist).sortable("destroy"),this.filelist.sortable({items:".plupload_delete",cancel:"object, .plupload_clearer",stop:function(){var t=[];n.each(n(this).sortable("toArray"),function(i,s){t[t.length]=e.uploader.getFile(s)}),t.unshift(t.length),t.unshift(0),Array.prototype.splice.apply(e.uploader.files,t)}}))}})}(window,document,plupload,moxie,jQuery); \ No newline at end of file +!function(e,t,i,s,n){function l(e){return i.translate(e)||e}function o(e){e.id=e.attr("id"),e.html('
        '+l("Select files")+"
        "+'
        '+l("Add files to the upload queue and click the start button.")+"
        "+'
        '+'"+'"+"
        "+"
        "+"
        "+''+""+'"+'"+'"+''+""+"
        '+l("Filename")+"'+l("Status")+"'+l("Size")+" 
        "+'
        '+'
        '+l("Drag files here.")+"
        "+'
        '+'
         
        '+"
        "+''+""+'"+''+''+''+""+""+"
        "+''+"
        ")}var a={};n.widget("ui.plupload",{widgetEventPrefix:"",contents_bak:"",options:{browse_button_hover:"ui-state-hover",browse_button_active:"ui-state-active",filters:{},buttons:{browse:!0,start:!0,stop:!0},views:{list:!0,thumbs:!1,active:"list",remember:!0},thumb_width:100,thumb_height:60,multiple_queues:!0,dragdrop:!0,autostart:!1,sortable:!1,rename:!1},FILE_COUNT_ERROR:-9001,_create:function(){var e=this.element.attr("id");e||(e=i.guid(),this.element.attr("id",e)),this.id=e,this.contents_bak=this.element.html(),o(this.element),this.container=n(".plupload_container",this.element).attr("id",e+"_container"),this.content=n(".plupload_content",this.element),n.fn.resizable&&this.container.resizable({handles:"s",minHeight:300}),this.filelist=n(".plupload_filelist_content",this.container).attr({id:e+"_filelist",unselectable:"on"}),this.browse_button=n(".plupload_add",this.container).attr("id",e+"_browse"),this.start_button=n(".plupload_start",this.container).attr("id",e+"_start"),this.stop_button=n(".plupload_stop",this.container).attr("id",e+"_stop"),this.thumbs_switcher=n("#"+e+"_view_thumbs"),this.list_switcher=n("#"+e+"_view_list"),n.ui.button&&(this.browse_button.button({icons:{primary:"ui-icon-circle-plus"},disabled:!0}),this.start_button.button({icons:{primary:"ui-icon-circle-arrow-e"},disabled:!0}),this.stop_button.button({icons:{primary:"ui-icon-circle-close"}}),this.list_switcher.button({text:!1,icons:{secondary:"ui-icon-grip-dotted-horizontal"}}),this.thumbs_switcher.button({text:!1,icons:{secondary:"ui-icon-image"}})),this.progressbar=n(".plupload_progress_container",this.container),n.ui.progressbar&&this.progressbar.progressbar(),this.counter=n(".plupload_count",this.element).attr({id:e+"_count",name:e+"_count"}),this._initUploader()},_initUploader:function(){var e,t=this,s=this.id,o={container:s+"_buttons",browse_button:s+"_browse"};n(".plupload_buttons",this.element).attr("id",s+"_buttons"),t.options.dragdrop&&(this.filelist.parent().attr("id",this.id+"_dropbox"),o.drop_element=this.id+"_dropbox"),this.filelist.on("click",function(e){var i,s=n(e.target);s.hasClass("plupload_action_icon")&&(i=s.closest(".plupload_file"),i.hasClass("plupload_delete")&&(t.removeFile(i.attr("id")),e.preventDefault()))}),e=this.uploader=a[s]=new i.Uploader(n.extend(this.options,o)),this.options=e.getOption(),t.options.views.thumbs&&(e.settings.required_features.display_media=!0),t.options.max_file_count&&i.extend(e.getOption("filters"),{max_file_count:t.options.max_file_count}),i.addFileFilter("max_file_count",function(e,i,s){e<=this.files.length-(this.total.uploaded+this.total.failed)?(t.browse_button.button("disable"),this.disableBrowse(),this.trigger("Error",{code:t.FILE_COUNT_ERROR,message:l("File count error."),file:i}),s(!1)):s(!0)}),e.bind("Error",function(e,s){var n,o="";switch(n=""+s.message+"",s.code){case i.FILE_EXTENSION_ERROR:o=i.sprintf(l("File: %s"),s.file.name);break;case i.FILE_SIZE_ERROR:o=i.sprintf(l("File: %s, size: %d, max file size: %d"),s.file.name,i.formatSize(s.file.size),i.formatSize(i.parseSize(e.getOption("filters").max_file_size)));break;case i.FILE_DUPLICATE_ERROR:o=i.sprintf(l("%s already present in the queue."),s.file.name);break;case t.FILE_COUNT_ERROR:o=i.sprintf(l("Upload element accepts only %d file(s) at a time. Extra files were stripped."),e.getOption("filters").max_file_count||0);break;case i.IMAGE_FORMAT_ERROR:o=l("Image format either wrong or not supported.");break;case i.IMAGE_MEMORY_ERROR:o=l("Runtime ran out of available memory.");break;case i.HTTP_ERROR:o=l("Upload URL might be wrong or doesn't exist.")}n+="
        "+i.xmlEncode(details)+"",t._trigger("error",null,{up:e,error:s}),s.code===i.INIT_ERROR?setTimeout(function(){t.destroy()},1):t.notify("error",n)}),e.bind("PostInit",function(e){t.options.buttons.browse?t.browse_button.button("enable"):(t.browse_button.button("disable").hide(),e.disableBrowse(!0)),t.options.buttons.start||t.start_button.button("disable").hide(),t.options.buttons.stop||t.stop_button.button("disable").hide(),!t.options.unique_names&&t.options.rename&&t._enableRenaming(),t.options.dragdrop&&e.features.dragdrop&&t.filelist.parent().addClass("plupload_dropbox"),t._enableViewSwitcher(),t.start_button.click(function(e){n(this).button("option","disabled")||t.start(),e.preventDefault()}),t.stop_button.click(function(e){t.stop(),e.preventDefault()}),t._trigger("ready",null,{up:e})}),e.init(),e.bind("FileFiltered",function(e,i){t._addFiles(i)}),e.bind("FilesAdded",function(e,i){t._trigger("selected",null,{up:e,files:i}),t.options.sortable&&n.ui.sortable&&t._enableSortingList(),t._trigger("updatelist",null,{filelist:t.filelist}),t.options.autostart&&setTimeout(function(){t.start()},10)}),e.bind("FilesRemoved",function(e,i){n.ui.sortable&&t.options.sortable&&n("tbody",t.filelist).sortable("destroy"),n.each(i,function(e,t){n("#"+t.id).toggle("highlight",function(){n(this).remove()})}),e.files.length&&t.options.sortable&&n.ui.sortable&&t._enableSortingList(),t._trigger("updatelist",null,{filelist:t.filelist}),t._trigger("removed",null,{up:e,files:i})}),e.bind("QueueChanged",function(){t._handleState()}),e.bind("StateChanged",function(e){t._handleState(),i.STARTED===e.state?t._trigger("started",null,{up:this.uploader}):i.STOPPED===e.state&&t._trigger("stopped",null,{up:this.uploader})}),e.bind("UploadFile",function(e,i){t._handleFileStatus(i)}),e.bind("FileUploaded",function(e,i,s){t._handleFileStatus(i),t._trigger("uploaded",null,{up:e,file:i,result:s})}),e.bind("UploadProgress",function(e,i){t._handleFileStatus(i),t._updateTotalProgress(),t._trigger("progress",null,{up:e,file:i})}),e.bind("UploadComplete",function(e,i){t._addFormFields(),t._trigger("complete",null,{up:e,files:i})})},_setOption:function(e,t){var i=this;"buttons"==e&&"object"==typeof t&&(t=n.extend(i.options.buttons,t),t.browse?(i.browse_button.button("enable").show(),i.uploader.disableBrowse(!1)):(i.browse_button.button("disable").hide(),i.uploader.disableBrowse(!0)),t.start?i.start_button.button("enable").show():i.start_button.button("disable").hide(),t.stop?i.start_button.button("enable").show():i.stop_button.button("disable").hide()),i.uploader.setOption(e,t)},start:function(){this.uploader.start()},stop:function(){this.uploader.stop()},enable:function(){this.browse_button.button("enable"),this.uploader.disableBrowse(!1)},disable:function(){this.browse_button.button("disable"),this.uploader.disableBrowse(!0)},getFile:function(e){var t;return t="number"==typeof e?this.uploader.files[e]:this.uploader.getFile(e)},getFiles:function(){return this.uploader.files},removeFile:function(e){"string"===i.typeOf(e)&&(e=this.getFile(e)),this.uploader.removeFile(e)},clearQueue:function(){this.uploader.splice()},getUploader:function(){return this.uploader},refresh:function(){this.uploader.refresh()},notify:function(e,t){var i=n('
        '+'

        '+t+"

        "+"
        ");i.addClass("ui-state-"+("error"===e?"error":"highlight")).find("p .ui-icon").addClass("ui-icon-"+("error"===e?"alert":"info")).end().find(".plupload_message_close").click(function(){i.remove()}).end(),n(".plupload_header",this.container).append(i)},destroy:function(){this.uploader.destroy(),n(".plupload_button",this.element).unbind(),n.ui.button&&n(".plupload_add, .plupload_start, .plupload_stop",this.container).button("destroy"),n.ui.progressbar&&this.progressbar.progressbar("destroy"),n.ui.sortable&&this.options.sortable&&n("tbody",this.filelist).sortable("destroy"),this.element.empty().html(this.contents_bak),this.contents_bak="",n.Widget.prototype.destroy.apply(this)},_handleState:function(){var e=this.uploader,t=e.files.length-(e.total.uploaded+e.total.failed),s=e.getOption("filters").max_file_count||0;i.STARTED===e.state?(n([]).add(this.stop_button).add(".plupload_started").removeClass("plupload_hidden"),this.start_button.button("disable"),this.options.multiple_queues||(this.browse_button.button("disable"),e.disableBrowse()),n(".plupload_upload_status",this.element).html(i.sprintf(l("Uploaded %d/%d files"),e.total.uploaded,e.files.length)),n(".plupload_header_content",this.element).addClass("plupload_header_content_bw")):i.STOPPED===e.state&&(n([]).add(this.stop_button).add(".plupload_started").addClass("plupload_hidden"),t?this.start_button.button("enable"):this.start_button.button("disable"),this.options.multiple_queues&&n(".plupload_header_content",this.element).removeClass("plupload_header_content_bw"),this.options.multiple_queues&&s&&s>t&&(this.browse_button.button("enable"),e.disableBrowse(!1)),this._updateTotalProgress()),0===e.total.queued?n(".ui-button-text",this.browse_button).html(l("Add Files")):n(".ui-button-text",this.browse_button).html(i.sprintf(l("%d files queued"),e.total.queued)),this.container.toggleClass("plupload_files_queued",e.files.length),e.refresh()},_handleFileStatus:function(e){var t,s,l=n("#"+e.id);if(l.length){switch(e.status){case i.DONE:t="plupload_done",s="plupload_action_icon ui-icon ui-icon-circle-check";break;case i.FAILED:t="ui-state-error plupload_failed",s="plupload_action_icon ui-icon ui-icon-alert";break;case i.QUEUED:t="plupload_delete",s="plupload_action_icon ui-icon ui-icon-circle-minus";break;case i.UPLOADING:t="ui-state-highlight plupload_uploading",s="plupload_action_icon ui-icon ui-icon-circle-arrow-w";var o=n(".plupload_scroll",this.container),a=o.scrollTop(),r=o.height(),d=l.position().top+l.height();d>r&&o.scrollTop(a+d-r),l.find(".plupload_file_percent").html(e.percent+"%").end().find(".plupload_file_progress").css("width",e.percent+"%").end().find(".plupload_file_size").html(i.formatSize(e.size))}t+=" ui-state-default plupload_file",l.attr("class",t).find(".plupload_action_icon").attr("class",s)}},_updateTotalProgress:function(){var e=this.uploader;this.filelist[0].scrollTop=this.filelist[0].scrollHeight,this.progressbar.progressbar("value",e.total.percent),this.element.find(".plupload_total_status").html(e.total.percent+"%").end().find(".plupload_total_file_size").html(i.formatSize(e.total.size)).end().find(".plupload_upload_status").html(i.sprintf(l("Uploaded %d/%d files"),e.total.uploaded,e.files.length))},_displayThumbs:function(){function e(e,t,i){var s;e.on(t,function(){clearTimeout(s),s=setTimeout(function(){clearTimeout(s),i()},300)})}function t(){if(!r||!d){var e=n(".plupload_file:eq(0)",p.filelist);r=e.outerWidth(!0),d=e.outerHeight(!0)}var t=p.content.width(),i=p.content.height();u=Math.floor(t/r),c=u*(Math.ceil(i/d)+1)}function i(){var e=Math.floor(p.content.scrollTop()/d)*u;_=n(".plupload_file .plupload_file_thumb",p.filelist).slice(e,e+c).filter(".plupload_thumb_toload").get()}function l(){function s(){"thumbs"===p.view_mode&&(t(),i(),a())}n.fn.resizable&&e(p.container,"resize",s),e(p.window,"resize",s),e(p.content,"scroll",s),p.element.on("viewchanged selected",s),s()}function o(e,t){var i=new s.image.Image,l=s.core.utils.Url.resolveUrl;i.onload=function(){var t=n("#"+e.id+" .plupload_file_thumb",p.filelist);this.embed(t[0],{width:p.options.thumb_width,height:p.options.thumb_height,crop:!0,fit:!0,preserveHeaders:!1,swf_url:l(p.options.flash_swf_url),xap_url:l(p.options.silverlight_xap_url)})},i.bind("embedded error",function(i){n("#"+e.id,p.filelist).find(".plupload_file_thumb").removeClass("plupload_thumb_loading").addClass("plupload_thumb_"+i.type),this.destroy(),setTimeout(t,1)}),n("#"+e.id,p.filelist).find(".plupload_file_thumb").removeClass("plupload_thumb_toload").addClass("plupload_thumb_loading"),i.load(e.getSource())}function a(){"thumbs"!==p.view_mode||h||(i(),_.length&&(h=!0,o(p.getFile(n(_.shift()).closest(".plupload_file").attr("id")),function(){h=!1,a()})))}var r,d,u,p=this,c=0,_=[],h=!1;this.options.views.thumbs&&this.element.on("selected",function f(){p.element.off("selected",f),l()})},_addFiles:function(e){var t,l=this,o="";t='
      • {ext}
        {percent}
        {name}
        {size}
      • ',"array"!==i.typeOf(e)&&(e=[e]),n.each(e,function(e,n){var a=s.core.utils.Mime.getFileExtension(n.name)||"none";o+=t.replace(/\{(\w+)\}/g,function(e,t){switch(t){case"thumb_width":case"thumb_height":return l.options[t];case"size":return i.formatSize(n.size);case"ext":return a;default:return i.xmlEncode(n[t]||"")}})}),l.filelist.append(o)},_addFormFields:function(){var e=this;n(".plupload_file_fields",this.filelist).html(""),i.each(this.uploader.files,function(t,s){var l="",o=e.id+"_"+s;t.target_name&&(l+=''),l+='',l+='',n("#"+t.id).find(".plupload_file_fields").html(l)}),this.counter.val(this.uploader.files.length)},_viewChanged:function(e){this.options.views.remember&&n.cookie&&n.cookie("plupload_ui_view",e,{expires:7,path:"/"}),"IE"===i.ua.browser&&i.ua.version<7&&this.content.attr("style",'height:expression(document.getElementById("'+this.id+"_container"+'").clientHeight - '+("list"===e?132:102)+")"),this.container.removeClass("plupload_view_list plupload_view_thumbs").addClass("plupload_view_"+e),this.view_mode=e,this._trigger("viewchanged",null,{view:e})},_enableViewSwitcher:function(){var e,t,s,l=this,o=n(".plupload_view_switch",this.container);i.each(["list","thumbs"],function(e){l.options.views[e]||o.find('[for="'+l.id+"_view_"+e+'"], #'+l.id+"_view_"+e).remove()}),t=o.find(".plupload_button"),1===t.length?(o.hide(),e=t.eq(0).data("view"),this._viewChanged(e)):n.ui.button&&t.length>1?(this.options.views.remember&&n.cookie&&(e=n.cookie("plupload_ui_view")),~i.inArray(e,["list","thumbs"])||(e=this.options.views.active),o.show().buttonset().find(".ui-button").click(function(t){e=n(this).data("view"),l._viewChanged(e),t.preventDefault()}),s=o.find('[for="'+l.id+"_view_"+e+'"]'),s.length&&s.trigger("click")):(o.show(),this._viewChanged(this.options.views.active)),this.options.views.thumbs&&this._displayThumbs()},_enableRenaming:function(){var e=this;this.filelist.dblclick(function(t){var i,s,l,o,a,r="",d=n(t.target);d.hasClass("plupload_file_name_wrapper")&&(s=d.closest(".plupload_file"),s.hasClass("plupload_delete")&&(l=e.uploader.getFile(s[0].id),a=l.name,o=/^(.+)(\.[^.]+)$/.exec(a),o&&(a=o[1],r=o[2]),i=n('').width(d.width()).insertAfter(d.hide()),i.val(a).blur(function(){d.show().parent().scrollLeft(0).end().next().remove()}).keydown(function(e){var t=n(this);-1!==n.inArray(e.keyCode,[13,27])&&(e.preventDefault(),13===e.keyCode&&(l.name=t.val()+r,d.text(l.name)),t.blur())})[0].focus()))})},_enableSortingList:function(){var e=this;n(".plupload_file",this.filelist).length<2||(n("tbody",this.filelist).sortable("destroy"),this.filelist.sortable({items:".plupload_delete",cancel:"object, .plupload_clearer",stop:function(){var t=[];n.each(n(this).sortable("toArray"),function(i,s){t[t.length]=e.uploader.getFile(s)}),t.unshift(t.length),t.unshift(0),Array.prototype.splice.apply(e.uploader.files,t)}}))}})}(window,document,plupload,moxie,jQuery); \ No newline at end of file diff --git a/Neos.Media.Browser/Resources/Public/Libraries/plupload/plupload.full.min.js b/Neos.Media.Browser/Resources/Public/Libraries/plupload/plupload.full.min.js index a58489dc640..140c6b59021 100644 --- a/Neos.Media.Browser/Resources/Public/Libraries/plupload/plupload.full.min.js +++ b/Neos.Media.Browser/Resources/Public/Libraries/plupload/plupload.full.min.js @@ -16,7 +16,7 @@ o.files=[],n.each(e,function(e){o.files.push(new t(a.uid,e))})},999),a.shimExec.call(this,"FileInput","init",r(e.accept),e.multiple),this.trigger("ready")},setOption:function(e,t){"accept"==e&&(t=r(t)),this.getRuntime().shimExec.call(this,"FileInput","setOption",e,t)}};return e.FileInput=o}),n("moxie/runtime/silverlight/file/FileDrop",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Dom","moxie/core/utils/Events"],function(e,t,i){var n={init:function(){var e,n=this,r=n.getRuntime();return e=r.getShimContainer(),i.addEvent(e,"dragover",function(e){e.preventDefault(),e.stopPropagation(),e.dataTransfer.dropEffect="copy"},n.uid),i.addEvent(e,"dragenter",function(e){e.preventDefault();var i=t.get(r.uid).dragEnter(e);i&&e.stopPropagation()},n.uid),i.addEvent(e,"drop",function(e){e.preventDefault();var i=t.get(r.uid).dragDrop(e);i&&e.stopPropagation()},n.uid),r.shimExec.call(this,"FileDrop","init")}};return e.FileDrop=n}),n("moxie/runtime/silverlight/file/FileReader",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/file/FileReader"],function(e,t,i){return e.FileReader=t.extend({},i)}),n("moxie/runtime/silverlight/file/FileReaderSync",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/file/FileReaderSync"],function(e,t,i){return e.FileReaderSync=t.extend({},i)}),n("moxie/runtime/silverlight/runtime/Transporter",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/runtime/Transporter"],function(e,t,i){return e.Transporter=t.extend({},i)}),n("moxie/runtime/silverlight/xhr/XMLHttpRequest",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/xhr/XMLHttpRequest","moxie/runtime/silverlight/file/FileReaderSync","moxie/runtime/silverlight/runtime/Transporter"],function(e,t,i){return e.XMLHttpRequest=t.extend({},i)}),n("moxie/runtime/silverlight/image/Image",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/file/Blob","moxie/runtime/flash/image/Image"],function(e,t,i,n){return e.Image=t.extend({},n,{getInfo:function(){var e=this.getRuntime(),n=["tiff","exif","gps","thumb"],r={meta:{}},o=e.shimExec.call(this,"Image","getInfo");return o.meta&&(t.each(n,function(e){var t,i,n,a,s=o.meta[e];if(s&&s.keys)for(r.meta[e]={},i=0,n=s.keys.length;n>i;i++)t=s.keys[i],a=s[t],a&&(/^(\d|[1-9]\d+)$/.test(a)?a=parseInt(a,10):/^\d*\.\d+$/.test(a)&&(a=parseFloat(a)),r.meta[e][t]=a)}),r.meta&&r.meta.thumb&&r.meta.thumb.data&&!(e.meta.thumb.data instanceof i)&&(r.meta.thumb.data=new i(e.uid,r.meta.thumb.data))),r.width=parseInt(o.width,10),r.height=parseInt(o.height,10),r.size=parseInt(o.size,10),r.type=o.type,r.name=o.name,r},resize:function(e,t,i){this.getRuntime().shimExec.call(this,"Image","resize",e.x,e.y,e.width,e.height,t,i.preserveHeaders,i.resample)}})}),n("moxie/runtime/html4/Runtime",["moxie/core/utils/Basic","moxie/core/Exceptions","moxie/runtime/Runtime","moxie/core/utils/Env"],function(e,t,i,n){function o(t){var o=this,u=i.capTest,c=i.capTrue;i.call(this,t,a,{access_binary:u(window.FileReader||window.File&&File.getAsDataURL),access_image_binary:!1,display_media:u((n.can("create_canvas")||n.can("use_data_uri_over32kb"))&&r("moxie/image/Image")),do_cors:!1,drag_and_drop:!1,filter_by_extension:u(function(){return!("Chrome"===n.browser&&n.verComp(n.version,28,"<")||"IE"===n.browser&&n.verComp(n.version,10,"<")||"Safari"===n.browser&&n.verComp(n.version,7,"<")||"Firefox"===n.browser&&n.verComp(n.version,37,"<"))}()),resize_image:function(){return s.Image&&o.can("access_binary")&&n.can("create_canvas")},report_upload_progress:!1,return_response_headers:!1,return_response_type:function(t){return"json"===t&&window.JSON?!0:!!~e.inArray(t,["text","document",""])},return_status_code:function(t){return!e.arrayDiff(t,[200,404])},select_file:function(){return n.can("use_fileinput")},select_multiple:!1,send_binary_string:!1,send_custom_headers:!1,send_multipart:!0,slice_blob:!1,stream_upload:function(){return o.can("select_file")},summon_file_dialog:function(){return o.can("select_file")&&!("Firefox"===n.browser&&n.verComp(n.version,4,"<")||"Opera"===n.browser&&n.verComp(n.version,12,"<")||"IE"===n.browser&&n.verComp(n.version,10,"<"))},upload_filesize:c,use_http_method:function(t){return!e.arrayDiff(t,["GET","POST"])}}),e.extend(this,{init:function(){this.trigger("Init")},destroy:function(e){return function(){e.call(o),e=o=null}}(this.destroy)}),e.extend(this.getShim(),s)}var a="html4",s={};return i.addConstructor(a,o),s}),n("moxie/runtime/html4/file/FileInput",["moxie/runtime/html4/Runtime","moxie/file/File","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/utils/Events","moxie/core/utils/Mime","moxie/core/utils/Env"],function(e,t,i,n,r,o,a){function s(){function e(){var o,c,d,m,h,f,p=this,g=p.getRuntime();f=i.guid("uid_"),o=g.getShimContainer(),s&&(d=n.get(s+"_form"),d&&(i.extend(d.style,{top:"100%"}),d.firstChild.setAttribute("tabindex",-1))),m=document.createElement("form"),m.setAttribute("id",f+"_form"),m.setAttribute("method","post"),m.setAttribute("enctype","multipart/form-data"),m.setAttribute("encoding","multipart/form-data"),i.extend(m.style,{overflow:"hidden",position:"absolute",top:0,left:0,width:"100%",height:"100%"}),h=document.createElement("input"),h.setAttribute("id",f),h.setAttribute("type","file"),h.setAttribute("accept",l.join(",")),g.can("summon_file_dialog")&&h.setAttribute("tabindex",-1),i.extend(h.style,{fontSize:"999px",opacity:0}),m.appendChild(h),o.appendChild(m),i.extend(h.style,{position:"absolute",top:0,left:0,width:"100%",height:"100%"}),"IE"===a.browser&&a.verComp(a.version,10,"<")&&i.extend(h.style,{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"}),h.onchange=function(){var i;this.value&&(i=this.files?this.files[0]:{name:this.value},i=new t(g.uid,i),this.onchange=function(){},e.call(p),p.files=[i],h.setAttribute("id",i.uid),m.setAttribute("id",i.uid+"_form"),p.trigger("change"),h=m=null)},g.can("summon_file_dialog")&&(c=n.get(u.browse_button),r.removeEvent(c,"click",p.uid),r.addEvent(c,"click",function(e){h&&!h.disabled&&h.click(),e.preventDefault()},p.uid)),s=f,o=d=c=null}var s,u,c,l=[];i.extend(this,{init:function(t){var i,a=this,s=a.getRuntime();u=t,l=o.extList2mimes(t.accept,s.can("filter_by_extension")),i=s.getShimContainer(),function(){var e,o,l;e=n.get(t.browse_button),c=n.getStyle(e,"z-index")||"auto",s.can("summon_file_dialog")?("static"===n.getStyle(e,"position")&&(e.style.position="relative"),a.bind("Refresh",function(){o=parseInt(c,10)||1,n.get(u.browse_button).style.zIndex=o,this.getRuntime().getShimContainer().style.zIndex=o-1})):e.setAttribute("tabindex",-1),l=s.can("summon_file_dialog")?e:i,r.addEvent(l,"mouseover",function(){a.trigger("mouseenter")},a.uid),r.addEvent(l,"mouseout",function(){a.trigger("mouseleave")},a.uid),r.addEvent(l,"mousedown",function(){a.trigger("mousedown")},a.uid),r.addEvent(n.get(t.container),"mouseup",function(){a.trigger("mouseup")},a.uid),e=null}(),e.call(this),i=null,a.trigger({type:"ready",async:!0})},setOption:function(e,t){var i,r=this.getRuntime();"accept"==e&&(l=t.mimes||o.extList2mimes(t,r.can("filter_by_extension"))),i=n.get(s),i&&i.setAttribute("accept",l.join(","))},disable:function(e){var t;(t=n.get(s))&&(t.disabled=!!e)},destroy:function(){var e=this.getRuntime(),t=e.getShim(),i=e.getShimContainer(),o=u&&n.get(u.container),a=u&&n.get(u.browse_button);o&&r.removeAllEvents(o,this.uid),a&&(r.removeAllEvents(a,this.uid),a.style.zIndex=c),i&&(r.removeAllEvents(i,this.uid),i.innerHTML=""),t.removeInstance(this.uid),s=l=u=i=o=a=t=null}})}return e.FileInput=s}),n("moxie/runtime/html4/file/FileReader",["moxie/runtime/html4/Runtime","moxie/runtime/html5/file/FileReader"],function(e,t){return e.FileReader=t}),n("moxie/runtime/html4/xhr/XMLHttpRequest",["moxie/runtime/html4/Runtime","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/utils/Url","moxie/core/Exceptions","moxie/core/utils/Events","moxie/file/Blob","moxie/xhr/FormData"],function(e,t,i,n,r,o,a,s){function u(){function e(e){var t,n,r,a,s=this,u=!1;if(l){if(t=l.id.replace(/_iframe$/,""),n=i.get(t+"_form")){for(r=n.getElementsByTagName("input"),a=r.length;a--;)switch(r[a].getAttribute("type")){case"hidden":r[a].parentNode.removeChild(r[a]);break;case"file":u=!0}r=[],u||n.parentNode.removeChild(n),n=null}setTimeout(function(){o.removeEvent(l,"load",s.uid),l.parentNode&&l.parentNode.removeChild(l);var t=s.getRuntime().getShimContainer();t.children.length||t.parentNode.removeChild(t),t=l=null,e()},1)}}var u,c,l;t.extend(this,{send:function(d,m){function h(){var i=w.getShimContainer()||document.body,r=document.createElement("div");r.innerHTML='',l=r.firstChild,i.appendChild(l),o.addEvent(l,"load",function(){var i;try{i=l.contentWindow.document||l.contentDocument||window.frames[l.id].document,/^4(0[0-9]|1[0-7]|2[2346])\s/.test(i.title)?u=i.title.replace(/^(\d+).*$/,"$1"):(u=200,c=t.trim(i.body.innerHTML),v.trigger({type:"progress",loaded:c.length,total:c.length}),x&&v.trigger({type:"uploadprogress",loaded:x.size||1025,total:x.size||1025}))}catch(r){if(!n.hasSameOrigin(d.url))return e.call(v,function(){v.trigger("error")}),void 0;u=404}e.call(v,function(){v.trigger("load")})},v.uid)}var f,p,g,x,v=this,w=v.getRuntime();if(u=c=null,m instanceof s&&m.hasBlob()){if(x=m.getBlob(),f=x.uid,g=i.get(f),p=i.get(f+"_form"),!p)throw new r.DOMException(r.DOMException.NOT_FOUND_ERR)}else f=t.guid("uid_"),p=document.createElement("form"),p.setAttribute("id",f+"_form"),p.setAttribute("method",d.method),p.setAttribute("enctype","multipart/form-data"),p.setAttribute("encoding","multipart/form-data"),w.getShimContainer().appendChild(p);p.setAttribute("target",f+"_iframe"),m instanceof s&&m.each(function(e,i){if(e instanceof a)g&&g.setAttribute("name",i);else{var n=document.createElement("input");t.extend(n,{type:"hidden",name:i,value:e}),g?p.insertBefore(n,g):p.appendChild(n)}}),p.setAttribute("action",d.url),h(),p.submit(),v.trigger("loadstart")},getStatus:function(){return u},getResponse:function(e){if("json"===e&&"string"===t.typeOf(c)&&window.JSON)try{return JSON.parse(c.replace(/^\s*]*>/,"").replace(/<\/pre>\s*$/,""))}catch(i){return null}return c},abort:function(){var t=this;l&&l.contentWindow&&(l.contentWindow.stop?l.contentWindow.stop():l.contentWindow.document.execCommand?l.contentWindow.document.execCommand("Stop"):l.src="about:blank"),e.call(this,function(){t.dispatchEvent("abort")})},destroy:function(){this.getRuntime().getShim().removeInstance(this.uid)}})}return e.XMLHttpRequest=u}),n("moxie/runtime/html4/image/Image",["moxie/runtime/html4/Runtime","moxie/runtime/html5/image/Image"],function(e,t){return e.Image=t}),a(["moxie/core/utils/Basic","moxie/core/utils/Encode","moxie/core/utils/Env","moxie/core/Exceptions","moxie/core/utils/Dom","moxie/core/EventTarget","moxie/runtime/Runtime","moxie/runtime/RuntimeClient","moxie/file/Blob","moxie/core/I18n","moxie/core/utils/Mime","moxie/file/FileInput","moxie/file/File","moxie/file/FileDrop","moxie/file/FileReader","moxie/core/utils/Url","moxie/runtime/RuntimeTarget","moxie/xhr/FormData","moxie/xhr/XMLHttpRequest","moxie/image/Image","moxie/core/utils/Events","moxie/runtime/html5/image/ResizerCanvas"])}(this)}); /** * Plupload - multi-runtime File Uploader - * v2.3.6 + * v2.3.9 * * Copyright 2013, Moxiecode Systems AB * Released under GPL License. @@ -24,6 +24,6 @@ o.files=[],n.each(e,function(e){o.files.push(new t(a.uid,e))})},999),a.shimExec. * License: http://www.plupload.com/license * Contributing: http://www.plupload.com/contributing * - * Date: 2017-11-03 + * Date: 2021-11-15 */ !function(e,t){var i=function(){var e={};return t.apply(e,arguments),e.plupload};"function"==typeof define&&define.amd?define("plupload",["./moxie"],i):"object"==typeof module&&module.exports?module.exports=i(require("./moxie")):e.plupload=i(e.moxie)}(this||window,function(e){!function(e,t,i){function n(e){function t(e,t,i){var r={chunks:"slice_blob",jpgresize:"send_binary_string",pngresize:"send_binary_string",progress:"report_upload_progress",multi_selection:"select_multiple",dragdrop:"drag_and_drop",drop_element:"drag_and_drop",headers:"send_custom_headers",urlstream_upload:"send_binary_string",canSendBinary:"send_binary",triggerDialog:"summon_file_dialog"};r[e]?n[r[e]]=t:i||(n[e]=t)}var i=e.required_features,n={};return"string"==typeof i?l.each(i.split(/\s*,\s*/),function(e){t(e,!0)}):"object"==typeof i?l.each(i,function(e,i){t(i,e)}):i===!0&&(e.chunk_size&&e.chunk_size>0&&(n.slice_blob=!0),l.isEmptyObj(e.resize)&&e.multipart!==!1||(n.send_binary_string=!0),e.http_method&&(n.use_http_method=e.http_method),l.each(e,function(e,i){t(i,!!e,!0)})),n}var r=window.setTimeout,s={},a=t.core.utils,o=t.runtime.Runtime,l={VERSION:"2.3.6",STOPPED:1,STARTED:2,QUEUED:1,UPLOADING:2,FAILED:4,DONE:5,GENERIC_ERROR:-100,HTTP_ERROR:-200,IO_ERROR:-300,SECURITY_ERROR:-400,INIT_ERROR:-500,FILE_SIZE_ERROR:-600,FILE_EXTENSION_ERROR:-601,FILE_DUPLICATE_ERROR:-602,IMAGE_FORMAT_ERROR:-700,MEMORY_ERROR:-701,IMAGE_DIMENSIONS_ERROR:-702,moxie:t,mimeTypes:a.Mime.mimes,ua:a.Env,typeOf:a.Basic.typeOf,extend:a.Basic.extend,guid:a.Basic.guid,getAll:function(e){var t,i=[];"array"!==l.typeOf(e)&&(e=[e]);for(var n=e.length;n--;)t=l.get(e[n]),t&&i.push(t);return i.length?i:null},get:a.Dom.get,each:a.Basic.each,getPos:a.Dom.getPos,getSize:a.Dom.getSize,xmlEncode:function(e){var t={"<":"lt",">":"gt","&":"amp",'"':"quot","'":"#39"},i=/[<>&\"\']/g;return e?(""+e).replace(i,function(e){return t[e]?"&"+t[e]+";":e}):e},toArray:a.Basic.toArray,inArray:a.Basic.inArray,inSeries:a.Basic.inSeries,addI18n:t.core.I18n.addI18n,translate:t.core.I18n.translate,sprintf:a.Basic.sprintf,isEmptyObj:a.Basic.isEmptyObj,hasClass:a.Dom.hasClass,addClass:a.Dom.addClass,removeClass:a.Dom.removeClass,getStyle:a.Dom.getStyle,addEvent:a.Events.addEvent,removeEvent:a.Events.removeEvent,removeAllEvents:a.Events.removeAllEvents,cleanName:function(e){var t,i;for(i=[/[\300-\306]/g,"A",/[\340-\346]/g,"a",/\307/g,"C",/\347/g,"c",/[\310-\313]/g,"E",/[\350-\353]/g,"e",/[\314-\317]/g,"I",/[\354-\357]/g,"i",/\321/g,"N",/\361/g,"n",/[\322-\330]/g,"O",/[\362-\370]/g,"o",/[\331-\334]/g,"U",/[\371-\374]/g,"u"],t=0;t0?"&":"?")+i),e},formatSize:function(e){function t(e,t){return Math.round(e*Math.pow(10,t))/Math.pow(10,t)}if(e===i||/\D/.test(e))return l.translate("N/A");var n=Math.pow(1024,4);return e>n?t(e/n,1)+" "+l.translate("tb"):e>(n/=1024)?t(e/n,1)+" "+l.translate("gb"):e>(n/=1024)?t(e/n,1)+" "+l.translate("mb"):e>1024?Math.round(e/1024)+" "+l.translate("kb"):e+" "+l.translate("b")},parseSize:a.Basic.parseSizeStr,predictRuntime:function(e,t){var i,n;return i=new l.Uploader(e),n=o.thatCan(i.getOption().required_features,t||e.runtimes),i.destroy(),n},addFileFilter:function(e,t){s[e]=t}};l.addFileFilter("mime_types",function(e,t,i){e.length&&!e.regexp.test(t.name)?(this.trigger("Error",{code:l.FILE_EXTENSION_ERROR,message:l.translate("File extension error."),file:t}),i(!1)):i(!0)}),l.addFileFilter("max_file_size",function(e,t,i){var n;e=l.parseSize(e),t.size!==n&&e&&t.size>e?(this.trigger("Error",{code:l.FILE_SIZE_ERROR,message:l.translate("File size error."),file:t}),i(!1)):i(!0)}),l.addFileFilter("prevent_duplicates",function(e,t,i){if(e)for(var n=this.files.length;n--;)if(t.name===this.files[n].name&&t.size===this.files[n].size)return this.trigger("Error",{code:l.FILE_DUPLICATE_ERROR,message:l.translate("Duplicate file error."),file:t}),i(!1),void 0;i(!0)}),l.addFileFilter("prevent_empty",function(e,t,n){e&&!t.size&&t.size!==i?(this.trigger("Error",{code:l.FILE_SIZE_ERROR,message:l.translate("File size error."),file:t}),n(!1)):n(!0)}),l.Uploader=function(e){function a(){var e,t,i=0;if(this.state==l.STARTED){for(t=0;t0?Math.ceil(100*(e.loaded/e.size)):100,d()}function d(){var e,t,n,r=0;for(I.reset(),e=0;eS)&&(r+=n),I.loaded+=n):I.size=i,t.status==l.DONE?I.uploaded++:t.status==l.FAILED?I.failed++:I.queued++;I.size===i?I.percent=D.length>0?Math.ceil(100*(I.uploaded/D.length)):0:(I.bytesPerSec=Math.ceil(r/((+new Date-S||1)/1e3)),I.percent=I.size>0?Math.ceil(100*(I.loaded/I.size)):0)}function c(){var e=F[0]||P[0];return e?e.getRuntime().uid:!1}function f(){this.bind("FilesAdded FilesRemoved",function(e){e.trigger("QueueChanged"),e.refresh()}),this.bind("CancelUpload",b),this.bind("BeforeUpload",m),this.bind("UploadFile",_),this.bind("UploadProgress",E),this.bind("StateChanged",v),this.bind("QueueChanged",d),this.bind("Error",R),this.bind("FileUploaded",y),this.bind("Destroy",z)}function p(e,i){var n=this,r=0,s=[],a={runtime_order:e.runtimes,required_caps:e.required_features,preferred_caps:x,swf_url:e.flash_swf_url,xap_url:e.silverlight_xap_url};l.each(e.runtimes.split(/\s*,\s*/),function(t){e[t]&&(a[t]=e[t])}),e.browse_button&&l.each(e.browse_button,function(i){s.push(function(s){var u=new t.file.FileInput(l.extend({},a,{accept:e.filters.mime_types,name:e.file_data_name,multiple:e.multi_selection,container:e.container,browse_button:i}));u.onready=function(){var e=o.getInfo(this.ruid);l.extend(n.features,{chunks:e.can("slice_blob"),multipart:e.can("send_multipart"),multi_selection:e.can("select_multiple")}),r++,F.push(this),s()},u.onchange=function(){n.addFile(this.files)},u.bind("mouseenter mouseleave mousedown mouseup",function(t){U||(e.browse_button_hover&&("mouseenter"===t.type?l.addClass(i,e.browse_button_hover):"mouseleave"===t.type&&l.removeClass(i,e.browse_button_hover)),e.browse_button_active&&("mousedown"===t.type?l.addClass(i,e.browse_button_active):"mouseup"===t.type&&l.removeClass(i,e.browse_button_active)))}),u.bind("mousedown",function(){n.trigger("Browse")}),u.bind("error runtimeerror",function(){u=null,s()}),u.init()})}),e.drop_element&&l.each(e.drop_element,function(e){s.push(function(i){var s=new t.file.FileDrop(l.extend({},a,{drop_zone:e}));s.onready=function(){var e=o.getInfo(this.ruid);l.extend(n.features,{chunks:e.can("slice_blob"),multipart:e.can("send_multipart"),dragdrop:e.can("drag_and_drop")}),r++,P.push(this),i()},s.ondrop=function(){n.addFile(this.files)},s.bind("error runtimeerror",function(){s=null,i()}),s.init()})}),l.inSeries(s,function(){"function"==typeof i&&i(r)})}function g(e,n,r,s){var a=new t.image.Image;try{a.onload=function(){n.width>this.width&&n.height>this.height&&n.quality===i&&n.preserve_headers&&!n.crop?(this.destroy(),s(e)):a.downsize(n.width,n.height,n.crop,n.preserve_headers)},a.onresize=function(){var t=this.getAsBlob(e.type,n.quality);this.destroy(),s(t)},a.bind("error runtimeerror",function(){this.destroy(),s(e)}),a.load(e,r)}catch(o){s(e)}}function h(e,i,r){function s(e,i,n){var r=O[e];switch(e){case"max_file_size":"max_file_size"===e&&(O.max_file_size=O.filters.max_file_size=i);break;case"chunk_size":(i=l.parseSize(i))&&(O[e]=i,O.send_file_name=!0);break;case"multipart":O[e]=i,i||(O.send_file_name=!0);break;case"http_method":O[e]="PUT"===i.toUpperCase()?"PUT":"POST";break;case"unique_names":O[e]=i,i&&(O.send_file_name=!0);break;case"filters":"array"===l.typeOf(i)&&(i={mime_types:i}),n?l.extend(O.filters,i):O.filters=i,i.mime_types&&("string"===l.typeOf(i.mime_types)&&(i.mime_types=t.core.utils.Mime.mimes2extList(i.mime_types)),i.mime_types.regexp=function(e){var t=[];return l.each(e,function(e){l.each(e.extensions.split(/,/),function(e){/^\s*\*\s*$/.test(e)?t.push("\\.*"):t.push("\\."+e.replace(new RegExp("["+"/^$.*+?|()[]{}\\".replace(/./g,"\\$&")+"]","g"),"\\$&"))})}),new RegExp("("+t.join("|")+")$","i")}(i.mime_types),O.filters.mime_types=i.mime_types);break;case"resize":O.resize=i?l.extend({preserve_headers:!0,crop:!1},i):!1;break;case"prevent_duplicates":O.prevent_duplicates=O.filters.prevent_duplicates=!!i;break;case"container":case"browse_button":case"drop_element":i="container"===e?l.get(i):l.getAll(i);case"runtimes":case"multi_selection":case"flash_swf_url":case"silverlight_xap_url":O[e]=i,n||(u=!0);break;default:O[e]=i}n||a.trigger("OptionChanged",e,i,r)}var a=this,u=!1;"object"==typeof e?l.each(e,function(e,t){s(t,e,r)}):s(e,i,r),r?(O.required_features=n(l.extend({},O)),x=n(l.extend({},O,{required_features:!0}))):u&&(a.trigger("Destroy"),p.call(a,O,function(e){e?(a.runtime=o.getInfo(c()).type,a.trigger("Init",{runtime:a.runtime}),a.trigger("PostInit")):a.trigger("Error",{code:l.INIT_ERROR,message:l.translate("Init error.")})}))}function m(e,t){if(e.settings.unique_names){var i=t.name.match(/\.([^.]+)$/),n="part";i&&(n=i[1]),t.target_name=t.id+"."+n}}function _(e,i){function n(){c-->0?r(s,1e3):(i.loaded=p,e.trigger("Error",{code:l.HTTP_ERROR,message:l.translate("HTTP Error."),file:i,response:T.responseText,status:T.status,responseHeaders:T.getAllResponseHeaders()}))}function s(){var t,n,r={};i.status===l.UPLOADING&&e.state!==l.STOPPED&&(e.settings.send_file_name&&(r.name=i.target_name||i.name),d&&f.chunks&&o.size>d?(n=Math.min(d,o.size-p),t=o.slice(p,p+n)):(n=o.size,t=o),d&&f.chunks&&(e.settings.send_chunk_number?(r.chunk=Math.ceil(p/d),r.chunks=Math.ceil(o.size/d)):(r.offset=p,r.total=o.size)),e.trigger("BeforeChunkUpload",i,r,t,p)&&a(r,t,n))}function a(a,d,g){var m;T=new t.xhr.XMLHttpRequest,T.upload&&(T.upload.onprogress=function(t){i.loaded=Math.min(i.size,p+t.loaded),e.trigger("UploadProgress",i)}),T.onload=function(){return T.status<200||T.status>=400?(n(),void 0):(c=e.settings.max_retries,g=o.size?(i.size!=i.origSize&&(o.destroy(),o=null),e.trigger("UploadProgress",i),i.status=l.DONE,i.completeTimestamp=+new Date,e.trigger("FileUploaded",i,{response:T.responseText,status:T.status,responseHeaders:T.getAllResponseHeaders()})):r(s,1),void 0)},T.onerror=function(){n()},T.onloadend=function(){this.destroy()},e.settings.multipart&&f.multipart?(T.open(e.settings.http_method,u,!0),l.each(e.settings.headers,function(e,t){T.setRequestHeader(t,e)}),m=new t.xhr.FormData,l.each(l.extend(a,e.settings.multipart_params),function(e,t){m.append(t,e)}),m.append(e.settings.file_data_name,d),T.send(m,h)):(u=l.buildUrl(e.settings.url,l.extend(a,e.settings.multipart_params)),T.open(e.settings.http_method,u,!0),l.each(e.settings.headers,function(e,t){T.setRequestHeader(t,e)}),T.hasRequestHeader("Content-Type")||T.setRequestHeader("Content-Type","application/octet-stream"),T.send(d,h))}var o,u=e.settings.url,d=e.settings.chunk_size,c=e.settings.max_retries,f=e.features,p=0,h={runtime_order:e.settings.runtimes,required_caps:e.settings.required_features,preferred_caps:x,swf_url:e.settings.flash_swf_url,xap_url:e.settings.silverlight_xap_url};i.loaded&&(p=i.loaded=d?d*Math.floor(i.loaded/d):0),o=i.getSource(),l.isEmptyObj(e.settings.resize)||-1===l.inArray(o.type,["image/jpeg","image/png"])?s():g(o,e.settings.resize,h,function(e){o=e,i.size=e.size,s()})}function E(e,t){u(t)}function v(e){if(e.state==l.STARTED)S=+new Date;else if(e.state==l.STOPPED)for(var t=e.files.length-1;t>=0;t--)e.files[t].status==l.UPLOADING&&(e.files[t].status=l.QUEUED,d())}function b(){T&&T.abort()}function y(e){d(),r(function(){a.call(e)},1)}function R(e,t){t.code===l.INIT_ERROR?e.destroy():t.code===l.HTTP_ERROR&&(t.file.status=l.FAILED,t.file.completeTimestamp=+new Date,u(t.file),e.state==l.STARTED&&(e.trigger("CancelUpload"),r(function(){a.call(e)},1)))}function z(e){e.stop(),l.each(D,function(e){e.destroy()}),D=[],F.length&&(l.each(F,function(e){e.destroy()}),F=[]),P.length&&(l.each(P,function(e){e.destroy()}),P=[]),x={},U=!1,S=T=null,I.reset()}var O,S,I,T,w=l.guid(),D=[],x={},F=[],P=[],U=!1;O={chunk_size:0,file_data_name:"file",filters:{mime_types:[],max_file_size:0,prevent_duplicates:!1,prevent_empty:!0},flash_swf_url:"js/Moxie.swf",http_method:"POST",max_retries:0,multipart:!0,multi_selection:!0,resize:!1,runtimes:o.order,send_file_name:!0,send_chunk_number:!0,silverlight_xap_url:"js/Moxie.xap"},h.call(this,e,null,!0),I=new l.QueueProgress,l.extend(this,{id:w,uid:w,state:l.STOPPED,features:{},runtime:null,files:D,settings:O,total:I,init:function(){var e,t,i=this;return e=i.getOption("preinit"),"function"==typeof e?e(i):l.each(e,function(e,t){i.bind(t,e)}),f.call(i),l.each(["container","browse_button","drop_element"],function(e){return null===i.getOption(e)?(t={code:l.INIT_ERROR,message:l.sprintf(l.translate("%s specified, but cannot be found."),e)},!1):void 0}),t?i.trigger("Error",t):O.browse_button||O.drop_element?(p.call(i,O,function(e){var t=i.getOption("init");"function"==typeof t?t(i):l.each(t,function(e,t){i.bind(t,e)}),e?(i.runtime=o.getInfo(c()).type,i.trigger("Init",{runtime:i.runtime}),i.trigger("PostInit")):i.trigger("Error",{code:l.INIT_ERROR,message:l.translate("Init error.")})}),void 0):i.trigger("Error",{code:l.INIT_ERROR,message:l.translate("You must specify either browse_button or drop_element.")})},setOption:function(e,t){h.call(this,e,t,!this.runtime)},getOption:function(e){return e?O[e]:O},refresh:function(){F.length&&l.each(F,function(e){e.trigger("Refresh")}),this.trigger("Refresh")},start:function(){this.state!=l.STARTED&&(this.state=l.STARTED,this.trigger("StateChanged"),a.call(this))},stop:function(){this.state!=l.STOPPED&&(this.state=l.STOPPED,this.trigger("StateChanged"),this.trigger("CancelUpload"))},disableBrowse:function(){U=arguments[0]!==i?arguments[0]:!0,F.length&&l.each(F,function(e){e.disable(U)}),this.trigger("DisableBrowse",U)},getFile:function(e){var t;for(t=D.length-1;t>=0;t--)if(D[t].id===e)return D[t]},addFile:function(e,i){function n(e,t){var i=[];l.each(u.settings.filters,function(t,n){s[n]&&i.push(function(i){s[n].call(u,t,e,function(e){i(!e)})})}),l.inSeries(i,t)}function a(e){var s=l.typeOf(e);if(e instanceof t.file.File){if(!e.ruid&&!e.isDetached()){if(!o)return!1;e.ruid=o,e.connectRuntime(o)}a(new l.File(e))}else e instanceof t.file.Blob?(a(e.getSource()),e.destroy()):e instanceof l.File?(i&&(e.name=i),d.push(function(t){n(e,function(i){i||(D.push(e),f.push(e),u.trigger("FileFiltered",e)),r(t,1)})})):-1!==l.inArray(s,["file","blob"])?a(new t.file.File(null,e)):"node"===s&&"filelist"===l.typeOf(e.files)?l.each(e.files,a):"array"===s&&(i=null,l.each(e,a))}var o,u=this,d=[],f=[];o=c(),a(e),d.length&&l.inSeries(d,function(){f.length&&u.trigger("FilesAdded",f)})},removeFile:function(e){for(var t="string"==typeof e?e:e.id,i=D.length-1;i>=0;i--)if(D[i].id===t)return this.splice(i,1)[0]},splice:function(e,t){var n=D.splice(e===i?0:e,t===i?D.length:t),r=!1;return this.state==l.STARTED&&(l.each(n,function(e){return e.status===l.UPLOADING?(r=!0,!1):void 0}),r&&this.stop()),this.trigger("FilesRemoved",n),l.each(n,function(e){e.destroy()}),r&&this.start(),n},dispatchEvent:function(e){var t,i;if(e=e.toLowerCase(),t=this.hasEventListener(e)){t.sort(function(e,t){return t.priority-e.priority}),i=[].slice.call(arguments),i.shift(),i.unshift(this);for(var n=0;n Date: Fri, 19 Apr 2024 15:27:24 +0000 Subject: [PATCH 13/13] TASK: Update references [skip ci] --- Neos.Neos/Documentation/References/CommandReference.rst | 2 +- Neos.Neos/Documentation/References/EelHelpersReference.rst | 2 +- .../Documentation/References/FlowQueryOperationReference.rst | 2 +- .../Documentation/References/Signals/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/Signals/Flow.rst | 2 +- Neos.Neos/Documentation/References/Signals/Media.rst | 2 +- Neos.Neos/Documentation/References/Signals/Neos.rst | 2 +- Neos.Neos/Documentation/References/Validators/Flow.rst | 2 +- Neos.Neos/Documentation/References/Validators/Media.rst | 2 +- Neos.Neos/Documentation/References/Validators/Party.rst | 2 +- .../Documentation/References/ViewHelpers/ContentRepository.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Form.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Media.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/Neos.rst | 2 +- Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Neos.Neos/Documentation/References/CommandReference.rst b/Neos.Neos/Documentation/References/CommandReference.rst index 217971621c0..66d3359a003 100644 --- a/Neos.Neos/Documentation/References/CommandReference.rst +++ b/Neos.Neos/Documentation/References/CommandReference.rst @@ -19,7 +19,7 @@ commands that may be available, use:: ./flow help -The following reference was automatically generated from code on 2024-03-30 +The following reference was automatically generated from code on 2024-04-19 .. _`Neos Command Reference: NEOS.CONTENTREPOSITORY`: diff --git a/Neos.Neos/Documentation/References/EelHelpersReference.rst b/Neos.Neos/Documentation/References/EelHelpersReference.rst index dc62409cc32..45350538884 100644 --- a/Neos.Neos/Documentation/References/EelHelpersReference.rst +++ b/Neos.Neos/Documentation/References/EelHelpersReference.rst @@ -3,7 +3,7 @@ Eel Helpers Reference ===================== -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Eel Helpers Reference: Api`: diff --git a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst index fe8d6dc315b..68556231ee8 100644 --- a/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst +++ b/Neos.Neos/Documentation/References/FlowQueryOperationReference.rst @@ -3,7 +3,7 @@ FlowQuery Operation Reference ============================= -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`FlowQuery Operation Reference: add`: diff --git a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst index d63c5a9f0d2..3f59545ec99 100644 --- a/Neos.Neos/Documentation/References/Signals/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/Signals/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository Signals Reference ==================================== -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Content Repository Signals Reference: Context (``Neos\ContentRepository\Domain\Service\Context``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Flow.rst b/Neos.Neos/Documentation/References/Signals/Flow.rst index 83cbe488473..4e604d3875c 100644 --- a/Neos.Neos/Documentation/References/Signals/Flow.rst +++ b/Neos.Neos/Documentation/References/Signals/Flow.rst @@ -3,7 +3,7 @@ Flow Signals Reference ====================== -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Flow Signals Reference: AbstractAdvice (``Neos\Flow\Aop\Advice\AbstractAdvice``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Media.rst b/Neos.Neos/Documentation/References/Signals/Media.rst index 99ea7f3b719..c39bf8b3052 100644 --- a/Neos.Neos/Documentation/References/Signals/Media.rst +++ b/Neos.Neos/Documentation/References/Signals/Media.rst @@ -3,7 +3,7 @@ Media Signals Reference ======================= -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Media Signals Reference: AssetCollectionController (``Neos\Media\Browser\Controller\AssetCollectionController``)`: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index cc7e304f0ac..1ec82ba657c 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -3,7 +3,7 @@ Neos Signals Reference ====================== -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Neos Signals Reference: AbstractCreate (``Neos\Neos\Ui\Domain\Model\Changes\AbstractCreate``)`: diff --git a/Neos.Neos/Documentation/References/Validators/Flow.rst b/Neos.Neos/Documentation/References/Validators/Flow.rst index 9facebe4727..3345bae112b 100644 --- a/Neos.Neos/Documentation/References/Validators/Flow.rst +++ b/Neos.Neos/Documentation/References/Validators/Flow.rst @@ -3,7 +3,7 @@ Flow Validator Reference ======================== -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Flow Validator Reference: AggregateBoundaryValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Media.rst b/Neos.Neos/Documentation/References/Validators/Media.rst index 8ed3d20df5e..6fac21f0bde 100644 --- a/Neos.Neos/Documentation/References/Validators/Media.rst +++ b/Neos.Neos/Documentation/References/Validators/Media.rst @@ -3,7 +3,7 @@ Media Validator Reference ========================= -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Media Validator Reference: ImageOrientationValidator`: diff --git a/Neos.Neos/Documentation/References/Validators/Party.rst b/Neos.Neos/Documentation/References/Validators/Party.rst index c04c71cae2b..5a17caaa024 100644 --- a/Neos.Neos/Documentation/References/Validators/Party.rst +++ b/Neos.Neos/Documentation/References/Validators/Party.rst @@ -3,7 +3,7 @@ Party Validator Reference ========================= -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Party Validator Reference: AimAddressValidator`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst index 57273fa14a0..184ada559d2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/ContentRepository.rst @@ -3,7 +3,7 @@ Content Repository ViewHelper Reference ####################################### -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Content Repository ViewHelper Reference: PaginateViewHelper`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst index 5c5ec268f7c..4c2a07e8e29 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/FluidAdaptor.rst @@ -3,7 +3,7 @@ FluidAdaptor ViewHelper Reference ################################# -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`FluidAdaptor ViewHelper Reference: f:debug`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst index 8fa41de5fec..219e822781b 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Form.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Form.rst @@ -3,7 +3,7 @@ Form ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Form ViewHelper Reference: neos.form:form`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst index f5d33bc7e06..9fc00a35312 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Fusion.rst @@ -3,7 +3,7 @@ Fusion ViewHelper Reference ########################### -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Fusion ViewHelper Reference: fusion:render`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst index ca971ebf563..92f455de4f2 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Media.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Media.rst @@ -3,7 +3,7 @@ Media ViewHelper Reference ########################## -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Media ViewHelper Reference: neos.media:fileTypeIcon`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst index cc844813ba8..e4d659e2b90 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/Neos.rst @@ -3,7 +3,7 @@ Neos ViewHelper Reference ######################### -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`Neos ViewHelper Reference: neos:backend.authenticationProviderLabel`: diff --git a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst index 3d89a7d24e2..104e72bfdaa 100644 --- a/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst +++ b/Neos.Neos/Documentation/References/ViewHelpers/TYPO3Fluid.rst @@ -3,7 +3,7 @@ TYPO3 Fluid ViewHelper Reference ################################ -This reference was automatically generated from code on 2024-03-30 +This reference was automatically generated from code on 2024-04-19 .. _`TYPO3 Fluid ViewHelper Reference: f:alias`: