diff options
author | fiaxh <git@mx.ax.lt> | 2017-05-31 01:01:21 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-05-31 20:29:56 +0200 |
commit | 2480c1ec26a8e0ccef3ea76e3c29566221405ffb (patch) | |
tree | 7bb39ef03daae0b32e8e4ec59dcf72a246225e57 /main/src/ui | |
parent | 5ba95ef6b7be3bc7f3a8333f9db78577e1c259bc (diff) | |
download | dino-2480c1ec26a8e0ccef3ea76e3c29566221405ffb.tar.gz dino-2480c1ec26a8e0ccef3ea76e3c29566221405ffb.zip |
Update translations
Diffstat (limited to 'main/src/ui')
-rw-r--r-- | main/src/ui/contact_details/muc_config_form_provider.vala | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/main/src/ui/contact_details/muc_config_form_provider.vala b/main/src/ui/contact_details/muc_config_form_provider.vala index 44659888..2986134a 100644 --- a/main/src/ui/contact_details/muc_config_form_provider.vala +++ b/main/src/ui/contact_details/muc_config_form_provider.vala @@ -39,15 +39,14 @@ public class MucConfigFormProvider : Plugins.ContactDetailsProvider { string? desc = null; switch (field.var) { case "muc#roomconfig_roomname": - label = _("Name"); - desc = _("Name of the room"); + label = _("Name of the room"); break; case "muc#roomconfig_roomdesc": - label = _("Description"); - desc = _("Description of the room"); + label = _("Description of the room"); break; case "muc#roomconfig_persistentroom": label = _("Persistent"); + desc = _("The room will persist after the last occupant exits"); break; case "muc#roomconfig_publicroom": label = _("Publicly searchable"); @@ -56,22 +55,23 @@ public class MucConfigFormProvider : Plugins.ContactDetailsProvider { label = _("Occupants may change subject"); break; case "muc#roomconfig_whois": - label = _("Discover real jids"); - desc = "Who may discover real jids"; + label = _("Discover real JIDs"); + desc = _("Who may discover real JIDs?"); break; case "muc#roomconfig_roomsecret": label = _("Password"); - desc = _("Passwort required to enter the room. Leave empty for none."); + desc = _("Password required to enter the room. Leave empty for none"); break; case "muc#roomconfig_moderatedroom": label = _("Moderated"); + desc = _("Only occupants with voice may send messages"); break; case "muc#roomconfig_membersonly": label = _("Members only"); desc = _("Only members may enter the room"); break; case "muc#roomconfig_historylength": - label = _("Message History"); + label = _("Message history"); desc = _("Maximum number of history messages returned by the room"); break; } |