mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 13:27:36 +03:00
fix: Locale warning
This commit is contained in:
parent
372b2aebe0
commit
7db0c4f7d3
1 changed files with 4 additions and 3 deletions
|
@ -123,19 +123,20 @@ class DateInstant : Parcelable {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDateTimeString(resources: Resources): String {
|
fun getDateTimeString(resources: Resources): String {
|
||||||
|
val locale = ConfigurationCompat.getLocales(resources.configuration)[0] ?: Locale.ROOT
|
||||||
return when (mType) {
|
return when (mType) {
|
||||||
Type.DATE -> DateFormat.getDateInstance(
|
Type.DATE -> DateFormat.getDateInstance(
|
||||||
DateFormat.MEDIUM,
|
DateFormat.MEDIUM,
|
||||||
ConfigurationCompat.getLocales(resources.configuration)[0])
|
locale)
|
||||||
.format(jDate)
|
.format(jDate)
|
||||||
Type.TIME -> DateFormat.getTimeInstance(
|
Type.TIME -> DateFormat.getTimeInstance(
|
||||||
DateFormat.SHORT,
|
DateFormat.SHORT,
|
||||||
ConfigurationCompat.getLocales(resources.configuration)[0])
|
locale)
|
||||||
.format(jDate)
|
.format(jDate)
|
||||||
else -> DateFormat.getDateTimeInstance(
|
else -> DateFormat.getDateTimeInstance(
|
||||||
DateFormat.MEDIUM,
|
DateFormat.MEDIUM,
|
||||||
DateFormat.SHORT,
|
DateFormat.SHORT,
|
||||||
ConfigurationCompat.getLocales(resources.configuration)[0])
|
locale)
|
||||||
.format(jDate)
|
.format(jDate)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue