change last modified format to use dots

This commit is contained in:
tibbi 2016-10-16 21:14:41 +02:00
parent 2b726248de
commit 64462670cd
1 changed files with 1 additions and 1 deletions

View File

@ -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 {