You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/components/importx/lexicon/en/default.inc.php
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,21 @@
31
31
$_lang['importx.importsuccess'] = 'Succesfully imported resources into MODX.';
32
32
$_lang['importx.importfailure'] = 'Oops, an error occurred while importing your resources.';
33
33
$_lang['importx.tab.input'] = 'CSV Input';
34
-
$_lang['importx.tab.input.desc'] = 'Paste your raw text, separating records with a newline and fields with a semi-colon (;) or the separator of your choice, in the field below.';
34
+
// Modified 2/5/2011
35
+
$_lang['importx.tab.input.desc'] = 'Paste or upload your CSV input, separating records with a newline and fields with a semi-colon (;) or the separator of your choice specified in the field below.';
35
36
$_lang['importx.tab.input.sep'] = 'When your CSV formatted entry uses a different separator, you can declare it here. Leave empty to use a semi-colon.';
$_lang['importx.tab.settings.desc'] = 'Specify the default settings to be used. You may override these per record by referencing the fieldname in your CSV formatted values.';
40
43
$_lang['importx.err.noparent'] = 'Please choose a Parent to import to. Specify 0 to put new resources in the root of the site.';
41
44
$_lang['importx.err.parentnotnumeric'] = 'Parent not numeric.';
42
45
$_lang['importx.err.parentlessthanzero'] = 'Parent needs to be a positive integer.';
43
46
$_lang['importx.err.nocsv'] = 'Please add your CSV values in order for them to be processed.';
47
+
// Added 2/5/2011:
48
+
$_lang['importx.err.fileuploadfailed'] = 'Error reading the uploaded file.';
44
49
$_lang['importx.err.invalidcsv'] = 'Invalid CSV value posted.';
45
50
$_lang['importx.err.notenoughdata'] = 'Not enough data given. Expecting at least one header row, and one data row.';
46
51
$_lang['importx.err.elementmismatch'] = 'Element count do not match. Please check for correct syntax on line [[+line]].';
@@ -49,7 +54,10 @@
49
54
$_lang['importx.err.intexpected'] = '[[+field]] ([[+int]] is expected to be an integer)';
50
55
$_lang['importx.err.tvdoesnotexist'] = '[[+field]] (no TV with an ID of [[+id]])';
51
56
$_lang['importx.log.runningpreimport'] = 'Running pre-import tests on submitted data...';
0 commit comments