Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPootle Translation <pootle@dev.laptop.org>2008-05-27 04:30:07 (GMT)
committer Pootle Translation <pootle@dev.laptop.org>2008-05-27 04:30:07 (GMT)
commit8900ef5f0fcf5005234f25023acdced1a37387de (patch)
tree579559a2b4d3851865d91eab115e0cf78191f312 /scripts
parent89767dd1d5d472fc9f13139497ea575e30330af8 (diff)
parentd898ded314ef368770fd8a01cb7ef8cef1065dd3 (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/projects/tamtam
Diffstat (limited to 'scripts')
-rw-r--r--scripts/genpolist.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/genpolist.py b/scripts/genpolist.py
new file mode 100644
index 0000000..558926f
--- /dev/null
+++ b/scripts/genpolist.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+
+import os
+
+activities = ['../' + rep for rep in os.listdir('../') if rep.endswith('activity')]
+for activity in activities:
+ for f in sorted(os.listdir(os.path.join(activity,'po'))):
+ print 'po/' + f
+ \ No newline at end of file