Project

General

Profile

« Previous | Next » 

Revision 9b792c34

Added by Katja Luther about 4 years ago

smaller changes in distribution aggregation ui

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/l10n/Messages.java
731 731
    public static String CommonNameLanguages_Title;
732 732

  
733 733

  
734
    public static String AggregationWizardPage_WITHOUT_CHILDREN;
735

  
736

  
734 737

  
735 738

  
736 739

  
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/l10n/messages.properties
558 558
DistributionAggregationWizardPage_TOOLTIP_SOURCEMODE_WITHIN_TAXON=Defines the source mode if aggragation within taxon is selected.
559 559
AggregationWizardPage_SUBTREE=Aggregation for selected subtree(s) 
560 560
AggregationWizardPage_SINGLE_TAXON=Aggregation only for
561
AggregationWizardPage_WITHOUT_CHILDREN= (without children)
561 562
SetAggregationConfiguration_Title=Aggregation configuration;
562 563
StructuredDescriptionAggregationWizardPage_SELECT_SUBTREE=Select subtree(s) for aggregation
563 564
StructuredDescriptionAggregationWizardPage_TOOLTIP_SELECT_SUBTREE=If not all subtrees included in the descriptive data set should be aggregated, select the subtrees for the aggregation
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/dialog/configurator/DistributionAggregationWizardPage.java
109 109
        }
110 110
        if (StringUtils.isNotBlank(taxonStr)){
111 111
            checkUseSelectedSubtree= new Button(composite,  SWT.RADIO);
112
            checkUseSelectedSubtree.setText(Messages.AggregationWizardPage_SUBTREE+  taxonStr);
112
            checkUseSelectedSubtree.setText(Messages.AggregationWizardPage_SUBTREE + " "+ taxonStr);
113 113
            checkUseSelectedSubtree.addListener(SWT.Selection, new Listener() {
114 114
                @Override
115 115
                public void handleEvent(Event e) {
......
123 123
            });
124 124

  
125 125
            checkUseSelectedTaxonNode= new Button(composite,  SWT.RADIO);
126
            checkUseSelectedTaxonNode.setText(Messages.AggregationWizardPage_SINGLE_TAXON+  taxonStr);
126
            checkUseSelectedTaxonNode.setText(Messages.AggregationWizardPage_SINGLE_TAXON + " " + taxonStr + " "+Messages.AggregationWizardPage_WITHOUT_CHILDREN);
127 127
            checkUseSelectedTaxonNode.addListener(SWT.Selection, new Listener() {
128 128
                @Override
129 129
                public void handleEvent(Event e) {
......
437 437
        if (event.widget.equals(comboHigherRank)){
438 438
            updateLowerRankCombo();
439 439
        }
440
        if (event.widget.equals(selectedClassification)){
440
        if (event.widget.equals(comboClassificationSelection)){
441 441
            updateHigherRankCombo();
442 442
            updateLowerRankCombo();
443 443
        }

Also available in: Unified diff