Numerous bugfixes, improved XPath rule creation validation
Specified default 'user-specified' priority names Renamed remaining MSGKEY-prefixed String keys New reset-to-default-values in rule properties menu (single item for now) New PMD Name column in marker prefs table & new column tooltips for same Commented-out original PMD preferences view from main preference tree Repositioned Language min/max & priority fields Updated to latest PMD core git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@7137 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
@ -188,11 +188,11 @@ view.column.package = Package
|
||||
view.column.project = Project
|
||||
view.column.location = Line
|
||||
|
||||
view.filter.priority.1 = Show priority 1 violations
|
||||
view.filter.priority.2 = Show priority 2 violations
|
||||
view.filter.priority.3 = Show priority 3 violations
|
||||
view.filter.priority.4 = Show priority 4 violations
|
||||
view.filter.priority.5 = Show priority 5 violations
|
||||
view.filter.priority.1 = Blocker
|
||||
view.filter.priority.2 = Critical
|
||||
view.filter.priority.3 = Urgent
|
||||
view.filter.priority.4 = Important
|
||||
view.filter.priority.5 = Warning
|
||||
view.filter.project_prefix = Show Project
|
||||
|
||||
view.action.disable.rule = Disable rule
|
||||
@ -213,6 +213,7 @@ view.tooltip.show_rule = Show rule data from the selected violation
|
||||
view.tooltip.review = Insert a comment where the violation occurs to mark it as reviewed.
|
||||
view.tooltip.remove_violation = Remove the selected violation
|
||||
view.tooltip.quickfix = Try to resolve this violation
|
||||
view.tooltip.filter.priority = Show %s violations
|
||||
view.tooltip.filter.priority.1 = Show priority 1 violations (error high)
|
||||
view.tooltip.filter.priority.2 = Show priority 2 violations (error)
|
||||
view.tooltip.filter.priority.3 = Show priority 3 violations (warning high)
|
||||
@ -310,7 +311,7 @@ message.warning.message_mandatory = Violation message is mandatory
|
||||
message.warning.xpath_mandatory = XPath is mandatory
|
||||
message.warning.class_invalid = Invalid implementation class. The class must be in the plugin classpath and implement the Rule interface. See the related "how to use custom ruleset" in the online documentation.
|
||||
|
||||
# Priority labels
|
||||
# Priority labels - not used in the modern UI CAN BE REMOVED WHENEVER
|
||||
priority.error_high = Error high
|
||||
priority.error = Error
|
||||
priority.warning_high = Warning high
|
||||
@ -318,8 +319,14 @@ priority.warning = Warning
|
||||
priority.information = Information
|
||||
|
||||
priority.column.name = Name
|
||||
priority.column.name.tooltip = User-specified name
|
||||
priority.column.name.pmd = PMD Name
|
||||
priority.column.name.pmd.tooltip = Original priority name as specified in PMD
|
||||
priority.column.value = Value
|
||||
priority.column.value.tooltip = Relative value, 1 = highest
|
||||
priority.column.size = Size
|
||||
priority.column.shape = Shape
|
||||
priority.column.shape.tooltip = Decoration marker shape
|
||||
priority.column.color = Color
|
||||
priority.column.color.tooltip = Decoration marker color
|
||||
priority.column.description = Description
|
Reference in New Issue
Block a user