mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 21:59:55 +09:00
Move select label(first option) to title attribute.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12038 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5589aed53a
commit
ab8cd6f262
14 changed files with 50 additions and 91 deletions
|
|
@ -2504,4 +2504,8 @@
|
|||
<value xml:lang="ko"><![CDATA[<h2>로그인 실패 기록을 알려드립니다.</h2>%1$s<hr /><p>* 비밀번호를 틀리는 등의 일이 없었는데 이 메시지를 보신다면, 계정 관리에 유의 바랍니다.<br />* 이 메시지는 로그인이 성공한 순간 누적 로그인 실패 기록이 많을 경우, 로그인 성공 이전 실패 기록을 모아서 발송합니다.<br />발송 시각: %2$s</p>]]></value>
|
||||
<value xml:lang="en"><![CDATA[<h2>There is recorded sign in failures.</h2>%1$s<hr /><p>* This notification is shown once.<br />* This message contains sign in failure records, before a ID sign in success.<br />Sending: %2$s</p>]]></value>
|
||||
</item>
|
||||
<item name="all_group">
|
||||
<value xml:lang="ko"><![CDATA[그룹전체]]></value>
|
||||
<value xml:lang="en"><![CDATA[Entire Group]]></value>
|
||||
</item>
|
||||
</lang>
|
||||
|
|
|
|||
|
|
@ -136,14 +136,13 @@
|
|||
</div>
|
||||
<form action="" method="post" class="search center x_input-append">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<select name="selected_group_srl" style="width:auto;margin-right:4px">
|
||||
<option value="0">그룹 전체</option>
|
||||
<select name="selected_group_srl" style="margin-right:4px">
|
||||
<option value="0">{$lang->all_group}</option>
|
||||
<!--@foreach($group_list as $key => $val)-->
|
||||
<option value="{$val->group_srl}" <!--@if($selected_group_srl==$val->group_srl)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<select name="search_target" style="width:auto;margin-right:4px">
|
||||
<option value="">{$lang->search_target}</option>
|
||||
<select name="search_target" style="margin-right:4px" title="{$lang->search_target}">
|
||||
{@$lang->search_target_list = array_merge($lang->search_target_list, $usedIdentifiers)}
|
||||
<option value="{$key}" loop="$lang->search_target_list=>$key,$val" selected="selected"|cond="$search_target==$key">{$val}</option>
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue