Initial commit: Add logistics and order_detail message types
Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
85
app/javascript/dashboard/i18n/locale/fr/labelsMgmt.json
Normal file
85
app/javascript/dashboard/i18n/locale/fr/labelsMgmt.json
Normal file
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"LABEL_MGMT": {
|
||||
"HEADER": "Étiquettes",
|
||||
"HEADER_BTN_TXT": "Ajouter une étiquette",
|
||||
"LOADING": "Récupération des étiquettes",
|
||||
"DESCRIPTION": "Labels help you categorize and prioritize conversations and leads. You can assign a label to a conversation or contact using the side panel.",
|
||||
"LEARN_MORE": "Learn more about labels",
|
||||
"SEARCH_404": "Il n'y a aucun élément correspondant à cette requête",
|
||||
"LIST": {
|
||||
"404": "Il n'y a aucune étiquette disponible dans ce compte.",
|
||||
"TITLE": "Gérer les étiquettes",
|
||||
"DESC": "Les étiquettes vous permettent de grouper les conversations ensemble.",
|
||||
"TABLE_HEADER": {
|
||||
"NAME": "Nom",
|
||||
"DESCRIPTION": "Description",
|
||||
"COLOR": "Couleur"
|
||||
}
|
||||
},
|
||||
"FORM": {
|
||||
"NAME": {
|
||||
"LABEL": "Nom de l'étiquette",
|
||||
"PLACEHOLDER": "Nom de l'étiquette",
|
||||
"REQUIRED_ERROR": "Le nom de l'étiquette est requis",
|
||||
"MINIMUM_LENGTH_ERROR": "Longueur minimale de 2 requise",
|
||||
"VALID_ERROR": "Seuls les caractères alphabétiques, les chiffres, les traits d'union et les tirets bas sont autorisés"
|
||||
},
|
||||
"DESCRIPTION": {
|
||||
"LABEL": "Description",
|
||||
"PLACEHOLDER": "Description de l'étiquette"
|
||||
},
|
||||
"COLOR": {
|
||||
"LABEL": "Couleur"
|
||||
},
|
||||
"SHOW_ON_SIDEBAR": {
|
||||
"LABEL": "Afficher l'étiquette dans la barre latérale"
|
||||
},
|
||||
"EDIT": "Modifier",
|
||||
"CREATE": "Créer",
|
||||
"DELETE": "Supprimer",
|
||||
"CANCEL": "Annuler"
|
||||
},
|
||||
"SUGGESTIONS": {
|
||||
"TOOLTIP": {
|
||||
"SINGLE_SUGGESTION": "Ajouter un libellé à la conversation",
|
||||
"MULTIPLE_SUGGESTION": "Sélectionner ce libellé",
|
||||
"DESELECT": "Désélectionner ce libellé",
|
||||
"DISMISS": "Rejeter la suggestion"
|
||||
},
|
||||
"POWERED_BY": "Chatwoot IA",
|
||||
"DISMISS": "Rejeter",
|
||||
"ADD_SELECTED_LABELS": "Ajouter les libellés sélectionnés",
|
||||
"ADD_SELECTED_LABEL": "Ajouter le libellé sélectionné",
|
||||
"ADD_ALL_LABELS": "Ajouter tous les libellés",
|
||||
"SUGGESTED_LABELS": "Suggested labels"
|
||||
},
|
||||
"ADD": {
|
||||
"TITLE": "Ajouter une étiquette",
|
||||
"DESC": "Les étiquettes vous permettent de grouper les conversations ensemble.",
|
||||
"API": {
|
||||
"SUCCESS_MESSAGE": "Étiquette ajoutée avec succès",
|
||||
"ERROR_MESSAGE": "Une erreur est survenue, veuillez réessayer"
|
||||
}
|
||||
},
|
||||
"EDIT": {
|
||||
"TITLE": "Modifier l'étiquette",
|
||||
"API": {
|
||||
"SUCCESS_MESSAGE": "Étiquette mise à jour avec succès",
|
||||
"ERROR_MESSAGE": "Une erreur est survenue, veuillez réessayer"
|
||||
}
|
||||
},
|
||||
"DELETE": {
|
||||
"BUTTON_TEXT": "Supprimer",
|
||||
"API": {
|
||||
"SUCCESS_MESSAGE": "Étiquette supprimée avec succès",
|
||||
"ERROR_MESSAGE": "Une erreur est survenue, veuillez réessayer"
|
||||
},
|
||||
"CONFIRM": {
|
||||
"TITLE": "Confirmer la suppression",
|
||||
"MESSAGE": "Êtes-vous sûr de vouloir supprimer ",
|
||||
"YES": "Oui, supprimer ",
|
||||
"NO": "Non, Conserver "
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user