-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
107 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
export default { | ||
extensions: { | ||
Blockquote: { | ||
buttons: { | ||
blockquote: { | ||
tooltip: 'Bloc de citation' | ||
} | ||
} | ||
}, | ||
Bold: { | ||
buttons: { | ||
bold: { | ||
tooltip: 'Gras' | ||
} | ||
} | ||
}, | ||
BulletList: { | ||
buttons: { | ||
bulletList: { | ||
tooltip: 'Liste à puce' | ||
} | ||
} | ||
}, | ||
Code: { | ||
buttons: { | ||
code: { | ||
tooltip: 'Code' | ||
} | ||
} | ||
}, | ||
CodeBlock: { | ||
buttons: { | ||
codeBlock: { | ||
tooltip: 'Bloc de code' | ||
} | ||
} | ||
}, | ||
History: { | ||
buttons: { | ||
undo: { | ||
tooltip: 'Annuler' | ||
}, | ||
redo: { | ||
tooltip: 'Rétablir' | ||
} | ||
} | ||
}, | ||
HorizontalRule: { | ||
buttons: { | ||
horizontalRule: { | ||
tooltip: 'Ligne horizontale' | ||
} | ||
} | ||
}, | ||
Italic: { | ||
buttons: { | ||
italic: { | ||
tooltip: 'Italique' | ||
} | ||
} | ||
}, | ||
Link: { | ||
bubble: { | ||
updateLink: 'Mise à jour du lien', | ||
addLink: 'Ajouter un lien' | ||
} | ||
}, | ||
OrderedList: { | ||
buttons: { | ||
orderedList: { | ||
tooltip: 'Liste ordonnée' | ||
} | ||
} | ||
}, | ||
Paragraph: { | ||
buttons: { | ||
paragraph: { | ||
tooltip: 'Paragraphe' | ||
} | ||
} | ||
}, | ||
Strike: { | ||
buttons: { | ||
strike: { | ||
tooltip: 'Barré' | ||
} | ||
} | ||
}, | ||
Underline: { | ||
buttons: { | ||
underline: { | ||
tooltip: 'Souligné' | ||
} | ||
} | ||
}, | ||
Heading: { | ||
buttons: { | ||
heading: { | ||
tooltip: args => args.level + ' niveau de titre' | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters