Some text changes

This commit is contained in:
Robert Fewell 2017-12-01 11:04:49 +00:00
parent cf90b8cb47
commit 1435813f02
2 changed files with 3 additions and 4 deletions

View File

@ -400,7 +400,7 @@ void GncPriceImport::verify_column_selections (ErrorListPrice& error_msg)
if (!check_for_column_type(GncPricePropType::AMOUNT))
error_msg.add_error( _("Please select an amount column."));
/* Verify an Currency to column is selected.
/* Verify a Currency to column is selected.
*/
if (!check_for_column_type(GncPricePropType::CURRENCY_TO))
error_msg.add_error( _("Please select a Currency to column."));

View File

@ -68,11 +68,10 @@ struct ErrorListPrice;
* - set a file format
* - load a file
* - optionally convert it's encoding
* - parse the file into lines, which in turn are split up in columns
* - parse the file into lines, which in turn are split up in to columns
* the result of this step can be queried from tokenizer
* - the user should now map the columns to types, which is stored in column_types
* - last step is convert the mapped columns into a list of transactions
* - this list will then be passed on the the generic importer for further processing */
* - last step is convert the mapped columns into a list of prices to add */
class GncPriceImport
{
public: