View Single Post
Old 06-24-2012, 10:32 AM   #11
NotTaken
Connoisseur
NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.NotTaken is fluent in JavaScript as well as Klingon.
 
Posts: 65
Karma: 4640
Join Date: Aug 2011
Device: kindle
I don't really speak Korean - I used an online translation tool

If you want the prefix you could just use some like:

Code:
    real_sections = {
    '[A1]' : 'A1: 종합',
#   '[A2]' : 'remove the # to use',
    }
If you wanted a different section title for each day of the week you could use a 7 element tuple, but maybe no pattern will emerge.

Edit:
Actually probbaly easier to change:
Code:
            if section_title in self.real_sections:
                section_title = section_title + ': ' +  self.real_sections[section_title]

Last edited by NotTaken; 06-24-2012 at 10:36 AM.
NotTaken is offline   Reply With Quote