Changeset 2260 for trunk/template
- Timestamp:
- Mar 7, 2008, 3:07:55 AM (17 years ago)
- Location:
- trunk/template/yoga
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/yoga/admin/plugin.tpl
r2222 r2260 1 <!-- DEV TAG: not smarty migrated --> 1 {* $Id$ *} 2 2 <div class="titrePage"> 3 <h2>{ PLUGIN_TITLE}</h2>3 <h2>{$PLUGIN_TITLE}</h2> 4 4 </div> 5 5 6 6 7 { PLUGIN_ADMIN_CONTENT}7 {$PLUGIN_ADMIN_CONTENT} -
trunk/template/yoga/admin/profile.tpl
r2222 r2260 1 <!-- DEV TAG: not smarty migrated --> 1 {* $Id$ *} 2 2 <div class="titrePage"> 3 <h2>{ lang:Profile}</h2>3 <h2>{'Profile'|@translate}</h2> 4 4 </div> 5 5 6 { PROFILE_CONTENT}6 {$PROFILE_CONTENT} -
trunk/template/yoga/admin/upload.tpl
r2222 r2260 1 <!-- DEV TAG: not smarty migrated --> 2 <!-- $Id$ --> 1 {* $Id$ *} 3 2 <div class="titrePage"> 4 <h2>{ lang:waiting} {TABSHEET_TITLE}</h2>5 { TABSHEET}3 <h2>{'waiting'|@translate} {$TABSHEET_TITLE}</h2> 4 {$TABSHEET} 6 5 </div> 7 6 8 <h3>{ lang:title_upload}</h3>7 <h3>{'title_upload'|@translate}</h3> 9 8 10 <form action="{ F_ACTION}" method="post" id="waiting">11 <table style="width: 100%;" >9 <form action="{$F_ACTION}" method="post" id="waiting"> 10 <table style="width:99%;" > 12 11 <tr class="throw"> 13 <th style="width:20%;">{ lang:category}</th>14 <th style="width:20%;">{ lang:date}</th>15 <th style="width:20%;">{ lang:file}</th>16 <th style="width:20%;">{ lang:thumbnail}</th>17 <th style="width:20%;">{ lang:Author}</th>12 <th style="width:20%;">{'category'|@translate}</th> 13 <th style="width:20%;">{'date'|@translate}</th> 14 <th style="width:20%;">{'file'|@translate}</th> 15 <th style="width:20%;">{'thumbnail'|@translate}</th> 16 <th style="width:20%;">{'Author'|@translate}</th> 18 17 <th style="width:1px;"> </th> 19 18 </tr> 20 <!-- BEGIN picture --> 21 <tr> 22 <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">{picture.CATEGORY_IMG}</td> 23 <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">{picture.DATE_IMG}</td> 24 <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;"> 25 <a href="{picture.PREVIEW_URL_IMG}" title="{picture.FILE_TITLE}">{picture.FILE_IMG}</a> 19 20 {if not empty($pictures) } 21 {foreach from=$pictures item=picture name=picture_loop} 22 <tr class="{if $smarty.foreach.picture_loop.index is odd}row1{else}row2{/if}"> 23 <td style="white-space:nowrap;">{$picture.CATEGORY_IMG}</td> 24 <td style="white-space:nowrap;">{$picture.DATE_IMG}</td> 25 <td style="white-space:nowrap;"> 26 <a href="{$picture.PREVIEW_URL_IMG}" title="{$picture.FILE_TITLE}">{$picture.FILE_IMG}</a> 26 27 </td> 27 <td class="{picture.WAITING_CLASS}"style="white-space:nowrap;">28 <!-- BEGIN thumbnail -->29 <a href="{ picture.thumbnail.PREVIEW_URL_TN_IMG}" title="{picture.thumbnail.FILE_TN_TITLE}">{picture.thumbnail.FILE_TN_IMG}</a>30 <!-- END thumbnail -->28 <td style="white-space:nowrap;"> 29 {if not empty($picture.thumbnail) } 30 <a href="{$picture.thumbnail.PREVIEW_URL_TN_IMG}" title="{$picture.thumbnail.FILE_TN_TITLE}">{$picture.thumbnail.FILE_TN_IMG}</a> 31 {/if} 31 32 </td> 32 <td class="{picture.WAITING_CLASS}"style="white-space:nowrap;">33 <a href="mailto:{ picture.UPLOAD_EMAIL}">{picture.UPLOAD_USERNAME}</a>33 <td style="white-space:nowrap;"> 34 <a href="mailto:{$picture.UPLOAD_EMAIL}">{$picture.UPLOAD_USERNAME}</a> 34 35 </td> 35 <td class="{picture.WAITING_CLASS}"style="white-space:nowrap;">36 <label><input type="radio" name="action-{ picture.ID_IMG}" value="validate" /> {lang:Validate}</label>37 <label><input type="radio" name="action-{ picture.ID_IMG}" value="reject" /> {lang:Reject}</label>36 <td style="white-space:nowrap;"> 37 <label><input type="radio" name="action-{$picture.ID_IMG}" value="validate" /> {'Validate'|@translate}</label> 38 <label><input type="radio" name="action-{$picture.ID_IMG}" value="reject" /> {'Reject'|@translate}</label> 38 39 </td> 39 40 </tr> 40 <!-- END picture --> 41 {/foreach} 42 {/if} 41 43 </table> 42 44 43 45 <p class="bottomButtons"> 44 <input type="hidden" name="list" value="{ LIST}" />45 <input class="submit" type="submit" name="submit" value="{ lang:Submit}" {TAG_INPUT_ENABLED}/>46 <input class="submit" type="submit" name="validate-all" value="{ lang:Validate All}" {TAG_INPUT_ENABLED}/>47 <input class="submit" type="submit" name="reject-all" value="{ lang:Reject All}" {TAG_INPUT_ENABLED}/>48 <input class="submit" type="reset" value="{ lang:Reset}" />46 <input type="hidden" name="list" value="{$LIST}" /> 47 <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}/> 48 <input class="submit" type="submit" name="validate-all" value="{'Validate All'|@translate}" {$TAG_INPUT_ENABLED}/> 49 <input class="submit" type="submit" name="reject-all" value="{'Reject All'|@translate}" {$TAG_INPUT_ENABLED}/> 50 <input class="submit" type="reset" value="{'Reset'|@translate}" /> 49 51 </p> 50 52 -
trunk/template/yoga/admin/ws_checker.tpl
r2222 r2260 1 <!-- DEV TAG: not smarty migrated --> 2 <!-- $Id$ --> 1 {* $Id$ *} 3 2 4 3 <div class="titrePage"> 5 4 <ul class="categoryActions"> 6 <li><a href="{ U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li>5 <li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$themeconf.icon_dir}/help.png" class="button" alt="(?)"></a></li> 7 6 </ul> 8 <h2>{ lang:title_wscheck} - {lang:web_services}</h2>7 <h2>{'title_wscheck'|@translate} - {'web_services'|@translate}</h2> 9 8 </div> 10 9 11 <!-- BEGIN update_result --> 10 {if !empty($update_results)} 12 11 <ul> 13 {update_result.UPD_ELEMENT} 12 {foreach from=$update_results item=result} 13 <li>$result</li> 14 {/foreach} 14 15 </ul> 15 <!-- END update_result --> 16 17 <!-- Add Access --> 18 <form method="post" name="adding_access" action="{ F_STATUS_ACTION}">16 {/if} 17 18 {* Add Access *} 19 <form method="post" name="adding_access" action="{$F_STATUS_ACTION}"> 19 20 <!-- Current Default --> 20 21 <fieldset> 21 <legend>{ lang:ws_adding_legend}</legend>22 <legend>{'ws_adding_legend'|@translate}</legend> 22 23 <table> 23 <!-- Access key -->24 <tr> 25 <td> 26 <label for="KeyName">{ lang:Confidential partner key} </label>24 {* Access key *} 25 <tr> 26 <td> 27 <label for="KeyName">{'Confidential partner key'|@translate} </label> 27 28 </td> 28 29 <td> 29 30 <input type="text" maxlength="35" size="35" name="add_partner" 30 id="add_partner" value="{ F_ADD_PARTNER}"31 title="{ lang:Basis of access key calculation}" />32 </td> 33 </tr> 34 35 <!-- Target (cat/ids, tag/ids, or list/ids ids=id,id-id,...) -->36 <tr> 37 <td> 38 <label for="Access">{ lang:Target}</label>31 id="add_partner" value="{$F_ADD_PARTNER}" 32 title="{'Basis of access key calculation'|@translate}" /> 33 </td> 34 </tr> 35 36 {* Target (cat/ids, tag/ids, or list/ids ids=id,id-id,...) *} 37 <tr> 38 <td> 39 <label for="Access">{'Target'|@translate}</label> 39 40 </td> 40 41 <td> 41 42 <input type="text" maxlength="128" size="35" name="add_target" 42 id="add_target" value="{ F_ADD_ACCESS}"43 title="{ lang:Facultative and restrictive option}" />44 <i><small> ({ lang:Access: see help text for more})43 id="add_target" value="{$F_ADD_ACCESS}" 44 title="{'Facultative and restrictive option'|@translate}" /> 45 <i><small> ({'Access: see help text for more'|@translate}) 45 46 </small></i> 46 47 </td> 47 48 </tr> 48 49 49 <!-- Restricted access to specific request -->50 <tr> 51 <td> 52 <label for="add_request">{ lang:Restrict access to}</label>50 {* Restricted access to specific request *} 51 <tr> 52 <td> 53 <label for="add_request">{'Restrict access to'|@translate}</label> 53 54 </td> 54 55 <td> … … 56 57 onfocus="this.className='focus';" 57 58 onblur="this.className='nofocus';"> 58 <!-- BEGIN add_request --> 59 <option value="{add_request.VALUE}" 60 {add_request.SELECTED}>{add_request.CONTENT} 61 </option> 62 <!-- END add_request --> 59 <option value=""></option> 60 {html_options values=$add_requests output=$add_requests} 63 61 </select> 64 <i><small> ({ lang:ws_Methods})</small></i>65 </td> 66 </tr> 67 68 <!-- Limit number of images information to be return -->62 <i><small> ({'ws_Methods'|@translate})</small></i> 63 </td> 64 </tr> 65 66 {* Limit number of images information to be return *} 69 67 <tr> 70 68 <td> 71 <label for="add_limit">{ lang:Returned images limit}</label>69 <label for="add_limit">{'Returned images limit'|@translate}</label> 72 70 </td> 73 71 <td> … … 75 73 onfocus="this.className='focus';" 76 74 onblur="this.className='nofocus';"> 77 <!-- BEGIN add_limit --> 78 <option value="{add_limit.VALUE}" 79 {add_limit.SELECTED}>{add_limit.CONTENT} 80 </option> 81 <!-- END add_limit --> 75 {html_options values=$add_limits output=$add_limits} 82 76 </select> 83 77 </td> 84 78 </tr> 85 79 86 <!-- Open service is postponed by n days -->87 <!--In comment currently88 <tr> 89 <td> 90 <label for="add_start">{ lang:Postponed availability in days}</label>80 {* Open service is postponed by n days *} 81 {* In comment currently 82 <tr> 83 <td> 84 <label for="add_start">{'Postponed availability in days'|@translate}</label> 91 85 </td> 92 86 <td> … … 101 95 </select> 102 96 </td> 103 </tr> --> 104 105 <!-- Opened service only for n days --> 106 <tr> 107 <td> 108 <label for="add_end">{lang:Duration in days}</label> 97 </tr> 98 *} 99 100 {* Opened service only for n days *} 101 <tr> 102 <td> 103 <label for="add_end">{'Duration in days'|@translate}</label> 109 104 </td> 110 105 <td> … … 112 107 onfocus="this.className='focus';" 113 108 onblur="this.className='nofocus';"> 114 <!-- BEGIN add_end --> 115 <option value="{add_end.VALUE}" 116 {add_end.SELECTED}>{add_end.CONTENT} 117 </option> 118 <!-- END add_end --> 109 {html_options values=$add_ends output=$add_ends} 119 110 </select> 120 111 </td> 121 112 </tr> 122 113 123 <!-- Idendify your partner (name / website / phone) as you want -->124 <tr> 125 <td> 126 <label for="add_Comment">{ lang:ws_Comment}</label>114 {* Idendify your partner (name / website / phone) as you want *} 115 <tr> 116 <td> 117 <label for="add_Comment">{'ws_Comment'|@translate}</label> 127 118 <br /> 128 119 </td> 129 120 <td> 130 121 <textarea name="add_comment" id="add_comment" 131 rows="4" cols="80">{ lang:Comment to identify your partner clearly}</textarea>132 </td> 133 </tr> 134 135 <!-- Add submit button -->122 rows="4" cols="80">{'Comment to identify your partner clearly'|@translate}</textarea> 123 </td> 124 </tr> 125 126 {* Add submit button *} 136 127 <tr> 137 128 <td> … … 139 130 <td> 140 131 <input class="submit" type="submit" name="wsa_submit" style="width: 10em; padding-top: 3px;" 141 value="{ lang:Submit}" {TAG_INPUT_ENABLED}142 title="{ lang:Add this access definition}" />132 value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED} 133 title="{'Add this access definition'|@translate}" /> 143 134 </td> 144 135 </tr> … … 147 138 </form> 148 139 149 <!-- BEGIN acc_list --> 140 {if !empty($access_list)} 150 141 <!-- Access list --> 151 <form method="post" name="preferences" action="{ F_STATUS_ACTION}">152 <input type="hidden" name="partner_prev" value="{ F_PREV_PARTNER}">153 <input type="hidden" name="request_prev" value="{ F_PREV_REQUEST}">154 <input type="hidden" name="high_prev" value="{ F_PREV_HIGH}">155 <input type="hidden" name="normal_prev" value="{ F_PREV_NORMAL}">156 <input type="hidden" name="order_prev" value="{ F_PREV_ORDER}">157 <input type="hidden" name="dir5n_prev" value="{ F_PREV_DIR5N}">142 <form method="post" name="preferences" action="{$F_STATUS_ACTION}"> 143 <input type="hidden" name="partner_prev" value="{$F_PREV_PARTNER}"> 144 <input type="hidden" name="request_prev" value="{$F_PREV_REQUEST}"> 145 <input type="hidden" name="high_prev" value="{$F_PREV_HIGH}"> 146 <input type="hidden" name="normal_prev" value="{$F_PREV_NORMAL}"> 147 <input type="hidden" name="order_prev" value="{$F_PREV_ORDER}"> 148 <input type="hidden" name="dir5n_prev" value="{$F_PREV_DIR5N}"> 158 149 <!-- Delete / Update Selected --> 159 150 <fieldset> 160 <legend>{ lang:ws_update_legend}</legend>151 <legend>{'ws_update_legend'|@translate}</legend> 161 152 <table class="table2"> 162 153 <tr class="throw"> 163 154 <th> </th> 164 <th>{ lang:ws_KeyName}</th>165 <th>{ lang:ws_Access}</th>166 <th>{ lang:ws_End}</th>167 <th>{ lang:ws_Request}</th>168 <th>{ lang:ws_Limit}</th>169 <th>{ lang:ws_Comment}</th>170 </tr> 171 <!-- BEGIN access -->172 <tr class="{ acc_list.access.CLASS}">155 <th>{'ws_KeyName'|@translate}</th> 156 <th>{'ws_Access'|@translate}</th> 157 <th>{'ws_End'|@translate}</th> 158 <th>{'ws_Request'|@translate}</th> 159 <th>{'ws_Limit'|@translate}</th> 160 <th>{'ws_Comment'|@translate}</th> 161 </tr> 162 {foreach from=$access_list item=access name=access_loop} 163 <tr class="{if $smarty.foreach.access_loop.index is odd}row1{else}row2{/if}"> 173 164 <td> 174 165 <input type="radio" name="selection" 175 value="{ acc_list.access.ID}" id="selection-{acc_list.access.ID}">176 </td> 177 <td><label for="selection-{ acc_list.access.ID}">{acc_list.access.NAME}</label></td>178 <td>{ acc_list.access.TARGET}</td>179 <td>{ acc_list.access.END}</td>180 <td>{ acc_list.access.REQUEST}</td>181 <td>{ acc_list.access.LIMIT}</td>182 <td>{ acc_list.access.COMMENT}</td>183 </tr> 184 <!-- END user -->166 value="{$access.ID}" id="selection-{$access.ID}"> 167 </td> 168 <td><label for="selection-{$access.ID}">{$access.NAME}</label></td> 169 <td>{$access.TARGET}</td> 170 <td>{$access.END}</td> 171 <td>{$access.REQUEST}</td> 172 <td>{$access.LIMIT}</td> 173 <td>{$access.COMMENT}</td> 174 </tr> 175 {/foreach} 185 176 </table> 186 177 … … 188 179 <tr> 189 180 <td> 190 { lang:ws_delete_legend}181 {'ws_delete_legend'|@translate} 191 182 </td> 192 183 <td> … … 194 185 value="true"> 195 186 <input class="submit" type="submit" name="wsX_submit" style="width: 10em; padding-top: 3px;" 196 value="{ lang:Delete}" {TAG_INPUT_ENABLED}>187 value="{'Delete'|@translate}" {$TAG_INPUT_ENABLED}> 197 188 </td> 198 189 </tr> … … 203 194 <td> 204 195 <span class="property"> 205 <label for="upd_end">{ lang:Modify End from Now +} </label>196 <label for="upd_end">{'Modify End from Now +'|@translate} </label> 206 197 </span> 207 198 <select name="upd_end" id="upd_end" style="width: 10em" 208 199 onfocus="this.className='focus';" 209 200 onblur="this.className='nofocus';"> 210 <!-- BEGIN upd_end --> 211 <option value="{acc_list.upd_end.VALUE}" {acc_list.upd_end.SELECTED}> 212 {acc_list.upd_end.CONTENT} 213 </option> 214 <!-- END upd_end --> 201 {html_options values=$add_ends output=$add_ends} 215 202 </select> 216 203 <input class="submit" type="submit" name="wsu_submit" style="width: 10em; padding-top: 3px;" 217 value="{ lang:Submit}" {TAG_INPUT_ENABLED}>218 </td> 219 <td> 220 <i><small> ({ lang:Web Services availability duration in days})</small></i>204 value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}> 205 </td> 206 <td> 207 <i><small> ({'Web Services availability duration in days'|@translate})</small></i> 221 208 </td> 222 209 </tr> … … 225 212 </fieldset> 226 213 </form> 227 <!-- BEGIN ws_status --> 228 <h3>{acc_list.ws_status.VALUE}</h3> 229 <!-- END ws_status --> 230 <!-- END acc_list --> 214 {/if} 215 216 {if isset($WS_STATUS)} 217 <h3>{$WS_STATUS}</h3> 218 {/if} -
trunk/template/yoga/upgrade.tpl
-
Property
svn:eol-style
set to
LF
-
Property
svn:keywords
set to
Author Date Id Revision
-
Property
svn:eol-style
set to
Note: See TracChangeset
for help on using the changeset viewer.