diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/about/components/AboutQualityModelSonarCloud.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/about/components/AboutQualityModelSonarCloud.js | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/server/sonar-web/src/main/js/apps/about/components/AboutQualityModelSonarCloud.js b/server/sonar-web/src/main/js/apps/about/components/AboutQualityModelSonarCloud.js deleted file mode 100644 index df5d87996eb..00000000000 --- a/server/sonar-web/src/main/js/apps/about/components/AboutQualityModelSonarCloud.js +++ /dev/null @@ -1,66 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info AT sonarsource DOT com - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ -import React from 'react'; -import { translate } from '../../../helpers/l10n'; -import BugIconSonarCloud from './BugIconSonarCloud'; -import VulnerabilityIconSonarCloud from './VulnerabilityIconSonarCloud'; -import CodeSmellIconSonarCloud from './CodeSmellIconSonarCloud'; - -export default function AboutQualityModelSonarCloud() { - return ( - <div className="boxed-group about-quality-model sqcom-about-quality-model"> - <h2>{translate('about_page.quality_model')}</h2> - - <div className="boxed-group-inner clearfix"> - <div className="flex-columns"> - <div className="flex-column flex-column-third"> - <div className="pull-left little-spacer-right"> - <BugIconSonarCloud /> - </div> - <p className="about-page-text overflow-hidden"> - <strong>{translate('issue.type.BUG.plural')}</strong>{' '} - {translate('about_page.quality_model.bugs')} - </p> - </div> - - <div className="flex-column flex-column-third"> - <div className="pull-left little-spacer-right"> - <VulnerabilityIconSonarCloud /> - </div> - <p className="about-page-text overflow-hidden"> - <strong>{translate('issue.type.VULNERABILITY.plural')}</strong>{' '} - {translate('about_page.quality_model.vulnerabilities')} - </p> - </div> - - <div className="flex-column flex-column-third"> - <div className="pull-left little-spacer-right"> - <CodeSmellIconSonarCloud /> - </div> - <p className="about-page-text overflow-hidden"> - <strong>{translate('issue.type.CODE_SMELL.plural')}</strong>{' '} - {translate('about_page.quality_model.code_smells')} - </p> - </div> - </div> - </div> - </div> - ); -} |