diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-10-26 17:26:23 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-10-26 17:26:23 +0100 |
commit | 4ce2ca5ef0247ee38c85aed2f7a50bfaea5668fa (patch) | |
tree | 7d6da07bbb0b53603907ba5014a6447cc5f14355 | |
parent | abc1d3560107f1a340c70344f937b9d12ab92470 (diff) | |
download | arctica-greeter-4ce2ca5ef0247ee38c85aed2f7a50bfaea5668fa.tar.gz arctica-greeter-4ce2ca5ef0247ee38c85aed2f7a50bfaea5668fa.tar.bz2 arctica-greeter-4ce2ca5ef0247ee38c85aed2f7a50bfaea5668fa.zip |
Fix parentheses in dialog message.
-rw-r--r-- | src/user-list.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user-list.vala b/src/user-list.vala index 50a487a..4805956 100644 --- a/src/user-list.vala +++ b/src/user-list.vala @@ -559,7 +559,7 @@ public class UserList : GreeterList else { dialog.add_button (_("OK"), 0); - dialog.text = _("You need a Remote Logon account to use this service. Visit https://%s to set up an account.").printf(AGSettings.get_string (AGSettings.KEY_REMOTE_SERVICE_FQDN))); + dialog.text = _("You need a Remote Logon account to use this service. Visit https://%s to set up an account.").printf(AGSettings.get_string (AGSettings.KEY_REMOTE_SERVICE_FQDN)); } dialog.show_all (); |