Skip to content

Commit aa761b3

Browse files
authored
chore: fix letter casing
1 parent 758af48 commit aa761b3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/webui/src/client/lib/clientUserAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function userActionToLabel(userAction: UserAction, t: i18next.TFunction) {
116116
case UserAction.EXECUTE_USER_OPERATION:
117117
return t('Execute User Operation')
118118
case UserAction.ACTIVATE_ADLIB_TESTING:
119-
return t('Adlib Testing')
119+
return t('AdLib Testing')
120120
case UserAction.CREATE_ADLIB_TESTING_RUNDOWN:
121121
return t('Creating Adlib Testing Rundown')
122122
case UserAction.SET_QUICK_LOOP_START:

packages/webui/src/client/ui/RundownView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ const RundownHeader = withTranslation()(
10421042
<MenuItem onClick={(e) => this.deactivate(e)}>{t('Deactivate')}</MenuItem>
10431043
) : null}
10441044
{this.props.studio.settings.allowAdlibTestingSegment && this.props.playlist.activationId ? (
1045-
<MenuItem onClick={(e) => this.activateAdlibTesting(e)}>{t('Adlib Testing')}</MenuItem>
1045+
<MenuItem onClick={(e) => this.activateAdlibTesting(e)}>{t('AdLib Testing')}</MenuItem>
10461046
) : null}
10471047
{this.props.playlist.activationId ? (
10481048
<MenuItem onClick={(e) => this.take(e)}>{t('Take')}</MenuItem>

packages/webui/src/client/ui/Settings/Studio/Generic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ function StudioSettings({ studio }: { studio: DBStudio }): JSX.Element {
362362
</LabelAndOverridesForCheckbox>
363363

364364
<LabelAndOverridesForCheckbox
365-
label={t('Enable Adlib Testing, for testing adlibs before taking the first part')}
365+
label={t('Enable AdLib Testing, for testing AdLibs before taking the first Part')}
366366
item={wrappedItem}
367367
itemKey={'allowAdlibTestingSegment'}
368368
overrideHelper={overrideHelper}

packages/webui/src/client/ui/Settings/components/triggeredActions/actionEditors/actionSelector/ActionSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function actionToLabel(t: TFunction, action: SomeAction['action']): string {
173173
case PlayoutActions.deactivateRundownPlaylist:
174174
return t('Deactivate Rundown')
175175
case PlayoutActions.activateAdlibTestingMode:
176-
return t('Adlib Testing')
176+
return t('AdLib Testing')
177177
case PlayoutActions.disableNextPiece:
178178
return t('Disable next Piece')
179179
case PlayoutActions.hold:

0 commit comments

Comments
 (0)