From 67b2bd83b80c226c46397e432c54739506e11920 Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Mon, 30 Mar 2015 10:37:42 +0300 Subject: [PATCH] Updated private person message --- config/locales/en.yml | 2 +- spec/epp/domain_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/locales/en.yml b/config/locales/en.yml index 4e4c9a306..366e59c66 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -68,7 +68,7 @@ en: domain_contacts: invalid: 'Contacts are invalid' not_found: 'Contact was not found' - admin_contact_can_be_only_private_person: 'Admin contact can be only private person' + admin_contact_can_be_only_private_person: 'Admin contact can be private person only' admin_contacts: out_of_range: 'Admin contacts count must be between %{min}-%{max}' less_than_or_equal_to: 'Admin contacts count must be less than or equal to %{count}' diff --git a/spec/epp/domain_spec.rb b/spec/epp/domain_spec.rb index f1d966021..1deb1b4a0 100644 --- a/spec/epp/domain_spec.rb +++ b/spec/epp/domain_spec.rb @@ -691,7 +691,7 @@ describe 'EPP Domain', epp: true do }) response = epp_plain_request(xml, :xml) - response[:msg].should == 'Admin contact can be only private person' + response[:msg].should == 'Admin contact can be private person only' response[:result_code].should == '2306' end end