diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-08-01 16:10:08 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-08-01 16:10:08 +0200 |
commit | c8c4752cf3f27fb4b0acf1234208127934689568 (patch) | |
tree | 968e2a81f7ba390d2037c48b2c15bffa3c3ef702 /plugins/sonar-l10n-en-plugin | |
parent | 67fe723d894ac406fe7b859bdcd13d5ea35e6f6e (diff) | |
download | sonarqube-c8c4752cf3f27fb4b0acf1234208127934689568.tar.gz sonarqube-c8c4752cf3f27fb4b0acf1234208127934689568.zip |
SONAR-75 support GWT components integrated to core
Diffstat (limited to 'plugins/sonar-l10n-en-plugin')
3 files changed, 64 insertions, 4 deletions
diff --git a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties index ba9f2dfe8cd..b5b2ae3815a 100644 --- a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties +++ b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties @@ -293,8 +293,13 @@ violations_drilldown.page=Violations drilldown update_center.page=Update Center email_configuration.page=Email configuration +# GWT pages org.sonar.plugins.core.hotspots.GwtHotspots.page=Hotspots org.sonar.plugins.core.duplicationsviewer.DuplicationsViewer.page=Duplications +org.sonar.plugins.design.ui.page.DesignPage.page=Design +org.sonar.plugins.design.ui.libraries.LibrariesPage.page=Libraries +org.sonar.plugins.design.ui.dependencies.DependenciesTab.page=Dependencies +org.sonar.plugins.design.ui.lcom4.Lcom4Tab.page=LCOM4 #------------------------------------------------------------------------------ diff --git a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/design.properties b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/design.properties deleted file mode 100644 index e6356b6e141..00000000000 --- a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/design.properties +++ /dev/null @@ -1,4 +0,0 @@ -org.sonar.plugins.design.ui.page.DesignPage.page=Design -org.sonar.plugins.design.ui.libraries.LibrariesPage.page=Libraries -org.sonar.plugins.design.ui.dependencies.DependenciesTab.page=Dependencies -org.sonar.plugins.design.ui.lcom4.Lcom4Tab.page=LCOM4 diff --git a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/gwt.properties b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/gwt.properties new file mode 100644 index 00000000000..d36d51254e9 --- /dev/null +++ b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/gwt.properties @@ -0,0 +1,59 @@ +noData=No data +newWindow=New window + +# dependencies viewer (tab) +depsTab.afferentCouplings=Afferent (incoming) couplings +depsTab.efferentCouplings=Efferent (outgoing) couplings +depsTab.classes=Classes +depsTab.dit=Depth in Tree +depsTab.noc=Number of Children +depsTab.rfc=Response for Class +depsTab.lcom4=Lack of Cohesion of Methods + + +# Design page (DSM) +design.help=Help +design.legend.dependencies=Dependency +design.legend.cycles=Suspect dependency (cycle) +design.legend.uses=- uses > +design.cellTooltip=Click to highlight, double-click to display more details +design.rowTooltip=Click to highlight, double-click to zoom + + +# Libraries page +libs.filter=Filter: +libs.displayTests=Display test libraries +libs.expand=Expand all +libs.collapse=Collapse all +libs.noLibraries=No libraries +libs.usageLink=Usages + + +# Duplications viewer +dupl.lines=Lines +dupl.duplicated_lines=Duplicated lines +dupl.duplicated_blocks=Duplicated blocks +dupl.colSize=Nb lines +dupl.colFromLine=From line +dupl.colFile=File + + +# Hotspots +hotspot.mostViolatedRules=Most violated rules +hotspot.titleMostViolatedResources=Most violated +hotspot.titleLongestTests=Longest unit tests +hotspot.titleMostComplexResources=Highest complexity +hotspot.titleMostDuplicatedResources=Highest duplications +hotspot.titleLessTested=Highest untested lines +hotspot.titleMostComplexMethods=Highest average method complexity +hotspot.titleMostUndocumentedAPI=Most undocumented APIs +hotspot.noMeasures=No measures +hotspot.anySeverity=Any severity +hotspot.moreDetails=more +hotspot.lcom4=Lack of Cohesion of Methods +hotspot.rfc=Response for class +hotspot.designTitle=Highest + + +# LCOM4 viewer +lcom4.metric=Lack of Cohesion of Methods
\ No newline at end of file |