Skip to content

Commit

Permalink
feat: use 'bytes stored' instead of 'common knowledge stored'
Browse files Browse the repository at this point in the history
Ref: #503
  • Loading branch information
Keith-CY committed Oct 13, 2024
1 parent 92efce1 commit b11c48f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/locales/en/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"slide_footer": {
"live_metrics": "Live Metrics",
"live_cells": "Live Cells",
"common_knowledge_stored": "Common Knowledge Stored",
"bytes_stored": "Bytes Stored",
"ckb_in_nervos_dao": "CKB in Nervos DAO",
"loading": "loading"
},
Expand Down
2 changes: 1 addition & 1 deletion public/locales/es/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"slide_footer": {
"live_metrics": "Métricas en vivo",
"live_cells": "Cells Vivas",
"common_knowledge_stored": "Conocimiento Común Almacenado",
"bytes_stored": "Número de bytes almacenados",
"ckb_in_nervos_dao": "CKB en Nervos DAO",
"loading": "cargando"
},
Expand Down
2 changes: 1 addition & 1 deletion public/locales/fr/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"slide_footer": {
"live_metrics": "Métriques en direct",
"live_cells": "Cells vivantes",
"common_knowledge_stored": "Common Knowledge Stocké",
"bytes_stored": "Nombre d’octets stockés",
"ckb_in_nervos_dao": "CKB dans le Nervos DAO",
"loading": "en cours de chargement"
},
Expand Down
2 changes: 1 addition & 1 deletion public/locales/pt/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"slide_footer": {
"live_metrics": "Métricas ao vivo",
"live_cells": "Cells vivas",
"common_knowledge_stored": "Conhecimento Comum Armazenado",
"bytes_stored": "Número de bytes armazenados",
"ckb_in_nervos_dao": "CKB em Nervos DAO",
"loading": "carregando"
},
Expand Down
2 changes: 1 addition & 1 deletion public/locales/zh/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"slide_footer": {
"live_metrics": "实时指标",
"live_cells": "未花费 Cell",
"common_knowledge_stored": "存储的共同知识",
"bytes_stored": "存储字节数",
"ckb_in_nervos_dao": "Nervos DAO 中的 CKB",
"loading": "正在加载"
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/SlideFooter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const LiveMetrics: FC = () => {
const dataList = useMemo(
() => [
{ name: t('live_cells'), value: liveCells },
{ name: t('common_knowledge_stored'), value: stored },
{ name: t('bytes_stored'), value: stored },
{ name: t('ckb_in_nervos_dao'), value: daoDeposit },
],
[daoDeposit, liveCells, stored, t],
Expand Down

0 comments on commit b11c48f

Please sign in to comment.