Fix #1335 support autoinsert option by file type

This commit is contained in:
Kijin Sung 2020-07-03 23:56:37 +09:00
parent 2802c59889
commit 8d05a674f5
8 changed files with 50 additions and 31 deletions

View file

@ -26,7 +26,12 @@ $lang->word_break_normal = 'Wrap Asian scripts at character boundary and Latin s
$lang->word_break_keep_all = 'Wrap at word boundary';
$lang->word_break_break_all = 'Wrap at character boundary';
$lang->word_break_none = 'Do not wrap long lines';
$lang->guide_choose_autoinsert_image = 'Auto-insert images';
$lang->guide_choose_autoinsert_types = 'Auto-insert';
$lang->autoinsert_types['image'] = 'Images';
$lang->autoinsert_types['audio'] = 'Audio';
$lang->autoinsert_types['video'] = 'Video';
$lang->autoinsert_paragraph = 'New paragraph';
$lang->autoinsert_inline = 'Inline';
$lang->autoinsert_image_paragraph = 'Automatically insert images into editor (after line break at cursor position)';
$lang->autoinsert_image_inline = 'Automatically insert images into editor (directly at cursor position)';
$lang->autoinsert_image_none = 'Do not auto-insert images into editor';

View file

@ -30,10 +30,12 @@ $lang->word_break_normal = '한글은 글자 단위로 줄바꿈, 영문은 단
$lang->word_break_keep_all = '모든 언어를 단어 단위로 줄바꿈';
$lang->word_break_break_all = '모든 언어를 글자 단위로 줄바꿈';
$lang->word_break_none = '줄을 바꾸지 않음';
$lang->guide_choose_autoinsert_image = '이미지 자동 삽입';
$lang->autoinsert_image_paragraph = '이미지 첨부시 본문에 자동 삽입 (커서 위치에서 줄을 바꾸고 삽입)';
$lang->autoinsert_image_inline = '이미지 첨부시 본문에 자동 삽입 (커서 위치에 직접 삽입)';
$lang->autoinsert_image_none = '이미지 첨부시 본문에 자동 삽입하지 않음';
$lang->guide_choose_autoinsert_types = '본문 자동 삽입';
$lang->autoinsert_types['image'] = '이미지';
$lang->autoinsert_types['audio'] = '오디오';
$lang->autoinsert_types['video'] = '동영상';
$lang->autoinsert_paragraph = '커서 위치에서 줄을 바꾸어 삽입';
$lang->autoinsert_inline = '커서 위치에 직접 삽입';
$lang->about_additional_plugins = '추가 플러그인 로딩을 지원하는 에디터에서만 적용됩니다.';
$lang->about_remove_plugins = '플러그인 제거를 지원하는 에디터에서만 적용됩니다.';
$lang->about_unit_default_px = '단위를 지정하지 않을 경우 px 단위를 사용합니다.';