File tree 4 files changed +4
-3
lines changed
views/UserCreatedProjects
4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ export default function SideNav(): ReactElement {
138
138
>
139
139
< Icon name = "log-out" color = { Color . WHITE } />
140
140
< Text font = { { variation : FontVariation . BODY } } color = { Color . WHITE } >
141
- Sign Out
141
+ { getString ( 'signOut' ) }
142
142
</ Text >
143
143
</ Layout . Horizontal >
144
144
) : (
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export function StatusHeatMap(props: StatusHeatMapProps): React.ReactElement {
129
129
{ execution . executedBy ?. username !== 'pipeline' ? (
130
130
< >
131
131
{ execution . executedBy ?. username ?? getString ( 'chaosController' ) }
132
- { execution . executedBy ?. username && ' | Manually' }
132
+ { execution . executedBy ?. username && getString ( 'manually' ) }
133
133
</ >
134
134
) : (
135
135
toSentenceCase ( execution . executedBy ?. username )
Original file line number Diff line number Diff line change @@ -360,6 +360,7 @@ executedBy: Executed by
360
360
executedOn : Executed on
361
361
executionDetails : Execution details goes here
362
362
executionError : Execution Error
363
+ expand : expand
363
364
executionHistory : Execution History
364
365
executionID : Execution ID
365
366
executionOverview : Execution Overview
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ function MemoizedUserCreatedProjectsTable({
62
62
} ,
63
63
{
64
64
id : 'members' ,
65
- Header : 'Members' ,
65
+ Header : getString ( 'members' ) ,
66
66
Cell : ( { row : { original : data } } : { row : Row < Project > } ) => {
67
67
return (
68
68
< AvatarGroup
You can’t perform that action at this time.
0 commit comments