50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Client-side Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These are messages made available to the client browser via JavaScript.
|
|
| To compile this file run: php artisan october:util compile lang
|
|
|
|
|
*/
|
|
|
|
'markdowneditor' => [
|
|
'formatting' => 'Formatage',
|
|
'quote' => 'Citation',
|
|
'code' => 'Code',
|
|
'header1' => 'Entête 1',
|
|
'header2' => 'Entête 2',
|
|
'header3' => 'Entête 3',
|
|
'header4' => 'Entête 4',
|
|
'header5' => 'Entête 5',
|
|
'header6' => 'Entête 6',
|
|
'bold' => 'Gras',
|
|
'italic' => 'Italique',
|
|
'unorderedlist' => 'Liste non ordonnée',
|
|
'orderedlist' => 'Liste ordonnée',
|
|
'video' => 'Vidéo',
|
|
'image' => 'Image',
|
|
'link' => 'Lien',
|
|
'horizontalrule' => 'Insérer la règle horizontalement',
|
|
'fullscreen' => 'Plein écran',
|
|
'preview' => 'Aperçu',
|
|
],
|
|
|
|
'mediamanager' => [
|
|
'insert_link' => "Insert Media Link",
|
|
'insert_image' => "Insert Media Image",
|
|
'insert_video' => "Insert Media Video",
|
|
'insert_audio' => "Insert Media Audio",
|
|
'invalid_file_empty_insert' => "Please select file to insert a links to.",
|
|
'invalid_file_single_insert' => "Please select a single file.",
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|