diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-09-06 12:55:02 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-09-06 12:55:02 +0200 |
commit | b689d61d6a800ef8a74f74f08f05218770e0f52d (patch) | |
tree | da884f9eb3c93b66e60a361e3e730a044533d0f4 /template/default/rec_edit.html | |
parent | 8652aa0a9b228e21df5dd68ccf83badb5e20bab8 (diff) | |
download | vdradmin-am-b689d61d6a800ef8a74f74f08f05218770e0f52d.tar.gz vdradmin-am-b689d61d6a800ef8a74f74f08f05218770e0f52d.tar.bz2 |
2006-09-06: 3.4.7betav3.4.7beta
- Fixed: Smaller bugs (see ChangeLog).
- Changed: Hide select boxes for templates and skins if it contains only a single choice.
- Fixed: Another fix for the refering pages problem(s).
- Changed: Hide "AutoTimer" menu item unless $FEATURE{AUTOTIMER} is set.
- Changed: Use date instead of empty subtitle in timers programed by AutoTimer with activated "Episode" option.
- Fixed: Don't show outdated broadcast as search result.
- Added: Display warning message if lists is empty.
- Added: UTF8 locales patch by Zoolook (see Bug #124).
- Fixed: AutoTimer test feature didn't find broadcasts if they were in vdradmind.done.
- Removed: HTML::Template dependency.
- Changed: Only use Template-Toolkit's Template.pm.
- Fixed: Hide "switch" button in prog_summary2 if broadcast is not running (Based on suggestion by Hardy Flor).
- Fixed: Initial display of rec_list was empty.
- Added: New PLAY and EDIT actions in rec_list.
- Added: Remember selected size and interval in TV.
- Added: check for features available with VDR's SVDRP, disable missing ones and show them in about.html (ATM used for RENR).
- Changed: handling of sorting in rec_list (should always keep the current sorting).
- Changed: handling of sorting in at_timer_list (should always keep the current sorting).
- New: option to autosave config on exit (also saves sorting state in lists and viewmode in prog_summary).
- Added: Czech translation (Submitted by Karel Borkovec).
- Changed: handling of sorting in timer_list (should always keep the current sorting).
- Changed: Moved favicon.ico from a template's skin folder to the template's main folder.
Diffstat (limited to 'template/default/rec_edit.html')
-rw-r--r-- | template/default/rec_edit.html | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/template/default/rec_edit.html b/template/default/rec_edit.html index 784fc56..cf1e6ca 100644 --- a/template/default/rec_edit.html +++ b/template/default/rec_edit.html @@ -2,53 +2,53 @@ <html> <head> - <meta http-equiv="content-type" content="text/html;charset=<%! ISO-8859-1 !%>" /> - <title>VDRAdmin-AM - <%! Rename Recording !%></title> + <meta http-equiv="content-type" content="text/html;charset=<?% gettext('ISO-8859-1') %?>" /> + <title>VDRAdmin-AM - <?% gettext('Rename Recording') %?></title> <link href="style.css" rel="stylesheet" media="screen" type="text/css" /> - <tmpl_if usercss> + <?% IF usercss %?> <link href="user.css" rel="stylesheet" media="screen" type="text/css" /> - </tmpl_if> + <?% END %?> <script type="text/javascript" language="JavaScript1.2" src="library.js"></script> </head> <body id="rec_edit"> - <form action="<tmpl_var url>" method="get" name="form"> + <form action="<?% url %?>" method="get" name="form"> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading"> <tr> <td class="col_title"> - <h1><%! Rename Recording !%></h1> + <h1><?% gettext('Rename Recording') %?></h1> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="content" class="group"> <tr class="row_odd"> - <td class="col_label"><h5><%! Original Name of Recording: !%></h5></td> - <td class="col_value"><tmpl_var title></td> + <td class="col_label"><h5><?% gettext('Original Name of Recording:') %?></h5></td> + <td class="col_value"><?% title %?></td> </tr> <tr class="row_even"> - <td class="col_label"><h5><%! New Name of Recording: !%></h5></td> - <td class="col_value"><input type="text" name="nn" value="<tmpl_var title>" size="55" /></td> + <td class="col_label"><h5><?% gettext('New Name of Recording:') %?></h5></td> + <td class="col_value"><input type="text" name="nn" value="<?% title %?>" size="55" /></td> </tr> <tr class="row_odd"> - <td class="col_label"><h5><%! Subtitle: !%></h5></td> - <td class="col_value"><tmpl_if subtitle><tmpl_var subtitle></tmpl_if></td> + <td class="col_label"><h5><?% gettext('Subtitle:') %?></h5></td> + <td class="col_value"><?% IF subtitle %?><?% subtitle %?><?% END %?></td> </tr> <tr class="row_even"> - <td class="col_label" valign="top"><h5><%! Summary: !%></h5></td> - <td class="col_value"><tmpl_var text></td> + <td class="col_label" valign="top"><h5><?% gettext('Summary:') %?></h5></td> + <td class="col_value"><?% text %?></td> </tr> </table> <div id="buttons"> - <input type="submit" class="submit" name="save" value="<%! Rename !%>" /> - <input type="submit" class="submit" name="exit" value="<%! Cancel !%>" /> + <input type="submit" class="submit" name="save" value="<?% gettext('Rename') %?>" /> + <input type="submit" class="submit" name="exit" value="<?% gettext('Cancel') %?>" /> </div> <input type="hidden" name="aktion" value="rec_rename" /> - <input type="hidden" name="id" value="<tmpl_var id>" /> - <tmpl_if referer> - <input type="hidden" name="referer" value="<tmpl_var referer>" /> - </tmpl_if> + <input type="hidden" name="id" value="<?% id %?>" /> + <?% IF referer %?> + <input type="hidden" name="referer" value="<?% referer %?>" /> + <?% END %?> </form> </body> |