File tree Expand file tree Collapse file tree 8 files changed +8
-1
lines changed
src/Umbraco.Web.UI.Client/src
packages/core/tree/tree-item/tree-item-base Expand file tree Collapse file tree 8 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -2211,6 +2211,7 @@ export default {
22112211 searchContentTree : "Chwilio'r coeden cynnwys" ,
22122212 maxAmount : 'Uchafswm' ,
22132213 expandChildItems : 'Ehangu eitemau plentyn ar gyfer' ,
2214+ collapseChildItems : 'Cuddio eitemau plant ar gyfer' ,
22142215 openContextNode : 'Agor nod cyd-destun ar gyfer' ,
22152216 } ,
22162217 references : {
Original file line number Diff line number Diff line change @@ -2350,6 +2350,7 @@ export default {
23502350 maxAmount : 'Maximum antal' ,
23512351 contextDialogDescription : 'Perform action %0% on the %1% node' ,
23522352 expandChildItems : 'Udvid underordnede elementer for' ,
2353+ collapseChildItems : 'Skjul underordnede elementer for' ,
23532354 openContextNode : 'Åbn kontekstnode for' ,
23542355 } ,
23552356 references : {
Original file line number Diff line number Diff line change @@ -2408,6 +2408,7 @@ export default {
24082408 searchContentTree : 'Search content tree' ,
24092409 maxAmount : 'Maximum amount' ,
24102410 expandChildItems : 'Expand child items for' ,
2411+ collapseChildItems : 'Collapse child items for' ,
24112412 openContextNode : 'Open context node for' ,
24122413 } ,
24132414 references : {
Original file line number Diff line number Diff line change @@ -1873,6 +1873,7 @@ export default {
18731873 searchContentTree : "Chercher dans l'arborescence de contenu" ,
18741874 maxAmount : 'Quantité maximum' ,
18751875 expandChildItems : 'Afficher les éléments enfant pour' ,
1876+ collapseChildItems : 'Cacher les éléments enfant pour' ,
18761877 openContextNode : 'Ouvrir le noeud de contexte pour' ,
18771878 } ,
18781879 references : {
Original file line number Diff line number Diff line change @@ -2407,6 +2407,7 @@ export default {
24072407 searchContentTree : 'Pesquisar Árvore de Conteúdo' ,
24082408 maxAmount : 'Quantidade máxima' ,
24092409 expandChildItems : 'Expandir itens filhos para' ,
2410+ collapseChildItems : 'Fechar itens filhos para' ,
24102411 openContextNode : 'Abrir nó de contexto para' ,
24112412 } ,
24122413 references : {
Original file line number Diff line number Diff line change @@ -318,6 +318,7 @@ export default {
318318 searchContentTree : 'Sök i innehållsträdet' ,
319319 maxAmount : 'Maximalt värde' ,
320320 expandChildItems : 'Visa underliggande noder för' ,
321+ collapseChildItems : 'Dölj underliggande noder för' ,
321322 openContextNode : 'Öppna kontext för' ,
322323 } ,
323324 prompt : {
Original file line number Diff line number Diff line change @@ -2410,6 +2410,7 @@ export default {
24102410 searchContentTree : 'Tìm kiếm cây nội dung' ,
24112411 maxAmount : 'Số lượng tối đa' ,
24122412 expandChildItems : 'Mở rộng các mục con cho' ,
2413+ collapseChildItems : 'Thu gọn các mục con cho' ,
24132414 openContextNode : 'Mở nút ngữ cảnh cho %0%' ,
24142415 } ,
24152416 references : {
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export abstract class UmbTreeItemElementBase<
136136 .loading=${ this . _isLoading }
137137 .hasChildren=${ this . _hasChildren }
138138 .showChildren=${ this . _isOpen }
139- .caretLabel=${ this . localize . term ( 'visuallyHiddenTexts_expandChildItems' ) + ' ' + this . _label }
139+ .caretLabel=${ this . _isOpen ? this . localize . term ( 'visuallyHiddenTexts_collapseChildItems' ) + ' ' + this . _label : this . localize . term ( 'visuallyHiddenTexts_expandChildItems' ) + ' ' + this . _label }
140140 label=${ this . _label }
141141 href="${ ifDefined ( this . _isSelectableContext ? undefined : this . _href ) } ">
142142 ${ this . renderIconContainer ( ) } ${ this . renderLabel ( ) } ${ this . #renderActions( ) } ${ this . #renderChildItems( ) }
You can’t perform that action at this time.
0 commit comments