feat: contacts upper and lower limits

This commit is contained in:
2026-03-23 15:38:47 +01:00
parent 5111d5d65f
commit 5f484036f8
7 changed files with 55 additions and 33 deletions

View File

@@ -763,5 +763,7 @@
"callHistoryEmpty": "No calls recorded",
"callIncoming": "Incoming",
"callOutgoing": "Outgoing",
"callMissed": "Missed"
}
"callMissed": "Missed",
"errorContactsMin": "The device must have at least one contact",
"errorContactsMax": "The device cannot have more than 10 contacts"
}

View File

@@ -761,5 +761,7 @@
"callHistoryEmpty": "No hay llamadas registradas",
"callIncoming": "Entrantes",
"callOutgoing": "Salientes",
"callMissed": "Perdidas"
"callMissed": "Perdidas",
"errorContactsMin": "El dispositivo debe tener al menos un contacto",
"errorContactsMax": "El dispositivo no puede tener más de 10 contactos"
}

View File

@@ -768,4 +768,6 @@ class I18n {
static const String noPhotosAvailable = 'noPhotosAvailable';
static const String yesterday = 'yesterday';
static const String measure = 'measure';
static const String errorContactsMin = 'errorContactsMin';
static const String errorContactsMax = 'errorContactsMax';
}