Improve Spanish translatoin

This commit is contained in:
Djuri Baars 2023-11-19 18:28:43 +01:00
parent 43b4e2e584
commit ca0cf827b2
4 changed files with 11 additions and 6 deletions

View File

@ -28,7 +28,7 @@ jobs:
build:
needs: check-changes
runs-on: ubuntu-latest
if: ${{ needs.check-changes.outputs >= 2 }}
if: ${{ needs.check-changes.outputs >= 1 }}
permissions:
contents: write

View File

@ -9,5 +9,5 @@ register('es', () => import('../locales/es.json'))
init({
fallbackLocale: defaultLocale,
initialLocale: browser ? window.navigator.language : defaultLocale,
initialLocale: browser ? browser && localStorage.getItem('locale') ? localStorage.getItem('locale') : window.navigator.language : defaultLocale,
})

View File

@ -28,17 +28,17 @@
"version": "Versión",
"ledColor": "color del LED",
"systemInfo": "Info del sistema",
"showText": "Poner texto",
"showText": "Mostrar texto",
"text": "Texto",
"title": "Control",
"buildTime": "Tiempo de construcción",
"hostname": "Nombre de host"
"buildTime": "Tiempo de compilación",
"hostname": "Nombre del host"
},
"status": {
"memoryFree": "Memoria RAM libre",
"wsPriceConnection": "Conexión WebSocket Precio",
"wsMempoolConnection": "Conexión WebSocket Mempool.space",
"screenCycle": "Rotacion de pantalla",
"screenCycle": "Ciclo de pantalla",
"uptime": "Tiempo de funcionamiento",
"fetchEuroNote": "Si utiliza \"Obtener precio en €\", la conexión de Precio WS mostrará ❌ ya que utiliza otra fuente de datos.",
"title": "Estado"

View File

@ -186,3 +186,8 @@ nav {
.card-title {
margin-bottom: 0;
}
.navbar-brand {
font-style: italic;
font-weight: 600;
}