MT#65331 fix i18n import

i18n had wrong import in the constants file.

Change-Id: Ie1db5377c154c7a143a4bf68301f61a669355f8a
(cherry picked from commit 2bb7fc59b2)
mr26.0
Debora Crescenzo 2 months ago committed by Crescenzo Debora
parent 66a0e64e8b
commit bdf57585bd

@ -22,19 +22,19 @@ export default ({ app }) => {
faxQualityOptions: [
{
get label () {
return app.config.globalProperties.$t('Normal')
return app.i18n.global.t('Normal')
},
value: 'normal'
},
{
get label () {
return app.config.globalProperties.$t('Fine')
return app.i18n.global.t('Fine')
},
value: 'fine'
},
{
get label () {
return app.config.globalProperties.$t('Super')
return app.i18n.global.t('Super')
},
value: 'super'
}

Loading…
Cancel
Save