diff options
author | Allan Nordhøy <epost@anotheragency.no> | 2017-11-23 17:07:19 +0100 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2017-11-23 17:07:19 +0100 |
commit | e0eba9a1ea4e4592d63d4fa851c3e5a98a8e9078 (patch) | |
tree | 25412e3a24d648f1f43e1a249fb531691dec9caf /main/src/ui/add_conversation | |
parent | 64774241e587eab64b10a0c35dd455f6a2288a55 (diff) | |
download | dino-e0eba9a1ea4e4592d63d4fa851c3e5a98a8e9078.tar.gz dino-e0eba9a1ea4e4592d63d4fa851c3e5a98a8e9078.zip |
Reword some strings (#215)
* conference_s_, Members only room, Too many occupants in room
* conferences → conference
* No active conversations/accounts
* "the account" and escaped apostrophe
* leaves, the subject, Required password, voiced, backlog
* Members-only room
* Remove the \'%s\' account?
* Chosen password required for room entry
* if any
* muc password, voiced, remove account
Diffstat (limited to 'main/src/ui/add_conversation')
-rw-r--r-- | main/src/ui/add_conversation/conference_details_fragment.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/add_conversation/conference_details_fragment.vala b/main/src/ui/add_conversation/conference_details_fragment.vala index 027483f4..13bf1c5a 100644 --- a/main/src/ui/add_conversation/conference_details_fragment.vala +++ b/main/src/ui/add_conversation/conference_details_fragment.vala @@ -146,12 +146,12 @@ protected class ConferenceDetailsFragment : Box { case Xmpp.Xep.Muc.MucEnterError.CREATION_RESTRICTED: label_text = _("Not allowed to create room"); break; case Xmpp.Xep.Muc.MucEnterError.NOT_IN_MEMBER_LIST: - label_text = _("Room is members only"); break; + label_text = _("Members-only room"); break; case Xmpp.Xep.Muc.MucEnterError.USE_RESERVED_ROOMNICK: case Xmpp.Xep.Muc.MucEnterError.NICK_CONFLICT: label_text = _("Choose a different nick"); break; case Xmpp.Xep.Muc.MucEnterError.OCCUPANT_LIMIT_REACHED: - label_text = _("Room has too many occupants"); break; + label_text = _("Too many occupants in room"); break; } notification_label.label = label_text; notification_revealer.set_reveal_child(true); |