Skip to content

Commit 094912e

Browse files
committed
fix japanese
1 parent 630b889 commit 094912e

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "felnullgdlauncher-v2",
3-
"version": "1.1.29-felnull.3",
3+
"version": "1.1.29-felnull.4",
44
"description": "FelNullGDlauncherはシンプルでありながら、ユーザーエクスペリエンスに重点を置いた強力なMinecraftカスタムランチャーです。",
55
"keywords": [
66
"minecraft",

src/common/modals/OptedOutModsList.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ const OptedOutModsList = ({
175175
300
176176
);
177177
}}
178-
title="Opted out mods list"
178+
title="マニュアルダウンロード"
179179
>
180180
<Container>
181181
<div
@@ -184,10 +184,10 @@ const OptedOutModsList = ({
184184
margin-bottom: 2rem;
185185
`}
186186
>
187-
Hey oh! It looks like some developers opted out from showing their
188-
mods on third-party launchers. We can still attempt to download them
189-
automatically. Please click continue and wait for all downloads to
190-
finish. Please don&apos;t click anything inside the browser.
187+
一部の開発者は、サードパーティのランチャーでModをダウンロードできないようにしているようです。
188+
引き続き自動APIでダウンロードを試みてみます。「Confirm」をクリックしてください。
189+
*すべてのダウンロードが完了するまでお待ちください。
190+
*ブラウザが開きますが何もクリックしないでください。
191191
</div>
192192
<ModsContainer>
193193
{optedOutMods &&

src/common/utils/index.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -113,25 +113,25 @@ export const convertMinutesToHumanTime = minutes => {
113113

114114
switch (true) {
115115
case months >= 2:
116-
return `${months} months`;
116+
return `${months} ヶ月`;
117117
case months === 1:
118-
return `1 month`;
118+
return `1 ヶ月`;
119119
case weeks >= 2:
120-
return `${weeks} weeks`;
120+
return `${weeks} 週間`;
121121
case weeks === 1:
122-
return `1 week`;
122+
return `1 週間`;
123123
case days >= 1:
124-
return `${days} d, ${hours} h, ${min} m`;
124+
return `${days} , ${hours} 時間, ${min} `;
125125
case hours >= 2:
126-
return `${hours} h, ${min} m`;
126+
return `${hours} 時間, ${min} `;
127127
case hours === 1:
128-
return `1 hour`;
128+
return `1 時間`;
129129
case minutes >= 2:
130-
return `${min} minutes`;
130+
return `${min} `;
131131
case minutes === 1:
132-
return `1 minute`;
132+
return `1 `;
133133
case minutes === 0:
134-
return '0 minutes';
134+
return '0 ';
135135
default:
136136
return '';
137137
}

0 commit comments

Comments
 (0)