mirror of
https://github.com/FossifyOrg/File-Manager.git
synced 2026-09-21 05:05:01 -04:00
change last modified format to use dots
This commit is contained in:
1 parent
2b726248de
commit
64462670cd
1 file changed
+1
-1
@@ -79,7 +79,7 @@ class PropertiesDialog() {
|
||||
private fun formatLastModified(ts: Long): String {
|
||||
val cal = Calendar.getInstance(Locale.ENGLISH)
|
||||
cal.timeInMillis = ts
|
||||
return DateFormat.format("dd/MM/yyyy HH:mm", cal).toString()
|
||||
return DateFormat.format("dd.MM.yyyy HH:mm", cal).toString()
|
||||
}
|
||||
|
||||
private fun getDirectorySize(dir: File): Long {
|
||||
|
||||
Reference in new issue
Block a user