1<?php 2/** 3 * English language file for simplemysqlclient plugin 4 * 5 * @author Heiko Heinz <heiko.heinz@soft2c.de> 6 */ 7 8$lang['menu'] = 'Cross-DB SQL Client'; 9 10$lang['submit_button'] = 'Execute Query and Commit'; 11 12$lang['templatesLabel'] = 'SQL-Templates:'; 13$lang['template.1.text'] = 'Select'; 14$lang['template.1.sql'] = 'SELECT * FROM <tablename> WHERE <column>=<value>'; 15$lang['template.2.text'] = 'Update'; 16$lang['template.2.sql'] = 'UPDATE <tablename> SET <column1>=<value1>,<column2>=<value2> WHERE <column3>=<value3>'; 17$lang['template.3.text'] = 'Delete'; 18$lang['template.3.sql'] = 'DELETE FROM <tablename> WHERE <column>=<value>'; 19$lang['template.4.text'] = 'Insert'; 20$lang['template.4.sql'] = 'INSERT INTO <tableName> ( <column1>,<column2>,<column3> ) VALUES ( <value1>,<value2>,<value2> )'; 21 22$lang['emptyresult'] = 'Query successfully executed -> empty result'; 23$lang['queryexecuted'] ='SQL was executed and data was changed: '; 24$lang['queriesnotexecuted'] = 'SQL(s) was not executed!'; 25$lang['errordbconnection'] ='Cancel: no database connection available!'; 26$lang['yes'] ='yes'; 27$lang['no'] ='no'; 28$lang['nextresult'] = 'Next result:'; 29$lang['firstresult'] = 'Result:'; 30$lang['missingpermission'] ='No permissions, access denied!'; 31 32//Setup VIM: ex: et ts=4 : 33