From 0592f3f731d166f4e64246d83a0fc0523a6063e9 Mon Sep 17 00:00:00 2001 From: Victor Tsvetov Date: Thu, 5 Aug 2021 16:13:32 +0300 Subject: [PATCH] TT#126853 Replace "free minutes" with "free calling time" The value of "interval_free_time" preference is specified in seconds. To avoid confusion, use the term "free calling time" rather than "free minutes" in tooltips. Change-Id: Ia4bd507e4a2281723fd2168a34b2178bf404f867 --- lib/NGCP/Panel/Form/BillingFee.pm | 4 ++-- lib/NGCP/Panel/Form/BillingProfile/Reseller.pm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/NGCP/Panel/Form/BillingFee.pm b/lib/NGCP/Panel/Form/BillingFee.pm index 3283060951..62137ad80c 100644 --- a/lib/NGCP/Panel/Form/BillingFee.pm +++ b/lib/NGCP/Panel/Form/BillingFee.pm @@ -159,7 +159,7 @@ has_field 'onpeak_use_free_time' => ( type => 'Boolean', element_attr => { rel => ['tooltip'], - title => ['Whether free minutes may be used when calling this destination during onpeak hours.'] + title => ['Free calling time may be used when calling this destination during on-peak hours.'] }, default => 0, ); @@ -168,7 +168,7 @@ has_field 'offpeak_use_free_time' => ( type => 'Boolean', element_attr => { rel => ['tooltip'], - title => ['Whether free minutes may be used when calling this destination during offpeak hours.'] + title => ['Free calling time may be used when calling this destination during off-peak hours.'] }, default => 0, ); diff --git a/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm b/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm index 8aa8aaad19..0f7c96057f 100644 --- a/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm +++ b/lib/NGCP/Panel/Form/BillingProfile/Reseller.pm @@ -80,7 +80,7 @@ has_field 'interval_free_time' => ( type => 'Integer', element_attr => { rel => ['tooltip'], - title => ['The included free minutes per billing interval (in seconds, e.g. 60000 for 1000 free minutes).'] + title => ['The included free calling time per billing interval (in seconds, e.g. 60000 for 1000 free minutes).'] }, default => '0', );