Skip to content

Commit

Permalink
CARBON-348 refactor Transparency System Name
Browse files Browse the repository at this point in the history
  • Loading branch information
tharindugayanga committed Nov 2, 2023
1 parent cfc7f68 commit d4fb82b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
SYSTEM_SYNC: true
SYNC_ENABLE: true
BACKEND_HOST: http://localhost:9000
SYSTEM_NAME: Carbon Transparency System
SYSTEM_NAME: National NDC Transparency System
volumes:
- filestore:/app/backend/services/public
- ./users.csv:/app/backend/services/users.csv
Expand Down
3 changes: 2 additions & 1 deletion web/public/Assets/i18n/homepage/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"Cookie":"Cookie Policy",
"codeconduct":"Code of Conduct",
"terms":"Terms of Use",
"privacy":"Privacy Policy"
"privacy":"Privacy Policy",
"nationalNdc": "NATIONAL NDC"

}
1 change: 1 addition & 0 deletions web/public/Assets/i18n/login/en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"carbon": "CARBON",
"nationalNdc": "NATIONAL NDC",
"credit": "TRANSPARENCY",
"management": "SYSTEM",
"welcome": "Welcome",
Expand Down
2 changes: 1 addition & 1 deletion web/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!--map box for react-->
<link href="https://api.mapbox.com/mapbox-gl-js/v1.10.1/mapbox-gl.css" rel="stylesheet" />

<title>Carbon Transparency System</title>
<title>National NDC Transparency System</title>
<!-- Hotjar Tracking Code for -->
<script>
(function (h, o, t, j, a, r) {
Expand Down
2 changes: 1 addition & 1 deletion web/src/Pages/Homepage/homepage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const Homepage = () => {
<Row>
<div className="text-ctn">
<span>
{t('homepage:carbon')} {t('homepage:transparency')} <br />
{t('homepage:nationalNdc')} {t('homepage:transparency')} <br />
{t('homepage:system')}
</span>
<div className="subhome">{t('homepage:lorem')}</div>
Expand Down
2 changes: 1 addition & 1 deletion web/src/Pages/Login/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const Login: FC<LoginPageProps> = (props: LoginPageProps) => {
<div className="login-img-container container-image">
<div className="text-ctn">
<span>
{t('login:carbon')} <br /> {t('login:credit')} <br />
{t('login:nationalNdc')} <br /> {t('login:credit')} <br />
{t('login:management')}
</span>
</div>
Expand Down

0 comments on commit d4fb82b

Please sign in to comment.