Remove double warning

This commit is contained in:
Blade Barringer
2015-08-10 07:53:26 -05:00
parent cb89f07dcf
commit 6ed3e77008

View File

@@ -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);
}
});