diff --git a/Neos.Workspace.Ui/Classes/Controller/WorkspaceController.php b/Neos.Workspace.Ui/Classes/Controller/WorkspaceController.php index 08333636bec..29c58667e57 100644 --- a/Neos.Workspace.Ui/Classes/Controller/WorkspaceController.php +++ b/Neos.Workspace.Ui/Classes/Controller/WorkspaceController.php @@ -277,7 +277,7 @@ public function createAction( /** * Edit a workspace * - * Renders /Resource/Private/Fusion/Views/Edit.fusion + * @param WorkspaceName $workspaceName The name of the workspace that is being edited */ public function editAction(WorkspaceName $workspaceName): void { @@ -318,8 +318,10 @@ public function editAction(WorkspaceName $workspaceName): void * Update a workspace * * @Flow\Validate(argumentName="title", type="\Neos\Flow\Validation\Validator\NotEmptyValidator") + * @param WorkspaceName $workspaceName The name of the workspace that is being updated * @param WorkspaceTitle $title Human friendly title of the workspace, for example "Christmas Campaign" * @param WorkspaceDescription $description A description explaining the purpose of the new workspace + * @param WorkspaceName $baseWorkspace A description explaining the purpose of the new workspace */ public function updateAction( WorkspaceName $workspaceName, @@ -651,6 +653,7 @@ public function confirmPublishAllChangesAction(WorkspaceName $workspaceName): vo 'workspaceTitle' => $workspaceMetadata->title->value, ]); } + public function confirmDiscardAllChangesAction(WorkspaceName $workspaceName): void { $contentRepositoryId = SiteDetectionResult::fromRequest($this->request->getHttpRequest())->contentRepositoryId; @@ -693,6 +696,7 @@ public function confirmPublishSelectedChangesAction(WorkspaceName $workspaceName 'baseWorkspaceTitle' => $baseWorkspaceMetadata->title->value, ]); } + public function confirmDiscardSelectedChangesAction(WorkspaceName $workspaceName): void { $contentRepositoryId = SiteDetectionResult::fromRequest($this->request->getHttpRequest())->contentRepositoryId; @@ -1246,6 +1250,10 @@ protected function getWorkspaceListItems( // todo this throws "No workspace is assigned to the user with id" for the case user logs first into workspace module before workspace exists!!! $userWorkspace = $this->workspaceService->getPersonalWorkspaceForUser($contentRepository->id, $userWorkspaceOwner->getId()); $userWorkspaceMetadata = $this->workspaceService->getWorkspaceMetadata($contentRepository->id, $userWorkspace->workspaceName); + $workspaceRoleAssignments = $this->workspaceService->getWorkspaceRoleAssignments( + $contentRepository->id, + $userWorkspace->workspaceName + ); $userWorkspacesPermissions = $this->authorizationService->getWorkspacePermissions( $contentRepository->id, $userWorkspace->workspaceName, @@ -1265,11 +1273,13 @@ protected function getWorkspaceListItems( !$allWorkspaces->getDependantWorkspaces($userWorkspace->workspaceName)->isEmpty(), $userWorkspaceOwner->getLabel(), $userWorkspacesPermissions, + $workspaceRoleAssignments, ); // add other, accessible workspaces foreach ($allWorkspaces as $workspace) { $workspaceMetadata = $this->workspaceService->getWorkspaceMetadata($contentRepository->id, $workspace->workspaceName); + $workspaceRoleAssignments = $this->workspaceService->getWorkspaceRoleAssignments($contentRepository->id, $workspace->workspaceName); $workspacesPermissions = $this->authorizationService->getWorkspacePermissions( $contentRepository->id, $workspace->workspaceName, @@ -1303,6 +1313,7 @@ protected function getWorkspaceListItems( !$allWorkspaces->getDependantWorkspaces($workspace->workspaceName)->isEmpty(), $workspaceOwner?->getLabel(), $workspacesPermissions, + $workspaceRoleAssignments, ); } return WorkspaceListItems::fromArray($workspaceListItems); diff --git a/Neos.Workspace.Ui/Classes/ViewModel/WorkspaceListItem.php b/Neos.Workspace.Ui/Classes/ViewModel/WorkspaceListItem.php index 248357a1e83..10faa8443bd 100644 --- a/Neos.Workspace.Ui/Classes/ViewModel/WorkspaceListItem.php +++ b/Neos.Workspace.Ui/Classes/ViewModel/WorkspaceListItem.php @@ -15,7 +15,10 @@ namespace Neos\Workspace\Ui\ViewModel; use Neos\Flow\Annotations as Flow; +use Neos\Neos\Domain\Model\WorkspaceClassification; use Neos\Neos\Domain\Model\WorkspacePermissions; +use Neos\Neos\Domain\Model\WorkspaceRole; +use Neos\Neos\Domain\Model\WorkspaceRoleAssignments; #[Flow\Proxy(false)] final readonly class WorkspaceListItem @@ -33,6 +36,39 @@ public function __construct( // todo check if necessary, only for personal workspaces that others have permissions to public ?string $owner, public WorkspacePermissions $permissions, + public WorkspaceRoleAssignments $roleAssignments, ) { } + + public function isPersonal(): bool + { + return $this->classification === WorkspaceClassification::PERSONAL->value; + } + + public function isPrivate(): bool + { + if ($this->classification !== WorkspaceClassification::SHARED->value || + $this->roleAssignments->count() > 1) { + return false; + } + foreach ($this->roleAssignments as $roleAssignment) { + if ($roleAssignment->role === WorkspaceRole::COLLABORATOR) { + return false; + } + } + return true; + } + + public function isShared(): bool + { + if ($this->roleAssignments->count() > 1) { + return true; + } + foreach ($this->roleAssignments as $roleAssignment) { + if ($roleAssignment->role === WorkspaceRole::COLLABORATOR) { + return true; + } + } + return false; + } } diff --git a/Neos.Workspace.Ui/Resources/Private/Fusion/Common/Presentationals/Icon.fusion b/Neos.Workspace.Ui/Resources/Private/Fusion/Common/Presentationals/Icon.fusion index 321236dd664..756dedff4ac 100644 --- a/Neos.Workspace.Ui/Resources/Private/Fusion/Common/Presentationals/Icon.fusion +++ b/Neos.Workspace.Ui/Resources/Private/Fusion/Common/Presentationals/Icon.fusion @@ -3,6 +3,7 @@ prototype(Neos.Workspace.Ui:Component.Icon) < prototype(Neos.Fusion:Component) { secondaryIcon = '' spin = false rotate = false + // TODO: Support colors style = '' renderer = afx` diff --git a/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Components/WorkspaceTableRow.fusion b/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Components/WorkspaceTableRow.fusion index e2b231a0d8c..04899315a5a 100644 --- a/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Components/WorkspaceTableRow.fusion +++ b/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Components/WorkspaceTableRow.fusion @@ -13,24 +13,13 @@ prototype(Neos.Workspace.Ui:Component.WorkspaceTableRow) < prototype(Neos.Fusion i18n = ${I18n.id('').source('Main').package('Neos.Workspace.Ui')} workspace = ${props.workspaceListItem.workspace} workspaceTableRowId = ${'workspace-row-' + props.workspaceListItem.name} - // todo move state calculation to php workspaceStatus = Neos.Fusion:Case { - personal-workspace { - condition = ${props.workspaceListItem.name == props.userWorkspaceName} - renderer = 'personal-workspace' - } - stale { - // TODO: Calculate stale status based on last change data - condition = false - renderer = 'stale' - } - withAcl { - // TODO: Calculate acl status on whether the workspace is shared with selected users - condition = false - renderer = 'with-acl' + personal { + condition = ${props.workspaceListItem.personal} + renderer = 'personal' } private { - condition = ${props.workspaceListItem.owner} + condition = ${props.workspaceListItem.private} renderer = 'private' } default { @@ -39,18 +28,16 @@ prototype(Neos.Workspace.Ui:Component.WorkspaceTableRow) < prototype(Neos.Fusion } } workspaceStatusLabel = Neos.Fusion:Match { - // todo status private doesnt exist anymore @subject = ${private.workspaceStatus} - @default = ${private.i18n.id('table.column.access.internal').value('Internal workspace')} - personal-workspace = ${private.i18n.id('badge.isPersonalWorkspace').value('This is your personal workspace')} - stale = ${private.i18n.id('badge.isStale').value('This workspace has not been used for a long time')} - with-acl = ${private.i18n.id('table.column.access.acl').value('This workspace is owned by ' + props.workspaceListItem.owner + ' but allows access to additional users')} - private = ${private.i18n.id('table.column.access.private').value('This workspace is owned by ' + props.workspaceListItem.owner)} + @default = ${private.i18n.id('table.column.access.shared')} + personal = ${private.i18n.id('table.column.access.personal').arguments([props.workspaceListItem.owner])} + private = ${private.i18n.id('table.column.access.private')} } workspaceStatusIcon = Neos.Fusion:Match { @subject = ${private.workspaceStatus} @default = 'user' shared = 'users' + private = 'user-shield' with-acl = 'user-plus' } reviewWorkspaceUri = Neos.Fusion:ActionUri { diff --git a/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Modals/Create.fusion b/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Modals/Create.fusion index 1688e9c5ddf..6ca1a371958 100644 --- a/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Modals/Create.fusion +++ b/Neos.Workspace.Ui/Resources/Private/Fusion/Features/Workspace/Modals/Create.fusion @@ -91,10 +91,10 @@ prototype(Neos.Workspace.Ui:Component.Modal.Create) < prototype(Neos.Fusion:Comp field.name="visibility" field.value="shared" > - {private.i18n.id('workspaces.workspace.visibility.internal')} + {private.i18n.id('workspaces.workspace.visibility.shared')}

- {private.i18n.id('workspaces.workspace.visibility.internal.help')} + {private.i18n.id('workspaces.workspace.visibility.shared.help')}


+ - -

- {' '} +
+

+ + {' '} {private.i18n.id('workspaces.cantChangeBaseWorkspaceBecauseWorkspaceContainsChanges')}

@@ -123,10 +121,10 @@ prototype(Neos.Workspace.Ui:Component.Modal.Edit) < prototype(Neos.Fusion:Compon field.name="visibility" field.value="shared" > - {private.i18n.id('workspaces.workspace.visibility.internal')} + {private.i18n.id('workspaces.workspace.visibility.shared')}

- {private.i18n.id('workspaces.workspace.visibility.internal.help')} + {private.i18n.id('workspaces.workspace.visibility.shared.help')}


Private workspace مجال العمل الخاص - - Internal workspace + + Shared workspace فضاء العمل الداخلي @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace فضاء العمل هذا لا يمكن الوصول إليه وتعديله إلا من طرف المراجعين والمسؤولين فقط - - Internal + + Shared داخلي - + Any logged in editor can see and modify this workspace. يمكن لأي محرر تسجيل الدخول رؤية وتعديل فضاء العمل هذا. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/cs/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/cs/Main.xlf index 4f0d177bfb2..8e473662d88 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/cs/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/cs/Main.xlf @@ -59,9 +59,9 @@ Private workspace Private workspace - - Internal workspace - Internal workspace + + Shared workspace + Shared workspace Read-only workspace @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Only reviewers and administrators can access and modify this workspace - - Internal - Internal + + Shared + Shared - + Any logged in editor can see and modify this workspace. Any logged in editor can see and modify this workspace. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/da/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/da/Main.xlf index fcd1ef9604e..fa0c330dafc 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/da/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/da/Main.xlf @@ -59,8 +59,8 @@ Private workspace Privat arbejdsrum - - Internal workspace + + Shared workspace Internt arbejdsrum @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Kun korrekturlæsere og administratorer kan få adgang til og ændre dette arbejdsrum - - Internal + + Shared Internt - + Any logged in editor can see and modify this workspace. Enhver redaktør som er logget ind kan se og ændre dette arbejdsrum. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/de/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/de/Main.xlf index 2b56aa46d05..cb17c88104a 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/de/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/de/Main.xlf @@ -59,8 +59,8 @@ Private workspace Privater Arbeitsbereich - - Internal workspace + + Shared workspace Interner Arbeitsbereich @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Nur Reviewer und Administratoren können auf diesen Arbeitsbereich zugreifen und ihn bearbeiten - - Internal + + Shared Intern - + Any logged in editor can see and modify this workspace. Jeder angemeldete Redakteur kann diesen Arbeitsbereich sehen und bearbeiten. @@ -269,6 +269,18 @@ Select all current changes Alle aktuellen Änderungen auswählen + + This is a shared workspace + Dies ist ein gemeinsamer Arbeitsbereich + + + This is a private workspace + Dies ist ein privater Arbeitsbereich + + + This is the personal workspace of "{0}" + Dies ist der persönliche Arbeitsbereich von "{0}" + diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/el/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/el/Main.xlf index b52d42417cb..c62edb246b9 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/el/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/el/Main.xlf @@ -59,9 +59,9 @@ Private workspace Private workspace - - Internal workspace - Internal workspace + + Shared workspace + Shared workspace Read-only workspace @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Only reviewers and administrators can access and modify this workspace - - Internal + + Shared Εσωτερικό - + Any logged in editor can see and modify this workspace. Any logged in editor can see and modify this workspace. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/en/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/en/Main.xlf index d114888b4d5..f3e9d49367b 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/en/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/en/Main.xlf @@ -57,8 +57,8 @@ Private workspace - - Internal workspace + + Shared workspace Read-only workspace @@ -126,10 +126,10 @@ Only reviewers and administrators can access and modify this workspace - - Internal + + Shared - + Any logged in editor can see and modify this workspace. @@ -299,6 +299,15 @@ You do not have permission to see this workspace + + This is a shared workspace + + + This is a private workspace + + + This is the personal workspace of "{0}" + diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/es/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/es/Main.xlf index 1447062369f..0700abae071 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/es/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/es/Main.xlf @@ -59,8 +59,8 @@ Private workspace Espacio de trabajo privado - - Internal workspace + + Shared workspace Espacio de trabajo interno @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Solo los revisores y administradores pueden acceder y modificar este espacio de trabajo - - Internal + + Shared Interno - + Any logged in editor can see and modify this workspace. Cualquiera que inicie sesión en el editor puede ver y modificar este espacio de trabajo. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/fi/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/fi/Main.xlf index 4b686ba606f..a9f77b58bf3 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/fi/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/fi/Main.xlf @@ -59,8 +59,8 @@ Private workspace Yksityinen työtila - - Internal workspace + + Shared workspace Sisäinen työtila @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Ainoastaan arvioijat ja pääkäyttäjät voivat käyttää ja muokata tätä työtilaa - - Internal + + Shared Sisäinen - + Any logged in editor can see and modify this workspace. Kaikki sisäänkirjautuneet julkaisijat näkevät tämän työtilan ja voivat muokata sitä. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/fr/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/fr/Main.xlf index 9bae769a3ab..d3aa9c7c9cc 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/fr/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/fr/Main.xlf @@ -59,8 +59,8 @@ Private workspace Espace de travail privé - - Internal workspace + + Shared workspace Espace de travail interne @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Seulement les relecteurs et les administrateurs peuvent accéder et modifier cet espace de travail - - Internal + + Shared Interne - + Any logged in editor can see and modify this workspace. N'importe quel éditeur connecté peut voir et modifier cet espace de travail. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/hu/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/hu/Main.xlf index e77621b6658..a8ef0c3cbdd 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/hu/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/hu/Main.xlf @@ -59,8 +59,8 @@ Private workspace Privát munkafelület - - Internal workspace + + Shared workspace Belső munkafelület @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Csak moderátorok és adminisztrátoroknak van engedélye a tartalom szerkesztéséhez ezen a munkafelületen - - Internal + + Shared Belső - + Any logged in editor can see and modify this workspace. Minden bejelentkezett szerkesztő láthatja és módosíthatja a munkafelületet. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/id_ID/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/id_ID/Main.xlf index e2208d1b025..30e28a4f233 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/id_ID/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/id_ID/Main.xlf @@ -59,9 +59,9 @@ Private workspace Bidang kerja Privat - - Internal workspace - Bidang kerja internal + + Shared workspace + Bidang kerja shared Read-only workspace @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Hanya pengulas dan administrator yang dapat mengakses dan memodifikasi bidang kerja ini - - Internal - Internal + + Shared + Shared - + Any logged in editor can see and modify this workspace. Editor login yang dapat melihat dan mengubah bidang kerja ini. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/it/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/it/Main.xlf index e263dbdbd25..df86b5f092c 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/it/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/it/Main.xlf @@ -59,8 +59,8 @@ Private workspace Spazio di lavoro privato - - Internal workspace + + Shared workspace Spazio di lavoro interno @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Solo i revisori e gli amministratori possono accedere e modificare questo spazio di lavoro - - Internal + + Shared Interno - + Any logged in editor can see and modify this workspace. Ogni editore loggato può vedere e modificare questo spazio di lavoro. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/ja/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/ja/Main.xlf index 771aed88384..963d9240b32 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/ja/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/ja/Main.xlf @@ -59,8 +59,8 @@ Private workspace 民間のワークスペース - - Internal workspace + + Shared workspace 内部のワークスペース @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace のみ応募には管理者アクセスし、修正するこのワークスペース - - Internal + + Shared 内部 - + Any logged in editor can see and modify this workspace. 他のログインエディタで見をいつでも変更することが含まれます。 diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/km/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/km/Main.xlf index ae3342c7b9a..3ab0f2680d6 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/km/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/km/Main.xlf @@ -59,8 +59,8 @@ Private workspace តំបន់ការងារឯកជន - - Internal workspace + + Shared workspace តំបន់ការងារផ្ទៃក្នុង @@ -96,11 +96,11 @@ Only reviewers and administrators can access and modify this workspace មាន​តែអ្នក​ត្រួត​ពិនិត្យនិងអ្នកគ្រប់គ្រងអាចចូលដំណើរការនិងកែប្រែតំបន់ការងារនេះ - - Internal + + Shared ផ្ទៃក្នុង - + Any logged in editor can see and modify this workspace. រាល់ការចូលទេនៅក្នុងកម្មវិធីនិពន្ធអាចមើលឃើញនិងកែប្រែតំបន់ការងារនេះ diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/lv/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/lv/Main.xlf index 650d7922d09..c5e733d8343 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/lv/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/lv/Main.xlf @@ -59,8 +59,8 @@ Private workspace Privāta darba virsma - - Internal workspace + + Shared workspace Iekšējā darba virsma @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Tikai recenzenti un administratori var piekļūt un modificēt šo darba virsmu - - Internal + + Shared Iekšēji - + Any logged in editor can see and modify this workspace. Autorizēts redaktors var redzēt un rediģēt šo darba virsmu. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/nl/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/nl/Main.xlf index 4417d0fff6a..57b1c1bf665 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/nl/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/nl/Main.xlf @@ -51,8 +51,8 @@ Private workspace Privé workspace - - Internal workspace + + Shared workspace Interne workspace @@ -87,11 +87,11 @@ Only reviewers and administrators can access and modify this workspace Alleen reviewers en administrators hebben toegang en kunnen wijzigingen aanbrengen in deze workspace - - Internal + + Shared Intern - + Any logged in editor can see and modify this workspace. Iedere ingelogde redacteur kan deze workspace bekijken en wijzigen. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/no/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/no/Main.xlf index 2190e1ba404..d3d127af595 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/no/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/no/Main.xlf @@ -59,8 +59,8 @@ Private workspace Privat arbeidsområde - - Internal workspace + + Shared workspace Internt arbeidsområde @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Bare korrekturlesere og administratorer kan få tilgang til og endre dette arbeidsområdet - - Internal + + Shared Intern - + Any logged in editor can see and modify this workspace. Alle påloggede redaktører kan se og endre dette arbeidsområdet. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/pl/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/pl/Main.xlf index 02c192ab401..57d358f0d87 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/pl/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/pl/Main.xlf @@ -59,8 +59,8 @@ Private workspace Prywatny obszar roboczy - - Internal workspace + + Shared workspace Wewnętrzny obszar roboczy @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Tylko recenzenci i administratorzy mogą otwierać i modyfikować ten obszar roboczy - - Internal + + Shared Wewnętrzny - + Any logged in editor can see and modify this workspace. Każdy zalogowany redaktor może zobaczyć i modyfikować ten obszar roboczy. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/pt/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/pt/Main.xlf index e5546413fc7..1a11ef1017f 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/pt/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/pt/Main.xlf @@ -59,8 +59,8 @@ Private workspace Área de trabalho privada - - Internal workspace + + Shared workspace Área de trabalho interna @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Apenas os revisores e os administradores podem aceder e modificar esta área de trabalho - - Internal + + Shared Interno - + Any logged in editor can see and modify this workspace. Qualquer editor pode ver e modificar esta área de trabalho. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/pt_BR/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/pt_BR/Main.xlf index 657ecb3c219..d69b93eaf8a 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/pt_BR/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/pt_BR/Main.xlf @@ -59,8 +59,8 @@ Private workspace Espaço de trabalho privado - - Internal workspace + + Shared workspace Espaço de trabalho interno @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Apenas os revisores e os administradores podem acessar e modificar este espaço de trabalho - - Internal + + Shared Interno - + Any logged in editor can see and modify this workspace. Qualquer editor logado pode ver e modificar este espaço de trabalho. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/ru/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/ru/Main.xlf index 6d3ff3831e7..f3478465495 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/ru/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/ru/Main.xlf @@ -59,8 +59,8 @@ Private workspace Приватная рабочая область - - Internal workspace + + Shared workspace Внутренняя рабочая область @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Только рецензенты и администраторы имеют доступ к этой рабочей области и могут изменять её - - Internal + + Shared Внутренняя - + Any logged in editor can see and modify this workspace. Любой вошедший в систему редактор может просматривать и редактировать эту рабочую область. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/sr/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/sr/Main.xlf index 24f4182c0ac..b59c208d8aa 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/sr/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/sr/Main.xlf @@ -59,9 +59,9 @@ Private workspace Private workspace - - Internal workspace - Internal workspace + + Shared workspace + Shared workspace Read-only workspace @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Only reviewers and administrators can access and modify this workspace - - Internal - Internal + + Shared + Shared - + Any logged in editor can see and modify this workspace. Any logged in editor can see and modify this workspace. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/sv/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/sv/Main.xlf index e268756ca14..d437d0e1c22 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/sv/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/sv/Main.xlf @@ -59,8 +59,8 @@ Private workspace Privat arbetsyta - - Internal workspace + + Shared workspace Intern arbetsyta @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Endast förhandsgranskare och administratörer kan komma åt och ändra den här arbetsytan - - Internal + + Shared Internt - + Any logged in editor can see and modify this workspace. En inloggade redigerare kan se och ändra den här arbetsytan. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/tl_PH/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/tl_PH/Main.xlf index 689160914ac..59ea912d751 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/tl_PH/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/tl_PH/Main.xlf @@ -59,9 +59,9 @@ Private workspace Private workspace - - Internal workspace - Internal workspace + + Shared workspace + Shared workspace Read-only workspace @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Only reviewers and administrators can access and modify this workspace - - Internal + + Shared Panloob - + Any logged in editor can see and modify this workspace. Any logged in editor can see and modify this workspace. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/tr/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/tr/Main.xlf index 027eabc46df..3a900426176 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/tr/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/tr/Main.xlf @@ -59,8 +59,8 @@ Private workspace Özel çalışma alanı - - Internal workspace + + Shared workspace İç çalışma alanı @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Bu çalışma alanına yalnızca inceleyiciler ve yöneticiler erişebilir ve değiştirebilir - - Internal + + Shared Dahili - + Any logged in editor can see and modify this workspace. Oturum açmış herhangi bir düzenleyici bu çalışma alanını görebilir ve değiştirebilir. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/uk/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/uk/Main.xlf index 55fc034cc0b..a54fd268511 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/uk/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/uk/Main.xlf @@ -59,8 +59,8 @@ Private workspace Приватне робоче середовище - - Internal workspace + + Shared workspace Внутрішнє робоче середовище @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Робоча область тільки для рецензентів і адміністраторів - - Internal + + Shared Внутрішній - + Any logged in editor can see and modify this workspace. Будь-хто зареєстрований в редакторі може бачити та змінювати робоче середовище. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/vi/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/vi/Main.xlf index f2671f863a6..24f06209f02 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/vi/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/vi/Main.xlf @@ -59,9 +59,9 @@ Private workspace Không gian làm việc riêng - - Internal workspace - Internal workspace + + Shared workspace + Shared workspace Read-only workspace @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace Chỉ có người đánh giá và quản trị viên có thể truy cập và chỉnh sửa không gian làm việc này - - Internal + + Shared Nội bộ - + Any logged in editor can see and modify this workspace. Any logged in editor can see and modify this workspace. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/zh/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/zh/Main.xlf index 8f73159f416..1cd31a4e05f 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/zh/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/zh/Main.xlf @@ -59,8 +59,8 @@ Private workspace 私有工作区 - - Internal workspace + + Shared workspace 内部工作区 @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace 只有审阅者和管理员可以访问和修改此工作区 - - Internal - Internal + + Shared + Shared - + Any logged in editor can see and modify this workspace. Any logged in editor can see and modify this workspace. diff --git a/Neos.Workspace.Ui/Resources/Private/Translations/zh_TW/Main.xlf b/Neos.Workspace.Ui/Resources/Private/Translations/zh_TW/Main.xlf index df4624c22c2..53238365792 100644 --- a/Neos.Workspace.Ui/Resources/Private/Translations/zh_TW/Main.xlf +++ b/Neos.Workspace.Ui/Resources/Private/Translations/zh_TW/Main.xlf @@ -59,8 +59,8 @@ Private workspace 私人工作區 - - Internal workspace + + Shared workspace 內部工作區 @@ -95,11 +95,11 @@ Only reviewers and administrators can access and modify this workspace 只有審查者和管理員可以連結和修改此工作區 - - Internal + + Shared 內部的 - + Any logged in editor can see and modify this workspace. 任何登入的編輯皆可檢視和修改此工作區。