don't translate user_mood and user_activity

This commit is contained in:
Yann Leboulanger 2008-04-04 20:24:55 +00:00
parent b991b32886
commit 163b680200
1 changed files with 38 additions and 38 deletions

View File

@ -371,31 +371,31 @@ class ChooseGPGKeyDialog:
class ChangeActivityDialog: class ChangeActivityDialog:
activities = [_('doing_chores'), _('drinking'), _('eating'), activities = ['doing_chores', 'drinking', 'eating',
_('excercising'), _('grooming'), _('having_appointment'), 'excercising', 'grooming', 'having_appointment',
_('inactive'), _('relaxing'), _('talking'), _('traveling'), 'inactive', 'relaxing', 'talking', 'traveling',
_('working'), ] 'working', ]
subactivities = [_('at_the_spa'), _('brushing_teeth'), subactivities = ['at_the_spa', 'brushing_teeth',
_('buying_groceries'), _('cleaning'), _('coding'), 'buying_groceries', 'cleaning', 'coding',
_('commuting'), _('cooking'), _('cycling'), _('day_off'), 'commuting', 'cooking', 'cycling', 'day_off',
_('doing_maintenance'), _('doing_the_dishes'), 'doing_maintenance', 'doing_the_dishes',
_('doing_the_laundry'), _('driving'), _('gaming'), 'doing_the_laundry', 'driving', 'gaming',
_('gardening'), _('getting_a_haircut'), _('going_out'), 'gardening', 'getting_a_haircut', 'going_out',
_('hanging_out'), _('having_a_beer'), _('having_a_snack'), 'hanging_out', 'having_a_beer', 'having_a_snack',
_('having_breakfast'), _('having_coffee'), 'having_breakfast', 'having_coffee',
_('having_dinner'), _('having_lunch'), _('having_tea'), 'having_dinner', 'having_lunch', 'having_tea',
_('hiking'), _('in_a_car'), _('in_a_meeting'), 'hiking', 'in_a_car', 'in_a_meeting',
_('in_real_life'), _('jogging'), _('on_a_bus'), 'in_real_life', 'jogging', 'on_a_bus',
_('on_a_plane'), _('on_a_train'), _('on_a_trip'), 'on_a_plane', 'on_a_train', 'on_a_trip',
_('on_the_phone'), _('on_vacation'), _('other'), 'on_the_phone', 'on_vacation', 'other',
_('partying'), _('playing_sports'), _('reading'), 'partying', 'playing_sports', 'reading',
_('rehearsing'), _('running'), _('running_an_errand'), 'rehearsing', 'running', 'running_an_errand',
_('scheduled_holiday'), _('shaving'), _('shopping'), 'scheduled_holiday', 'shaving', 'shopping',
_('skiing'), _('sleeping'), _('socializing'), 'skiing', 'sleeping', 'socializing',
_('studying'), _('sunbathing'), _('swimming'), 'studying', 'sunbathing', 'swimming',
_('taking_a_bath'), _('taking_a_shower'), _('walking'), 'taking_a_bath', 'taking_a_shower', 'walking',
_('walking_the_dog'), _('watching_tv'), 'walking_the_dog', 'watching_tv',
_('watching_a_movie'), _('working_out'), _('writing'), ] 'watching_a_movie', 'working_out', 'writing', ]
def __init__(self, account): def __init__(self, account):
self.account = account self.account = account
self.xml = gtkgui_helpers.get_glade('change_activity_dialog.glade') self.xml = gtkgui_helpers.get_glade('change_activity_dialog.glade')
@ -450,19 +450,19 @@ class ChangeActivityDialog:
self.window.destroy() self.window.destroy()
class ChangeMoodDialog: class ChangeMoodDialog:
moods = [_('afraid'), _('amazed'), _('angry'), _('annoyed'), _('anxious'), moods = ['afraid', 'amazed', 'angry', 'annoyed', 'anxious',
_('aroused'), _('ashamed'), _('bored'), _('brave'), _('calm'), 'aroused', 'ashamed', 'bored', 'brave', 'calm',
_('cold'), _('confused'), _('contented'), _('cranky'), _('curious'), 'cold', 'confused', 'contented', 'cranky', 'curious',
_('depressed'), _('disappointed'), _('disgusted'), _('distracted'), 'depressed', 'disappointed', 'disgusted', 'distracted',
_('embarrassed'), _('excited'), _('flirtatious'), _('frustrated'), 'embarrassed', 'excited', 'flirtatious', 'frustrated',
_('grumpy'), _('guilty'), _('happy'), _('hot'), _('humbled'), 'grumpy', 'guilty', 'happy', 'hot', 'humbled',
_('humiliated'), _('hungry'), _('hurt'), _('impressed'), _('in_awe'), 'humiliated', 'hungry', 'hurt', 'impressed', 'in_awe',
_('in_love'), _('indignant'), _('interested'), _('intoxicated'), 'in_love', 'indignant', 'interested', 'intoxicated',
_('invincible'), _('jealous'), _('lonely'), _('mean'), _('moody'), 'invincible', 'jealous', 'lonely', 'mean', 'moody',
_('nervous'), _('neutral'), _('offended'), _('playful'), _('proud'), 'nervous', 'neutral', 'offended', 'playful', 'proud',
_('relieved'), _('remorseful'), _('restless'), _('sad'), _('sarcastic'), 'relieved', 'remorseful', 'restless', 'sad', 'sarcastic',
_('serious'), _('shocked'), _('shy'), _('sick'), _('sleepy'), 'serious', 'shocked', 'shy', 'sick', 'sleepy',
_('stressed'), _('surprised'), _('thirsty'), _('worried')] 'stressed', 'surprised', 'thirsty', 'worried']
def __init__(self, account): def __init__(self, account):
self.account = account self.account = account
self.xml = gtkgui_helpers.get_glade('change_mood_dialog.glade') self.xml = gtkgui_helpers.get_glade('change_mood_dialog.glade')