From: Grégoire Aubert Date: Mon, 25 Sep 2017 14:33:23 +0000 (+0200) Subject: Fix typo X-Git-Tag: 6.6-RC1~245 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=546d7b8636fbe22e537e31aca5ff028c2755f852;p=sonarqube.git Fix typo --- diff --git a/server/sonar-web/src/main/js/apps/web-api/components/DeprecatedBadge.tsx b/server/sonar-web/src/main/js/apps/web-api/components/DeprecatedBadge.tsx index c2a786f62b2..f079061390b 100644 --- a/server/sonar-web/src/main/js/apps/web-api/components/DeprecatedBadge.tsx +++ b/server/sonar-web/src/main/js/apps/web-api/components/DeprecatedBadge.tsx @@ -23,8 +23,8 @@ import { translate, translateWithParameters } from '../../../helpers/l10n'; export default function DeprecatedBadge({ since }: { since?: string }) { const label = since - ? translateWithParameters('api_documentation.depracated_since_x', since) - : translate('api_documentation.depracated'); + ? translateWithParameters('api_documentation.deprecated_since_x', since) + : translate('api_documentation.deprecated'); return ( {label} 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 eb6a8c88bfa..aca17c1f279 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -2926,7 +2926,7 @@ api_documentation.example_values=Example value api_documentation.max_values=Maximum allowed values api_documentation.internal=internal api_documentation.deprecated=deprecated -api_documentation.depracated_since_x=deprecated since {0} +api_documentation.deprecated_since_x=deprecated since {0} api_documentation.parameters=Parameters api_documentation.response_example=Response Example api_documentation.changelog=Changelog