File: 0.01.1a/language/English.php (View as HTML)

  1: <?php 
  2: /* -------------------------------------------------------------
  3: This file is part of FreeDESK
  4: 
  5: FreeDESK is (C) Copyright 2012 David Cutting
  6: 
  7: FreeDESK is free software: you can redistribute it and/or modify
  8: it under the terms of the GNU General Public License as published by
  9: the Free Software Foundation, either version 3 of the License, or
 10: (at your option) any later version.
 11: 
 12: FreeDESK is distributed in the hope that it will be useful,
 13: but WITHOUT ANY WARRANTY; without even the implied warranty of
 14: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 15: GNU General Public License for more details.
 16: 
 17: You should have received a copy of the GNU General Public License
 18: along with FreeDESK.  If not, see www.gnu.org/licenses
 19: 
 20: For more information see www.purplepixie.org/freedesk/
 21: -------------------------------------------------------------- */
 22: 
 23: /**
 24:  * FreeDESK English Class - this is the base set of language elements
 25: **/
 26: class FDL_English
 27: {
 28: /**
 29:  * Load Language Elements
 30:  * @param array &$i Items array (reference)
 31: **/
 32: static function English(&$i)
 33: {
 34: $i['welcome'] = "Welcome to FreeDESK";
 35: $i['login'] = "Login to FreeDESK";
 36: $i['login_cancel'] = "Cancel Login";
 37: $i['username'] = "Username";
 38: $i['password'] = "Password";
 39: $i['login_fail'] = "Login Failed";
 40: $i['login_invalid'] = "Invalid or Expired Login Details";
 41: 
 42: $i['select_portal'] = "Select your interface from the following";
 43: $i['select_analyst'] = "I am an analyst";
 44: $i['select_customer'] = "I am a customer";
 45: 
 46: $i['permission_denied'] = "Sorry you do not have permission for this action";
 47: $i['entity_not_found'] = "Sorry this entity was not found";
 48: 
 49: $i['action_invalid'] = "Sorry but this action is invalid";
 50: 
 51: $i['search'] = "Search";
 52: $i['save'] = "Save";
 53: $i['save_close'] = "Save and Close";
 54: $i['create'] = "Create";
 55: 
 56: $i['not_found'] = "Not Found";
 57: 
 58: $i['system_admin'] = "System Administration";
 59: $i['admin_user'] = "User Administration";
 60: $i['admin_group'] = "Security Groups";
 61: 
 62: $i['realname'] = "Real Name";
 63: $i['email'] = "Email";
 64: $i['team_membership'] = "Team Membership";
 65: $i['permgroup'] = "Permission Group";
 66: 
 67: $i['assign'] = "Assign";
 68: $i['no_change'] = "No Change";
 69: $i['assigned_to'] = "Assigned to";
 70: 
 71: $i['unassigned'] = "Unassigned";
 72: 
 73: $i['customer'] = "Customer";
 74: $i['request'] = "Request";
 75: 
 76: $i['permissions'] = "Permissions";
 77: $i['undefined'] = "Undefined";
 78: $i['denied'] = "Denied";
 79: $i['allowed'] = "Allowed";
 80: 
 81: $i['delete'] = "Delete";
 82: 
 83: $i['user_create'] = "Create User";
 84: 
 85: $i['teams'] = "Teams";
 86: $i['request_status'] = "Request Status";
 87: 
 88: $i['plugin_manager'] = "Plugin Manager";
 89: $i['activate'] = "Activate";
 90: $i['deactivate'] = "Deactivate";
 91: $i['install'] = "Install";
 92: $i['uninstall'] = "Uninstall";
 93: 
 94: $i['status'] = "Status";
 95: $i['system_vars'] = "System Variables (Advanced)";
 96: 
 97: $i['request_class'] = "Request Classes";
 98: $i['request_priority'] = "Request Priority";
 99: $i['priority'] = "Priority";
100: 
101: $i['unknown'] = "Unknown";
102: 
103: $i['email_accounts'] = "Email Accounts";
104: $i['email_templates'] = "Email Templates";
105: 
106: $i['edit'] = "Edit";
107: 
108: $i['name'] = "Name";
109: $i['host'] = "Host";
110: $i['hostdesc'] = "SMTP Hostname (or blank for local)";
111: $i['email'] = "Email Address";
112: $i['from'] = "From Address";
113: $i['fromname'] = "From Name";
114: $i['wordwrap'] = "Word Wrap";
115: $i['auth'] = "Use Authentication";
116: $i['username'] = "Username";
117: $i['password'] = "Password";
118: $i['smtpsec'] = "SMTP Security Mode";
119: 
120: $i['yes'] = "Yes";
121: $i['no'] = "No";
122: $i['none'] = "None";
123: $i['test'] = "Test";
124: 
125: $i['template_open'] = "Open Request Template";
126: $i['template_close'] = "Close Request Template";
127: $i['template_update'] = "Update Request Template";
128: $i['available_macro'] = "Available Macros";
129: 
130: $i['email_customer'] = "Email Customer";
131: 
132: $i['to'] = "To";
133: $i['subject'] = "Subject";
134: $i['send'] = "Send";
135: }
136: 
137: }
138: ?>
139: