make the 'lastSeen' labels shorter to not break the contacts list layout

This commit is contained in:
thesebas
2026-03-23 23:07:00 +01:00
parent 5f475fce4d
commit 9b1f1e1994
2 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -973,27 +973,27 @@ class AppLocalizationsPl extends AppLocalizations {
String get contacts_noMembers => 'Brak członków';
@override
String get contacts_lastSeenNow => 'Widziano przed chwilą';
String get contacts_lastSeenNow => 'niedawno';
@override
String contacts_lastSeenMinsAgo(int minutes) {
return 'Widziano $minutes min temu';
return '~ $minutes min';
}
@override
String get contacts_lastSeenHourAgo => 'Ostatni raz widziany 1 godzinę temu';
String get contacts_lastSeenHourAgo => '~ 1 godz.';
@override
String contacts_lastSeenHoursAgo(int hours) {
return 'Widziano $hours godz. temu';
return '~ $hours godz.';
}
@override
String get contacts_lastSeenDayAgo => 'Ostatni raz widziany 1 dzień temu';
String get contacts_lastSeenDayAgo => '~ 1 dzień';
@override
String contacts_lastSeenDaysAgo(int days) {
return 'Widziano $days dni temu';
return '~ $days dni';
}
@override