update to PrettyTime 4.0.6

fixes #4324
This commit is contained in:
bopol 2020-10-03 18:58:42 +02:00
parent 83ea91586b
commit 2b1469e02e
2 changed files with 2 additions and 4 deletions

View file

@ -305,9 +305,7 @@ public final class Localization {
}
public static String relativeTime(final Calendar calendarTime) {
final String time = getPrettyTime().formatUnrounded(calendarTime);
return time.startsWith("-") ? time.substring(1) : time;
//workaround fix for russian showing -1 day ago, -19hrs ago
return getPrettyTime().formatUnrounded(calendarTime);
}
private static void changeAppLanguage(final Locale loc, final Resources res) {