mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
58 lines
1.8 KiB
PHP
58 lines
1.8 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' => 'Formátování',
|
|
'quote' => 'Citace',
|
|
'code' => 'Kód',
|
|
'header1' => 'Nadpis 1',
|
|
'header2' => 'Nadpis 2',
|
|
'header3' => 'Nadpis 3',
|
|
'header4' => 'Nadpis 4',
|
|
'header5' => 'Nadpis 5',
|
|
'header6' => 'Nadpis 6',
|
|
'bold' => 'Tučně',
|
|
'italic' => 'Kurzívou',
|
|
'unorderedlist' => 'Nečíslovaný seznam',
|
|
'orderedlist' => 'Číslovaný seznam',
|
|
'video' => 'Video',
|
|
'image' => 'Obrázek',
|
|
'link' => 'Odkaz',
|
|
'horizontalrule' => 'Vložit horizontální linku',
|
|
'fullscreen' => 'Celá obrazovka',
|
|
'preview' => 'Náhled',
|
|
],
|
|
|
|
'mediamanager' => [
|
|
'insert_link' => "Vložit odkaz",
|
|
'insert_image' => "Vložit obrázek",
|
|
'insert_video' => "Vložit video",
|
|
'insert_audio' => "Vložit zvuk",
|
|
'invalid_file_empty_insert' => "Prosím vyberte soubor, na který se vloží odkaz.",
|
|
'invalid_file_single_insert' => "Vyberte jeden soubor.",
|
|
'invalid_image_empty_insert' => "Vyberte soubor(y) pro vložení.",
|
|
'invalid_video_empty_insert' => "Vyberte video soubor pro vložení.",
|
|
'invalid_audio_empty_insert' => "Vyberte audio soubor pro vložení.",
|
|
],
|
|
|
|
'alert' => [
|
|
'confirm_button_text' => 'OK',
|
|
'cancel_button_text' => 'Zrušit',
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|