File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed
src/Umbraco.Web.UI.Client/src
packages/user/user-group/modals/user-group-picker Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ export default {
123123 buttons : {
124124 clearSelection : 'Ryd valg' ,
125125 select : 'Vælg' ,
126+ choose : 'Vælg' ,
126127 somethingElse : 'Gør noget andet' ,
127128 bold : 'Fed' ,
128129 deindent : 'Fortryd indryk afsnit' ,
@@ -1921,6 +1922,9 @@ export default {
19211922 selectUserGroup : ( multiple : boolean ) => {
19221923 return multiple ? 'Vælg brugergrupper' : 'Vælg brugergruppe' ;
19231924 } ,
1925+ chooseUserGroup : ( multiple : boolean ) => {
1926+ return multiple ? 'Vælg brugergrupper' : 'Vælg brugergruppe' ;
1927+ } ,
19241928 noStartNode : 'Ingen startnode valgt' ,
19251929 noStartNodes : 'Ingen startnoder valgt' ,
19261930 startnode : 'Indhold startnode' ,
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ export default {
129129 buttons : {
130130 clearSelection : 'Clear selection' ,
131131 select : 'Select' ,
132+ choose : 'Choose' ,
132133 somethingElse : 'Do something else' ,
133134 bold : 'Bold' ,
134135 deindent : 'Cancel Paragraph Indent' ,
@@ -1973,6 +1974,9 @@ export default {
19731974 selectUserGroup : ( multiple : boolean ) => {
19741975 return multiple ? 'Select User Groups' : 'Select User Group' ;
19751976 } ,
1977+ chooseUserGroup : ( multiple : boolean ) => {
1978+ return multiple ? 'Choose User Groups' : 'Choose User Group' ;
1979+ } ,
19761980 noStartNode : 'No start node selected' ,
19771981 noStartNodes : 'No start nodes selected' ,
19781982 startnode : 'Content start node' ,
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ export default {
129129 buttons : {
130130 clearSelection : 'Clear selection' ,
131131 select : 'Select' ,
132+ choose : 'Choose' ,
132133 somethingElse : 'Do something else' ,
133134 bold : 'Bold' ,
134135 deindent : 'Cancel Paragraph Indent' ,
@@ -2012,6 +2013,9 @@ export default {
20122013 selectUserGroup : ( multiple : boolean ) => {
20132014 return multiple ? 'Select User Groups' : 'Select User Group' ;
20142015 } ,
2016+ chooseUserGroup : ( multiple : boolean ) => {
2017+ return multiple ? 'Choose User Groups' : 'Choose User Group' ;
2018+ } ,
20152019 noStartNode : 'No start node selected' ,
20162020 noStartNodes : 'No start nodes selected' ,
20172021 startnode : 'Content start node' ,
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export class UmbUserGroupPickerModalElement extends UmbModalBaseElement<
7070
7171 override render ( ) {
7272 return html `
73- < umb-body-layout headline =${ this . localize . term ( 'user_selectUserGroup ' , true ) } >
73+ < umb-body-layout headline =${ this . localize . term ( 'user_chooseUserGroup ' , true ) } >
7474 < uui-box >
7575 ${ repeat (
7676 this . _userGroups ,
@@ -96,7 +96,7 @@ export class UmbUserGroupPickerModalElement extends UmbModalBaseElement<
9696 < div slot ="actions ">
9797 < uui-button label =${ this . localize . term ( 'general_cancel' ) } @click =${ this . _rejectModal } > </ uui-button >
9898 < uui-button
99- label =${ this . localize . term ( 'buttons_select ' ) }
99+ label =${ this . localize . term ( 'buttons_choose ' ) }
100100 look ="primary"
101101 color="positive"
102102 @click=${ this . #onSubmit} > </ uui-button >
You can’t perform that action at this time.
0 commit comments