Skip to content

Commit

Permalink
moneymoney-1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Sep 9, 2023
1 parent a520131 commit 9e18305
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ See [Configuration Reference](https://vitejs.dev/config/).

## Changelog

### 1.0.0 (2023-09-09)
- MoneyMoney frontend migrated to vue3 and vuetify3
- All features were added

### 0.3.0 (2022-07-03)
- Adding missing features

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuetify-project",
"version": "0.0.0",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
25 changes: 19 additions & 6 deletions src/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@
"Gains method value": "Valor del método de ganancias",
"Generate report": "Generar informe",
"Gross and net must be negative": "El importe bruto y neto debe ser negativo",
"Gross balance: [0]. Net balance: [1]": "Saldo bruto: [0]. Saldo neto: [1]",
"Gross": "Bruto",
"Gross dividends": "Dividendos brutos",
"Gross end": "Bruto final",
Expand Down Expand Up @@ -346,7 +345,6 @@
"Maximum balance": "Saldo máximo",
"May": "Mayo",
"Median": "Mediana",
"Merged investments of [0]": "Inversiones unidas de [0]",
"Migrate": "Migrar",
"Minutes apart": "Minutos de separación",
"Money Money. Another way to manage your finances": "Money Money. Otra forma de gestionar tus finanzas",
Expand All @@ -360,7 +358,6 @@
"Name": "Nombre",
"Negative balance concepts": "Conceptos con saldo negativo",
"Net dividends": "Dividendos netos",
"Net gains + Dividends": "Ganancias netas + Dividendos",
"Net gains + Net dividends = [0].": "Ganancias netas + Dividendos netos = [0].",
"Net gains": "Ganancias netas",
"Net": "Neto",
Expand Down Expand Up @@ -426,7 +423,6 @@
"Products": "Productos",
"Products search": "Búsqueda de productos",
"Products update": "Actualiza productos",
"Products view": "Ver producto",
"Profile": "Perfil",
"Profile settings": "Preferencias del perfil",
"Project main page is located in Github, where you can help me coding or translating to different languages.": "La página principal del proyecto se encuentra en Github, donde puedes ayudarme con el código o traduciendo a diferentes idiomas.",
Expand Down Expand Up @@ -731,7 +727,24 @@
"Credit cards operations": "Operaciones de tarjetas de crédito",
"Total: [0]": "Total: [0]",
"Fast operations coverage": "Cobertura de operaciones rápidas",
"[0] registers": "[0] registros",
"Credit card": "Tarjeta de crédito",
"Must be an integer number": "Debe ser un número entero"
"Must be an integer number": "Debe ser un número entero",
"Zero risk": "Riesgo cero",
"Updating a DPS estimation": "Actualizando una estimación DPA",
"Adding a new DPS estimation": "Añadiendo una nueva estimación DPA",
"Deleting a DPS estimation": "Borrando una estimación DPA",
"Updating an investment operation": "Actualizando una operación de inversión",
"Deleting an investment operation": "Borrando una operación de inversión",
"Operation gross balance: [0]<br>Operation net balance: [1]": "",
"Reinvest/Divest operation": "Operación de reinversión/desinversión",
"Products options": "Opciones de productos",
"Add a quote for '[0]'": "Añade una cotización para '[0]'",
"View '[0]'": "Ver '[0]'",
"Select the best product": "Selecciona el producto mejor",
"Select the worst product": "Selecciona el producto peor",
"Product '[0]'": "Producto '[0]'",
"Total balance: [0]": "Saldo total: [0]",
"You can't copy this account operation": "No puedes copiar esta operación de cuenta",
"Widgets": "Widgets",
"You've done something forbidden": "Has hecho algo prohibido"
}
4 changes: 2 additions & 2 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export const useStore = defineStore('global', {
token:null,
logged:false,
count:0,
version: "0.0.1",
versiondate: new Date(2023, 2, 5, 7, 5),
apiroot: import.meta.env.VITE_DJANGO_MONEYMONEY_URL,
version: "1.0.0",
versiondate: new Date(2023, 8, 9, 5, 43),
publicPath: import.meta.env.VUE_APP_PUBLIC_PATH,
catalog_manager: false,
accounts: new Map(),
Expand Down

0 comments on commit 9e18305

Please sign in to comment.