Revision: 4430
Author: huji
Date: 2007-10-07 17:58:37 +0000 (Sun, 07 Oct 2007)
Log Message:
-----------
Lets more modules to work with the new translate() function.
Modified Paths:
--------------
branches/pywikipedia/messages/cosmetic_changes.py
branches/pywikipedia/messages/messages.py
Modified: branches/pywikipedia/messages/cosmetic_changes.py
===================================================================
--- branches/pywikipedia/messages/cosmetic_changes.py 2007-10-06 20:33:53 UTC (rev 4429)
+++ branches/pywikipedia/messages/cosmetic_changes.py 2007-10-07 17:58:37 UTC (rev 4430)
@@ -39,31 +39,6 @@
'&warning;': warning,
}
-# Summary message when using this module as a stand-alone script
-msg_standalone = {
- 'de': u'Bot: Kosmetische Änderungen',
- 'en': u'Robot: Cosmetic changes',
- 'es': u'Robot: Cambios triviales',
- 'he': u'רובוט: שינויים קוסמטיים',
- 'lt': u'robotas: smulkūs taisymai',
- 'nl': u'Bot: Cosmetische veranderingen',
- 'pl': u'Robot dokonuje poprawek kosmetycznych',
- 'pt': u'Bot: Mudanças triviais',
-}
-
-# Summary message that will be appended to the normal message when
-# cosmetic changes are made on the fly
-msg_append = {
- 'de': u'; kosmetische Änderungen',
- 'en': u'; cosmetic changes',
- 'es': u'; cambios triviales',
- 'he': u'; שינויים קוסמטיים',
- 'lt': u'; smulkūs taisymai',
- 'nl': u'; cosmetische veranderingen',
- 'pl': u'; zmiany kosmetyczne',
- 'pt': u'; mudanças triviais',
-}
-
deprecatedTemplates = {
'wikipedia': {
'de': [
@@ -329,7 +304,7 @@
self.generator = generator
self.acceptall = acceptall
# Load default summary message.
- wikipedia.setAction(wikipedia.translate(wikipedia.getSite(), msg_standalone))
+ wikipedia.setAction(wikipedia.translate(wikipedia.getSite(), u'Robot: Cosmetic changes'))
def treat(self, page):
try:
Modified: branches/pywikipedia/messages/messages.py
===================================================================
--- branches/pywikipedia/messages/messages.py 2007-10-06 20:33:53 UTC (rev 4429)
+++ branches/pywikipedia/messages/messages.py 2007-10-07 17:58:37 UTC (rev 4430)
@@ -193,4 +193,25 @@
'fa': u'برداشتن',
'it': u'Rimozione',
},
+ #cosmetic_changes.py
+ u'Robot: Cosmetic changes':
+ {
+ 'de': u'Bot: Kosmetische Änderungen',
+ 'es': u'Robot: Cambios triviales',
+ 'he': u'רובוט: שינויים קוסמטיים',
+ 'lt': u'robotas: smulkūs taisymai',
+ 'nl': u'Bot: Cosmetische veranderingen',
+ 'pl': u'Robot dokonuje poprawek kosmetycznych',
+ 'pt': u'Bot: Mudanças triviais',
+ },
+ u'; cosmetic changes': #TODO: Check why this isn't used in the code
+ {
+ 'de': u'; kosmetische Änderungen',
+ 'es': u'; cambios triviales',
+ 'he': u'; שינויים קוסמטיים',
+ 'lt': u'; smulkūs taisymai',
+ 'nl': u'; cosmetische veranderingen',
+ 'pl': u'; zmiany kosmetyczne',
+ 'pt': u'; mudanças triviais',
+ },
}
\ No newline at end of file