Having problem with my language file |
The %s replacement you want to use is part of the sprintf PHP function. You could do something like this in your controller:
PHP Code: public function multi_upload($field = 'userfile') { And in your language file: PHP Code: $lang['file_extension_not_allowed'] = 'Your %s file is not allowed!'; |
Messages In This Thread |
Having problem with my language file - by wolfgang1983 - 02-13-2016, 12:04 AM
RE: Having problem with my language file - by Diederik - 02-13-2016, 12:52 AM
RE: Having problem with my language file - by wolfgang1983 - 02-13-2016, 02:15 AM
RE: Having problem with my language file - by InsiteFX - 02-13-2016, 03:40 AM
RE: Having problem with my language file - by Diederik - 02-13-2016, 08:04 AM
|