diff --git a/src/i18n/fr/index.ts b/src/i18n/fr/index.ts new file mode 100644 index 0000000..54db2a0 --- /dev/null +++ b/src/i18n/fr/index.ts @@ -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' + } + } + } + } +} diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 5bfba3e..37a881c 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -3,6 +3,7 @@ import en from './en' import ru from './ru' import es from './es' import pl from './pl' +import fr from './fr' import ConsoleLogger from '~/logging/ConsoleLogger' export const defaultLanguage = 'en' @@ -11,7 +12,8 @@ export const dictionary = { en, ru, es, - pl + pl, + fr } export function getCurrentLang () {