added quality selection in context menu and removed the quality modal, except for one case; translated cut, copy, ecc in italian

This commit is contained in:
Roberto Tonino
2020-08-11 21:12:47 +02:00
parent 830f28b795
commit 76f354e3de
14 changed files with 210 additions and 191 deletions

26
src/js/qualities.js Normal file
View File

@@ -0,0 +1,26 @@
export default [
{
label: 'FLAC',
value: 9
},
{
label: 'MP3 320kbps',
value: 3
},
{
label: 'MP3 128kbps',
value: 1
},
{
label: '360 Reality Audio [HQ]',
value: 15
},
{
label: '360 Reality Audio [MQ]',
value: 14
},
{
label: '360 Reality Audio [LQ]',
value: 13
}
]