summaryrefslogtreecommitdiff
path: root/po/remove-potcdate
diff options
context:
space:
mode:
Diffstat (limited to 'po/remove-potcdate')
-rwxr-xr-xpo/remove-potcdate11
1 files changed, 11 insertions, 0 deletions
diff --git a/po/remove-potcdate b/po/remove-potcdate
new file mode 100755
index 0000000..069a1de
--- /dev/null
+++ b/po/remove-potcdate
@@ -0,0 +1,11 @@
+#! /usr/bin/perl -n
+
+BEGIN {
+ $seen_potcdate = 0;
+}
+
+if (not $seen_potcdate and /^"POT-Creation-Date: .*"/) {
+ $seen_potcdate = 1;
+ next;
+}
+print;