From 6ed3e77008f7a50b1bd01ed47673b776898fbe11 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Mon, 10 Aug 2015 07:53:26 -0500 Subject: [PATCH] Remove double warning --- tasks/gulp-transifex-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/gulp-transifex-test.js b/tasks/gulp-transifex-test.js index 94a5076874..24657b7a09 100644 --- a/tasks/gulp-transifex-test.js +++ b/tasks/gulp-transifex-test.js @@ -83,12 +83,12 @@ gulp.task('transifex:malformedStrings', () => { }); if (!_.isEmpty(stringsWithMalformedInterpolations)) { - let message = '*Warning:* The following strings have malformed or missing interpolations'; + let message = 'The following strings have malformed or missing interpolations'; post(message, stringsWithMalformedInterpolations); } if (!_.isEmpty(stringsWithIncorrectNumberOfInterpolations)) { - let message = '*Warning:* The following strings have a different number of string interpolations'; + let message = 'The following strings have a different number of string interpolations'; post(message, stringsWithIncorrectNumberOfInterpolations); } });