fix strings
This commit is contained in:
parent
54155ad3e6
commit
0744b9ed83
|
@ -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!') ],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue