Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/da.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,18 @@ export default {
document: 'Dokument',
},
colors: {
black: 'Sort',
blue: 'Blå',
brown: 'Brun',
cyan: 'Cyan',
green: 'Grøn',
lightBlue: 'Lyseblå',
pink: 'Lyserød',
red: 'Rød',
text: 'Sort',
yellow: 'Gul',
white: 'Hvid',
grey: 'Grå',
},
shortcuts: {
addGroup: 'Tilføj fane',
Expand Down
11 changes: 11 additions & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,18 @@ export default {
newVersionAvailable: 'Neue Version verfügbar',
},
colors: {
black: 'Schwarz',
blue: 'Blau',
brown: 'Braun',
cyan: 'Cyan',
green: 'Grün',
lightBlue: 'Hellblau',
pink: 'Pink',
red: 'Rot',
text: 'Schwarz',
yellow: 'Gelb',
white: 'Weiß',
grey: 'Grau',
},
shortcuts: {
addTab: 'Tab hinzufügen',
Expand Down
3 changes: 3 additions & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/en-us.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export default {
showLabelDescription:
'Stores colors as a JSON object containing both the color hex string and label, rather than just the hex string.',
},
colors: {
grey: 'Gray',
},
create: {
folderDescription: 'Used to organize items and other folders. Keep items structured and easy to access.',
},
Expand Down
11 changes: 11 additions & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,18 @@ export default {
},
},
colors: {
black: 'Black',
blue: 'Blue',
brown: 'Brown',
cyan: 'Cyan',
green: 'Green',
lightBlue: 'Light Blue',
pink: 'Pink',
red: 'Red',
text: 'Black',
yellow: 'Yellow',
white: 'White',
grey: 'Grey',
},
shortcuts: {
addGroup: 'Add group',
Expand Down
11 changes: 11 additions & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,18 @@ export default {
avatar: 'Avatar per',
},
colors: {
black: 'Nero',
blue: 'Blu',
brown: 'Marrone',
cyan: 'Ciano',
green: 'Verde',
lightBlue: 'Azzurro',
pink: 'Rosa',
red: 'Rosso',
text: 'Nero',
yellow: 'Giallo',
white: 'Bianco',
grey: 'Grigio',
},
shortcuts: {
addGroup: 'Aggiungi gruppo',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { umbFocus } from '@umbraco-cms/backoffice/lit-element';
import { UmbModalBaseElement } from '@umbraco-cms/backoffice/modal';
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
import type { UUIColorSwatchesEvent } from '@umbraco-cms/backoffice/external/uui';
import { toCamelCase } from '@umbraco-cms/backoffice/utils';

@customElement('umb-icon-picker-modal')
export class UmbIconPickerModalElement extends UmbModalBaseElement<UmbIconPickerModalData, UmbIconPickerModalValue> {
Expand Down Expand Up @@ -87,12 +88,11 @@ export class UmbIconPickerModalElement extends UmbModalBaseElement<UmbIconPicker
label=${this.localize.term('defaultdialogs_colorSwitcher')}
@change=${this.#onColorChange}>
${
// TODO: Missing localization for the color aliases. [NL]
this._colorList.map(
(color) => html`
<uui-color-swatch
label=${color.alias}
title=${color.alias}
label=${this.localize.term('colors_' + toCamelCase(color.alias))}
title=${this.localize.term('colors_' + toCamelCase(color.alias))}
value=${color.alias}
style="--uui-swatch-color: var(${color.varName})">
</uui-color-swatch>
Expand Down
Loading