File: 0.00.0a/language/English.php (View as Code)

1: 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: 55: $i['not_found'] = "Not Found"; 56: 57: $i['system_admin'] = "System Administration"; 58: $i['admin_user'] = "User Administration"; 59: $i['admin_group'] = "Security Groups"; 60: 61: $i['realname'] = "Real Name"; 62: $i['email'] = "Email"; 63: $i['team_membership'] = "Team Membership"; 64: $i['permgroup'] = "Permission Group"; 65: 66: $i['assign'] = "Assign"; 67: $i['no_change'] = "No Change"; 68: $i['assigned_to'] = "Assigned to"; 69: 70: $i['unassigned'] = "Unassigned"; 71: 72: $i['customer'] = "Customer"; 73: $i['request'] = "Request"; 74: 75: $i['permissions'] = "Permissions"; 76: $i['undefined'] = "Undefined"; 77: $i['denied'] = "Denied"; 78: $i['allowed'] = "Allowed"; 79: 80: $i['delete'] = "Delete"; 81: 82: $i['user_create'] = "Create User"; 83: 84: $i['teams'] = "Teams"; 85: $i['request_status'] = "Request Status"; 86: 87: $i['plugin_manager'] = "Plugin Manager"; 88: $i['activate'] = "Activate"; 89: $i['deactivate'] = "Deactivate"; 90: $i['install'] = "Install"; 91: $i['uninstall'] = "Uninstall"; 92: 93: $i['status'] = "Status"; 94: $i['system_vars'] = "System Variables (Advanced)"; 95: } 96: 97: } 98: ?> 99: