From eb61bb620fdec2acee97ad37bbda1a5d0106a47c Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Thu, 22 Feb 2018 13:00:09 +0200 Subject: [PATCH] Change translation #694 --- config/locales/messages.en.yml | 6 +++--- test/models/domain_transfer_test.rb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/locales/messages.en.yml b/config/locales/messages.en.yml index 2827a2f18..5b93f402a 100644 --- a/config/locales/messages.en.yml +++ b/config/locales/messages.en.yml @@ -2,6 +2,6 @@ en: messages: texts: domain_transfer: >- - Domain transfer of %{domain_name} has been approved. - Old contacts: %{old_contacts_codes}; - old registrant: %{old_registrant_code} + Transfer of domain domain_name_here has been approved. + It was associated with registrant %{old_registrant_code} + and contacts %{old_contacts_codes}. diff --git a/test/models/domain_transfer_test.rb b/test/models/domain_transfer_test.rb index 3d1e8edd9..728f59bdc 100644 --- a/test/models/domain_transfer_test.rb +++ b/test/models/domain_transfer_test.rb @@ -18,9 +18,9 @@ class DomainTransferTest < ActiveSupport::TestCase @domain_transfer.approve end - body = 'Domain transfer of shop.test has been approved.' \ - ' Old contacts: jane-001, william-001' \ - '; old registrant: john-001' + body = 'Transfer of domain domain_name_here has been approved.' \ + ' It was associated with registrant john-001' \ + ' and contacts jane-001, william-001.' id = @domain_transfer.id class_name = @domain_transfer.class.name