From 3dd127d46fccd523cbe46a4be2ec43839ddd9d4c Mon Sep 17 00:00:00 2001 From: apuente Date: Tue, 19 Nov 2024 12:34:52 +0100 Subject: [PATCH] refs #1138 Fix translations --- .../create-task/create-task.component.html | 58 -------- .../advanced-search.component.css | 94 ++++++++---- .../advanced-search.component.html | 64 ++++---- .../advanced-search.component.ts | 3 +- .../client-tab-view.component.html | 14 +- .../client-tab-view.component.ts | 14 +- .../components/groups/groups.component.css | 6 - .../components/groups/groups.component.html | 4 +- .../app/components/groups/groups.component.ts | 2 +- .../edit-client/edit-client.component.html | 4 - .../create-image/create-image.component.html | 13 -- .../components/images/images.component.html | 14 -- .../create-pxe-template.component.html | 12 -- .../repositories/repositories.component.ts | 10 +- ogWebconsole/src/locale/en.json | 140 +++++++++--------- ogWebconsole/src/locale/es.json | 16 +- 16 files changed, 209 insertions(+), 259 deletions(-) diff --git a/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html b/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html index a65d937..8e5fdca 100644 --- a/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html +++ b/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html @@ -10,63 +10,6 @@ -<<<<<<< Updated upstream - - Selecciona Comandos - - - {{ group.name }} - - - Este campo es obligatorio - - - - Selecciona Comandos Individuales (Opcional) - - - {{ command.name }} - - - - -

Fecha y hora de ejecución

- - - Fecha de Ejecución - - - - Este campo es obligatorio - - - - Hora de Ejecución - - Este campo es obligatorio - - -

Selecciona destino

- - - Selecciona Unidad Organizacional - - - {{ unit.name }} - - - Este campo es obligatorio - - - - Selecciona aula - - - {{ child.name }} - - - -=======

{{ 'informationSectionTitle' | translate }}

@@ -147,7 +90,6 @@
->>>>>>> Stashed changes Selecciona Clientes diff --git a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css index 1513308..c80f391 100644 --- a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css +++ b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css @@ -188,11 +188,8 @@ mat-spinner { } .result-card.small-card { - width: 100%; max-width: 180px; - height: 100%; padding: 10px; - margin: 10px 10px 10px 10px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); display: flex; @@ -200,31 +197,34 @@ mat-spinner { justify-content: space-between; } -.result-card { - &.card-og-live { - background-color: #4caf50; /* Verde */ - color: white; - } - &.card-busy { - background-color: #f44336; /* Naranja */ - color: white; - } - &.card-windows { - background-color: #2196f3; /* Azul */ - color: white; - } - &.card-linux { - background-color: #9c27b0; /* Púrpura */ - color: white; - } - &.card-macos { - background-color: #ff9800; /* Rojo */ - color: white; - } - &.card-off { - background-color: #9e9e9e; /* Gris */ - color: white; - } +.result-card.card-og-live { + background-color: #4caf50; /* Verde */ + color: white; +} + +.result-card.card-busy { + background-color: #f44336; /* Naranja */ + color: white; +} + +.result-card.card-windows { + background-color: #2196f3; /* Azul */ + color: white; +} + +.result-card.card-linux { + background-color: #9c27b0; /* Púrpura */ + color: white; +} + +.result-card.card-macos { + background-color: #ff9800; /* Rojo */ + color: white; +} + +.result-card.card-off { + background-color: #9e9e9e; /* Gris */ + color: white; } .result-title { @@ -324,3 +324,41 @@ mat-card { .result-list { height: auto; } + +.result-card { + display: flex; + flex-direction: column; + height: 100%; +} + +.card-content-wrapper { + display: flex; + flex-direction: row; + align-items: flex-start; + flex-wrap: wrap; +} + +.result-checkbox { + flex: 0 0 auto; +} + +.text-content { + flex: 1 1 auto; + min-width: 0; +} + +.result-title, +.result-content { + margin: 0; +} + +.result-content p { + margin: 0; +} + +@media (max-width: 600px) { + .card-content-wrapper { + flex-direction: column; + align-items: stretch; + } +} diff --git a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html index 538df56..5267319 100644 --- a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html +++ b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html @@ -62,33 +62,45 @@
- + - - - {{ result.name }} - -

{{ result.type !== 'client' ? result.type : '' }}

-

{{ result.ip }}

-

{{ result.mac }}

-

{{ result.status }}

-

{{ 'internalUnits' | translate }}: {{ result.children.length }}

-

{{ 'clients' | translate }}: {{ result.clients.length }}

-
-
+ class="result-card small-card" + [ngClass]="{ + 'card-og-live': result.status === 'og-live', + 'card-busy': result.status === 'busy', + 'card-windows': result.status === 'windows' || result.status === 'windows-session', + 'card-linux': result.status === 'linux' || result.status === 'linux-session', + 'card-macos': result.status === 'macos', + 'card-off': result.status === 'off' + }" + matTooltip="{{ result.status }}" +> +
+ + +
+ {{ result.name }} + +

{{ result.type !== 'client' ? result.type : '' }}

+

{{ result.ip }}

+

{{ result.mac }}

+

{{ result.status }}

+

+ {{ 'internalUnits' | translate }}: {{ result.children.length }} +

+

+ {{ 'clients' | translate }}: {{ result.clients.length }} +

+
+
+
+ +
@@ -109,7 +121,7 @@
-
+
diff --git a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.ts b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.ts index 695e0e4..18cf77e 100644 --- a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.ts +++ b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.ts @@ -485,8 +485,7 @@ export class AdvancedSearchComponent { 'saveFiltersStep', 'sendActionStep', 'addPxeStep', - 'resultsStep', - 'paginationStep' + 'resultsStep' ], showPrevButton: true, themeColor: '#3f51b5' diff --git a/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.html b/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.html index d72fe02..a5ec6a4 100644 --- a/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.html +++ b/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.html @@ -2,16 +2,16 @@ -

{{ 'adminImagesTitle' | translate }}

+

{{ 'adminImagesTitle' | translate }}

- - + +
-
+
{{ 'searchClientNameLabel' | translate }} @@ -48,7 +48,7 @@
- +
-
{{ column.header }} @@ -79,7 +79,7 @@ {{ 'columnActions' | translate }} + @@ -94,7 +94,7 @@
-
+
>>>>>> develop .paginator-container { display: flex; justify-content: center; diff --git a/ogWebconsole/src/app/components/groups/groups.component.html b/ogWebconsole/src/app/components/groups/groups.component.html index 570bcd2..43a30ba 100644 --- a/ogWebconsole/src/app/components/groups/groups.component.html +++ b/ogWebconsole/src/app/components/groups/groups.component.html @@ -4,8 +4,8 @@ -

{{ 'adminGroupsTitle' | translate }}

-
+

{{ 'adminGroupsTitle' | translate }}

+
diff --git a/ogWebconsole/src/app/components/groups/groups.component.ts b/ogWebconsole/src/app/components/groups/groups.component.ts index 42baf1b..70af3f9 100644 --- a/ogWebconsole/src/app/components/groups/groups.component.ts +++ b/ogWebconsole/src/app/components/groups/groups.component.ts @@ -453,7 +453,7 @@ export class GroupsComponent implements OnInit { iniciarTour(): void { this.joyrideService.startTour({ - steps: ['titleStep', 'addStep', 'keyStep', 'unitStep', 'elementsStep', 'tabsStep'], + steps: ['groupsTitleStepText', 'addStep', 'keyStep', 'unitStep', 'elementsStep', 'tabsStep'], showPrevButton: true, themeColor: '#3f51b5' }); diff --git a/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html b/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html index f88f2ee..27c3885 100644 --- a/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html +++ b/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html @@ -77,9 +77,6 @@ {{ unit.description }} -<<<<<<< HEAD - {{ 'hardwareProfileError' | translate }} -======= @@ -89,7 +86,6 @@ {{ repository.name }} ->>>>>>> develop diff --git a/ogWebconsole/src/app/components/images/create-image/create-image.component.html b/ogWebconsole/src/app/components/images/create-image/create-image.component.html index 37f77a1..6f48c33 100644 --- a/ogWebconsole/src/app/components/images/create-image/create-image.component.html +++ b/ogWebconsole/src/app/components/images/create-image/create-image.component.html @@ -1,8 +1,4 @@ -<<<<<<< HEAD -

{{ 'addImageTitle' | translate }}

-=======

{{ imageId ? 'Editar' : 'Crear' }} imagen

->>>>>>> develop
@@ -12,9 +8,6 @@ -<<<<<<< Updated upstream - Descripción -======= {{ 'repositoryLabel' | translate }} @@ -25,7 +18,6 @@ {{ 'descriptionLabel' | translate }} ->>>>>>> Stashed changes @@ -35,13 +27,8 @@ -<<<<<<< HEAD - {{ 'softwareProfileLabel' | translate }} - -======= Perfil de software ->>>>>>> develop {{ profile.description }} diff --git a/ogWebconsole/src/app/components/images/images.component.html b/ogWebconsole/src/app/components/images/images.component.html index 00163a4..fffbcd7 100644 --- a/ogWebconsole/src/app/components/images/images.component.html +++ b/ogWebconsole/src/app/components/images/images.component.html @@ -1,11 +1,5 @@
-<<<<<<< Updated upstream -

Administrar imágenes

-
- -
-======= @@ -14,7 +8,6 @@ ->>>>>>> Stashed changes
@@ -28,8 +21,6 @@
-<<<<<<< HEAD -<<<<<<< Updated upstream @@ -44,7 +35,6 @@ -=======
{{ column.header }}
@@ -59,8 +49,6 @@ ->>>>>>> c168c87fc9ebcc4b5cf9a68effa16bdb2a848e00 ->>>>>>> develop @@ -85,7 +73,6 @@ (page)="onPageChange($event)"> -=======
{{ 'searchLabel' | translate }} @@ -133,4 +120,3 @@ (page)="onPageChange($event)">
->>>>>>> Stashed changes diff --git a/ogWebconsole/src/app/components/ogboot/pxe/create-pxeTemplate/create-pxe-template.component.html b/ogWebconsole/src/app/components/ogboot/pxe/create-pxeTemplate/create-pxe-template.component.html index cf30859..f79fd47 100644 --- a/ogWebconsole/src/app/components/ogboot/pxe/create-pxeTemplate/create-pxe-template.component.html +++ b/ogWebconsole/src/app/components/ogboot/pxe/create-pxeTemplate/create-pxe-template.component.html @@ -1,8 +1,4 @@ -<<<<<<< Updated upstream -

{{ isEditMode ? 'Editar' : 'Añadir' }} plantilla

-=======

{{ isEditMode ? ('editTemplateTitle' | translate) : ('addTemplateTitle' | translate) }}

->>>>>>> Stashed changes
@@ -26,13 +22,6 @@
-<<<<<<< Updated upstream - - - -=======
->>>>>>> Stashed changes
diff --git a/ogWebconsole/src/app/components/repositories/repositories.component.ts b/ogWebconsole/src/app/components/repositories/repositories.component.ts index 40ef049..2845c94 100644 --- a/ogWebconsole/src/app/components/repositories/repositories.component.ts +++ b/ogWebconsole/src/app/components/repositories/repositories.component.ts @@ -4,15 +4,10 @@ import {DatePipe} from "@angular/common"; import {MatDialog} from "@angular/material/dialog"; import {HttpClient} from "@angular/common/http"; import {ToastrService} from "ngx-toastr"; -import {CreateImageComponent} from "../images/create-image/create-image.component"; import {DeleteModalComponent} from "../../shared/delete_modal/delete-modal/delete-modal.component"; -<<<<<<< HEAD -import { CreateRepositoryComponent } from './create-repository/create-repository.component'; import { JoyrideService } from 'ngx-joyride'; -======= import {CreateRepositoryComponent} from "./create-repository/create-repository.component"; import { Router } from '@angular/router'; ->>>>>>> develop @Component({ selector: 'app-repositories', @@ -58,11 +53,8 @@ export class RepositoriesComponent { public dialog: MatDialog, private http: HttpClient, private toastService: ToastrService, -<<<<<<< HEAD - private joyrideService: JoyrideService -======= + private joyrideService: JoyrideService, private router: Router ->>>>>>> develop ) {} ngOnInit(): void { diff --git a/ogWebconsole/src/locale/en.json b/ogWebconsole/src/locale/en.json index 4c94efc..a5e5a9c 100644 --- a/ogWebconsole/src/locale/en.json +++ b/ogWebconsole/src/locale/en.json @@ -19,6 +19,8 @@ "labelOrganizationalUnit": "Organizational Unit", "buttonCancel": "Cancel", "buttonAdd": "Add", + "addButton": "Add", + "addClientDialogTitle": "Add Client", "dialogTitleEditUser": "Edit User", "labelCurrentPassword": "Current password", "labelNewPassword": "New password", @@ -36,13 +38,15 @@ "checkboxOrgOperator": "Organizational Unit Operator", "checkboxOrgMinimal": "Minimal Organizational Unit", "checkboxUserRole": "User", - "titleStepText": "On this screen, you can manage the calendars of remote teams connected to the UDS service.", + "groupsTitleStepText": "On this screen, you can manage the main organizational units (Faculties, Classrooms, Classroom Groups, and clients).", + "titleStepText": "On this screen, you can manage the calendars of remote teams connected to the UDS service", + "groupsAddStepText": "Click to add a new organizational unit or client.", "adminCalendarsTitle": "Manage calendars", "addButtonStepText": "Click here to add a new calendar.", "addCalendar": "Add calendar", "searchStepText": "Use this search bar to filter existing calendars.", "searchCalendarLabel": "Search calendar name", - "tableStepText": "Here you can see the existing calendars with their features and configurations.", + "tableStepText": "Here are the existing calendars with their characteristics and settings.", "actionsStepText": "Access the available actions for each calendar here.", "editCalendar": "Edit calendar", "remoteAvailability": "Remote availability?", @@ -52,7 +56,7 @@ "endTime": "End time", "endTimePlaceholder": "Select end time", "reasonLabel": "Reason", - "reasonPlaceholder": "Reason for exception", + "reasonPlaceholder": "Reason for the exception", "startDate": "Start date", "endDate": "End date", "buttonSave": "Save", @@ -60,7 +64,7 @@ "addCommandGroupStepText": "Click to add a new command group.", "addCommandGroup": "Add Command Group", "searchGroupNameLabel": "Search group name", - "loadingStepText": "Wait while command groups are loading.", + "loadingStepText": "Wait while the command groups are loading.", "viewCommands": "View commands", "paginationStepText": "Navigate between command group pages using the paginator.", "commandGroupDetailsTitle": "Command Group Details", @@ -91,12 +95,12 @@ "statusColumn": "Status", "enabled": "Enabled", "disabled": "Disabled", - "adminCommandsTitle": "Command and Procedure Traces", - "resetFiltersStepText": "Click to reset filters and see all traces.", + "adminCommandsTitle": "Command and procedure traces", + "resetFiltersStepText": "Click to reset the applied filters and see all traces.", "resetFilters": "Reset filters", - "clientSelectStepText": "Select a client to view associated traces.", + "clientSelectStepText": "Select a client to see the associated traces.", "selectClientPlaceholder": "Select a client", - "commandSelectStepText": "Select a command to view specific traces for that command.", + "commandSelectStepText": "Select a command to see the specific traces of that command.", "selectCommandPlaceholder": "Select a command", "taskDetailsTitle": "Task Details", "taskId": "Task ID", @@ -112,15 +116,15 @@ "informationSectionTitle": "Information", "informationLabel": "Information", "notesPlaceholder": "Enter your notes here", - "commandSelectionSectionTitle": "Command Selection", + "commandSelectionSectionTitle": "Command selection", "selectCommandsLabel": "Select Commands", "requiredFieldError": "This field is required", - "executionDateTimeSectionTitle": "Execution Date and Time", + "executionDateTimeSectionTitle": "Execution date and time", "executionDateLabel": "Execution Date", "selectDatePlaceholder": "Select a date", "executionTimeLabel": "Execution Time", "selectTimePlaceholder": "Select a time", - "destinationSelectionSectionTitle": "Select Destination", + "destinationSelectionSectionTitle": "Select destination", "selectOrganizationalUnitLabel": "Select Organizational Unit", "selectClassroomLabel": "Select Classroom", "selectAllClients": "Select all", @@ -144,17 +148,18 @@ "commandScriptPlaceholder": "Command script", "readOnlyLabel": "Read only", "enabledLabel": "Enabled", + "cancelButton": "Cancel", "generalTabLabel": "General", - "tabsStepText": "Use the tabs to access different options for viewing and searching organizational units and clients.", - "adminGroupsTitle": "Manage Groups", - "newOrganizationalUnitTooltip": "Open modal to create organizational units of any type (Center, Classroom, Group of classrooms, or Group of clients)", + "tabsStepText": "Use the tabs to access different viewing and search options for organizational units and clients.", + "adminGroupsTitle": "Manage groups", + "newOrganizationalUnitTooltip": "Open modal to create organizational units of any type (Center, Classroom, Classroom Group, or Client Group)", "newOrganizationalUnitButton": "New Organizational Unit", "newClientButton": "New Client", - "keyStepText": "The legend will show you the types of organizational units and their corresponding icons.", + "keyStepText": "The legend will show you the types of organizational units and their corresponding icons", "legendButton": "Legend", - "unitStepText": "This section shows the organizational units of type 'Center'.", + "unitStepText": "This is the section where 'Center' type organizational units will be displayed", "organizationalUnitTitle": "Centers", - "elementsStepText": "This section allows you to view internal units of the selected center and navigate through them.", + "elementsStepText": "This is the section to view internal units of the selected center and navigate through them.", "internalElementsTitle": "Internal elements", "noInternalElementsMessage": "No internal elements", "viewTreeTooltip": "View unit as a tree", @@ -167,17 +172,17 @@ "deleteElementTooltip": "Delete this element", "deleteElementMenu": "Delete element", "executeCommandTooltip": "Execute command on this element", - "advancedSearchTabLabel": "Advanced Search", + "advancedSearchTabLabel": "Advanced search", "clientsTabLabel": "Clients", - "organizationalUnitsTabLabel": "Organizational Units", - "viewTreeTitle": "View Organizational Unit Tree", + "organizationalUnitsTabLabel": "Organizational units", + "viewTreeTitle": "View organizational unit tree", "toggleNodeAriaLabel": "Toggle node", "closeButton": "Close", - "orgUnitPropertiesTitle": "Organizational Unit Properties", - "generalDataTab": "General Data", + "orgUnitPropertiesTitle": "Organizational unit properties", + "generalDataTab": "General data", "propertyHeader": "Property", "valueHeader": "Value", - "classroomNetworkPropertiesTab": "Classroom and Network Properties", + "classroomNetworkPropertiesTab": "Classroom and network properties", "editOrgUnitTitle": "Edit Organizational Unit", "generalStepLabel": "General", "typeLabel": "Type", @@ -192,12 +197,12 @@ "associatedCalendarLabel": "Associated Calendar", "backButton": "Back", "additionalInfoStepLabel": "Additional Information", - "networkSettingsStepLabel": "Network Configuration", - "proxyUrlLabel": "Proxy Server URL", - "dnsIpLabel": "DNS Server IP", - "netmaskLabel": "Network Mask", + "networkSettingsStepLabel": "Network Settings", + "proxyUrlLabel": "Proxy server URL", + "dnsIpLabel": "DNS server IP", + "netmaskLabel": "Netmask", "routerLabel": "Router", - "ntpIpLabel": "NTP Server IP", + "ntpIpLabel": "NTP server IP", "p2pModeLabel": "P2P Mode", "p2pTimeLabel": "P2P Time", "mcastIpLabel": "Multicast IP", @@ -210,14 +215,14 @@ "validationToggle": "Validation", "submitButton": "Add", "addOrgUnitTitle": "Add Organizational Unit", - "createOrgUnitparentLabel": "Parent Organizational Unit", + "createOrgUnitparentLabel": "Parent organizational unit", "noParentOption": "--", "nextServerLabel": "NextServer", "bootFileNameLabel": "bootFileName", - "orgUnitTitle": "Organizational Unit", - "classroomGroupsTitle": "Classroom Groups", + "orgUnitTitle": "Organizational unit", + "classroomGroupsTitle": "Classroom groups", "classroomTitle": "Classroom", - "clientGroupsTitle": "Client Groups", + "clientGroupsTitle": "Client groups", "clientTitle": "Client", "executeCommandOrGroupTitle": "Execute Command or Command Group", "selectCommandLabel": "Select Command", @@ -227,46 +232,47 @@ "organizationalUnitLabel": "Parent", "ogLiveLabel": "OgLive", "serialNumberLabel": "Serial Number", - "netifaceLabel": "Network Interface", - "netDriverLabel": "Network Driver", + "netifaceLabel": "Network interface", + "netDriverLabel": "Network driver", "macLabel": "MAC", "macError": "Invalid MAC format. Valid example: 00:11:22:33:44:55", "ipLabel": "IP Address", "ipError": "Invalid IP address format. Valid example: 127.0.0.1", "templateLabel": "PXE Template", - "digitalBoard": "Digital Board", + "digitalBoard": "Digital board", "projectorAlt": "Projector", "clientAlt": "Client", - "saveDispositionButton": "Save Disposition", + "saveDispositionButton": "Save disposition", "actionsModalTitle": "Actions", - "adminOuTitle": "Manage Organizational Units", - "resetFiltersButton": "Reset Filters", + "adminOuTitle": "Manage organizational units", + "resetFiltersButton": "Reset filters", "addOUButton": "Add OU", "searchLabelOu": "Search OU name", - "typeLabel": "Type", + "macHint": "Example: 00:11:22:33:44:55", + "ipHint": "Example: 123.1.1.1", "allOption": "All", "centerOption": "Center", "classroomsGroupOption": "Classroom Groups", "classroomOption": "Classroom", "clientsGroupOption": "PC Groups", - "roomMapOption": "Classroom Layout", - "clientDetailsTitle": "Client Details", + "roomMapOption": "Classroom map", + "clientDetailsTitle": "Client details", "commandsButton": "Commands", - "networkPropertiesTab": "Network Properties", + "networkPropertiesTab": "Network properties", "disksPartitionsTitle": "Disks/Partitions", "diskTitle": "Disk", "diskUsedLabel": "Used", "diskTotalLabel": "Total", - "diskImageAssistantTitle": "Disk Image Assistant", + "diskImageAssistantTitle": "Disk image assistant", "partitionColumn": "Partition", "isoImageColumn": "ISO Image", "ogliveColumn": "OgLive", - "selectImageOption": "Select Image", + "selectImageOption": "Select image", "selectOgLiveOption": "Select OgLive", "saveAssociationsButton": "Save Associations", - "partitionAssistantTitle": "Partitioning Assistant", + "partitionAssistantTitle": "Partition assistant", "diskSizeLabel": "Size", - "partitionTypeColumn": "Partition Type", + "partitionTypeColumn": "Partition type", "partitionSizeColumn": "Size (MB)", "usageColumn": "Usage (%)", "formatColumn": "Format", @@ -274,63 +280,65 @@ "linuxOption": "LINUX", "cacheOption": "CACHE", "deleteButton": "Delete", - "searchTitle": "Advanced Search", + "searchTitle": "Advanced search", "selectFilterLabel": "Select filter", "gridViewButton": "Grid", "listViewButton": "List", "selectOptionLabel": "Select an option", - "namePlaceholder": "Organizational Unit", + "namePlaceholder": "Organizational unit", "selectAllButton": "Select/Deselect All", "saveFiltersButton": "Save Filters", "sendFiltersButton": "Send Action", "addPxeButton": "Add PXE file", - "internalUnits": "Internal Units", + "internalUnits": "Internal units", "noResultsMessage": "No results to display.", - "imagesTitle": "Manage Images", - "addImageButton": "Add Image", + "imagesTitle": "Manage images", + "addImageButton": "Add image", "searchNameDescription": "Search images by name to quickly find a specific image.", "searchDefaultDescription": "Filter images to show only default or non-default images.", - "searchDefaultLabel": "Default Image", + "searchDefaultLabel": "Default image", "searchInstalledDescription": "Filter images to show only those installed on the OgBoot server.", - "searchInstalledLabel": "Installed on OgBoot Server", + "searchInstalledLabel": "Installed on OgBoot server", "tableDescription": "Here is the list of available images to manage.", "actionsColumnHeader": "Actions", "viewIcon": "visibility", "editIcon": "edit", "installOption": "Install", "uninstallOption": "Uninstall", - "setDefaultOption": "Set as Default Image", + "setDefaultOption": "Set as default image", "paginationDescription": "Navigate between image pages using the paginator.", "detailsTitle": "Details of {{ name }}", - "editTemplateTitle": "Edit Template", - "addTemplateTitle": "Add Template", + "editTemplateTitle": "Edit template", + "addTemplateTitle": "Add template", "templateNameLabel": "Template Name", "templateNamePlaceholder": "Enter the template name", "templateContentPlaceholder": "Enter the template content", - "loadTemplateModelButton": "Load Template Model", - "diskModel": "Disk Boot", + "loadTemplateModelButton": "Load model template", + "diskModel": "Disk boot", "createButton": "Create", - "manageClientsTitle": "Manage Clients", + "manageClientsTitle": "Manage clients", "syncIcon": "sync", "addClientsTitle": "Add clients to {{ subnetName }}", - "selectedClientsTitle": "Selected Clients:", + "selectedClientsTitle": "Selected clients:", "editClientTitle": "Edit Client", "addClientTitle": "Add Client", - "advancedNetbootTitle": "Advanced Netboot", + "advancedNetbootTitle": "Advanced netboot", "selectUnitLabel": "Select Organizational Unit", "loadingUnitsOption": "Loading units...", "selectClassLabel": "Select classroom", "applyToAllLabel": "Select template to apply to all clients", "saveButtonLabel": "Save", - "tableDescription": "Manage Netboot templates for each client in this table.", "idColumnHeader": "Id", "nameColumnHeader": "Name", "templateColumnHeader": "Template", - "pxeImageTitle": "OgBoot Server Information", + "pxeImageTitle": "Information on ogBoot server", "serverInfoDescription": "Access information and synchronization options on the OgBoot server.", - "syncDatabaseButton": "Sync Database", + "syncDatabaseButton": "Sync database", "viewInfoButton": "View Information", "adminImagesDescription": "From here you can manage the images configured on the OgBoot server.", - "searchNameDescription": "Search images by name to quickly find a specific image.", - "actionsDescription": "Manage each image with options to view, edit, delete, and more." + "actionsDescription": "Manage each image with options to view, edit, delete, and more.", + "addClientButton": "Add client", + "searchClientNameLabel": "Search client name", + "searchIPLabel": "Search IP", + "searchMACLabel": "Search MAC" } diff --git a/ogWebconsole/src/locale/es.json b/ogWebconsole/src/locale/es.json index 53011e7..378a8d3 100644 --- a/ogWebconsole/src/locale/es.json +++ b/ogWebconsole/src/locale/es.json @@ -19,6 +19,8 @@ "labelOrganizationalUnit": "Unidad organizativa", "buttonCancel": "Cancelar", "buttonAdd": "Añadir", + "addButton": "Añadir", + "addClientDialogTitle": "Añadir Cliente", "dialogTitleEditUser": "Editar Usuario", "labelCurrentPassword": "Contraseña actual", "labelNewPassword": "Nueva contraseña", @@ -36,7 +38,9 @@ "checkboxOrgOperator": "Operador de Unidad Organizativa", "checkboxOrgMinimal": "Unidad Organizativa Mínima", "checkboxUserRole": "Usuario", + "groupsTitleStepText": "En esta pantalla, puedes gestionar las principales unidades organizativas (Facultades, Aulas, Grupos de Aulas y clientes).", "titleStepText": "En esta pantalla, puedes gestionar los calendarios de los equipos remotos conectados con el servicio UDS", + "groupsAddStepText": "Haz clic para añadir una nueva unidad organizativa o un cliente.", "adminCalendarsTitle": "Administrar calendarios", "addButtonStepText": "Haz clic aquí para añadir un nuevo calendario.", "addCalendar": "Añadir calendario", @@ -144,6 +148,7 @@ "commandScriptPlaceholder": "Script del comando", "readOnlyLabel": "Solo lectura", "enabledLabel": "Habilitado", + "cancelButton": "cancelar", "generalTabLabel": "General", "tabsStepText": "Utiliza las pestañás para acceder a las diferentes opciones de visualización y busqueda de unidades organizativas y clientes.", "adminGroupsTitle": "Administrar grupos", @@ -243,7 +248,8 @@ "resetFiltersButton": "Reiniciar filtros", "addOUButton": "Añadir OU", "searchLabelOu": "Buscar nombre de OU", - "typeLabel": "Tipo", + "macHint": "Ejemplo: 00:11:22:33:44:55", + "ipHint": "Ejemplo: 123.1.1.1", "allOption": "Todos", "centerOption": "Centro", "classroomsGroupOption": "Grupos de aulas", @@ -322,7 +328,6 @@ "selectClassLabel": "Selecciona aula", "applyToAllLabel": "Seleccione plantilla para aplicar a todos los clientes", "saveButtonLabel": "Guardar", - "tableDescription": "Administra las plantillas de Netboot para cada cliente en esta tabla.", "idColumnHeader": "Id", "nameColumnHeader": "Nombre", "templateColumnHeader": "Plantilla", @@ -331,6 +336,9 @@ "syncDatabaseButton": "Sincronizar base de datos", "viewInfoButton": "Ver Información", "adminImagesDescription": "Desde aquí puedes gestionar las imágenes configuradas en el servidor OgBoot.", - "searchNameDescription": "Busca imágenes por nombre para encontrar rápidamente una imagen específica.", - "actionsDescription": "Administra cada imagen con opciones para ver, editar, eliminar y más." + "actionsDescription": "Administra cada imagen con opciones para ver, editar, eliminar y más.", + "addClientButton": "Añadir cliente", + "searchClientNameLabel": "Buscar nombre de cliente", + "searchIPLabel": "Buscar IP", + "searchMACLabel": "Buscar MAC" }
{{ column.header }} Acciones