fix strings

This commit is contained in:
Nikos Kouremenos 2006-09-30 00:01:29 +00:00
parent 54155ad3e6
commit 0744b9ed83
1 changed files with 6 additions and 6 deletions

View File

@ -329,15 +329,15 @@ class Config:
_('Movie'): _("I'm watching a movie."), _('Movie'): _("I'm watching a movie."),
_('Working'): _("I'm working."), _('Working'): _("I'm working."),
_('Phone'): _("I'm on the phone."), _('Phone'): _("I'm on the phone."),
_('Out'): _("I'm out enjoying life"), _('Out'): _("I'm out enjoying life."),
} }
defaultstatusmsg_default = { defaultstatusmsg_default = {
'online': [ False, _("I'm available") ], 'online': [ False, _("I'm available.") ],
'chat': [ False, _("I'm free for chat") ], 'chat': [ False, _("I'm free for chat.") ],
'away': [ False, _('Be right back') ], 'away': [ False, _('Be right back.') ],
'xa': [ False, _("I'm not available") ], 'xa': [ False, _("I'm not available.") ],
'dnd': [ False, _('Do not disturb') ], 'dnd': [ False, _('Do not disturb.') ],
'invisible': [ False, _('Bye!') ], 'invisible': [ False, _('Bye!') ],
'offline': [ False, _('Bye!') ], 'offline': [ False, _('Bye!') ],
} }