diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2015-02-18 16:54:23 +0100 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2015-02-18 17:37:56 +0100 |
commit | 9223724471291f26d2877d9cf0e4eace4e7f91b8 (patch) | |
tree | 0a09670afc65fd4d08542dc79a4eb4c995027faf /sonar-core/src | |
parent | d6c79a0d4f3dbc1349afcbe0121afc35ad32874b (diff) | |
download | sonarqube-9223724471291f26d2877d9cf0e4eace4e7f91b8.tar.gz sonarqube-9223724471291f26d2877d9cf0e4eace4e7f91b8.zip |
SONAR-5711 Send validation messages to client all at once
Diffstat (limited to 'sonar-core/src')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index da7e723748a..ed515bcea6b 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -1892,6 +1892,14 @@ coding_rules.noncharacterized=Noncharacterized coding_rules.update_custom_rule=Update Custom Rule coding_rules.update_manual_rule=Update Manual Rule +coding_rules.validation.invalid_rule_key=The rule key "%s" is invalid, it should only contain: a-z, 0-9, "_" +coding_rules.validation.missing_name=The name is missing +coding_rules.validation.missing_description=The description is missing +coding_rules.validation.missing_severity=The severity is missing +coding_rules.validation.invalid_severity=Severity "{0}" is invalid +coding_rules.validation.missing_status=The status is missing +coding_rules.validation.manual_rule_params=No parameter can be set on a manual rule + coding_rules.filters.activation=Activation coding_rules.filters.activation.active=Active coding_rules.filters.activation.inactive=Inactive @@ -2780,7 +2788,7 @@ errors.is_already_used={0} has already been taken errors.cant_be_empty={0} can't be empty errors.is_not_valid={0} is not valid -errors.type.notBoolean=Valid '{0}' must be one of "true" or "false". +errors.type.notBoolean=Value '{0}' must be one of "true" or "false". errors.type.notInteger=Value '{0}' must be an integer. errors.type.notFloat=Value '{0}' must be an floating point number. errors.type.notInOptions=Value '{0}' must be one of : {1}. |