1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 15:01:28 +00:00

localize help dialogs

This commit is contained in:
Andrew Dolgov
2008-05-16 06:35:13 +01:00
parent ec92c9d146
commit 0745839a95
6 changed files with 54 additions and 57 deletions

View File

@@ -5517,15 +5517,15 @@
}
}
function rounded_table_start($classname) {
function rounded_table_start($classname, $header = " ") {
print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
print "<tr><td class='c1'>&nbsp;</td><td class='top'>&nbsp;</td><td class='c2'>&nbsp;</tr>";
print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</tr>";
print "<tr><td class='left'>&nbsp;</td><td class='content'>";
}
function rounded_table_end() {
function rounded_table_end($footer = "&nbsp;") {
print "</td><td class='right'>&nbsp;</td></tr>";
print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>&nbsp;</td><td class='c3'>&nbsp;</tr>";
print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</tr>";
print "</table>";
}