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
add ja day format (
#55
)
master
takanishi
6 years ago
committed by
Henning Hall
parent
eba2c40b56
commit
df509cc810
1 changed files
with
1 additions
and
1 deletions
Unified 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
@ -100,7 +100,7 @@ public class DayWheel extends Wheel {
@Override
@Override
public
String
getFormatTemplate
(
)
{
public
String
getFormatTemplate
(
)
{
return
"yy EEE d MMM"
;
return
(
pickerView
.
locale
.
getLanguage
(
)
=
=
"ja"
)
?
"yy MMMd日 EEE"
:
"yy EEE d MMM"
;
}
}
}
}
Write
Preview
Loading…
Cancel
Save