From 085af44a1bd4a6fce3987d789e27fa6801668a96 Mon Sep 17 00:00:00 2001 From: Peter Rotich <peter@enhancesoft.com> Date: Wed, 6 Feb 2019 20:51:18 +0000 Subject: [PATCH] i18n: Fix translation string --- include/staff/templates/user-import.tmpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/staff/templates/user-import.tmpl.php b/include/staff/templates/user-import.tmpl.php index 3fc7d763f..d0e97b3ac 100644 --- a/include/staff/templates/user-import.tmpl.php +++ b/include/staff/templates/user-import.tmpl.php @@ -34,7 +34,7 @@ if ($org_id) { ?> 'To import more other fields, use the Upload tab.'); ?></em> </p> <textarea name="pasted" style="display:block;width:100%;height:8em" - placeholder="<?php echo __('Name, Email'. PHP_EOL. ' John Doe, john.doe@osticket.com'); ?>"> + placeholder="<?php echo sprintf('%s %s%s', __('Name, Email'), PHP_EOL, __('John Doe, john.doe@osticket.com')); ?>"> <?php echo $info['pasted']; ?> </textarea> </div> -- GitLab