Merge pull request #1538 from tabacitu/develop
added system/lang/client translation for Romanian
This commit is contained in:
commit
8de530fdf4
|
|
@ -0,0 +1,57 @@
|
|||
<?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' => 'Formatare',
|
||||
'quote' => 'Citat',
|
||||
'code' => 'Cod',
|
||||
'header1' => 'Antet 1',
|
||||
'header2' => 'Antet 2',
|
||||
'header3' => 'Antet 3',
|
||||
'header4' => 'Antet 4',
|
||||
'header5' => 'Antet 5',
|
||||
'header6' => 'Antet 6',
|
||||
'bold' => 'Îngroșat',
|
||||
'italic' => 'Italic',
|
||||
'unorderedlist' => 'Listă neordonată',
|
||||
'orderedlist' => 'Listă ordonată',
|
||||
'video' => 'Video',
|
||||
'image' => 'Imagine',
|
||||
'link' => 'Link',
|
||||
'horizontalrule' => 'Introdu linie orizontală',
|
||||
'fullscreen' => 'Umple ecranul',
|
||||
'preview' => 'Previzualizează',
|
||||
],
|
||||
|
||||
'mediamanager' => [
|
||||
'insert_link' => "Introdu link",
|
||||
'insert_image' => "Introdu image",
|
||||
'insert_video' => "Introdu video",
|
||||
'insert_audio' => "Introdu audio",
|
||||
'invalid_file_empty_insert' => "Selectează un fișier către care să se facă legătura.",
|
||||
'invalid_file_single_insert' => "Selectează un singur fișier.",
|
||||
'invalid_image_empty_insert' => "Alege imaginile pentru a fi introduse.",
|
||||
'invalid_video_empty_insert' => "Alege un fișier video pentru a fi introdus.",
|
||||
'invalid_audio_empty_insert' => "Alege un fișier video pentru a fi introdus.",
|
||||
],
|
||||
|
||||
'alert' => [
|
||||
'confirm_button_text' => 'OK',
|
||||
'cancel_button_text' => 'Anulează',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue