Compare commits

..

5 Commits

Author SHA1 Message Date
d7c3554db9 Merge b5f067d3a9 into 03eb7adece 2024-12-03 23:14:12 -05:00
03eb7adece Update README.md 2024-12-02 11:54:38 +02:00
c9f54971f2 Merge remote-tracking branch 'origin/main' into main 2024-12-02 10:41:04 +02:00
2b5f3fc6b7 Fix urls. 2024-12-02 10:40:45 +02:00
32e982baea Fix urls. 2024-12-02 10:38:03 +02:00
3 changed files with 4 additions and 5 deletions

View File

@ -9,7 +9,7 @@ It is open-source and easily extendable. You can use it as a starter kit for mor
Run it locally or host it yourself.
You can always use the latest free version at [invoices.mokuapp.io](https://invoices.mokuapp.io)
You can always use the latest free version at [invoices.elevate.ee](https://invoices.elevate.ee)
Built with [Vue.js](https://vuejs.org/) and [Bootstrap](https://getbootstrap.com/)
@ -35,7 +35,7 @@ Built with [Vue.js](https://vuejs.org/) and [Bootstrap](https://getbootstrap.com
- Multilingual
- PWA support
- Ready-to-go backend adapters
- [Browser Storage](https://invoices.mokuapp.io)
- [Browser Storage](https://invoices.elevate.ee)
- [Wordpress](https://wordpress.org/plugins/beautiful-custom-invoices/)
- Woocommerce (coming soon)
- Google Drive (coming soon)

View File

@ -3,7 +3,7 @@
export default {
storageType: 'local',
// base_url: wordpress.front_url,
// base_url: `${window.location.origin}${process.env.BASE_URL}`
// base_url: process.env.BASE_URL
// api_url: wordpress.api_url,
// api_nonce: wordpress.nonce,
};

View File

@ -4,7 +4,6 @@ import VueI18Next from '@panter/vue-i18next';
import Backend from 'i18next-http-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
import app from '@/main';
import config from '@/config/app.config';
Vue.use(VueI18Next);
@ -16,7 +15,7 @@ const initialized = i18next.init({
fallbackLng: 'en',
whitelist: ['en', 'de', 'fr', 'et', 'fa', 'bn', 'es', 'pt_br', 'it', 'id', 'kr'],
backend: {
loadPath: `${config.base_url || ''}/locales/{{lng}}/{{ns}}.json`,
loadPath: `${window.location.origin}/locales/{{lng}}/{{ns}}.json`,
},
detection: {
order: ['querystring', 'path', 'localStorage', 'navigator'],