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'
}];
}

View file

@ -1428,5 +1428,7 @@
"SubtitleVerticalPositionHelp": "Line number where text appears. Positive numbers indicate top down. Negative numbers indicate bottom up.",
"Preview": "Preview",
"LabelMaxMuxingQueueSize": "Max muxing queue size:",
"LabelMaxMuxingQueueSizeHelp": "Maximum number of packets that can be buffered while waiting for all streams to initialize. Try to increase it if you still encounter \"Too many packets buffered for output stream\" error in ffmpeg logs. The recommended value is 2048."
"LabelMaxMuxingQueueSizeHelp": "Maximum number of packets that can be buffered while waiting for all streams to initialize. Try to increase it if you still encounter \"Too many packets buffered for output stream\" error in ffmpeg logs. The recommended value is 2048.",
"AspectRatioCover": "Cover",
"AspectRatioFill": "Fill"
}

View file

@ -1431,5 +1431,7 @@
"OptionAllowContentDownload": "允许媒体下载",
"HeaderDeleteDevices": "删除所有设备",
"DeleteDevicesConfirmation": "您确定要删除所有设备吗?所有其他会话将被注销。用户下次登录时,设备会重新出现。",
"DeleteAll": "删除全部"
"DeleteAll": "删除全部",
"AspectRatioCover": "覆盖",
"AspectRatioFill": "填充"
}