This website works better with JavaScript.
Home
Explore
Help
Sign In
ohtaekwon
/
new-react-native-date-picker
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Handle Chinese date format (
#71
)
master
Sam Cheng
6 years ago
committed by
Henning Hall
parent
300cbdee0e
commit
3e3c1af895
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
android/src/main/java/com/henninghall/date_picker/wheels/DayWheel.java
+ 1
- 1
android/src/main/java/com/henninghall/date_picker/wheels/DayWheel.java
View File
@ -113,7 +113,7 @@ public class DayWheel extends Wheel {
String
locale
=
pickerView
.
locale
.
getLanguage
(
)
;
if
(
locale
=
=
"ko"
)
return
"yy MMM d일 (EEE)"
;
if
(
locale
=
=
"ja"
)
if
(
locale
=
=
"ja"
|
|
locale
.
contains
(
"zh"
)
)
return
"yy MMMd日 EEE"
;
return
"yy EEE d MMM"
;
Write
Preview
Loading…
Cancel
Save