9bf3f54183
* feat(html5): initial implementation of Gladia transcriptions to BBB 3.0 * fix(transcription): Add missing locales and fix invalid cc menu key * fix(bbb-transcription-controller): Bump transcription controller to fix some bugs * fix: adjust yq syntax for setting fs esl password in transctiption-controller * fix(transcription): Use newer useSettings format from transcription options * fix(captions): Correctly use captions settings --------- Co-authored-by: João Victor <joaovictornunes973@gmail.com> Co-authored-by: Anton Georgiev <anto.georgiev@gmail.com> Co-authored-by: Ramón Souza <contato@ramonsouza.com>
26 lines
469 B
TypeScript
26 lines
469 B
TypeScript
const SETTINGS = {
|
|
APPLICATION: 'application',
|
|
AUDIO: 'audio',
|
|
VIDEO: 'video',
|
|
CC: 'cc',
|
|
DATA_SAVING: 'dataSaving',
|
|
ANIMATIONS: 'animations',
|
|
SELF_VIEW_DISABLE: 'selfViewDisable',
|
|
TRANSCRIPTION: 'transcription',
|
|
} as const;
|
|
|
|
const CHANGED_SETTINGS = 'changed_settings';
|
|
const DEFAULT_SETTINGS = 'default_settings';
|
|
|
|
export {
|
|
SETTINGS,
|
|
CHANGED_SETTINGS,
|
|
DEFAULT_SETTINGS,
|
|
};
|
|
|
|
export default {
|
|
SETTINGS,
|
|
CHANGED_SETTINGS,
|
|
DEFAULT_SETTINGS,
|
|
};
|