mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-01 00:02:21 +09:00
HTML, CSS, Web Accessibility...
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9675 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
349434a372
commit
341bfa73ed
26 changed files with 451 additions and 578 deletions
|
|
@ -166,18 +166,11 @@
|
|||
<value xml:lang="zh-TW"><![CDATA[請輸入簡介。 也可輸入相關管理使用說明。]]></value>
|
||||
</item>
|
||||
<item name="about_feed_copyright">
|
||||
<value xml:lang="ko"><![CDATA[발행될 피드에 대한 저작권 정보를 입력하실 수 있습니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[You can enter copyright information on the RSS feed.]]></value>
|
||||
<value xml:lang="jp"><![CDATA[発行するRSSのコンテンツに対する著作権情報です。]]></value>
|
||||
<value xml:lang="zh-CN"><![CDATA[RSS Feed版权信息。]]></value>
|
||||
<value xml:lang="zh-TW"><![CDATA[請輸入 Feed 著作權資料。]]></value>
|
||||
</item>
|
||||
<item name="about_part_feed_copyright">
|
||||
<value xml:lang="ko"><![CDATA[입력하지 않으면 전체 피드 저작권 설정과 동일하게 적용됩니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[If you don't enter this, the copyright of the entire RSS feeds is applied.]]></value>
|
||||
<value xml:lang="jp"><![CDATA[未入力の場合、全体RSS著作権の設定と同様に適用されます。]]></value>
|
||||
<value xml:lang="zh-CN"><![CDATA[留空版权信息参照整站RSS的版权信息。]]></value>
|
||||
<value xml:lang="zh-TW"><![CDATA[著作權將會適用所有的 Feed 內容。]]></value>
|
||||
<value xml:lang="ko"><![CDATA[발행될 피드에 대한 저작권 정보를 입력하실 수 있습니다. 입력하지 않으면 전체 피드 저작권 설정과 동일하게 적용됩니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[You can enter copyright information on the RSS feed. If you don't enter this, the copyright of the entire RSS feeds is applied.]]></value>
|
||||
<value xml:lang="jp"><![CDATA[発行するRSSのコンテンツに対する著作権情報です。未入力の場合、全体RSS著作権の設定と同様に適用されます。]]></value>
|
||||
<value xml:lang="zh-CN"><![CDATA[RSS Feed版权信息。留空版权信息参照整站RSS的版权信息。]]></value>
|
||||
<value xml:lang="zh-TW"><![CDATA[請輸入 Feed 著作權資料。著作權將會適用所有的 Feed 內容。]]></value>
|
||||
</item>
|
||||
<item name="about_feed_document_count">
|
||||
<value xml:lang="ko"><![CDATA[피드 한 페이지에 공개되는 글 수. (기본 값 : 15)]]></value>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<form ruleset="insertRssModuleConfig" action="./" method="post">
|
||||
<form ruleset="insertRssModuleConfig" action="./" method="post" class="form">
|
||||
<input type="hidden" name="act" value="procRssAdminInsertModuleConfig" />
|
||||
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
|
||||
<input type="hidden" name="target_module_srl" value="{$rss_config->module_srl?$rss_config->module_srl:$module_srls}" />
|
||||
|
|
@ -8,9 +8,9 @@
|
|||
<div class="table">
|
||||
<table width="100%" border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th scope="row">{$lang->open_rss}</th>
|
||||
<td >
|
||||
<select name="open_rss" class="w200">
|
||||
<th scope="row"><label for="open_rss">{$lang->open_rss}</label></th>
|
||||
<td class="text">
|
||||
<select name="open_rss" id="open_rss">
|
||||
<!--@foreach($lang->open_rss_types as $key=>$val)-->
|
||||
<option value="{$key}" <!--@if(!$rss_config->open_rss && $key=='N')-->selected="selected"<!--@elseif($rss_config->open_rss==$key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
|
|
@ -18,26 +18,26 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->open_feed_to_total}</th>
|
||||
<td >
|
||||
<select name="open_total_feed" class="w200">
|
||||
<th scope="row"><label for="open_total_feed">{$lang->open_feed_to_total}</label></th>
|
||||
<td class="text">
|
||||
<select name="open_total_feed" id="open_total_feed">
|
||||
<option value="N" <!--@if(!$rss_config->open_total_feed || $rss_config->open_total_feed == 'N')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
||||
<option value="T_N" <!--@if($rss_config->open_total_feed == 'T_N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->description}</th>
|
||||
<td >
|
||||
<textarea name="feed_description" >{$rss_config->feed_description}</textarea>
|
||||
<p>{$lang->about_feed_description}</p>
|
||||
<th scope="row"><label for="feed_description">{$lang->description}</label></th>
|
||||
<td class="text">
|
||||
<textarea name="feed_description" id="feed_description">{$rss_config->feed_description}</textarea>
|
||||
<p class="desc">{$lang->about_feed_description}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->feed_copyright}</th>
|
||||
<td >
|
||||
<input type="text" name="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" />
|
||||
<p>{$lang->about_feed_copyright}<br />{$lang->about_part_feed_copyright}</p>
|
||||
<th scope="row"><label for="feed_copyright">{$lang->feed_copyright}</label></th>
|
||||
<td class="text">
|
||||
<input type="text" name="feed_copyright" id="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" />
|
||||
<p class="desc">{$lang->about_feed_copyright}</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue