diff --git a/src/i18n/en-ca/index.ts b/src/i18n/en-ca/index.ts index 9af138a..c462be4 100644 --- a/src/i18n/en-ca/index.ts +++ b/src/i18n/en-ca/index.ts @@ -401,10 +401,14 @@ export default { title: "Download options", description: "Choose what to include in the report", company: "companies", + targo: "Targo", + solucom: "Solucom", type: "type", shifts: "shifts", expenses: "expenses", options: "options", + download_failed: "download failed", + download_failed_caption: "an unexpected error occured", }, table: { full_name: "full name", diff --git a/src/i18n/fr-ca/index.ts b/src/i18n/fr-ca/index.ts index a76fdd9..2509717 100644 --- a/src/i18n/fr-ca/index.ts +++ b/src/i18n/fr-ca/index.ts @@ -401,10 +401,14 @@ export default { title: "options de téléchargement", description: "Choisissez ce qui sera inclu dans le rapport", company: "compagnies", + targo: "Targo", + solucom: "Solucom", type: "types de données", shifts: "quarts de travail", expenses: "dépenses", options: "options", + download_failed: "téléchargement échoué", + download_failed_caption: "une erreur inconnue est survenue", }, table: { full_name: "nom complet", diff --git a/src/layouts/components/main-layout-left-drawer.vue b/src/layouts/components/main-layout-left-drawer.vue index 5c567bb..e480402 100644 --- a/src/layouts/components/main-layout-left-drawer.vue +++ b/src/layouts/components/main-layout-left-drawer.vue @@ -21,14 +21,14 @@ import { useAuthApi } from 'src/modules/auth/composables/use-auth-api'; ] const q = useQuasar(); - const auth_store = useAuthStore(); + const authStore = useAuthStore(); const authApi = useAuthApi(); - const ui_store = useUiStore(); + const uiStore = useUiStore(); const router = useRouter(); - const is_mini = ref(true); + const isMini = ref(true); const onClickDrawerPage = (page_name: RouteNames) => { - is_mini.value = true; + isMini.value = true; router.push({ name: page_name }).catch(error => { console.error('failed to reach page: ', error); @@ -41,21 +41,21 @@ import { useAuthApi } from 'src/modules/auth/composables/use-auth-api'; onMounted(() => { if (q.platform.is.mobile) { - ui_store.is_left_drawer_open = false; + uiStore.isLeftDrawerOpen = false; } })