File tree 3 files changed +16
-16
lines changed
3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " felnullgdlauncher-v2" ,
3
- "version" : " 1.1.29-felnull.3 " ,
3
+ "version" : " 1.1.29-felnull.4 " ,
4
4
"description" : " FelNullGDlauncherはシンプルでありながら、ユーザーエクスペリエンスに重点を置いた強力なMinecraftカスタムランチャーです。" ,
5
5
"keywords" : [
6
6
" minecraft" ,
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ const OptedOutModsList = ({
175
175
300
176
176
) ;
177
177
} }
178
- title = "Opted out mods list "
178
+ title = "マニュアルダウンロード "
179
179
>
180
180
< Container >
181
181
< div
@@ -184,10 +184,10 @@ const OptedOutModsList = ({
184
184
margin-bottom: 2rem;
185
185
` }
186
186
>
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't click anything inside the browser.
187
+ 一部の開発者は、サードパーティのランチャーでModをダウンロードできないようにしているようです。
188
+ 引き続き自動APIでダウンロードを試みてみます。「Confirm」をクリックしてください。
189
+ *すべてのダウンロードが完了するまでお待ちください。
190
+ *ブラウザが開きますが何もクリックしないでください。
191
191
</ div >
192
192
< ModsContainer >
193
193
{ optedOutMods &&
Original file line number Diff line number Diff line change @@ -113,25 +113,25 @@ export const convertMinutesToHumanTime = minutes => {
113
113
114
114
switch ( true ) {
115
115
case months >= 2 :
116
- return `${ months } months ` ;
116
+ return `${ months } ヶ月 ` ;
117
117
case months === 1 :
118
- return `1 month ` ;
118
+ return `1 ヶ月 ` ;
119
119
case weeks >= 2 :
120
- return `${ weeks } weeks ` ;
120
+ return `${ weeks } 週間 ` ;
121
121
case weeks === 1 :
122
- return `1 week ` ;
122
+ return `1 週間 ` ;
123
123
case days >= 1 :
124
- return `${ days } d , ${ hours } h , ${ min } m ` ;
124
+ return `${ days } , ${ hours } 時間 , ${ min } 分 ` ;
125
125
case hours >= 2 :
126
- return `${ hours } h , ${ min } m ` ;
126
+ return `${ hours } 時間 , ${ min } 分 ` ;
127
127
case hours === 1 :
128
- return `1 hour ` ;
128
+ return `1 時間 ` ;
129
129
case minutes >= 2 :
130
- return `${ min } minutes ` ;
130
+ return `${ min } 分 ` ;
131
131
case minutes === 1 :
132
- return `1 minute ` ;
132
+ return `1 分 ` ;
133
133
case minutes === 0 :
134
- return '0 minutes ' ;
134
+ return '0 分 ' ;
135
135
default :
136
136
return '' ;
137
137
}
You can’t perform that action at this time.
0 commit comments