diff options
Diffstat (limited to 'import.php')
| -rw-r--r-- | import.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/import.php b/import.php index 51cc2519b3..16355169ef 100644 --- a/import.php +++ b/import.php @@ -73,7 +73,7 @@ if ($row->import_offset==$row->import_total) { // Calculate progress so far $percent=100*(($row->import_offset) / $row->import_total); -$status=WT_I18N::translate('Loading data from GEDCOM: %.1f%%', $percent); +$status=WT_I18N::translate('Loading data from GEDCOM file: %.1f%%', $percent); echo '<div id="progressbar', $gedcom_id, '"><div style="position:absolute;">', $status, '</div></div>'; $controller->addInlineJavascript( @@ -144,7 +144,7 @@ for ($end_time=microtime(true)+1.0; microtime(true)<$end_time; ) { break; case 'ANSI': // ANSI could be anything. Most applications seem to treat it as latin1. $controller->addInlineJavascript( - 'alert("'. /* I18N: %1$s and %2$s are the names of character encodings, such as ISO-8859-1 or ASCII */ WT_I18N::translate('This GEDCOM is encoded using %1$s. Assume this to mean %2$s.', $charset, 'ISO-8859-1'). '");' + 'alert("'. /* I18N: %1$s and %2$s are the names of character encodings, such as ISO-8859-1 or ASCII */ WT_I18N::translate('This GEDCOM file is encoded using %1$s. Assume this to mean %2$s.', $charset, 'ISO-8859-1'). '");' ); case 'WINDOWS': case 'CP1252': |
