Traductions KLINE
This commit is contained in:
parent
e467d73c0c
commit
8b8bd51959
2 changed files with 75 additions and 2 deletions
|
@ -1,14 +1,17 @@
|
||||||
import en from './translation.en.json';
|
import en from './translation.en.json';
|
||||||
import fr from './translation.fr.json';
|
import fr from './translation.fr.json';
|
||||||
|
import frKline from './translation.fr.kline.json';
|
||||||
|
|
||||||
export const translations: Record<string, Record<string, string>> = {
|
export const translations: Record<string, Record<string, string>> = {
|
||||||
en,
|
en,
|
||||||
fr
|
fr,
|
||||||
|
frKline
|
||||||
};
|
};
|
||||||
|
|
||||||
// Use languageOptions to restrict existing dictionary
|
// Use languageOptions to restrict existing dictionary
|
||||||
// and create a select input
|
// and create a select input
|
||||||
export const languageOptions: Record<string, string> = {
|
export const languageOptions: Record<string, string> = {
|
||||||
en: 'English',
|
en: 'English',
|
||||||
fr: 'French'
|
fr: 'French',
|
||||||
|
frKline: 'K-Line'
|
||||||
};
|
};
|
||||||
|
|
70
src/Translations/translation.fr.kline.json
Normal file
70
src/Translations/translation.fr.kline.json
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
{
|
||||||
|
"@StartFromScratch": "Partir de zéro",
|
||||||
|
"@LoadConfigFile": "Charger un fichier de configuration",
|
||||||
|
"@GoBack": "Revenir",
|
||||||
|
|
||||||
|
"@Components": "Composants",
|
||||||
|
"@Elements": "Éléments",
|
||||||
|
"@Symbols": "Ancrages",
|
||||||
|
"@SymbolsLeft": "Ancrages",
|
||||||
|
"@SymbolsRight": "Ancrages",
|
||||||
|
"@Timeline": "Chronologie",
|
||||||
|
"@Messages": "Messages",
|
||||||
|
"@Settings": "Paramètres",
|
||||||
|
|
||||||
|
"@Undo": "Annuler",
|
||||||
|
"@UndoTitle": "Annuler la dernière action",
|
||||||
|
"@Redo": "Refaire",
|
||||||
|
"@RedoTitle": "Refaire la dernière action",
|
||||||
|
"@DeleteContainer": "Supprimer",
|
||||||
|
"@DeleteContainerTitle": "Supprimer le conteneur",
|
||||||
|
"@DeleteSymbol": "Supprimer",
|
||||||
|
"@DeleteSymbolTitle": "Supprimer l'ancre",
|
||||||
|
|
||||||
|
"@ExportAsJSON": "Exporter en JSON",
|
||||||
|
"@ExportAsSVG": "Exporter en SVG",
|
||||||
|
|
||||||
|
"@HideDisabledComponents": "Cacher les composants désactivés",
|
||||||
|
"@ShowDisabledComponents": "Montrer les composants activés",
|
||||||
|
|
||||||
|
"@ClearAllMessages": "Effacer tous les messages",
|
||||||
|
|
||||||
|
"@ContainerDisplayedText": "Texte affiché",
|
||||||
|
"@ContainerOrientation": "Orientation",
|
||||||
|
"@ContainerProperties": "Propriétés",
|
||||||
|
"@ContainerName": "Nom",
|
||||||
|
"@ContainerParentName": "Nom du parent",
|
||||||
|
"@ContainerType": "Type",
|
||||||
|
"@ContainerPosition": "Position",
|
||||||
|
"@ContainerX": "x",
|
||||||
|
"@ContainerY": "y",
|
||||||
|
"@ContainerSize": "Taille",
|
||||||
|
"@ContainerMinWidth": "Largeur minimale",
|
||||||
|
"@ContainerWidth": "Largeur",
|
||||||
|
"@ContainerMaxWidth": "Largeur maximale",
|
||||||
|
"@ContainerMinHeight": "Hauteur minimale",
|
||||||
|
"@ContainerHeight": "Hauteur",
|
||||||
|
"@ContainerMaxHeight": "Hauteur maximale",
|
||||||
|
"@ContainerMargins": "Jeux de pose",
|
||||||
|
"@ContainerMarginLeft": "Jeu gauche",
|
||||||
|
"@ContainerMarginBottom": "Jeu bas",
|
||||||
|
"@ContainerMarginTop": "Jeu haut",
|
||||||
|
"@ContainerMarginRight": "Jeu droite",
|
||||||
|
"@ContainerBehaviors": "Comportements",
|
||||||
|
"@ContainerFlex": "Toute largeur (hauteur)",
|
||||||
|
"@ContainerAnchor": "Verrouiller la position et la taille",
|
||||||
|
"@ContainerAlignment": "Alignement",
|
||||||
|
"@ContainerAlignmentInput": "Alignement",
|
||||||
|
"@ContainerAlignWithSymbol": "Ancrer sur",
|
||||||
|
"@ContainerDimensions": "Cotations",
|
||||||
|
"@ContainerShowDimension": "Afficher les cotations",
|
||||||
|
"@ContainerShowChildrenDimension": "Afficher les cotations englobante des enfants",
|
||||||
|
"@ContainerMarkPosition": "Marquer la position pour les parents",
|
||||||
|
"@ContainerShowDimensionWithMarks": "Afficher les cotations avec les enfants marqués",
|
||||||
|
"@ContainerStyle": "Style",
|
||||||
|
|
||||||
|
"@SymbolName": "Nom",
|
||||||
|
"@SymbolX": "x",
|
||||||
|
"@SymbolHeight": "Hauteur",
|
||||||
|
"@SymbolWidth": "Largeur"
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue