Skip to content

Commit

Permalink
Tab names translated in Inventory page
Browse files Browse the repository at this point in the history
- Tab names were taken explicitly in English, Hence added these names
  in the translation file

Signed-off-by: Nikhil Ashoka <a.nikhil@ibm.com>
  • Loading branch information
Nikhil-Ashoka committed Nov 8, 2022
1 parent d8b55d4 commit b86a732
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,7 @@
"false": "False",
"fans": "Fans",
"identifyLedInfo": "For parts with no LEDs, the Identify LED toggle switch will only turn on the Enclosure LED",
"ioExpansionChassis": "I/O expansion chassis ",
"pcieSlots": "PCIe slots",
"pcieTopologyLink": "PCIe hardware topology.",
"pcieTopologyLinkDescription": "To know more about PCIe slots, visit ",
Expand All @@ -766,6 +767,7 @@
"processorModule": "Processor Module",
"quicklinkTitle": "Quick links to hardware components",
"system": "System",
"systemChassis": "System chassis",
"true": "True",
"enclosures": {
"title": "I/O enclosures",
Expand Down
4 changes: 2 additions & 2 deletions src/views/HardwareStatus/Inventory/Inventory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
:key="index"
:title="
index === 0
? 'System chassis'
: 'I/O expansion chassis ' + `${index}`
? $t('pageInventory.systemChassis')
: $t('pageInventory.ioExpansionChassis') + `${index}`
"
@click="currentTabUpdate(index)"
>
Expand Down

0 comments on commit b86a732

Please sign in to comment.