Skip to content

Commit

Permalink
feat: add missing french translations and short link limit exceed (#292)
Browse files Browse the repository at this point in the history
* feat: add missing french translations and short link limit exceed message

* chore: update short links messages
  • Loading branch information
ReidyT authored Nov 28, 2023
1 parent 8b9e840 commit d32e56c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/constants/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export const FAILURE_MESSAGES = {
SHORT_LINK_ALREADY_EXISTS: 'SHORT_LINK_ALREADY_EXISTS',
SHORT_LINK_NOT_FOUND: 'SHORT_LINK_NOT_FOUND',
INVALID_CONTEXT: 'INVALID_CONTEXT',
SHORT_LINK_LIMIT_EXCEED: 'SHORT_LINK_LIMIT_EXCEED',
};

export const DEFAULT_FAILURE_MESSAGE = FAILURE_MESSAGES.UNEXPECTED_ERROR;
Expand Down
3 changes: 2 additions & 1 deletion src/langs/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,6 @@
"DELETE_SHORT_LINK": "The short link was successfully deleted.",
"SHORT_LINK_ALREADY_EXISTS": "The short link's alias already exists.",
"SHORT_LINK_NOT_FOUND": "The short link was not found.",
"INVALID_CONTEXT": "The given context is not valid."
"INVALID_CONTEXT": "The given context is not valid.",
"SHORT_LINK_LIMIT_EXCEED": "You can't have more than one short link per service."
}
9 changes: 8 additions & 1 deletion src/langs/fr/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,12 @@
"EMPTY_CURRENT_PASSWORD": "Le mot de passe actuel n'a pas été rempli. Réessayez",
"REQUEST_MESSAGES_IMPORT_ZIP": "Le fichier ZIP est en cours de traitement. Une pause café s'impose, vous ne pensez pas ?",
"REQUEST_MESSAGES_IMPORT_H5P": "Le dossier H5P est en cours de traitement. Patientez s'il-vous-plait.",
"REQUEST_MESSAGES_UPLOAD_FILES": "Le ou les fichiers sont en file d'attente pour le téléversement. Patientez s'il-vous-plait."
"REQUEST_MESSAGES_UPLOAD_FILES": "Le ou les fichiers sont en file d'attente pour le téléversement. Patientez s'il-vous-plait.",
"CREATE_SHORT_LINK": "Le lien court a été créé avec succès.",
"EDIT_SHORT_LINK": "Le lien court a été mis à jour avec succès.",
"DELETE_SHORT_LINK": "Le lien court a été supprimé avec succès.",
"SHORT_LINK_ALREADY_EXISTS": "L'alias du lien court existe déjà.",
"SHORT_LINK_NOT_FOUND": "Le lien court n'a pas été trouvé.",
"INVALID_CONTEXT": "Le contexte donné n'est pas valide.",
"SHORT_LINK_LIMIT_EXCEED": "Vous ne pouvez avoir qu'un seul lien court par service."
}

0 comments on commit d32e56c

Please sign in to comment.