[Lambda-cvs] lambda/lang english.php,1.1.1.1,1.2
Status: Pre-Alpha
Brought to you by:
ariejan
From: Ariejan de V. <ar...@us...> - 2005-07-26 13:33:08
|
Update of /cvsroot/lambda/lambda/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26802/lang Modified Files: english.php Log Message: Added simple MySQL and error handling support. Index: english.php =================================================================== RCS file: /cvsroot/lambda/lambda/lang/english.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** english.php 22 Jul 2005 11:36:16 -0000 1.1.1.1 --- english.php 26 Jul 2005 13:33:00 -0000 1.2 *************** *** 6,13 **** * * Copyright (C) 2005 Ariejan de Vroom ! * Licensed under the General Public License (GPL) * * $Id$ */ ?> \ No newline at end of file --- 6,20 ---- * * Copyright (C) 2005 Ariejan de Vroom ! * Licensed under the General Public License (GPL) * * $Id$ */ + /** + * Error messages + **/ + $error[0] = "Unknown error."; + $error[1001] = "Database connection is not available."; + + ?> \ No newline at end of file |