mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Fix lang calls
This commit is contained in:
parent
3ec480e3c5
commit
454c0c12c2
@ -16,6 +16,9 @@
|
||||
Also start with a '#' symbol and a comma separated list will be
|
||||
turned into a number of the same entries.
|
||||
*/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
class import_conv
|
||||
{
|
||||
var $currentrecord = array(); /* used for buffering to allow uid lines to go first */
|
||||
@ -104,7 +107,7 @@
|
||||
$contacts->add($GLOBALS['phpgw_info']['user']['account_id'],$entry[$i],$access,$cat_id);
|
||||
}
|
||||
$num = $i - 1;
|
||||
return lang('Successfully imported x records into your addressbook.',$num);
|
||||
return lang('Successfully imported %1 records into your addressbook.',$num);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
@ -23,6 +23,8 @@
|
||||
// Also start with a '#' symbol and a comma separated list will be
|
||||
// turned into a number of the same entries.
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
class import_conv
|
||||
{
|
||||
var $currentrecord = array(); //used for buffering to allow uid lines to go first
|
||||
@ -173,7 +175,7 @@
|
||||
$contacts->add($GLOBALS['phpgw_info']['user']['account_id'],$entry[$i],$access,$cat_id);
|
||||
}
|
||||
$num = $i - 1;
|
||||
return lang('Successfully imported x records into your addressbook.',$num);
|
||||
return lang('Successfully imported %1 records into your addressbook.',$num);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
@ -23,6 +23,8 @@
|
||||
// Also start with a '#' symbol and a comma separated list will be
|
||||
// turned into a number of the same entries.
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
class import_conv
|
||||
{
|
||||
var $currentrecord = array(); //used for buffering to allow uid lines to go first
|
||||
@ -169,7 +171,7 @@
|
||||
$contacts->add($GLOBALS['phpgw_info']['user']['account_id'],$entry[$i],$access,$cat_id);
|
||||
}
|
||||
$num = $i - 1;
|
||||
return lang('Successfully imported x records into your addressbook.',$num);
|
||||
return lang('Successfully imported %1 records into your addressbook.',$num);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user