Translate `now` instead of static `"now"` in DateUtil.

This commit is contained in:
Ali Moghnieh 2017-06-04 20:57:06 +01:00
parent 7c0fa46b4d
commit 8fd532c648
No known key found for this signature in database
GPG Key ID: F09D3A1BAF2E6D70
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ public class DateUtil {
}
}
if (sb.length() == 0) {
return "now";
return tl("now");
}
return sb.toString().trim();
}