]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7878 Update docs
authorSiegfried Ehret <siegfried.ehret@sonarsource.com>
Tue, 23 Jul 2019 09:48:31 +0000 (11:48 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 24 Jul 2019 06:49:42 +0000 (08:49 +0200)
server/sonar-docs/src/pages/extend/i18n.md

index 9ac9f8b758d2d46a9d4bcaedfc67fa68157fe244..9d32c4874fd07aed22270dd57896371547524358 100644 (file)
@@ -28,6 +28,7 @@ Localized messages are stored in properties files:
    * `myplugin.foo=This is a message with 2 params: the first "{0}" and the second "{1}".`
 * Messages can accept pluralization. Such entries would look like:
    * `myplugin.foo={x, number} {x, plural, one {thing} other {things}}`
+   * We use it for example with a combination of 2 labels: `component_navigation.last_analysis_had_warnings=Last analysis had {warnings}` and `component_navigation.x_warnings={warningsCount, number} {warningsCount, plural, one {warning} other {warnings}}`. This renders `Last analysis had 1 warning` if `warningsCount` equals 1 and `Last analysis had 2 warnings` otherwise, in this case 2.
    * Learn more about this syntax [here](https://formatjs.io/guides/message-syntax/#plural-format).
    
 [[warning]]