translation for video aspect ratio

This commit is contained in:
nyanmisaka 2020-11-17 22:55:48 +08:00
parent 17142dc6d3
commit d3ee7b68fb
3 changed files with 9 additions and 5 deletions

View file

@ -1741,13 +1741,13 @@ function tryRemoveElement(elem) {
getSupportedAspectRatios() {
return [{
name: 'Auto',
name: globalize.translate('Auto'),
id: 'auto'
}, {
name: 'Cover',
name: globalize.translate('AspectRatioCover'),
id: 'cover'
}, {
name: 'Fill',
name: globalize.translate('AspectRatioFill'),
id: 'fill'
}];
}