File tree Expand file tree Collapse file tree 6 files changed +18
-1
lines changed
src/Umbraco.Web.UI.Client/src
packages/core/icon-registry/icon-picker-modal Expand file tree Collapse file tree 6 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -1017,6 +1017,7 @@ export default {
10171017 text : 'Sort' ,
10181018 yellow : 'Gul' ,
10191019 white : 'Hvid' ,
1020+ grey : 'Grå' ,
10201021 } ,
10211022 shortcuts : {
10221023 addGroup : 'Tilføj fane' ,
Original file line number Diff line number Diff line change @@ -914,6 +914,7 @@ export default {
914914 text : 'Schwarz' ,
915915 yellow : 'Gelb' ,
916916 white : 'Weiß' ,
917+ grey : 'Grau' ,
917918 } ,
918919 shortcuts : {
919920 addTab : 'Tab hinzufügen' ,
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ export default {
3535 showLabelDescription :
3636 'Stores colors as a JSON object containing both the color hex string and label, rather than just the hex string.' ,
3737 } ,
38+ colors : {
39+ grey : 'Gray' ,
40+ } ,
3841 create : {
3942 folderDescription : 'Used to organize items and other folders. Keep items structured and easy to access.' ,
4043 } ,
Original file line number Diff line number Diff line change @@ -1024,6 +1024,7 @@ export default {
10241024 text : 'Black' ,
10251025 yellow : 'Yellow' ,
10261026 white : 'White' ,
1027+ grey : 'Grey' ,
10271028 } ,
10281029 shortcuts : {
10291030 addGroup : 'Add group' ,
Original file line number Diff line number Diff line change @@ -850,7 +850,18 @@ export default {
850850 avatar : 'Avatar per' ,
851851 } ,
852852 colors : {
853+ black : 'Nero' ,
853854 blue : 'Blu' ,
855+ brown : 'Marrone' ,
856+ cyan : 'Ciano' ,
857+ green : 'Verde' ,
858+ lightBlue : 'Azzurro' ,
859+ pink : 'Rosa' ,
860+ red : 'Rosso' ,
861+ text : 'Black' ,
862+ yellow : 'Giallo' ,
863+ white : 'Biano' ,
864+ grey : 'Grigio' ,
854865 } ,
855866 shortcuts : {
856867 addGroup : 'Aggiungi gruppo' ,
Original file line number Diff line number Diff line change 11import type { UmbIconDefinition } from '../types.js' ;
22import { UMB_ICON_REGISTRY_CONTEXT } from '../icon-registry.context-token.js' ;
33import type { UmbIconPickerModalData , UmbIconPickerModalValue } from './icon-picker-modal.token.js' ;
4- import { toCamelCase } from '../to-camel-case/index.js' ;
54import {
65 css ,
76 customElement ,
@@ -17,6 +16,7 @@ import { umbFocus } from '@umbraco-cms/backoffice/lit-element';
1716import { UmbModalBaseElement } from '@umbraco-cms/backoffice/modal' ;
1817import { UmbTextStyles } from '@umbraco-cms/backoffice/style' ;
1918import type { UUIColorSwatchesEvent } from '@umbraco-cms/backoffice/external/uui' ;
19+ import { toCamelCase } from '@umbraco-cms/backoffice/utils' ;
2020
2121@customElement ( 'umb-icon-picker-modal' )
2222export class UmbIconPickerModalElement extends UmbModalBaseElement < UmbIconPickerModalData , UmbIconPickerModalValue > {
You can’t perform that action at this time.
0 commit comments