mkdir $$lang; \
cd $$lang; \
echo -n "Translate '$$lang' ..."; \
- for f in `ls -1 ../templates`; do \
- $(PO2HTML) --progress=none -i ../$$lang.po -t ../templates/$$f >$$f || exit 1; \
+ for f in `ls -1 ../$(srcdir)/templates`; do \
+ $(PO2HTML) --progress=none -i ../$(srcdir)/$$lang.po -t ../$(srcdir)/templates/$$f >$$f || exit 1; \
done; \
echo "done."; \
cd ..; \
-/* Stylesheet for Squid Error pages */
+/*
+ Stylesheet for Squid Error pages
+ Adapted from design by Free CSS Templates
+ http://www.freecsstemplates.org
+ Released for free under a Creative Commons Attribution 2.5 License
+*/
/* Page basics */
+* {
+ font-family: verdana, sans-serif;
+}
+
html body {
- background-color: #ffffff;
- font-family: verdana,sans-serif;
+ margin: 0;
+ padding: 0;
+ background: #efefef;
+ font-size: 12px;
+ color: #1e1e1e;
}
/* Page displayed title area */
#titles {
+ margin-left: 15px;
+ padding: 10px;
+ padding-left: 100px;
+ background: url('http://www.squid-cache.org/Artwork/SN.png') no-repeat left;
}
/* initial title */
#titles h1 {
+ color: #000000;
}
#titles h2 {
+ color: #000000;
}
/* special event: FTP success page titles */
/* Page displayed body content area */
#content {
+ padding: 10px;
+ background: #ffffff;
}
/* General text */
/* horizontal lines */
hr {
+ margin: 0;
}
/* page displayed footer area */
#footer {
- width: 100%;
+ font-size: 9px;
+ padding-left: 10px;
}