fixup 5ba95ef (Conversation details dialog)

This commit is contained in:
fiaxh 2017-06-01 13:20:16 +02:00
parent 2480c1ec26
commit 205bd444a5

View file

@ -37,7 +37,7 @@ public class SettingsProvider : Plugins.ContactDetailsProvider {
} else if (conversation.type_ == Conversation.Type.GROUPCHAT) {
ComboBoxText combobox = new ComboBoxText() { visible=true };
combobox.append("default", _("Default"));
combobox.append("hightlight", _("Only when mentioned"));
combobox.append("highlight", _("Only when mentioned"));
combobox.append("on", _("On"));
combobox.append("off", _("Off"));
contact_details.add(_("Local Settings"), _("Notifications"), "", combobox);
@ -93,7 +93,7 @@ public class SettingsProvider : Plugins.ContactDetailsProvider {
case Conversation.NotifySetting.OFF:
return "off";
case Conversation.NotifySetting.HIGHLIGHT:
return "hightlight";
return "highlight";
}
assert_not_reached();
}