Skip to content

Commit

Permalink
refs #1662 : modified - double quote to single quote for locale gene…
Browse files Browse the repository at this point in the history
…rator.

 -
  • Loading branch information
inureyes committed Mar 12, 2015
1 parent 1d73a27 commit 0679ffb
Show file tree
Hide file tree
Showing 13 changed files with 34 additions and 34 deletions.
8 changes: 4 additions & 4 deletions interface/control/blog/detail/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function deleteBlog(bid) {
msg = this.getText("/response/result");
alert("<?php echo _t('블로그 삭제에 실패하였습니다.');?>\r\nError : " + msg);
}
PM.addRequest(request, _t("블로그 삭제중"));
PM.addRequest(request, _t('블로그 삭제중'));
request.send();
}

Expand Down Expand Up @@ -197,7 +197,7 @@ function addUser(user) {
<dd>
<span id="suggestContainer"><input type="text" id="bi-owner-loginid" name="user" value="" /></span>
<input type="hidden" name="blogid" value="<?php echo $bid?>" />
<input type="submit" class="input-button" value="<?php echo _t("팀원 추가");?>" onclick="addUser(ctlUserSuggestObj.getValue());return false;" />
<input type="submit" class="input-button" value="<?php echo _t('팀원 추가');?>" onclick="addUser(ctlUserSuggestObj.getValue());return false;" />
</dd>
</dl>
</form>
Expand All @@ -216,10 +216,10 @@ function addUser(user) {
</div>

<div class="button-box">
<input type="submit" class="input-button" href="#void" onclick="deleteBlog(<?php echo $bid;?>); return false;" value="<?php echo _t("블로그 삭제");?>" />
<input type="submit" class="input-button" href="#void" onclick="deleteBlog(<?php echo $bid;?>); return false;" value="<?php echo _t('블로그 삭제');?>" />
<span class="hidden">|</span>
<?php if (!$isRepBlog) { ?><input type="submit" class="input-button" href="<?php echo $context->getProperty('uri.blog');?>/control/action/blog/setDefault/?blogid=<?php echo $bid;?>" onclick="setDefaultBlog('<?php echo $bid;?>'); return false;" value="<?php echo _t('대표 블로그 설정');?>" /><span class="hidden">|</span><?php } ?>
<input type="submit" class="input-button" onclick="location.href='<?php echo $context->getProperty('uri.blog');?>/control/blog'" value="<?php echo _t("돌아가기");?>" />
<input type="submit" class="input-button" onclick="location.href='<?php echo $context->getProperty('uri.blog');?>/control/blog'" value="<?php echo _t('돌아가기');?>" />
</div>
</div>
<?php
Expand Down
4 changes: 2 additions & 2 deletions interface/control/blog/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</dl>
</fieldset>
<div class="button-box">
<a class="button" href="#void" onclick="sendBlogAddInfo(ctlUserSuggestObj.getValue(),document.getElementById('bi-identify').value); return false;"><?php echo _t("새 블로그 생성");?></a>
<a class="button" href="#void" onclick="sendBlogAddInfo(ctlUserSuggestObj.getValue(),document.getElementById('bi-identify').value); return false;"><?php echo _t('새 블로그 생성');?></a>
</div>
</form>
</div>
Expand Down Expand Up @@ -92,7 +92,7 @@
<?php echo User::getName($bsetting['owner'])."(".User::getEmail($bsetting['owner']).")";?>
</td><?php if ( $service['type'] != "single" ) {?>
<td class="name">
<a href="<?php echo getDefaultUrl($itemBlogId);?>"><?php echo _t("보기");?></a>
<a href="<?php echo getDefaultUrl($itemBlogId);?>"><?php echo _t('보기');?></a>
</td><?php }?>
</tr>
<?php
Expand Down
10 changes: 5 additions & 5 deletions interface/control/user/detail/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function makeToken(uid) {

<ul>
<?php if(!is_null($AuthToken)) { ?>
<li><em><?php echo _t("임시 암호가 설정되어 있습니다.");?></em></li>
<li><em><?php echo _t('임시 암호가 설정되어 있습니다.');?></em></li>
<li><em><?php echo $AuthToken;?></em></li>
<?php }?>
<li><?php echo _f('이 계정은 %1에 생성되었습니다.', date("D M j G:i:s T Y", $usersetting['created']));?></li>
Expand Down Expand Up @@ -97,10 +97,10 @@ function makeToken(uid) {
echo "<td class=\"name\"><a href=\"{$blogURL}/control/blog/detail/{$row['blogid']}\">".POD::queryCell("SELECT value FROM `{$database['prefix']}BlogSettings` WHERE name = 'name' AND blogid = " . $row['blogid'])."</a></td>";

$tmpstr = '';
if ($row['acl'] & BITWISE_ADMINISTRATOR) $tmpstr .= _t("관리자")." ";
if ($row['acl'] & BITWISE_OWNER) $tmpstr .= _t("소유자")." ";
if ($row['acl'] & BITWISE_EDITOR) $tmpstr .= _t("글관리")." ";
$tmpstr = ($tmpstr?$tmpstr:_t("없음"));
if ($row['acl'] & BITWISE_ADMINISTRATOR) $tmpstr .= _t('관리자')." ";
if ($row['acl'] & BITWISE_OWNER) $tmpstr .= _t('소유자')." ";
if ($row['acl'] & BITWISE_EDITOR) $tmpstr .= _t('글관리')." ";
$tmpstr = ($tmpstr?$tmpstr:_t('없음'));
echo "<td class=\"role\">".$tmpstr."</td>";
echo "</tr>";
}
Expand Down
2 changes: 1 addition & 1 deletion interface/control/user/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</dl>
</fieldset>
<div class="button-box">
<a class="button" href="#void" onclick="sendUserAddInfo(document.getElementById('ui-name').value,document.getElementById('ui-email').value); return false;"><?php echo _t("새 사용자 등록");?></a>
<a class="button" href="#void" onclick="sendUserAddInfo(document.getElementById('ui-name').value,document.getElementById('ui-email').value); return false;"><?php echo _t('새 사용자 등록');?></a>
</div>
</form>
</div>
Expand Down
4 changes: 2 additions & 2 deletions interface/login/openid/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ function TryAuthByRequest()
$openid = $_GET['openid_identifier'];
}
if (empty($openid)) {
$errmsg = _text("오픈아이디를 입력하세요");
$errmsg = _text('오픈아이디를 입력하세요');
} else if (strstr($openid, ".") === false ) {
require_once(ROOT.'/framework/legacy/Textcube.Control.Openid.php');
require_once OPENID_LIBRARY_ROOT."Auth/Yadis/XRI.php";
if( Auth_Yadis_identifierScheme($openid) == 'URI' ) {
$errmsg = _text("오픈아이디에 도메인 부분이 없습니다. 예) textcube.example.com");
$errmsg = _text('오픈아이디에 도메인 부분이 없습니다. 예) textcube.example.com');
}
}
if( $errmsg ) {
Expand Down
8 changes: 4 additions & 4 deletions interface/owner/center/dashboard/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ function optimizeData() {
if (isset($_REQUEST['edit'])) {
?>

<a class="widget-reorder-up" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter; ?>&amp;rel=-1&edit"><?php echo _t("위로");?></a>
<a class="widget-reorder-down" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter;?>&amp;rel=1&edit"><?php echo _t("아래로");?></a>
<a class="widget-reorder-up" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter; ?>&amp;rel=-1&edit"><?php echo _t('위로');?></a>
<a class="widget-reorder-down" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter;?>&amp;rel=1&edit"><?php echo _t('아래로');?></a>
<?php
}
?>
Expand Down Expand Up @@ -417,8 +417,8 @@ function getDefaultCenterPanel($mapping) {
<?php
if (isset($_REQUEST['edit'])) {
?>
<a id="<?php echo $mapping['plugin'];?>dojoup" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter; ?>&amp;rel=-1&edit"><?php echo _t("위로");?></a>
<a id="<?php echo $mapping['plugin'];?>dojodown" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter;?>&amp;rel=1&edit"><?php echo _t("아래로");?></a>
<a id="<?php echo $mapping['plugin'];?>dojoup" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter; ?>&amp;rel=-1&edit"><?php echo _t('위로');?></a>
<a id="<?php echo $mapping['plugin'];?>dojodown" href="<?php echo $ctx->getProperty('uri.blog');?>/owner/center/dashboard?edit&pos=<?php echo $positionCounter;?>&amp;rel=1&edit"><?php echo _t('아래로');?></a>
<?php
}
?>
Expand Down
2 changes: 1 addition & 1 deletion interface/owner/communication/openid/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<div id="part-openid-loginhistory" class="part">
<h2 class="caption"><span class="main-text"><?php echo _t('오픈아이디로 로그인한 사람들의 목록입니다')?></span></h2>
<div class="main-explain-box">
<p class="explain"><?php echo _t("이 블로그에 오픈아이디로 로그인하여 글을 남긴 사람들의 기록입니다.").' '._t('댓글을 남긴 아이디와 그에 연결된 오픈아이디를 동시에 확인할 수 있습니다.').'<br />'._t('아이디와 오픈아이디의 대조를 통하여 아이디의 사칭 여부를 판별할 수 있습니다.');?></p>
<p class="explain"><?php echo _t('이 블로그에 오픈아이디로 로그인하여 글을 남긴 사람들의 기록입니다.').' '._t('댓글을 남긴 아이디와 그에 연결된 오픈아이디를 동시에 확인할 수 있습니다.').'<br />'._t('아이디와 오픈아이디의 대조를 통하여 아이디의 사칭 여부를 판별할 수 있습니다.');?></p>
</div>
<table class="data-inbox" cellspacing="0" cellpadding="0">
<thead>
Expand Down
8 changes: 4 additions & 4 deletions interface/owner/entry/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -858,10 +858,10 @@ function toggleThisTr(obj) {
<?php
foreach($teamblog_users as $teamblog_user) {
$tmpstr = '';
if ($teamblog_user['acl'] & BITWISE_ADMINISTRATOR) $tmpstr .= _t("관리자");
if ($teamblog_user['acl'] & BITWISE_OWNER) $tmpstr .= _t("소유자");
if ($teamblog_user['acl'] & BITWISE_EDITOR) $tmpstr .= _t("글관리");
$tmpstr = ($tmpstr?$tmpstr:_t("없음"));
if ($teamblog_user['acl'] & BITWISE_ADMINISTRATOR) $tmpstr .= _t('관리자');
if ($teamblog_user['acl'] & BITWISE_OWNER) $tmpstr .= _t('소유자');
if ($teamblog_user['acl'] & BITWISE_EDITOR) $tmpstr .= _t('글관리');
$tmpstr = ($tmpstr?$tmpstr:_t('없음'));
?>
<option value="<?=$teamblog_user['userid']?>"><?="{$teamblog_user['name']}($tmpstr)"?></option>
<?php
Expand Down
2 changes: 1 addition & 1 deletion interface/owner/network/teamblog/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ function Check_rev() {

<div id="letter-body">
<label for="invitation_comment"><?php echo _t('초대 메시지');?></label>
<textarea id="invitation_comment" cols="60" rows="3" name="textarea"><?php echo _f("%1님께서 블로그의 팀원으로 초대합니다",htmlspecialchars($user['name']));?></textarea>
<textarea id="invitation_comment" cols="60" rows="3" name="textarea"><?php echo _f('%1님께서 블로그의 팀원으로 초대합니다',htmlspecialchars($user['name']));?></textarea>
</div>

<div id="letter-foot">
Expand Down
4 changes: 2 additions & 2 deletions interface/owner/plugin/currentSetting/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo _f("%1 설정", $pluginAttrs['title']);?></title>
<title><?php echo _f('%1 설정', $pluginAttrs['title']);?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo $service['path'] . $adminSkinSetting['skin'];?>/plugin-config.css" />
<?php
Expand Down Expand Up @@ -158,7 +158,7 @@ function toggleTab(name) {
<body>
<form method="post" action="<?php echo $targetURL;?>">
<div id="layout-head">
<h1 class="caption"><?php echo _f("%1 설정", $pluginAttrs['title']);?></h1>
<h1 class="caption"><?php echo _f('%1 설정', $pluginAttrs['title']);?></h1>
</div>

<div id="layout-body">
Expand Down
4 changes: 2 additions & 2 deletions interface/owner/reader/opml/import/file/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
if ($status == 0) {
if($result['total'] == 1) {
?>
var str = "<?php echo _f('하나의 피드를 가져왔습니다.\n피드를 업데이트 해 주십시오.', $result['total']);?>";
var str = "<?php echo _f('하나의 피드를 가져왔습니다. 피드를 업데이트 해 주십시오.', $result['total']);?>";
<?php
} else {
?>
var str = "<?php echo _f('%1개의 피드를 가져왔습니다.\n피드를 업데이트 해 주십시오.', $result['total']);?>";
var str = "<?php echo _f('%1개의 피드를 가져왔습니다. 피드를 업데이트 해 주십시오.', $result['total']);?>";
<?php
}
?>
Expand Down
6 changes: 3 additions & 3 deletions interface/owner/setting/account/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ function cancelInvite(userid, caller) {
<h2 class="caption"><span class="main-text"><?php echo _t('대표 주소');?></span></h2>

<div class="main-explain-box">
<p class="explain"><?php echo _t("댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다. 로그인 상태에서 댓글을 달 경우 댓글에 출력되는 블로그 아이콘은 이 주소의 정보에 의하여 결정됩니다.")?></p>
<p class="explain"><?php echo _t('댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다. 로그인 상태에서 댓글을 달 경우 댓글에 출력되는 블로그 아이콘은 이 주소의 정보에 의하여 결정됩니다.')?></p>
</div>

<div class="data-inbox">
Expand Down Expand Up @@ -461,7 +461,7 @@ function cancelInvite(userid, caller) {
<div id="part-setting-openid" class="part">
<h2 class="caption"><span class="main-text"><?php echo _t('오픈아이디 연결');?></span></h2>
<div class="main-explain-box">
<p class="explain"><?php echo _t("오픈아이디를 현재 아이디와 연결합니다.").' '._t('연결 후에는 연결한 오픈아이디를 사용하여 블로그에 로그인 할 수 있습니다.');?></p>
<p class="explain"><?php echo _t('오픈아이디를 현재 아이디와 연결합니다.').' '._t('연결 후에는 연결한 오픈아이디를 사용하여 블로그에 로그인 할 수 있습니다.');?></p>
</div>

<table class="data-inbox">
Expand Down Expand Up @@ -620,7 +620,7 @@ function cancelInvite(userid, caller) {
</div>

<div id="letter-body">
<textarea id="invitation_comment" cols="60" rows="3" name="textarea"><?php echo _t("블로그를 준비해 두었습니다.\n지금 바로 입주하실 수 있습니다.");?></textarea>
<textarea id="invitation_comment" cols="60" rows="3" name="textarea"><?php echo _t('블로그를 준비해 두었습니다.\n지금 바로 입주하실 수 있습니다.');?></textarea>
</div>

<div id="letter-foot">
Expand Down
6 changes: 3 additions & 3 deletions interface/owner/setting/entry/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ function showapi() {
</div>
</dd>
<dd>
<p><label for="apientry"><?php echo _t("외부 편집기가 사용할 수 있는 주소를 만들어 주는 <strong>도우미</strong>입니다.").'<br />'.
_t("BlogAPI를 사용하는 편집기들은 이 블로그로 글을 보내기 위하여 'API 주소'를 사용합니다.").' '.
_t("편집기에 미리 정한 분류로 글을 보내는 기능이 없거나, 글들을 일괄적으로 하나의 분류로 작성하고자 할 때 이 도우미를 사용해서 주소를 만든 후 복사해서 사용하시기 바랍니다.");?></label></p>
<p><label for="apientry"><?php echo _t('외부 편집기가 사용할 수 있는 주소를 만들어 주는 <strong>도우미</strong>입니다.').'<br />'.
_t('BlogAPI를 사용하는 편집기들은 이 블로그로 글을 보내기 위하여 API 주소를 사용합니다.').' '.
_t('편집기에 미리 정한 분류로 글을 보내는 기능이 없거나, 글들을 일괄적으로 하나의 분류로 작성하고자 할 때 이 도우미를 사용해서 주소를 만든 후 복사해서 사용하시기 바랍니다.');?></label></p>
</dd>
</dl>
</div>
Expand Down

0 comments on commit 0679ffb

Please sign in to comment.