Update of /cvsroot/phpwebapp/web_app/webobjects/dbTable
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1556/webobjects/dbTable
Modified Files:
editRecord.php
Log Message:
i18n and l10n of web_app messages
Index: editRecord.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/webobjects/dbTable/editRecord.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** editRecord.php 22 Jul 2004 16:25:36 -0000 1.6
--- editRecord.php 1 Nov 2005 13:24:25 -0000 1.7
***************
*** 81,85 ****
else
{
! $msg = "editRecord::save(): invalid state '$state'.";
print WebApp::warning_msg($msg);
}
--- 81,86 ----
else
{
! $msg = "editRecord::save(): " . T_("invalid state 'v_state'.");
! $msg = str_replace('v_state', $state, $msg);
print WebApp::warning_msg($msg);
}
|