From 6732e0b9740a886baa2e2220df0607410ec36389 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 14 Dec 2025 20:18:06 -0300 Subject: [PATCH] feat: add more strings --- src/app/strings.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/strings.ts b/src/app/strings.ts index 9b0d0e8..772d4b9 100644 --- a/src/app/strings.ts +++ b/src/app/strings.ts @@ -1,13 +1,17 @@ export const strings = Object.freeze({ + actions: 'actions', add: 'add', addContact: 'add a contact', allFieldRequired: 'all fields are required', company: 'company', + constacts: 'contacts', contactList: 'contact list', - name: 'name', - phone: 'phone', - errorMessageRequired: 'This field is required.', + editContact: 'edit contact', errorMessageMaxLength: (maxLen: number) => `Must be ${maxLen} characters or fewer.`, errorMessageMinLength: (minLen: number) => `Must be at least ${minLen} characters long.`, errorMessagePhonePattern: `Valid format: + (optional) plus 12 to 15 digits`, + errorMessageRequired: 'This field is required.', + name: 'name', + phone: 'phone', + searchContactPlaceholder: 'Search contact...' });