Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit e78ee18

Browse files
open35iderealmarcelwgn
authored
Update index.html & Chinese Traditional Translation (#99)
* zh-TW Translation * Update zh-TW * Update zh-TW * Update zh-TW/docs/articles/translating-files.md Co-authored-by: SiderealArt <[email protected]> * Update zh-TW/docs/articles/translating-files.md Co-authored-by: SiderealArt <[email protected]> * Update translating-files.md * Add files via upload * Add files via upload * Delete zh-TW directory * Delete favicon.ico * Add files via upload * Update index.html * Update index.html * Update zh-Hant/docs/articles/replace-file-explorer.md Co-authored-by: SiderealArt <[email protected]> * Apply suggestions from code review Co-authored-by: SiderealArt <[email protected]> Co-authored-by: SiderealArt <[email protected]> Co-authored-by: Marcel Wagner <[email protected]>
1 parent 73f8f35 commit e78ee18

25 files changed

+792
-104
lines changed

css/custom.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,13 @@ button {
202202
--close-button-padding: 5px;
203203
position: absolute;
204204
z-index: 10;
205-
max-width: 400px;
206205
background: hsl(0, 0%, 100%);
207206
box-shadow: 0px 2px 9px hsl(0deg 0% 0% / 14%);
208-
padding: 5px;
209207
border-radius: 6px;
210208
border: 1px solid hsl(0, 0%, 80%);
209+
text-align: center;
210+
padding: 10px;
211+
max-width: 50%;
211212
}
212213

213214
.translation-toast.toast-hidden{

docs/articles/languages.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This site in other languages
2+
- [繁體中文](https://files-community.github.io/zh-Hant/docs/#/)

docs/sidebar.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@
1313
- [Translating Files](/articles/translating-files.md)
1414
- [Building Extensions for Files](/articles/building-extensions.md)
1515
- [Code Style](/articles/code-style.md)
16+
17+
- [Languages](/articles/languages.md)

fa-IR/index.html

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<link rel="icon" href="../img/favicon.png" sizes="32x32" type="image/png" />
1414

1515
<!-- Bootstrap -->
16-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous" />
16+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
17+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
1718
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
1819
<!-- AOS -->
1920
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
@@ -59,17 +60,21 @@
5960
</a>
6061
</div>
6162
<div class="col-2 align-self-center">
62-
<a href="../" class="text-white">
63-
English
64-
</a>
65-
&nbsp;
66-
<a href="../ja-jp/" class="text-white">
67-
日本語
68-
</a>
69-
&nbsp;
70-
<a href="../ko-kr/" class="text-white">
71-
한국어
72-
</a>
63+
<div class="col-2 align-self-center">
64+
<div class="dropdown">
65+
<a class="btn btn-light dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
66+
Languages
67+
</a>
68+
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
69+
<li><a class="dropdown-item" href="../">English</a></li>
70+
<li><a class="dropdown-item" href="../ja-jp/">日本語</a></li>
71+
<li><a class="dropdown-item disabled" href="../fa-IR/">فارسی</a></li>
72+
<li><a class="dropdown-item" href="../ko-kr/">한국어</a></li>
73+
<li><a class="dropdown-item" href="../pt-PT/">Português</a></li>
74+
<li><a class="dropdown-item" href="../zh-Hant/">繁體中文</a></li>
75+
</ul>
76+
</div>
77+
</div>
7378
</div>
7479
</div>
7580
<h1 class="display-2 text-white fw-bold my-2">Files</h1>
@@ -80,10 +85,6 @@ <h4 class="text-white fw-light my-4">مرورگر فایل مدرن، بالات
8085
<a href="https://github.com/files-community/Files" class="btn my-2 mx-2 fw-bold cta cta-white-outline" target="_blank">
8186
گیت هاب
8287
</a>
83-
&nbsp;
84-
<a href="../pt-PT/" class="text-white">
85-
Português
86-
</a>
8788
</header>
8889
</div>
8990
</div>

index.html

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<link rel="icon" href="img/favicon.png" sizes="32x32" type="image/png" />
1414

1515
<!-- Bootstrap -->
16-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous" />
16+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
17+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
1718
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
1819
<!-- AOS -->
1920
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
@@ -59,21 +60,19 @@
5960
</a>
6061
</div>
6162
<div class="col-2 align-self-center">
62-
<a href="./ja-jp/" class="text-white">
63-
日本語
64-
</a>
65-
&nbsp;
66-
<a href="./fa-IR/" class="text-white">
67-
فارسی
68-
</a>
69-
&nbsp;
70-
<a href="./ko-kr/" class="text-white">
71-
한국어
72-
</a>
73-
&nbsp;
74-
<a href="./pt-PT/" class="text-white">
75-
Português
76-
</a>
63+
<div class="dropdown">
64+
<a class="btn btn-light dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
65+
Languages
66+
</a>
67+
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
68+
<li><a class="dropdown-item disabled" href="../">English</a></li>
69+
<li><a class="dropdown-item" href="/ja-jp/">日本語</a></li>
70+
<li><a class="dropdown-item" href="/fa-IR/">فارسی</a></li>
71+
<li><a class="dropdown-item" href="/ko-kr/">한국어</a></li>
72+
<li><a class="dropdown-item" href="/pt-PT/">Português</a></li>
73+
<li><a class="dropdown-item" href="/zh-Hant/">繁體中文</a></li>
74+
</ul>
75+
</div>
7776
</div>
7877
</div>
7978
<h1 class="display-2 text-white fw-bold my-2">Files</h1>
@@ -170,7 +169,7 @@ <h2 class="fw-bold">Take a look inside</h2>
170169
</div>
171170
</div>
172171

173-
<div id="translation-toast-jp" class="translation-toast bottom toast-hidden" aria-level="1" aria-live="assertive">
172+
<div id="translation-toast-ja-jp" class="translation-toast bottom toast-hidden" aria-level="1" aria-live="assertive">
174173
<p>This page is also available in Japanese.</p>
175174
<p>To view this page in Japanese <a aria-label="Japenese version of this page" href="./ja-jp/">click here.</a></p>
176175
<button id="close-button" aria-label="Close translation popup button"
@@ -183,6 +182,19 @@ <h2 class="fw-bold">Take a look inside</h2>
183182
</button>
184183
</div>
185184

185+
<div id="translation-toast-zh-TW" class="translation-toast bottom toast-hidden" aria-level="1" aria-live="assertive">
186+
<p>This page is also available in Chinese (Traditional).</p>
187+
<p>要使用繁體中文瀏覽此網站請 <a aria-label="Chinese Traditional version of this page" href="./zh-Hant/">點擊這裡</a></p>
188+
<button id="close-button" aria-label="Close translation popup button"
189+
aria-label="Close information popup" aria-live="assertive"
190+
onclick="toastCloseButtonClick()">
191+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewbox="0 0 30 30">
192+
<line x1="0" y1="0" x2="30" y2="30" stroke="black" stroke-width="2" />
193+
<line x1="30" y1="0" x2="0" y2="30" stroke="black" stroke-width="2" />
194+
</svg>
195+
</button>
196+
</div>
197+
186198
<script src="./js/index.js"></script>
187199
</body>
188200
</html>

ja-jp/index.html

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<link rel="icon" href="../img/favicon.png" sizes="32x32" type="image/png" />
1414

1515
<!-- Bootstrap -->
16-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous" />
16+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
17+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
1718
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
1819
<!-- AOS -->
1920
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
@@ -59,21 +60,21 @@
5960
</a>
6061
</div>
6162
<div class="col-2 align-self-center">
62-
<a href="../" class="text-white">
63-
English
64-
</a>
65-
&nbsp;
66-
<a href="../fa-IR/" class="text-white">
67-
فارسی
68-
</a>
69-
&nbsp;
70-
<a href="../ko-kr/" class="text-white">
71-
한국어
72-
</a>
73-
&nbsp;
74-
<a href="../pt-PT/" class="text-white">
75-
Português
76-
</a>
63+
<div class="col-2 align-self-center">
64+
<div class="dropdown">
65+
<a class="btn btn-light dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
66+
Languages
67+
</a>
68+
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
69+
<li><a class="dropdown-item" href="../">English</a></li>
70+
<li><a class="dropdown-item disabled" href="../ja-jp/">日本語</a></li>
71+
<li><a class="dropdown-item" href="../fa-IR/">فارسی</a></li>
72+
<li><a class="dropdown-item" href="../ko-kr/">한국어</a></li>
73+
<li><a class="dropdown-item" href="../pt-PT/">Português</a></li>
74+
<li><a class="dropdown-item" href="../zh-Hant/">繁體中文</a></li>
75+
</ul>
76+
</div>
77+
</div>
7778
</div>
7879
</div>
7980
<h1 class="display-2 text-white fw-bold my-2">Files</h1>

js/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if (getStringLocalStorage(toastDismissedKey) !== "True") {
66
if(navigator.language)
77
{
88
// Check if there is a toast for that language
9-
let element = document.getElementById("translation-toast-" + navigator.language.split("-")[0]);
9+
let element = document.getElementById("translation-toast-" + navigator.language);
1010
if(element && element.classList.contains("toast-hidden"))
1111
{
1212
// Show the toast for the appropriate language based on languages navigator
@@ -26,8 +26,8 @@ function putStringLocalStorage(key, data) {
2626
}
2727

2828
function toastCloseButtonClick() {
29-
if (!document.getElementById("translation-toast").classList.contains("toast-hidden")) {
30-
document.getElementById("translation-toast").classList.add("toast-hidden");
29+
if (!document.getElementById("translation-toast-" + navigator.language).classList.contains("toast-hidden")) {
30+
document.getElementById("translation-toast-" + navigator.language).classList.add("toast-hidden");
3131
}
3232
putStringLocalStorage(toastDismissedKey,"True");
3333
}

ko-kr/index.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<link rel="icon" href="../img/favicon.png" sizes="32x32" type="image/png" />
1414

1515
<!-- Bootstrap -->
16-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous" />
16+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
17+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
1718
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
1819
<!-- AOS -->
1920
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
@@ -59,23 +60,22 @@
5960
</a>
6061
</div>
6162
<div class="col-2 align-self-center">
62-
<a href="../" class="text-white">
63-
English
64-
</a>
65-
&nbsp;
66-
<a href="../ja-jp/" class="text-white">
67-
日本語
68-
</a>
69-
&nbsp;
70-
<a href="../fa-IR/" class="text-white">
71-
فارسی
72-
</a>
73-
&nbsp;
74-
<a href="../pt-PT/" class="text-white">
75-
Português
76-
</a>
63+
<div class="col-2 align-self-center">
64+
<div class="dropdown">
65+
<a class="btn btn-light dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
66+
Languages
67+
</a>
68+
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
69+
<li><a class="dropdown-item" href="../">English</a></li>
70+
<li><a class="dropdown-item" href="../ja-jp/">日本語</a></li>
71+
<li><a class="dropdown-item" href="../fa-IR/">فارسی</a></li>
72+
<li><a class="dropdown-item disabled" href="../ko-kr/">한국어</a></li>
73+
<li><a class="dropdown-item" href="../pt-PT/">Português</a></li>
74+
<li><a class="dropdown-item" href="../zh-Hant/">繁體中文</a></li>
75+
</ul>
76+
</div>
77+
</div>
7778
</div>
78-
</div>
7979
<h1 class="display-2 text-white fw-bold my-2">Files</h1>
8080
<h4 class="text-white fw-light my-4">플랫폼의 한계를 뛰어넘는 최신 파일 탐색기</h4>
8181
<a href="https://www.microsoft.com/store/apps/9NGHP3DX8HDX" class="btn my-2 mx-2 fw-bold cta cta-white"

pt-PT/index.html

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
<meta property="og:image" content="https://user-images.githubusercontent.com/39923744/102912796-da431f00-444b-11eb-9f8e-6deab47d0e45.png" />
1111
<meta name="description" content="플랫폼의 한계를 뛰어넘는 최신 파일 탐색기" />
1212
<!-- Favicon -->
13-
<link rel="icon" href="../img/favicon.png" sizes="32x32" type="image/png" />
13+
<link rel="icon" href="../img/favicon.ico" sizes="32x32" type="image/ico" />
1414

1515
<!-- Bootstrap -->
16-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous" />
16+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
17+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
1718
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
1819
<!-- AOS -->
1920
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
@@ -59,21 +60,21 @@
5960
</a>
6061
</div>
6162
<div class="col-2 align-self-center">
62-
<a href="../" class="text-white">
63-
English
64-
</a>
65-
&nbsp;
66-
<a href="../ja-jp/" class="text-white">
67-
日本語
68-
</a>
69-
&nbsp;
70-
<a href="../fa-IR/" class="text-white">
71-
فارسی
72-
</a>
73-
&nbsp;
74-
<a href="../ko-kr/" class="text-white">
75-
한국어
76-
</a>
63+
<div class="col-2 align-self-center">
64+
<div class="dropdown">
65+
<a class="btn btn-light dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
66+
Languages
67+
</a>
68+
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
69+
<li><a class="dropdown-item" href="../">English</a></li>
70+
<li><a class="dropdown-item" href="../ja-jp/">日本語</a></li>
71+
<li><a class="dropdown-item" href="../fa-IR/">فارسی</a></li>
72+
<li><a class="dropdown-item" href="../ko-kr/">한국어</a></li>
73+
<li><a class="dropdown-item disabled" href="../pt-PT/">Português</a></li>
74+
<li><a class="dropdown-item" href="../zh-Hant/">繁體中文</a></li>
75+
</ul>
76+
</div>
77+
</div>
7778
</div>
7879
</div>
7980
<h1 class="display-2 text-white fw-bold my-2">Files</h1>
@@ -95,22 +96,21 @@ <h4 class="text-white fw-light my-4">Um explorador de ficheiros moderno que ultr
9596
<!-- Features -->
9697
<div class="container my-5 py-2">
9798
<h2 class="text-center fw-bold my-5">Características Notáveis</h2>
98-
<div class="row">
99-
<div class="col-md-4 text-center">
100-
<img src="../img/icons/tabs.svg" class="mx-auto my-5" alt="Tabs Icon" height="110" height="110" />
101-
<h4>Múltiplos Separadores</h4>
102-
<p>Múltiplos separadores para aumentar a sua produtividade</p>
103-
</div>
104-
<div class="col-md-4 text-center">
105-
<img src="https://img.icons8.com/fluent/96/000000/paint-palette.png" alt="Fluent Design"
106-
class="mx-auto my-5" width="110" height="110" />
107-
<h4>Fluent Design</h4>
108-
<p>O melhor do Fluent para aprimorar a usabilidade</p>
109-
</div>
110-
<div class="col-md-4 text-center">
111-
<img src="../img/icons/quicklook.png" alt="QuickLook Icon" class="mx-auto my-5" width="110" height="110" />
112-
<h4>Suporte ao QuickLook</h4>
113-
<p>Suporte completo ao QuickLook para visualizar rapidamente os seus ficheiros</p>
99+
<div class="col-2 align-self-center">
100+
<div class="col-2 align-self-center">
101+
<div class="dropdown">
102+
<a class="btn btn-light dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
103+
Languages
104+
</a>
105+
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
106+
<li><a class="dropdown-item" href="../">English</a></li>
107+
<li><a class="dropdown-item" href="../ja-jp/">日本語</a></li>
108+
<li><a class="dropdown-item disabled" href="../fa-IR/">فارسی</a></li>
109+
<li><a class="dropdown-item" href="../ko-kr/">한국어</a></li>
110+
<li><a class="dropdown-item disabled" href="../pt-PT/">Português</a></li>
111+
<li><a class="dropdown-item" href="../zh-Hant/">繁體中文</a></li>
112+
</ul>
113+
</div>
114114
</div>
115115
</div>
116116
</div>

0 commit comments

Comments
 (0)