app_languages.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. #This file was last reorganized on 19th of September 2017 08:54:24 AM UTC
  3. $text['title-call_acl']['en-us'] = "Call ACL";
  4. $text['label-call_acl_order']['en-us'] = "Order";
  5. $text['label-call_acl_name']['en-us'] = "Name";
  6. $text['label-call_acl_source']['en-us'] = "Source";
  7. $text['label-call_acl_destination']['en-us'] = "Destination";
  8. $text['label-call_acl_action']['en-us'] = "Action";
  9. $text['label-call_acl_enabled']['en-us'] = "Enabled";
  10. $text['label-edit-add']['en-us'] = "Add ACL rule";
  11. $text['label-edit-edit']['en-us'] = "Edit ACL rule";
  12. $text['label-add-note']['en-us'] = "Add access control rule. Rules are applied in order. If order for rules are same, they applied in random order. If none of rules are matched - allow call";
  13. $text['label-edit-note']['en-us'] = "Edit access control rule. Rules are applied in order. If order for rules are same, they applied in random order. If none of rules are matched - allow call";
  14. $text['label-add-complete']['en-us'] = "Add Complete";
  15. $text['label-update-complete']['en-us'] = "Update Complete";
  16. $text['label-reject']['en-us'] = "Reject";
  17. $text['label-allow']['en-us'] = "Allow";
  18. $text['description-call_acl']['en-us'] = "Access Control List for calls within domain. Default rule - allow";
  19. $text['description-call_acl_name']['en-us'] = "Enter the name for this rule";
  20. $text['description-call_acl_source']['en-us'] = "Enter the template for source number to match. Refer below for templates description";
  21. $text['description-call_acl_destination']['en-us'] = "Enter the template for destination number to match. Refer below for templates description";
  22. $text['description-call_acl_action']['en-us'] = "Allow or reject(block) this call";
  23. $text['description-call_acl_enabled']['en-us'] = "Enable or disable this rule";
  24. $text['description-call_acl_order']['en-us'] = "Select order number for this rule";
  25. $text['description-call_acl_templates']['en-us'] = "Templates support ranges and wildcards. Actually it's limited regexes<br>";
  26. $text['description-call_acl_templates']['en-us'] .= "[A-B] matches any digit within A-B range<br>";
  27. $text['description-call_acl_templates']['en-us'] .= "'X' matches any digit one time<br>";
  28. $text['description-call_acl_templates']['en-us'] .= "'*' matches anything<br>";
  29. $text['description-call_acl_templates']['en-us'] .= "'^' matches start of the string<br>";
  30. $text['description-call_acl_templates']['en-us'] .= "'$' matches end of the string<br>";
  31. $text['description-call_acl_templates']['en-us'] .= "Examples:<br>";
  32. $text['description-call_acl_templates']['en-us'] .= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;^[1-2]X matches numbers 10 - 29 <br>";
  33. $text['description-call_acl_templates']['en-us'] .= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;^XXX or ^XXX*$ matches numbers with 3 digits and more<br>";
  34. $text['description-call_acl_templates']['en-us'] .= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;^XXX$ matches numbers with exact 3 digits <br>";
  35. $text['description-call_acl_templates']['en-us'] .= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;^*[45]$ matches numbers that ends with 4 or 5 <br>";
  36. ?>