Complete dashboard translations & small UI improvements (#69)

* fix dropdown action Estimate Dashboard and fix translating full Dasboard page

* Update app.php

* fix locale in app.php config

* Wizard install with translation, customer portal with translation, and fixing hardcoding strings to get translation

* fixes asked to review

* fixes pint

---------

Co-authored-by: Max <contact@agencetwogether.fr>
Co-authored-by: Darko Gjorgjijoski <5760249+gdarko@users.noreply.github.com>
This commit is contained in:
agencetwogether
2024-06-05 12:07:46 +02:00
committed by GitHub
parent 3259173066
commit 3b61440e1f
89 changed files with 925 additions and 213 deletions

View File

@@ -20,10 +20,25 @@ export const useInstallationStore = (useWindow = false) => {
database_username: null,
database_password: null,
app_url: window.location.origin,
app_locale: null
},
}),
actions: {
fetchInstallationLanguages() {
return new Promise((resolve, reject) => {
axios
.get(`/api/v1/installation/languages`)
.then((response) => {
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
fetchInstallationRequirements() {
return new Promise((resolve, reject) => {
axios
@@ -66,6 +81,20 @@ export const useInstallationStore = (useWindow = false) => {
})
},
addInstallationLanguage(data) {
return new Promise((resolve, reject) => {
axios
.post(`/api/v1/installation/wizard-language`, data)
.then((response) => {
resolve(response)
})
.catch((err) => {
handleError(err)
reject(err)
})
})
},
fetchInstallationPermissions() {
return new Promise((resolve, reject) => {
axios

View File

@@ -36,17 +36,17 @@ export const useRecurringInvoiceStore = (useWindow = false) => {
},
frequencies: [
{ label: 'Every Minute', value: '* * * * *' },
{ label: 'Every 30 Minute', value: '*/30 * * * *' },
{ label: 'Every Hour', value: '0 * * * *' },
{ label: 'Every 2 Hour', value: '0 */2 * * *' },
{ label: 'Every day at midnight ', value: '0 0 * * *' },
{ label: 'Every Week', value: '0 0 * * 0' },
{ label: 'Every 15 days at midnight', value: '0 5 */15 * *' },
{ label: 'On the first day of every month at 00:00', value: '0 0 1 * *' },
{ label: 'Every 6 Month', value: '0 0 1 */6 *' },
{ label: 'Every year on the first day of january at 00:00', value: '0 0 1 1 *' },
{ label: 'Custom', value: 'CUSTOM' },
{ label: global.t('recurring_invoices.frequency.every_minute'), value: '* * * * *' },
{ label: global.t('recurring_invoices.frequency.every_30_minute'), value: '*/30 * * * *' },
{ label: global.t('recurring_invoices.frequency.every_hour'), value: '0 * * * *' },
{ label: global.t('recurring_invoices.frequency.every_2_hour'), value: '0 */2 * * *' },
{ label: global.t('recurring_invoices.frequency.every_day_at_midnight'), value: '0 0 * * *' },
{ label: global.t('recurring_invoices.frequency.every_week'), value: '0 0 * * 0' },
{ label: global.t('recurring_invoices.frequency.every_15_days_at_midnight'), value: '0 5 */15 * *' },
{ label: global.t('recurring_invoices.frequency.on_the_first_day_of_every_month_at_midnight'), value: '0 0 1 * *' },
{ label: global.t('recurring_invoices.frequency.every_6_month'), value: '0 0 1 */6 *' },
{ label: global.t('recurring_invoices.frequency.every_year_on_the_first_day_of_january_at_midnight'), value: '0 0 1 1 *' },
{ label: global.t('recurring_invoices.frequency.custom'), value: 'CUSTOM' },
],
}),