diff --git a/public/locales/en-US/translations.json b/public/locales/en-US/translations.json index 2e919c2d7..398014e2e 100644 --- a/public/locales/en-US/translations.json +++ b/public/locales/en-US/translations.json @@ -509,7 +509,7 @@ "eta": "eta", "amendment_summary": "Amendment Summary", "not": "not", - "tx": "tx", + "enable_tx": "Enable tx", "all": "all", "yeas_count": "# of Yea Votes: {{yeas_count}}", "nays_count": "# of Nay Votes: {{nays_count}}", diff --git a/public/locales/es-ES/translations.json b/public/locales/es-ES/translations.json index 6bb1d8ba2..6ddd40b75 100644 --- a/public/locales/es-ES/translations.json +++ b/public/locales/es-ES/translations.json @@ -506,7 +506,7 @@ "amendment_summary": null, "not_enabled": null, "enabled_on": null, - "tx": null, + "enable_tx": null, "yeas_all": null, "nays_all": null, "yeas_unl": null, diff --git a/public/locales/fr-FR/translations.json b/public/locales/fr-FR/translations.json index 7d2cfcd41..94acb36f9 100644 --- a/public/locales/fr-FR/translations.json +++ b/public/locales/fr-FR/translations.json @@ -508,7 +508,7 @@ "eta": null, "amendment_summary": null, "not": null, - "tx": null, + "enable_tx": null, "all": null, "yeas_count": null, "nays_count": null, diff --git a/public/locales/ja-JP/translations.json b/public/locales/ja-JP/translations.json index 4ff42182e..723b19833 100644 --- a/public/locales/ja-JP/translations.json +++ b/public/locales/ja-JP/translations.json @@ -507,7 +507,7 @@ "eta": null, "amendment_summary": null, "not": null, - "tx": null, + "enable_tx": null, "all": null, "yeas_count": null, "nays_count": null, diff --git a/public/locales/ko-KR/translations.json b/public/locales/ko-KR/translations.json index 671caab68..e18ca3136 100644 --- a/public/locales/ko-KR/translations.json +++ b/public/locales/ko-KR/translations.json @@ -505,7 +505,7 @@ "eta": null, "amendment_summary": null, "not": null, - "tx": null, + "enable_tx": null, "all": null, "yeas_count": null, "nays_count": null, diff --git a/src/containers/Amendment/Simple.tsx b/src/containers/Amendment/Simple.tsx index 20acebf9d..e6371be50 100644 --- a/src/containers/Amendment/Simple.tsx +++ b/src/containers/Amendment/Simple.tsx @@ -81,7 +81,7 @@ export const Simple = ({ data, validators, width }: SimpleProps) => { ) : data.tx_hash ? ( - + {' '} {renderDate(data.date)} @@ -109,7 +109,7 @@ export const Simple = ({ data, validators, width }: SimpleProps) => { {data.threshold} ) : ( data.tx_hash && ( - + {t('Version')} {t('amendment_id')} {t('amendment_name')} - {t('voters')} + {`${t('unl')} ${t('voters')}`} {t('threshold')} {t('consensus')} {t('enabled')} diff --git a/src/containers/Amendments/amendmentsTable.scss b/src/containers/Amendments/amendmentsTable.scss index e7f1cd91f..11426c128 100644 --- a/src/containers/Amendments/amendmentsTable.scss +++ b/src/containers/Amendments/amendmentsTable.scss @@ -103,6 +103,7 @@ .badge { margin: 0; color: $black-100; + text-transform: uppercase; &.yes { background-color: $green-60; diff --git a/src/containers/Header/NavigationMenu/NavigationMenu.scss b/src/containers/Header/NavigationMenu/NavigationMenu.scss index b707ee2d9..2272b0668 100644 --- a/src/containers/Header/NavigationMenu/NavigationMenu.scss +++ b/src/containers/Header/NavigationMenu/NavigationMenu.scss @@ -202,7 +202,6 @@ $menu-toggle-line-length: $menu-toggle-size - $menu-toggle-line-spacing; .nav-item { position: relative; - text-align: left; } } } diff --git a/src/containers/Validators/votingTab.scss b/src/containers/Validators/votingTab.scss index fce740a39..031bf1c3d 100644 --- a/src/containers/Validators/votingTab.scss +++ b/src/containers/Validators/votingTab.scss @@ -47,6 +47,7 @@ .label { margin: 0; font-weight: 100; + text-transform: capitalize; } .text-truncate {