Skip to content

Commit ba52e73

Browse files
committed
chore: Changed the inconsistently named feature that allows you to play adlibs, so it is now consistently called "Adlib Testing" instead of "Rehearsal Mode" (which is something completely different) or "Adlib Testing mode" or "Adlib Testing (Rehearsal) mode".
1 parent 9a7ddf5 commit ba52e73

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/corelib/src/worker/studio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export enum StudioJobs {
185185
BlueprintIgnoreFixUpConfigForStudio = 'blueprintIgnoreFixUpConfigForStudio',
186186

187187
/**
188-
* Activate AdlibTesting (Rehearsal Mode) mode for the Rundown containing the nexted Part.
188+
* Activate AdlibTesting for the Rundown containing the nexted part.
189189
*/
190190
ActivateAdlibTesting = 'activateAdlibTesting',
191191

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('Rehearsal Mode')
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
@@ -1040,7 +1040,7 @@ const RundownHeader = withTranslation()(
10401040
<MenuItem onClick={(e) => this.deactivate(e)}>{t('Deactivate')}</MenuItem>
10411041
) : null}
10421042
{this.props.studio.settings.allowAdlibTestingSegment && this.props.playlist.activationId ? (
1043-
<MenuItem onClick={(e) => this.activateAdlibTesting(e)}>{t('Rehearsal Mode')}</MenuItem>
1043+
<MenuItem onClick={(e) => this.activateAdlibTesting(e)}>{t('Adlib Testing')}</MenuItem>
10441044
) : null}
10451045
{this.props.playlist.activationId ? (
10461046
<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('Allow AdlibTesting (rehearsal) mode, 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('Rehearsal Mode')
176+
return t('Adlib Testing')
177177
case PlayoutActions.disableNextPiece:
178178
return t('Disable next Piece')
179179
case PlayoutActions.hold:

0 commit comments

Comments
 (0)