default.inc.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The default English language topics
  4. *
  5. * @package gatewaymanager
  6. * @subpackage lexicon
  7. * @language en
  8. * @author Bert Oost at OostDesign.nl <bertoost85@gmail.com>
  9. */
  10. $_lang['gatewaymanager'] = "Gateway Manager";
  11. $_lang['gatewaymanager.desc'] = "Manage domains and decide where to start inside your entire website.";
  12. $_lang['gatewaymanager.manage'] = "Manage your gateway domains";
  13. $_lang['gatewaymanager.gateways'] = "Gateways";
  14. $_lang['gatewaymanager.gateways.desc'] = "Below you will see the list of domains and which context (and/or different startpage) you have setupped. You can simple add a new gateway domain or remove/update existing ones.";
  15. $_lang['gatewaymanager.search'] = "Search...";
  16. $_lang['gatewaymanager.create'] = "Create new gateway";
  17. $_lang['gatewaymanager.domain'] = "Domain";
  18. $_lang['gatewaymanager.domain_desc'] = "The domain only contains 'www.example.com'. No http:// or any trailing slashes and additional paths here.";
  19. $_lang['gatewaymanager.context'] = "Context";
  20. $_lang['gatewaymanager.context_desc'] = "Select the context where to switch this domain too.";
  21. $_lang['gatewaymanager.context.createsettings'] = "Create necessary context settings";
  22. $_lang['gatewaymanager.context.createsettings.desc'] = "This will create the context settings like \"site_url\" and \"http_host\" for the selected context (when not already exists!).";
  23. $_lang['gatewaymanager.startpage'] = "Start page";
  24. $_lang['gatewaymanager.startpage_desc'] = "It's only necessary to select a start page when this is not your context \"site_start\". Meant to bind domains to (landing) pages for example.";
  25. $_lang['gatewaymanager.startpage.id'] = "ID";
  26. $_lang['gatewaymanager.startpage.default'] = "Default page";
  27. $_lang['gatewaymanager.active'] = "Active";
  28. $_lang['gatewaymanager.update'] = "Update gateway";
  29. $_lang['gatewaymanager.remove'] = "Remove gateway";
  30. $_lang['gatewaymanager.remove_confirm'] = "Are you sure you want to remove this gateway?";
  31. $_lang['gatewaymanager.error.domain_ns'] = "Domain name not specified. Please enter a domain!";
  32. $_lang['gatewaymanager.error.domain_ae'] = "Domain already exists. Please try an other domain name!";
  33. $_lang['gatewaymanager.error.context_ns'] = "Context not specified. Please choose a context!";
  34. $_lang['gatewaymanager.error.context_ne'] = "Context not exists. Please choose one from the list!";
  35. $_lang['gatewaymanager.error.context_no_resources'] = "Context does not have any resources. Please add one, or check \"create necessary context settings\" to auto-generate the first resource.";
  36. $_lang['gatewaymanager.error.context_rne'] = "Given start page does not exists in given context. Please choose a resource that belongs to the chosen context.";
  37. $_lang['gatewaymanager.error.save'] = "Failed to save the gateway. Refresh and try it again!";
  38. $_lang['gatewaymanager.error.id_ns'] = "Domain ID not specified. Please try it again!";
  39. $_lang['gatewaymanager.error.nf'] = "Domain not found. Refresh and try it again!";
  40. $_lang['gatewaymanager.error.remove'] = "Domain cannot be removed. Refresh and try it again!";