witten
/
luminotes
Archived
1
0
Fork 0

"There isn't a title column." -> "There is no title column."

This commit is contained in:
Dan Helfman 2008-08-09 01:05:12 -07:00
parent 64bf4c49ee
commit e844091cdc
1 changed files with 1 additions and 1 deletions

View File

@ -2199,7 +2199,7 @@ Wiki.prototype.display_import_notebook = function ( result ) {
var titles_select = createDOM( "select", { "name": "title_column" } );
column_number = 1;
appendChildNodes( titles_select, createDOM( "option", { "value": "None" }, "There isn't a title column." ) );
appendChildNodes( titles_select, createDOM( "option", { "value": "None" }, "There is no title column." ) );
for ( i in result.rows[ 0 ] ) {
var element = result.rows[ 0 ][ i ];
appendChildNodes( titles_select, createDOM( "option", { "value": i }, "column " + column_number + " - " + element ) );