Skip to content

Commit ae2228a

Browse files
committed
strings
1 parent ec6c881 commit ae2228a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/i18n/locales/en.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
"chip": "Hero",
2222
"description": "A sleek, open-source file explorer built for Windows, designed to help you organize files and folders with ease.",
2323
"download": "Download",
24-
"view_on_github": "View on GitHub"
24+
"view_on_github": "View on GitHub",
25+
"files_is_open_source": "Files is open source!",
26+
"install_on_windows": "Install on Windows"
2527
},
2628
"design": {
2729
"chip": "Design",

src/layout/HeroSection/HeroSection.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<ArrowDownload />
2121
<div class="hero-button-inner">
2222
<h5>{$_("home.hero.download", defaultI18nValues)}</h5>
23-
<span>Install on Windows</span>
23+
<span>{$_("home.hero.install_on_windows", defaultI18nValues)}</span>
2424
</div>
2525
</Button>
2626
<Button
@@ -30,7 +30,7 @@
3030
<Code />
3131
<div class="hero-button-inner">
3232
<h5>{$_("home.hero.view_on_github", defaultI18nValues)}</h5>
33-
<span>Files is open source!</span>
33+
<span>{$_("home.hero.files_is_open_source", defaultI18nValues)}</span>
3434
</div>
3535
</Button>
3636
</div>

0 commit comments

Comments
 (0)