|
PCCS MySQLDatabase Admin Tool version 1.3.4
|
/incs/ -> lang-en.include.php
1 <?
2 //////////////////////////////////////////////////////////////////////////////// 3 // Filename: lang_eng.php 4 // Function: English Translations 5 // 6 // updated 10-07-2000 7 // -- added changelog to this file 8 // -- removed the 3 from from the PHP 9 // -- added str_viewsyslogs 10 // 11 // 12
13 $str_baseurl = "Developing PHP Web Applications : http://PCCS-Linux.COM";
14 $str_mainTitle = "PCCS MySQLDatabase Administration Tool";
15 $str_querytool = "PCCS MySQLDatabase Query Tool";
16 // Navigation 17 $str_sysstatus = "sys^status";
18 $str_mainlnk = "MAIN";
19 $str_changeuserpw = "CHANGE PASSWD";
20 $str_readmysqldoc = "READ MySQL DOCS";
21 $str_installscriptlink = "CREATE INSTALL SCRIPT";
22 $str_viewsyslog = "VIEW SYSLOGS";
23 $str_createwebacct = "CREATE WEB/HOSTING ACCT";
24 $str_deluseracct = "DELETE USER";
25
26
27 $str_mainMenu = "MAIN MENU";
28 $str_mainMenustr = " :: MySQL";
29 $str_status = "<font color=red>STATUS</font>";
30 $str_database = "DATABASES";
31 $str_dbusers = "USERS MGMT";
32 $str_grant_revoke = "GRANT/REVOKE";
33 $str_createdb = "CREATE DB";
34 $str_flushtables = "FLUSH TABLES";
35 $str_flushhosts = "FLUSH HOSTS";
36 $str_flushstatus = "FLUSH STATUS";
37 $str_flushlogs = "FLUSH LOGS";
38 $str_processes = "PROCESSES";
39 $str_variables = "VARIABLES";
40 $str_webadmin = "WEB ADMIN";
41 $str_logout = "LOGOUT";
42
43 $str_serverInfobanner = "Server Information";
44
45 // Process List Titles 46
47 $str_ps_kill = "Kill";
48 $str_ps_id = "Id";
49 $str_ps_user = "User";
50 $str_ps_host = "Host";
51 $str_ps_db = "DB";
52 $str_ps_command = "Command";
53 $str_ps_time = "Time";
54 $str_ps_state = "State";
55 $str_ps_info = "Info";
56
57 $str_sysinfobanner = "System Information";
58
59 // System Info 60
61 $str_ables = "Tables";
62 $str_iles = "Files";
63 $str_dtables = "d Tables";
64 $str_questions = "Questions";
65 $str_runningthreads = "Running Threads";
66 $str_systemuptime = "System Uptime";
67 /////////////////////////////////////////////////////////////////////////////////////////////// 68 // mysqldb_admin.php 69
70 $str_mysqlschemadump = "MYSQL SCHEMA DUMP";
71 $str_processesrunningon = "Processes running on ";
72 $str_usingmysqldbver = "using MySQL DB Version";
73 $str_querydb = "QUERY DB";
74 $str_dropdb = "DROP DB";
75 $str_createdump = "CREATE DUMP";
76 $str_optimize = "OPTIMIZE DB";
77 $str_restordb = "RESTORE DB";
78 $str_installscript = "INSTALL SCRIPT";
79 $str_viewschema = "VIEW SCHEMA";
80 $str_backupdb = "BACKUP DB";
81 $str_viewtbl = "VIEW TABLE";
82 $str_numtbls = "# TBLs";
83
84 // mysqldb_chgpasswd.php?action=chgpasswd 85
86 $str_useradministration = "USER ADMINISTRATION";
87 $str_changepasswordfor = "CHANGE PASSWORD";
88 $str_dbuserid = "DB User ID";
89 $str_newpassword = "New Password";
90 $str_reenterpassword = "Re-enter Password";
91 $str_cancel = "Cancel";
92 $str_pwchangeorgoto = "Password Change or";
93 $str_gotomain = "go to Main";
94 $str_changepasswd = "Change Password";
95
96 // mysqldb_newuser.php3 97
98 $str_modifyuser = "MODIFY USER";
99 $str_username = "User Name ";
100 $str_password = "Password ";
101 $str_usercanconnectfrom = "User can connect from :";
102 $str_usertype = "USER TYPE";
103 $str_localhost = "LOCALHOST";
104 $str_anywhere = "ANYWHERE";
105 $str_basic = "BASIC";
106 $str_admin = "ADMIN";
107 $str_advance = "ADVANCE";
108 $str_operator = "OPERATOR";
109 $str_dbase = "DATABASE";
110 $str_createuserid = "Create UserID";
111 $str_thisusercanconnfrom = "This user can connect from ";
112 $str_createnewacct = "Create New Account";
113 $str_yes = "Yes";
114 $str_no = "No";
115
116 // mysqldb_webadm.php3 117
118 // $str_webhostingadmin = "WEB HOSTING ADMIN"; 119 // $str_webuserid = "Web UserID"; 120 // $str_webuserpasswd = "Web UserPW"; 121 // $str_lastname = "Lastname"; 122 // $str_firstname = "Firstname"; 123 // $str_url = "URL"; 124 // $str_email = "E-Mail"; 125
126
127 ?>
|