mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 06:42:14 +09:00
한글 띄어쓰기, 맞춤법 등 일부 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6715 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
914b89add2
commit
2ee3844935
22 changed files with 375 additions and 383 deletions
|
|
@ -58,15 +58,17 @@
|
|||
|
||||
$src = str_replace(array('&','"'), array('&','&qout;'), $src);
|
||||
$src = str_replace('&', '&', $src);
|
||||
|
||||
if(!$alt) $alt = $src;
|
||||
// 이미지 주소를 request uri가 포함된 주소로 변환 (rss출력, 등등을 위함)
|
||||
$temp_src = explode('/', $src);
|
||||
if($temp_src[0]=='.') $src = Context::getRequestUri().substr($src, 2);
|
||||
elseif($temp_src[0]=='' && $src) {
|
||||
elseif(substr($src , 0 , 1)=='/') {
|
||||
if($_SERVER['HTTPS']=='on') $http_src = 'https://';
|
||||
else $http_src = 'http://';
|
||||
$src = $http_src.$_SERVER['HTTP_HOST'].$src;
|
||||
}
|
||||
if(!$alt) $alt = $src;
|
||||
elseif(!strpos($temp_src[0],':') && $src) $src = Context::getRequestUri().$src;
|
||||
|
||||
$attr_output = array();
|
||||
$attr_output = array("src=\"".$src."\"");
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
$lang->image_url = '이미지 경로';
|
||||
$lang->image_alt = '설명 입력';
|
||||
$lang->image_scale = '이미지크기';
|
||||
$lang->image_scale = '이미지 크기';
|
||||
$lang->image_align = '정렬 방법';
|
||||
$lang->image_align_normal = '한 문단을 차지';
|
||||
$lang->image_align_left = '글의 왼쪽으로';
|
||||
|
|
@ -16,8 +16,8 @@
|
|||
$lang->image_border = '경계선 두께';
|
||||
$lang->image_margin = '바깥 여백';
|
||||
|
||||
$lang->urllink_open_window = '새창열기';
|
||||
$lang->about_url_link_open_window = '선택하시면 링크 선택시 새창으로 열립니다';
|
||||
$lang->urllink_open_window = '새 창 열기';
|
||||
$lang->about_url_link_open_window = '선택하시면 링크 선택 시 새 창으로 열립니다.';
|
||||
|
||||
$lang->cmd_get_scale = '크기 구하기';
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue