From 93d09277d479acebfa2c09a3e3131c8a8ebc6a89 Mon Sep 17 00:00:00 2001 From: loudoweb Date: Fri, 2 Mar 2018 16:23:52 +0100 Subject: [PATCH] [Locale] add details on csv parsing error add details on csv parsing error, it can helps :) At least, it helped me. --- grunt/tasks/translate/loadLanguageFiles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/tasks/translate/loadLanguageFiles.js b/grunt/tasks/translate/loadLanguageFiles.js index cfd270900..df343f6ea 100644 --- a/grunt/tasks/translate/loadLanguageFiles.js +++ b/grunt/tasks/translate/loadLanguageFiles.js @@ -117,7 +117,7 @@ module.exports = function (grunt) { function _cb (err) { if (err) { - throw grunt.util.error("Error processing CSV files."); + throw grunt.util.error("Error processing CSV files:" + err); } else { for (var i = 0; i < lines.length; i++) { var line = lines[i];