Browse Source

Merge pull request #30 from iynewz/new-branch-fix-typo

fix typo again
ryjiang 3 years ago
parent
commit
89716dfca8

+ 1 - 1
client/README.md

@@ -57,7 +57,7 @@ We use class getter to define our client fields like \_field, because of our ser
 
 ### Helper Folder
 
-Like utils / consts / utils / hooks , we dont want put all functions or datas in one file like index.ts because of maintainability.
+Like utils / consts / utils / hooks , we dont want put all functions or data in one file like index.ts because of maintainability.
 
 So when we need to create new file , treat the file like Class then name it.
 

+ 1 - 1
client/src/i18n/cn/search.ts

@@ -14,7 +14,7 @@ const searchTrans = {
   vectorValueWarning:
     'Vector value should be an array of length {{dimension}}(dimension)',
   timeTravel: 'Time Travel',
-  timeTravelPrefix: 'Datas before',
+  timeTravelPrefix: 'Data before',
 };
 
 export default searchTrans;

+ 1 - 1
client/src/i18n/cn/systemView.ts

@@ -10,7 +10,7 @@ const systemViewTrans = {
   thName: 'Node Name',
   thIP: 'IP',
   thCPUCount: 'CPU Core Count',
-  thCPUUsage: 'CUP Core Usage',
+  thCPUUsage: 'CPU Core Usage',
   thDiskUsage: 'Disk Usage',
   thMemUsage: 'Memory Usage',
   thVersion: 'version',

+ 1 - 1
client/src/i18n/en/search.ts

@@ -13,7 +13,7 @@ const searchTrans = {
   filter: 'Advanced Filter',
   vectorValueWarning: 'Vector value should be an array of length {{dimension}}',
   timeTravel: 'Time Travel',
-  timeTravelPrefix: 'Datas before',
+  timeTravelPrefix: 'Data before',
 };
 
 export default searchTrans;