Fix gettext.

This commit is contained in:
Buster Neece 2022-12-11 17:46:50 -06:00
parent d51a4ca3d1
commit fbf4df9ae2
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
2 changed files with 13 additions and 1 deletions

View File

@ -3,4 +3,16 @@
@include reset-material-icons($material-icon-size * 2);
line-height: 0.5em;
}
.btn > & {
margin-right: calc($btn-padding-x / 2);
}
.btn-lg > & {
margin-right: calc($btn-padding-x-lg / 2);
}
.btn-sm > & {
margin-right: calc($btn-padding-x-sm / 2);
}
}

View File

@ -2,7 +2,7 @@ import translations from "../../../translations/translations.json";
import {createGettext} from "vue3-gettext";
export default createGettext({
defaultLanguage: 'en_US',
defaultLanguage: App.locale,
translations: translations,
silent: true
});