Refactor legend component: update remote access titles to use translation keys and enhance localization files
testing/ogGui-multibranch/pipeline/head This commit looks good Details

pull/22/head
Lucas Lara García 2025-05-07 12:19:00 +02:00
parent bdd6206e18
commit 2dce55ce1d
3 changed files with 9 additions and 5 deletions

View File

@ -22,11 +22,11 @@
<mat-list-item>
<mat-icon matListItemIcon style="color: green;">school</mat-icon>
<div matListItemTitle>Disponible acceso remoto</div>
<div matListItemTitle>{{ 'remoteAccess' | translate }}</div>
</mat-list-item>
<mat-list-item>
<mat-icon matListItemIcon style="color: rgb(209, 5, 5);">school</mat-icon>
<div matListItemTitle>No disponible acceso remoto</div>
<div matListItemTitle>{{ 'noRemoteAccess' | translate }}</div>
</mat-list-item>
</mat-list>
</mat-list>

View File

@ -507,5 +507,7 @@
"softwareInventory": "Software Inventory",
"hardwareInventory": "Hardware Inventory",
"runScript": "Run Script"
}
},
"remoteAccess": "Remote access available",
"noRemoteAccess": "Remote access not available"
}

View File

@ -509,5 +509,7 @@
"softwareInventory": "Inventario Software",
"hardwareInventory": "Inventario Hardware",
"runScript": "Ejecutar script"
}
},
"remoteAccess": "Disponible acceso remoto",
"noRemoteAccess": "No disponible acceso remoto"
}