From abdbc2d918d30a87181bc11b9b051e575e08966d Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 25 Jul 2023 16:38:52 +0200 Subject: [PATCH] rename translation section to Dictionary --- .../src/packages/dictionary/section.manifest.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/dictionary/section.manifest.ts b/src/Umbraco.Web.UI.Client/src/packages/dictionary/section.manifest.ts index b42f4333bb..4dbb36350a 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/dictionary/section.manifest.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/dictionary/section.manifest.ts @@ -1,15 +1,15 @@ import type { ManifestDashboard, ManifestSection, ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; -const sectionAlias = 'Umb.Section.Translation'; +const sectionAlias = 'Umb.Section.Dictionary'; const section: ManifestSection = { type: 'section', alias: sectionAlias, - name: 'Translation Section', + name: 'Dictionary Section', weight: 100, meta: { - label: 'Translation', - pathname: 'translation', + label: 'Dictionary', + pathname: 'dictionary', }, };