Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/svg/color.py
diff options
context:
space:
mode:
Diffstat (limited to 'svg/color.py')
-rw-r--r--svg/color.py97
1 files changed, 97 insertions, 0 deletions
diff --git a/svg/color.py b/svg/color.py
new file mode 100644
index 0000000..f54171c
--- /dev/null
+++ b/svg/color.py
@@ -0,0 +1,97 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+#Copyright (c) 2009, Sugar Labs
+
+#Permission is hereby granted, free of charge, to any person obtaining a copy
+#of this software and associated documentation files (the "Software"), to deal
+#in the Software without restriction, including without limitation the rights
+#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+#copies of the Software, and to permit persons to whom the Software is
+#furnished to do so, subject to the following conditions:
+
+#The above copyright notice and this permission notice shall be included in
+#all copies or substantial portions of the Software.
+
+#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+#THE SOFTWARE.
+
+import sys
+import os
+import os.path
+import gettext
+
+def main():
+
+ myname = "color"
+ mystring = "color"
+ mygroup = "pen"
+
+ if len(sys.argv) != 2:
+ print "Error: Usage is " + myname + ".py lang"
+ return
+
+ t = gettext.translation("org.laptop.TurtleArtActivity", "../locale", languages=[sys.argv[1]])
+ _ = t.ugettext
+ t.install()
+
+ print _(mystring)
+
+ data0 = \
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?> \n \
+<svg \n \
+ xmlns=\"http://www.w3.org/2000/svg\" \n \
+ xmlns:xlink=\"http://www.w3.org/1999/xlink\" \n \
+ width=\"105\" \n \
+ height=\"21\"> \n \
+ <defs \n \
+ id=\"defs5\"> \n \
+ <linearGradient \n \
+ id=\"linearGradient3166\"> \n \
+ <stop \n \
+ style=\"stop-color:#ffffff;stop-opacity:1;\" \n \
+ offset=\"0\" \n \
+ id=\"stop3168\" /> \n \
+ <stop \n \
+ style=\"stop-color:#00ffff;stop-opacity:1;\" \n \
+ offset=\"1\" \n \
+ id=\"stop3170\" /> \n \
+ </linearGradient> \n \
+ <linearGradient \n \
+ xlink:href=\"#linearGradient3166\" \n \
+ id=\"linearGradient3172\" \n \
+ x1=\"0\" \n \
+ y1=\"0\" \n \
+ x2=\"104\" \n \
+ y2=\"21\" \n \
+ gradientUnits=\"userSpaceOnUse\" /> \n \
+ </defs> \n \
+ <path \n \
+ style=\"fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1\" \n \
+ d=\"M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z\" /> \n \
+ <text \n \
+ style=\"font-size:16px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans\"> \n \
+ <tspan \n \
+ x=\"52\" \n \
+ y=\"15.5\" \n \
+ style=\"font-size:16px;\">"
+
+ data1 = \
+"</tspan> \n \
+ </text> \n \
+</svg> \n "
+
+ FILE = open(os.path.join("../images", sys.argv[1], mygroup, myname + ".svg"), "w")
+ FILE.write(data0)
+ FILE.write(_(mystring).encode("utf-8"))
+ FILE.write(data1)
+ FILE.close()
+ return
+
+if __name__ == "__main__":
+ main()