diff options
author | John Terpstra <jht@samba.org> | 2003-07-26 17:46:47 +0000 |
---|---|---|
committer | John Terpstra <jht@samba.org> | 2003-07-26 17:46:47 +0000 |
commit | 50548f4ddc4d0ada8d6efe892305be714c670080 (patch) | |
tree | e1601e637983d9b78a89fcd16c4bb92c8c62b043 /source3/web | |
parent | a2214fc4253c3d05c3acc9c718adcac2f4b0fe28 (diff) | |
download | samba-50548f4ddc4d0ada8d6efe892305be714c670080.tar.gz samba-50548f4ddc4d0ada8d6efe892305be714c670080.tar.bz2 samba-50548f4ddc4d0ada8d6efe892305be714c670080.zip |
Format tidy up.
(This used to be commit 79d6e72af56838bdc1da437f76c905a47da0c0da)
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/swat.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index 074f5138a3..85623ed168 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -519,15 +519,14 @@ static void show_main_buttons(void) ****************************************************************************/ static void ViewModeBoxes(int mode) { - d_printf("<p>%s\n", _("Configuration View:  Current View is: ")); + d_printf("<p>%s\n", _("Current View Is:  \n")); d_printf("<input type=radio name=\"ViewMode\" value=0 %s>Basic\n", (mode == 0) ? "checked" : ""); d_printf("<input type=radio name=\"ViewMode\" value=1 %s>Advanced\n", (mode == 1) ? "checked" : ""); d_printf("<input type=radio name=\"ViewMode\" value=2 %s>Developer\n", (mode == 2) ? "checked" : ""); - d_printf("</p><br>\n"); - d_printf("<p>%s\n", _("Change View To: ")); - d_printf("<input type=submit name=\"BasicMode\" value=\"%s\">\n", _("Basic Mode")); - d_printf("<input type=submit name=\"AdvMode\" value=\"%s\">\n", _("Advanced Mode")); - d_printf("<input type=submit name=\"DevMode\" value=\"%s\">\n", _("Developer Mode")); + d_printf("<br>%s\n", _("Change View To: ")); + d_printf("<input type=submit name=\"BasicMode\" value=\"%s\">\n", _("Basic")); + d_printf("<input type=submit name=\"AdvMode\" value=\"%s\">\n", _("Advanced")); + d_printf("<input type=submit name=\"DevMode\" value=\"%s\">\n", _("Developer")); d_printf("</p><br>\n"); } |