summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/i18n.patch
blob: cc46a55586e30dc2f14933cbf748646a6cf64c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- turbogears/command/i18n.py.orig	2008-02-07 16:40:14.000000000 -0500
+++ turbogears/command/i18n.py	2008-02-07 16:40:43.000000000 -0500
@@ -251,7 +251,12 @@
                 if self.options.loose_kid_support or el.get('lang', None):
                     tag = re.sub('({[^}]+})?(\w+)', '\\2', el.tag)
                     ents = []
-                    if el.text: ents = [el.text.strip()]
+                    if el.text and not ( el.text.strip() in keys):
+                        if el.tag == "script":
+                            ents = [el.text.strip()]
+                        else:
+                            messages.append((tag, fname, el.text.strip()))
+                            keys.append(el.text.strip())
                     if el.attrib: ents.extend(el.attrib.values())
                     for k in ents:
                         key = None