[phpwebapp-commits] CVS: web_app/boxes/folderListing folderListing.php,1.5,1.6
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2005-11-01 13:24:42
|
Update of /cvsroot/phpwebapp/web_app/boxes/folderListing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1556/boxes/folderListing Modified Files: folderListing.php Log Message: i18n and l10n of web_app messages Index: folderListing.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/boxes/folderListing/folderListing.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** folderListing.php 22 Jul 2004 16:25:39 -0000 1.5 --- folderListing.php 1 Nov 2005 13:24:25 -0000 1.6 *************** *** 103,107 **** if (filetype($folder_path) <> 'dir') { ! print WebApp::error_msg("'$folder_path' is not a folder."); return; } --- 103,109 ---- if (filetype($folder_path) <> 'dir') { ! $msg = T_("'v_folder_path' is not a folder."); ! $msg = str_replace('v_folder_path', $folder_path, $msg); ! print WebApp::error_msg($msg); return; } *************** *** 110,114 **** if (!$dir) { ! print WebApp::error_msg("Cannot open folder '$folder_path'."); return; } --- 112,118 ---- if (!$dir) { ! $msg = T_("Cannot open folder 'v_folder_path'."); ! $msg = str_replace('v_folder_path', $folder_path, $msg); ! print WebApp::error_msg($msg); return; } |