Added implementation of taxonomy set operations (intersection and union)
This commit is contained in:
parent
b639e36961
commit
acf2fb086b
|
@ -858,11 +858,15 @@ public class XML_processing {
|
||||||
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
||||||
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
||||||
|
|
||||||
if (currentFiletaxonomy.isEmpty()) {
|
if (stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.UNION")) && currentFiletaxonomy.isEmpty()) {
|
||||||
// taxonomies don't match so stop
|
// taxonomies don't match so stop
|
||||||
|
// union (select words that match any of selected taxonomy
|
||||||
// return false;
|
// return false;
|
||||||
taxonomyMatch = false;
|
taxonomyMatch = false;
|
||||||
// System.out.println("TEST");
|
//
|
||||||
|
} else if(stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.INTERSECTION")) && currentFiletaxonomy.size() != stats.getFilter().getTaxonomy().size()){
|
||||||
|
// intersection (select only words that precisely match selected taxonomy
|
||||||
|
taxonomyMatch = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1114,11 +1118,15 @@ public class XML_processing {
|
||||||
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
||||||
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
||||||
|
|
||||||
if (currentFiletaxonomy.isEmpty()) {
|
if (stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.UNION")) && currentFiletaxonomy.isEmpty()) {
|
||||||
// taxonomies don't match so stop
|
// taxonomies don't match so stop
|
||||||
|
// union (select words that match any of selected taxonomy
|
||||||
// return false;
|
// return false;
|
||||||
taxonomyMatch = false;
|
taxonomyMatch = false;
|
||||||
// System.out.println("TEST");
|
//
|
||||||
|
} else if(stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.INTERSECTION")) && currentFiletaxonomy.size() != stats.getFilter().getTaxonomy().size()){
|
||||||
|
// intersection (select only words that precisely match selected taxonomy
|
||||||
|
taxonomyMatch = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (endElement.getName().getLocalPart().equals("text")){
|
} else if (endElement.getName().getLocalPart().equals("text")){
|
||||||
|
@ -1400,13 +1408,29 @@ public class XML_processing {
|
||||||
|
|
||||||
} else if (endElement.getName().getLocalPart().equals("teiHeader")) {
|
} else if (endElement.getName().getLocalPart().equals("teiHeader")) {
|
||||||
// before proceeding to read this file, make sure that taxonomy filters are a match
|
// before proceeding to read this file, make sure that taxonomy filters are a match
|
||||||
|
// if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
||||||
|
// currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
||||||
|
//
|
||||||
|
// // disregard this entry if taxonomies don't match
|
||||||
|
// includeFile = !currentFiletaxonomy.isEmpty();
|
||||||
|
//
|
||||||
|
//// currentFiletaxonomy = new ArrayList<>();
|
||||||
|
// }
|
||||||
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
||||||
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
||||||
|
|
||||||
// disregard this entry if taxonomies don't match
|
if (stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.UNION")) && currentFiletaxonomy.isEmpty()) {
|
||||||
includeFile = !currentFiletaxonomy.isEmpty();
|
// taxonomies don't match so stop
|
||||||
|
// union (select words that match any of selected taxonomy
|
||||||
// currentFiletaxonomy = new ArrayList<>();
|
// return false;
|
||||||
|
includeFile = false;
|
||||||
|
//
|
||||||
|
} else if(stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.INTERSECTION")) && currentFiletaxonomy.size() != stats.getFilter().getTaxonomy().size()){
|
||||||
|
// intersection (select only words that precisely match selected taxonomy
|
||||||
|
includeFile = false;
|
||||||
|
} else {
|
||||||
|
includeFile = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1580,8 +1604,14 @@ public class XML_processing {
|
||||||
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
if (!ValidationUtil.isEmpty(stats.getFilter().getTaxonomy())) {
|
||||||
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
currentFiletaxonomy.retainAll(stats.getFilter().getTaxonomy()); // intersection
|
||||||
|
|
||||||
if (currentFiletaxonomy.isEmpty()) {
|
if (stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.UNION")) && currentFiletaxonomy.isEmpty()) {
|
||||||
// taxonomies don't match so don't save
|
// taxonomies don't match so stop
|
||||||
|
// union (select words that match any of selected taxonomy
|
||||||
|
// return false;
|
||||||
|
taxonomyMatch = false;
|
||||||
|
//
|
||||||
|
} else if(stats.getFilter().getTaxonomySetOperation().equals(I18N.get("taxonomySetOperation.INTERSECTION")) && currentFiletaxonomy.size() != stats.getFilter().getTaxonomy().size()){
|
||||||
|
// intersection (select only words that precisely match selected taxonomy
|
||||||
taxonomyMatch = false;
|
taxonomyMatch = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,7 @@ public class Filter implements Cloneable {
|
||||||
NOTE_PUNCTUATIONS,
|
NOTE_PUNCTUATIONS,
|
||||||
MINIMAL_OCCURRENCES,
|
MINIMAL_OCCURRENCES,
|
||||||
MINIMAL_TAXONOMY,
|
MINIMAL_TAXONOMY,
|
||||||
|
TAXONOMY_SET_OPERATION,
|
||||||
COLLOCABILITY,
|
COLLOCABILITY,
|
||||||
PREFIX_LENGTH,
|
PREFIX_LENGTH,
|
||||||
SUFFIX_LENGTH,
|
SUFFIX_LENGTH,
|
||||||
|
@ -104,6 +105,14 @@ public class Filter implements Cloneable {
|
||||||
return (Integer) filter.get(STRING_LENGTH);
|
return (Integer) filter.get(STRING_LENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setTaxonomySetOperation(String taxonomySetOperation) {
|
||||||
|
filter.put(TAXONOMY_SET_OPERATION, taxonomySetOperation);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTaxonomySetOperation() {
|
||||||
|
return (String) filter.get(TAXONOMY_SET_OPERATION);
|
||||||
|
}
|
||||||
|
|
||||||
public void setTaxonomy(ArrayList<Taxonomy> taxonomy) {
|
public void setTaxonomy(ArrayList<Taxonomy> taxonomy) {
|
||||||
filter.put(TAXONOMY, taxonomy);
|
filter.put(TAXONOMY, taxonomy);
|
||||||
}
|
}
|
||||||
|
|
|
@ -593,6 +593,12 @@ public class StatisticsNew {
|
||||||
info.put(I18N.get("exportHeader.msd"), "");
|
info.put(I18N.get("exportHeader.msd"), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isEmpty(filter.getTaxonomySetOperation())) {
|
||||||
|
info.put(I18N.get("exportHeader.taxonomySetOperation"), filter.getTaxonomySetOperation());
|
||||||
|
} else {
|
||||||
|
info.put(I18N.get("exportHeader.taxonomySetOperation"), "");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
|
@ -66,6 +66,9 @@ public class CharacterAnalysisTab {
|
||||||
@FXML
|
@FXML
|
||||||
public Label minimalTaxonomyL;
|
public Label minimalTaxonomyL;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public Label taxonomySetOperationL;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView stringLengthI;
|
public ImageView stringLengthI;
|
||||||
|
|
||||||
|
@ -87,6 +90,9 @@ public class CharacterAnalysisTab {
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView minimalTaxonomyI;
|
public ImageView minimalTaxonomyI;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public ImageView taxonomySetOperationI;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public Label solarFilters;
|
public Label solarFilters;
|
||||||
|
|
||||||
|
@ -119,6 +125,10 @@ public class CharacterAnalysisTab {
|
||||||
private TextField minimalTaxonomyTF;
|
private TextField minimalTaxonomyTF;
|
||||||
private Integer minimalTaxonomy;
|
private Integer minimalTaxonomy;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private ComboBox<String> taxonomySetOperationCB;
|
||||||
|
private String taxonomySetOperation;
|
||||||
|
|
||||||
// @FXML
|
// @FXML
|
||||||
// private ToggleGroup calculateForRB;
|
// private ToggleGroup calculateForRB;
|
||||||
// private CalculateFor calculateFor;
|
// private CalculateFor calculateFor;
|
||||||
|
@ -169,6 +179,9 @@ public class CharacterAnalysisTab {
|
||||||
private static final String [] N_GRAM_COMPUTE_FOR_LETTERS_ARRAY = {"calculateFor.WORD", "calculateFor.LEMMA"};
|
private static final String [] N_GRAM_COMPUTE_FOR_LETTERS_ARRAY = {"calculateFor.WORD", "calculateFor.LEMMA"};
|
||||||
private static final ArrayList<String> N_GRAM_COMPUTE_FOR_LETTERS = new ArrayList<>(Arrays.asList(N_GRAM_COMPUTE_FOR_LETTERS_ARRAY));
|
private static final ArrayList<String> N_GRAM_COMPUTE_FOR_LETTERS = new ArrayList<>(Arrays.asList(N_GRAM_COMPUTE_FOR_LETTERS_ARRAY));
|
||||||
|
|
||||||
|
private static final String [] TAXONOMY_SET_OPERATION_ARRAY = {"taxonomySetOperation.UNION", "taxonomySetOperation.INTERSECTION"};
|
||||||
|
private static final ArrayList<String> TAXONOMY_SET_OPERATION = new ArrayList<>(Arrays.asList(TAXONOMY_SET_OPERATION_ARRAY));
|
||||||
|
|
||||||
// private static final ObservableList<String> N_GRAM_COMPUTE_FOR_LETTERS = FXCollections.observableArrayList("različnica", "lema");
|
// private static final ObservableList<String> N_GRAM_COMPUTE_FOR_LETTERS = FXCollections.observableArrayList("različnica", "lema");
|
||||||
private static final ObservableList<String> N_GRAM_COMPUTE_FOR_WORDS_ORTH = FXCollections.observableArrayList("različnica");
|
private static final ObservableList<String> N_GRAM_COMPUTE_FOR_WORDS_ORTH = FXCollections.observableArrayList("različnica");
|
||||||
|
|
||||||
|
@ -211,6 +224,18 @@ public class CharacterAnalysisTab {
|
||||||
|
|
||||||
calculateForCB.getSelectionModel().select(0);
|
calculateForCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
taxonomySetOperationCB.valueProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
|
if(newValue == null){
|
||||||
|
newValue = I18N.getTranslatedValue(oldValue, TAXONOMY_SET_OPERATION);
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(newValue);
|
||||||
|
}
|
||||||
|
taxonomySetOperation = newValue;
|
||||||
|
logger.info("Taxonomy set operation:", taxonomySetOperation);
|
||||||
|
});
|
||||||
|
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
// msd
|
// msd
|
||||||
msdTF.focusedProperty().addListener((observable, oldValue, newValue) -> {
|
msdTF.focusedProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
if (!newValue) {
|
if (!newValue) {
|
||||||
|
@ -279,6 +304,12 @@ public class CharacterAnalysisTab {
|
||||||
for (Taxonomy t : checkedItemsTaxonomy) {
|
for (Taxonomy t : checkedItemsTaxonomy) {
|
||||||
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
||||||
}
|
}
|
||||||
|
if (taxonomyCCB.getCheckModel().getCheckedItems().size() > 0) {
|
||||||
|
taxonomySetOperationCB.setDisable(false);
|
||||||
|
} else {
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
}
|
||||||
changing = true;
|
changing = true;
|
||||||
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
||||||
}
|
}
|
||||||
|
@ -519,6 +550,7 @@ public class CharacterAnalysisTab {
|
||||||
taxonomyL.textProperty().bind(I18N.createStringBinding("label.taxonomy"));
|
taxonomyL.textProperty().bind(I18N.createStringBinding("label.taxonomy"));
|
||||||
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
||||||
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
||||||
|
taxonomySetOperationL.textProperty().bind(I18N.createStringBinding("label.taxonomySetOperation"));
|
||||||
|
|
||||||
addTooltipToImage(stringLengthI, I18N.createStringBinding("label.letter.stringLengthH"));
|
addTooltipToImage(stringLengthI, I18N.createStringBinding("label.letter.stringLengthH"));
|
||||||
addTooltipToImage(calculateForI, I18N.createStringBinding("label.letter.calculateForH"));
|
addTooltipToImage(calculateForI, I18N.createStringBinding("label.letter.calculateForH"));
|
||||||
|
@ -527,11 +559,13 @@ public class CharacterAnalysisTab {
|
||||||
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.letter.taxonomyH"));
|
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.letter.taxonomyH"));
|
||||||
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.letter.minimalOccurrencesH"));
|
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.letter.minimalOccurrencesH"));
|
||||||
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.letter.minimalTaxonomyH"));
|
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.letter.minimalTaxonomyH"));
|
||||||
|
addTooltipToImage(taxonomySetOperationI, I18N.createStringBinding("label.letter.taxonomySetOperationH"));
|
||||||
|
|
||||||
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
||||||
|
|
||||||
|
|
||||||
calculateForCB.itemsProperty().bind(I18N.createObjectBinding(N_GRAM_COMPUTE_FOR_LETTERS));
|
calculateForCB.itemsProperty().bind(I18N.createObjectBinding(N_GRAM_COMPUTE_FOR_LETTERS));
|
||||||
|
taxonomySetOperationCB.itemsProperty().bind(I18N.createObjectBinding(TAXONOMY_SET_OPERATION));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -595,6 +629,7 @@ public class CharacterAnalysisTab {
|
||||||
filter.setStringLength(stringLength);
|
filter.setStringLength(stringLength);
|
||||||
filter.setMinimalOccurrences(minimalOccurrences);
|
filter.setMinimalOccurrences(minimalOccurrences);
|
||||||
filter.setMinimalTaxonomy(minimalTaxonomy);
|
filter.setMinimalTaxonomy(minimalTaxonomy);
|
||||||
|
filter.setTaxonomySetOperation(taxonomySetOperation);
|
||||||
|
|
||||||
String message = Validation.validateForStringLevel(filter);
|
String message = Validation.validateForStringLevel(filter);
|
||||||
if (message == null) {
|
if (message == null) {
|
||||||
|
|
|
@ -71,6 +71,9 @@ public class OneWordAnalysisTab {
|
||||||
@FXML
|
@FXML
|
||||||
public Label minimalTaxonomyL;
|
public Label minimalTaxonomyL;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public Label taxonomySetOperationL;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView calculateForI;
|
public ImageView calculateForI;
|
||||||
|
|
||||||
|
@ -95,6 +98,9 @@ public class OneWordAnalysisTab {
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView minimalTaxonomyI;
|
public ImageView minimalTaxonomyI;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public ImageView taxonomySetOperationI;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private TextField msdTF;
|
private TextField msdTF;
|
||||||
private ArrayList<Pattern> msd;
|
private ArrayList<Pattern> msd;
|
||||||
|
@ -128,6 +134,10 @@ public class OneWordAnalysisTab {
|
||||||
private TextField minimalTaxonomyTF;
|
private TextField minimalTaxonomyTF;
|
||||||
private Integer minimalTaxonomy;
|
private Integer minimalTaxonomy;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private ComboBox<String> taxonomySetOperationCB;
|
||||||
|
private String taxonomySetOperation;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private Button computeNgramsB;
|
private Button computeNgramsB;
|
||||||
|
|
||||||
|
@ -201,6 +211,9 @@ public class OneWordAnalysisTab {
|
||||||
private static final String [] ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY = {};
|
private static final String [] ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY = {};
|
||||||
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_EMPTY = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY));
|
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_EMPTY = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY));
|
||||||
|
|
||||||
|
private static final String [] TAXONOMY_SET_OPERATION_ARRAY = {"taxonomySetOperation.UNION", "taxonomySetOperation.INTERSECTION"};
|
||||||
|
private static final ArrayList<String> TAXONOMY_SET_OPERATION = new ArrayList<>(Arrays.asList(TAXONOMY_SET_OPERATION_ARRAY));
|
||||||
|
|
||||||
// TODO: pass observables for taxonomy based on header scan
|
// TODO: pass observables for taxonomy based on header scan
|
||||||
// after header scan
|
// after header scan
|
||||||
private ObservableList<String> taxonomyCCBValues;
|
private ObservableList<String> taxonomyCCBValues;
|
||||||
|
@ -320,6 +333,18 @@ public class OneWordAnalysisTab {
|
||||||
|
|
||||||
calculateForCB.getSelectionModel().select(0);
|
calculateForCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
taxonomySetOperationCB.valueProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
|
if(newValue == null){
|
||||||
|
newValue = I18N.getTranslatedValue(oldValue, TAXONOMY_SET_OPERATION);
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(newValue);
|
||||||
|
}
|
||||||
|
taxonomySetOperation = newValue;
|
||||||
|
logger.info("Taxonomy set operation:", taxonomySetOperation);
|
||||||
|
});
|
||||||
|
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
// msd
|
// msd
|
||||||
msdTF.focusedProperty().addListener((observable, oldValue, newValue) -> {
|
msdTF.focusedProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
if (!newValue) {
|
if (!newValue) {
|
||||||
|
@ -419,6 +444,12 @@ public class OneWordAnalysisTab {
|
||||||
for (Taxonomy t : checkedItemsTaxonomy) {
|
for (Taxonomy t : checkedItemsTaxonomy) {
|
||||||
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
||||||
}
|
}
|
||||||
|
if (taxonomyCCB.getCheckModel().getCheckedItems().size() > 0) {
|
||||||
|
taxonomySetOperationCB.setDisable(false);
|
||||||
|
} else {
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
}
|
||||||
changing = true;
|
changing = true;
|
||||||
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
||||||
}
|
}
|
||||||
|
@ -629,6 +660,7 @@ public class OneWordAnalysisTab {
|
||||||
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
||||||
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
||||||
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
||||||
|
taxonomySetOperationL.textProperty().bind(I18N.createStringBinding("label.taxonomySetOperation"));
|
||||||
|
|
||||||
addTooltipToImage(calculateForI, I18N.createStringBinding("label.word.calculateForH"));
|
addTooltipToImage(calculateForI, I18N.createStringBinding("label.word.calculateForH"));
|
||||||
addTooltipToImage(alsoVisualizeI, I18N.createStringBinding("label.word.alsoVisualizeH"));
|
addTooltipToImage(alsoVisualizeI, I18N.createStringBinding("label.word.alsoVisualizeH"));
|
||||||
|
@ -639,6 +671,9 @@ public class OneWordAnalysisTab {
|
||||||
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.word.taxonomyH"));
|
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.word.taxonomyH"));
|
||||||
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.word.minimalOccurrencesH"));
|
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.word.minimalOccurrencesH"));
|
||||||
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.word.minimalTaxonomyH"));
|
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.word.minimalTaxonomyH"));
|
||||||
|
addTooltipToImage(taxonomySetOperationI, I18N.createStringBinding("label.letter.taxonomySetOperationH"));
|
||||||
|
|
||||||
|
taxonomySetOperationCB.itemsProperty().bind(I18N.createObjectBinding(TAXONOMY_SET_OPERATION));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -692,6 +727,7 @@ public class OneWordAnalysisTab {
|
||||||
filter.setMinimalOccurrences(minimalOccurrences);
|
filter.setMinimalOccurrences(minimalOccurrences);
|
||||||
filter.setMinimalTaxonomy(minimalTaxonomy);
|
filter.setMinimalTaxonomy(minimalTaxonomy);
|
||||||
filter.setWriteMsdAtTheEnd(writeMsdAtTheEnd);
|
filter.setWriteMsdAtTheEnd(writeMsdAtTheEnd);
|
||||||
|
filter.setTaxonomySetOperation(taxonomySetOperation);
|
||||||
|
|
||||||
String message = Validation.validateForStringLevel(filter);
|
String message = Validation.validateForStringLevel(filter);
|
||||||
if (message == null) {
|
if (message == null) {
|
||||||
|
|
|
@ -69,6 +69,9 @@ public class StringAnalysisTabNew2 {
|
||||||
@FXML
|
@FXML
|
||||||
public Label minimalTaxonomyL;
|
public Label minimalTaxonomyL;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public Label taxonomySetOperationL;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public Label skipValueL;
|
public Label skipValueL;
|
||||||
|
|
||||||
|
@ -108,6 +111,9 @@ public class StringAnalysisTabNew2 {
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView minimalTaxonomyI;
|
public ImageView minimalTaxonomyI;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public ImageView taxonomySetOperationI;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView skipValueI;
|
public ImageView skipValueI;
|
||||||
|
|
||||||
|
@ -173,6 +179,10 @@ public class StringAnalysisTabNew2 {
|
||||||
private TextField minimalTaxonomyTF;
|
private TextField minimalTaxonomyTF;
|
||||||
private Integer minimalTaxonomy;
|
private Integer minimalTaxonomy;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private ComboBox<String> taxonomySetOperationCB;
|
||||||
|
private String taxonomySetOperation;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private Pane paneWords;
|
private Pane paneWords;
|
||||||
|
|
||||||
|
@ -250,6 +260,8 @@ public class StringAnalysisTabNew2 {
|
||||||
private static final String [] ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY = {};
|
private static final String [] ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY = {};
|
||||||
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_EMPTY = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY));
|
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_EMPTY = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY));
|
||||||
|
|
||||||
|
private static final String [] TAXONOMY_SET_OPERATION_ARRAY = {"taxonomySetOperation.UNION", "taxonomySetOperation.INTERSECTION"};
|
||||||
|
private static final ArrayList<String> TAXONOMY_SET_OPERATION = new ArrayList<>(Arrays.asList(TAXONOMY_SET_OPERATION_ARRAY));
|
||||||
|
|
||||||
// TODO: pass observables for taxonomy based on header scan
|
// TODO: pass observables for taxonomy based on header scan
|
||||||
// after header scan
|
// after header scan
|
||||||
|
@ -431,6 +443,18 @@ public class StringAnalysisTabNew2 {
|
||||||
|
|
||||||
calculateForCB.getSelectionModel().select(0);
|
calculateForCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
taxonomySetOperationCB.valueProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
|
if(newValue == null){
|
||||||
|
newValue = I18N.getTranslatedValue(oldValue, TAXONOMY_SET_OPERATION);
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(newValue);
|
||||||
|
}
|
||||||
|
taxonomySetOperation = newValue;
|
||||||
|
logger.info("Taxonomy set operation:", taxonomySetOperation);
|
||||||
|
});
|
||||||
|
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
// collocabilityCCB
|
// collocabilityCCB
|
||||||
if (collocabilityListener != null){
|
if (collocabilityListener != null){
|
||||||
collocabilityCCB.getCheckModel().getCheckedItems().removeListener(collocabilityListener);
|
collocabilityCCB.getCheckModel().getCheckedItems().removeListener(collocabilityListener);
|
||||||
|
@ -565,6 +589,12 @@ public class StringAnalysisTabNew2 {
|
||||||
for (Taxonomy t : checkedItemsTaxonomy) {
|
for (Taxonomy t : checkedItemsTaxonomy) {
|
||||||
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
||||||
}
|
}
|
||||||
|
if (taxonomyCCB.getCheckModel().getCheckedItems().size() > 0) {
|
||||||
|
taxonomySetOperationCB.setDisable(false);
|
||||||
|
} else {
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
}
|
||||||
changing = true;
|
changing = true;
|
||||||
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
||||||
}
|
}
|
||||||
|
@ -806,6 +836,7 @@ public class StringAnalysisTabNew2 {
|
||||||
taxonomyL.textProperty().bind(I18N.createStringBinding("label.taxonomy"));
|
taxonomyL.textProperty().bind(I18N.createStringBinding("label.taxonomy"));
|
||||||
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
||||||
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
||||||
|
taxonomySetOperationL.textProperty().bind(I18N.createStringBinding("label.taxonomySetOperation"));
|
||||||
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
||||||
|
|
||||||
addTooltipToImage(calculateForI, I18N.createStringBinding("label.wordSet.calculateForH"));
|
addTooltipToImage(calculateForI, I18N.createStringBinding("label.wordSet.calculateForH"));
|
||||||
|
@ -820,6 +851,9 @@ public class StringAnalysisTabNew2 {
|
||||||
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.wordSet.taxonomyH"));
|
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.wordSet.taxonomyH"));
|
||||||
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.wordSet.minimalOccurrencesH"));
|
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.wordSet.minimalOccurrencesH"));
|
||||||
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.wordSet.minimalTaxonomyH"));
|
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.wordSet.minimalTaxonomyH"));
|
||||||
|
addTooltipToImage(taxonomySetOperationI, I18N.createStringBinding("label.letter.taxonomySetOperationH"));
|
||||||
|
|
||||||
|
taxonomySetOperationCB.itemsProperty().bind(I18N.createObjectBinding(TAXONOMY_SET_OPERATION));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -879,6 +913,7 @@ public class StringAnalysisTabNew2 {
|
||||||
filter.setMinimalOccurrences(minimalOccurrences);
|
filter.setMinimalOccurrences(minimalOccurrences);
|
||||||
filter.setMinimalTaxonomy(minimalTaxonomy);
|
filter.setMinimalTaxonomy(minimalTaxonomy);
|
||||||
filter.setCollocability(collocability);
|
filter.setCollocability(collocability);
|
||||||
|
filter.setTaxonomySetOperation(taxonomySetOperation);
|
||||||
|
|
||||||
// if (ngramValue != null && ngramValue == 0) {
|
// if (ngramValue != null && ngramValue == 0) {
|
||||||
// filter.setStringLength(stringLength);
|
// filter.setStringLength(stringLength);
|
||||||
|
|
|
@ -85,6 +85,9 @@ public class WordLevelTab {
|
||||||
@FXML
|
@FXML
|
||||||
public Label minimalTaxonomyL;
|
public Label minimalTaxonomyL;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public Label taxonomySetOperationL;
|
||||||
|
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView calculateForI;
|
public ImageView calculateForI;
|
||||||
|
@ -119,6 +122,9 @@ public class WordLevelTab {
|
||||||
@FXML
|
@FXML
|
||||||
public ImageView minimalTaxonomyI;
|
public ImageView minimalTaxonomyI;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
public ImageView taxonomySetOperationI;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private TextField msdTF;
|
private TextField msdTF;
|
||||||
private ArrayList<Pattern> msd;
|
private ArrayList<Pattern> msd;
|
||||||
|
@ -168,6 +174,10 @@ public class WordLevelTab {
|
||||||
private TextField minimalTaxonomyTF;
|
private TextField minimalTaxonomyTF;
|
||||||
private Integer minimalTaxonomy;
|
private Integer minimalTaxonomy;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private ComboBox<String> taxonomySetOperationCB;
|
||||||
|
private String taxonomySetOperation;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private Button computeNgramsB;
|
private Button computeNgramsB;
|
||||||
|
|
||||||
|
@ -226,6 +236,10 @@ public class WordLevelTab {
|
||||||
// private static final ObservableList<String> alsoVisualizeItemsMsd = FXCollections.observableArrayList("besedna vrsta");
|
// private static final ObservableList<String> alsoVisualizeItemsMsd = FXCollections.observableArrayList("besedna vrsta");
|
||||||
private static final String [] ALSO_VISUALIZE_ITEMS_MSD_ARRAY = {"calculateFor.WORD_TYPE"};
|
private static final String [] ALSO_VISUALIZE_ITEMS_MSD_ARRAY = {"calculateFor.WORD_TYPE"};
|
||||||
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_MSD = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_MSD_ARRAY));
|
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_MSD = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_MSD_ARRAY));
|
||||||
|
|
||||||
|
private static final String [] TAXONOMY_SET_OPERATION_ARRAY = {"taxonomySetOperation.UNION", "taxonomySetOperation.INTERSECTION"};
|
||||||
|
private static final ArrayList<String> TAXONOMY_SET_OPERATION = new ArrayList<>(Arrays.asList(TAXONOMY_SET_OPERATION_ARRAY));
|
||||||
|
|
||||||
// private static final ObservableList<String> alsoVisualizeItemsEmpty = FXCollections.observableArrayList();
|
// private static final ObservableList<String> alsoVisualizeItemsEmpty = FXCollections.observableArrayList();
|
||||||
private static final String [] ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY = {};
|
private static final String [] ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY = {};
|
||||||
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_EMPTY = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY));
|
private static final ArrayList<String> ALSO_VISUALIZE_ITEMS_EMPTY = new ArrayList<>(Arrays.asList(ALSO_VISUALIZE_ITEMS_EMPTY_ARRAY));
|
||||||
|
@ -344,6 +358,19 @@ public class WordLevelTab {
|
||||||
|
|
||||||
calculateForCB.getSelectionModel().select(0);
|
calculateForCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
taxonomySetOperationCB.valueProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
|
if(newValue == null){
|
||||||
|
newValue = I18N.getTranslatedValue(oldValue, TAXONOMY_SET_OPERATION);
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(newValue);
|
||||||
|
}
|
||||||
|
taxonomySetOperation = newValue;
|
||||||
|
logger.info("Taxonomy set operation:", taxonomySetOperation);
|
||||||
|
});
|
||||||
|
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
|
||||||
|
|
||||||
prefixLengthCB.getSelectionModel().select(0);
|
prefixLengthCB.getSelectionModel().select(0);
|
||||||
prefixLength = 0;
|
prefixLength = 0;
|
||||||
|
|
||||||
|
@ -547,6 +574,12 @@ public class WordLevelTab {
|
||||||
for (Taxonomy t : checkedItemsTaxonomy) {
|
for (Taxonomy t : checkedItemsTaxonomy) {
|
||||||
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
taxonomyCCB.getCheckModel().check(t.toLongNameString());
|
||||||
}
|
}
|
||||||
|
if (taxonomyCCB.getCheckModel().getCheckedItems().size() > 0) {
|
||||||
|
taxonomySetOperationCB.setDisable(false);
|
||||||
|
} else {
|
||||||
|
taxonomySetOperationCB.getSelectionModel().select(0);
|
||||||
|
taxonomySetOperationCB.setDisable(true);
|
||||||
|
}
|
||||||
changing = true;
|
changing = true;
|
||||||
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
logger.info(String.format("Selected taxonomy: %s", StringUtils.join(checkedItems, ",")));
|
||||||
}
|
}
|
||||||
|
@ -766,6 +799,7 @@ public class WordLevelTab {
|
||||||
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
minimalOccurrencesL.textProperty().bind(I18N.createStringBinding("label.minimalOccurrences"));
|
||||||
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
minimalTaxonomyL.textProperty().bind(I18N.createStringBinding("label.minimalTaxonomy"));
|
||||||
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
solarFilters.textProperty().bind(I18N.createStringBinding("label.solarFilters"));
|
||||||
|
taxonomySetOperationL.textProperty().bind(I18N.createStringBinding("label.taxonomySetOperation"));
|
||||||
|
|
||||||
addTooltipToImage(calculateForI, I18N.createStringBinding("label.wordPart.calculateForH"));
|
addTooltipToImage(calculateForI, I18N.createStringBinding("label.wordPart.calculateForH"));
|
||||||
addTooltipToImage(alsoVisualizeI, I18N.createStringBinding("label.wordPart.alsoVisualizeH"));
|
addTooltipToImage(alsoVisualizeI, I18N.createStringBinding("label.wordPart.alsoVisualizeH"));
|
||||||
|
@ -780,6 +814,9 @@ public class WordLevelTab {
|
||||||
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.wordPart.taxonomyH"));
|
addTooltipToImage(taxonomyI, I18N.createStringBinding("label.wordPart.taxonomyH"));
|
||||||
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.wordPart.minimalOccurrencesH"));
|
addTooltipToImage(minimalOccurrencesI, I18N.createStringBinding("label.wordPart.minimalOccurrencesH"));
|
||||||
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.wordPart.minimalTaxonomyH"));
|
addTooltipToImage(minimalTaxonomyI, I18N.createStringBinding("label.wordPart.minimalTaxonomyH"));
|
||||||
|
addTooltipToImage(taxonomySetOperationI, I18N.createStringBinding("label.letter.taxonomySetOperationH"));
|
||||||
|
|
||||||
|
taxonomySetOperationCB.itemsProperty().bind(I18N.createObjectBinding(TAXONOMY_SET_OPERATION));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -840,6 +877,7 @@ public class WordLevelTab {
|
||||||
filter.setSuffixLength(suffixLength);
|
filter.setSuffixLength(suffixLength);
|
||||||
filter.setPrefixList(prefixList);
|
filter.setPrefixList(prefixList);
|
||||||
filter.setSuffixList(suffixList);
|
filter.setSuffixList(suffixList);
|
||||||
|
filter.setTaxonomySetOperation(taxonomySetOperation);
|
||||||
// filter.setWriteMsdAtTheEnd(writeMsdAtTheEnd);
|
// filter.setWriteMsdAtTheEnd(writeMsdAtTheEnd);
|
||||||
|
|
||||||
String message = Validation.validateForStringLevel(filter);
|
String message = Validation.validateForStringLevel(filter);
|
||||||
|
|
|
@ -5,17 +5,12 @@
|
||||||
<?import javafx.scene.control.Hyperlink?>
|
<?import javafx.scene.control.Hyperlink?>
|
||||||
<?import javafx.scene.control.Label?>
|
<?import javafx.scene.control.Label?>
|
||||||
<?import javafx.scene.control.ProgressBar?>
|
<?import javafx.scene.control.ProgressBar?>
|
||||||
<?import javafx.scene.control.RadioButton?>
|
|
||||||
<?import javafx.scene.control.TextField?>
|
<?import javafx.scene.control.TextField?>
|
||||||
<?import javafx.scene.control.ToggleGroup?>
|
|
||||||
<?import javafx.scene.layout.AnchorPane?>
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
<?import javafx.scene.layout.HBox?>
|
|
||||||
<?import javafx.scene.layout.Pane?>
|
<?import javafx.scene.layout.Pane?>
|
||||||
<?import org.controlsfx.control.CheckComboBox?>
|
<?import org.controlsfx.control.CheckComboBox?>
|
||||||
|
|
||||||
<?import javafx.scene.control.ComboBox?>
|
<?import javafx.scene.control.ComboBox?>
|
||||||
<?import javafx.collections.FXCollections?>
|
|
||||||
<?import java.lang.String?>
|
|
||||||
<?import javafx.scene.image.ImageView?>
|
<?import javafx.scene.image.ImageView?>
|
||||||
<?import javafx.scene.image.Image?>
|
<?import javafx.scene.image.Image?>
|
||||||
<?import javafx.scene.control.TextArea?>
|
<?import javafx.scene.control.TextArea?>
|
||||||
|
@ -70,28 +65,34 @@
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Taksonomija"/>
|
<Label fx:id="taxonomySetOperationL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Filtriraj taksonomijo po"/>
|
||||||
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="140.0" prefHeight="25.0" prefWidth="140.0"/>
|
<ComboBox fx:id="taxonomySetOperationCB" layoutX="225.0" layoutY="140.0" minWidth="140.0" prefWidth="140.0"
|
||||||
<Label fx:id="taxonomyLH" layoutX="10.0" layoutY="170.0" prefHeight="10.0" styleClass="help"/>
|
visibleRowCount="5"/>
|
||||||
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomySetOperationI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Taksonomija"/>
|
||||||
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="180.0" prefWidth="140.0" />
|
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="180.0" prefHeight="25.0" prefWidth="140.0"/>
|
||||||
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
||||||
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
||||||
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
||||||
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
|
</ImageView>
|
||||||
|
|
||||||
|
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="260.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
||||||
|
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="260.0" prefWidth="140.0" />
|
||||||
|
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="267.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
|
|
||||||
<Label fx:id="solarFilters" layoutX="10.0" layoutY="280.0" text="Izbrani filtri:" />
|
<Label fx:id="solarFilters" layoutX="10.0" layoutY="320.0" text="Izbrani filtri:" />
|
||||||
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="320.0" prefHeight="80.0" maxHeight="80.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="360.0" prefHeight="115.0" maxHeight="115.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
||||||
</Pane>
|
</Pane>
|
||||||
|
|
||||||
<Hyperlink fx:id="helpH" alignment="TOP_LEFT" layoutX="710.0" layoutY="16.0" text="Pomoč" />
|
<Hyperlink fx:id="helpH" alignment="TOP_LEFT" layoutX="710.0" layoutY="16.0" text="Pomoč" />
|
||||||
|
|
|
@ -68,28 +68,34 @@
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Taksonomija"/>
|
<Label fx:id="taxonomySetOperationL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Filtriraj taksonomijo po"/>
|
||||||
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="140.0" prefHeight="25.0" prefWidth="140.0"/>
|
<ComboBox fx:id="taxonomySetOperationCB" layoutX="225.0" layoutY="140.0" minWidth="140.0" prefWidth="140.0"
|
||||||
<Label fx:id="taxonomyLH" layoutX="10.0" layoutY="170.0" prefHeight="10.0" styleClass="help"/>
|
visibleRowCount="5"/>
|
||||||
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomySetOperationI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Taksonomija"/>
|
||||||
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="180.0" prefWidth="140.0" />
|
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="180.0" prefHeight="25.0" prefWidth="140.0"/>
|
||||||
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
||||||
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
||||||
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
||||||
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
|
</ImageView>
|
||||||
|
|
||||||
|
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="260.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
||||||
|
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="260.0" prefWidth="140.0" />
|
||||||
|
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="267.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
|
|
||||||
<Label fx:id="solarFilters" layoutX="10.0" layoutY="280.0" text="Izbrani filtri:" />
|
<Label fx:id="solarFilters" layoutX="10.0" layoutY="320.0" text="Izbrani filtri:" />
|
||||||
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="320.0" prefHeight="80.0" maxHeight="80.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="360.0" prefHeight="115.0" maxHeight="115.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
||||||
</Pane>
|
</Pane>
|
||||||
|
|
||||||
<!--<Pane layoutX="400.0" prefHeight="480.0" prefWidth="380.0">-->
|
<!--<Pane layoutX="400.0" prefHeight="480.0" prefWidth="380.0">-->
|
||||||
|
|
|
@ -116,28 +116,34 @@
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Taksonomija"/>
|
<Label fx:id="taxonomySetOperationL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Filtriraj taksonomijo po"/>
|
||||||
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="140.0" prefHeight="25.0" prefWidth="140.0"/>
|
<ComboBox fx:id="taxonomySetOperationCB" layoutX="225.0" layoutY="140.0" minWidth="140.0" prefWidth="140.0"
|
||||||
<Label fx:id="taxonomyLH" layoutX="10.0" layoutY="170.0" prefHeight="10.0" styleClass="help"/>
|
visibleRowCount="5"/>
|
||||||
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomySetOperationI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Taksonomija"/>
|
||||||
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="180.0" prefWidth="140.0" />
|
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="180.0" prefHeight="25.0" prefWidth="140.0"/>
|
||||||
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
||||||
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
||||||
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
||||||
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
|
</ImageView>
|
||||||
|
|
||||||
|
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="260.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
||||||
|
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="260.0" prefWidth="140.0" />
|
||||||
|
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="267.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
|
|
||||||
<Label fx:id="solarFilters" layoutX="10.0" layoutY="280.0" text="Izbrani filtri:" />
|
<Label fx:id="solarFilters" layoutX="10.0" layoutY="320.0" text="Izbrani filtri:" />
|
||||||
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="320.0" prefHeight="80.0" maxHeight="80.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="360.0" prefHeight="115.0" maxHeight="115.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
||||||
</Pane>
|
</Pane>
|
||||||
|
|
||||||
<Hyperlink fx:id="helpH" alignment="TOP_LEFT" layoutX="710.0" layoutY="16.0" text="Pomoč" />
|
<Hyperlink fx:id="helpH" alignment="TOP_LEFT" layoutX="710.0" layoutY="16.0" text="Pomoč" />
|
||||||
|
|
|
@ -119,28 +119,34 @@
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Taksonomija"/>
|
<Label fx:id="taxonomySetOperationL" layoutX="10.0" layoutY="140.0" prefHeight="25.0" text="Filtriraj taksonomijo po"/>
|
||||||
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="140.0" prefHeight="25.0" prefWidth="140.0"/>
|
<ComboBox fx:id="taxonomySetOperationCB" layoutX="225.0" layoutY="140.0" minWidth="140.0" prefWidth="140.0"
|
||||||
<Label fx:id="taxonomyLH" layoutX="10.0" layoutY="170.0" prefHeight="10.0" styleClass="help"/>
|
visibleRowCount="5"/>
|
||||||
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomySetOperationI" layoutX="370.0" layoutY="147.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
<Label fx:id="taxonomyL" layoutX="10.0" layoutY="180.0" prefHeight="25.0" text="Taksonomija"/>
|
||||||
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="180.0" prefWidth="140.0" />
|
<CheckComboBox fx:id="taxonomyCCB" layoutX="225.0" layoutY="180.0" prefHeight="25.0" prefWidth="140.0"/>
|
||||||
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="taxonomyI" layoutX="370.0" layoutY="187.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
<Label fx:id="minimalOccurrencesL" layoutX="10.0" layoutY="220.0" prefHeight="25.0" text="Min. št. pojavitev" />
|
||||||
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
<TextField fx:id="minimalOccurrencesTF" layoutX="225.0" layoutY="220.0" prefWidth="140.0" />
|
||||||
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
<ImageView fx:id="minimalOccurrencesI" layoutX="370.0" layoutY="227.5" pickOnBounds="true" preserveRatio="true">
|
||||||
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
|
</ImageView>
|
||||||
|
|
||||||
|
<Label fx:id="minimalTaxonomyL" layoutX="10.0" layoutY="260.0" prefHeight="25.0" text="Min. št. taksonomij" />
|
||||||
|
<TextField fx:id="minimalTaxonomyTF" layoutX="225.0" layoutY="260.0" prefWidth="140.0" />
|
||||||
|
<ImageView fx:id="minimalTaxonomyI" layoutX="370.0" layoutY="267.5" pickOnBounds="true" preserveRatio="true">
|
||||||
<Image url="questionmark.png" backgroundLoading="true"/>
|
<Image url="questionmark.png" backgroundLoading="true"/>
|
||||||
</ImageView>
|
</ImageView>
|
||||||
|
|
||||||
|
|
||||||
<Label fx:id="solarFilters" layoutX="10.0" layoutY="280.0" text="Izbrani filtri:" />
|
<Label fx:id="solarFilters" layoutX="10.0" layoutY="320.0" text="Izbrani filtri:" />
|
||||||
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="320.0" prefHeight="80.0" maxHeight="80.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
<TextArea fx:id="selectedFiltersTextArea" layoutX="10.0" layoutY="360.0" prefHeight="115.0" maxHeight="115.0" prefWidth="360.0" text=" " wrapText="true" editable="false"/>
|
||||||
</Pane>
|
</Pane>
|
||||||
|
|
||||||
<Hyperlink fx:id="helpH" alignment="TOP_LEFT" layoutX="710.0" layoutY="16.0" text="Pomoč" />
|
<Hyperlink fx:id="helpH" alignment="TOP_LEFT" layoutX="710.0" layoutY="16.0" text="Pomoč" />
|
||||||
|
|
|
@ -39,6 +39,7 @@ label.msd=MSD
|
||||||
label.taxonomy=Taxonomy
|
label.taxonomy=Taxonomy
|
||||||
label.minimalOccurrences=Min. n. occurrences
|
label.minimalOccurrences=Min. n. occurrences
|
||||||
label.minimalTaxonomy=Min. n. taxonomies
|
label.minimalTaxonomy=Min. n. taxonomies
|
||||||
|
label.taxonomySetOperation=Filtriraj taksonomijo po
|
||||||
label.solarFilters=Selected filters:
|
label.solarFilters=Selected filters:
|
||||||
string.lemma=lemma
|
string.lemma=lemma
|
||||||
string.word=word
|
string.word=word
|
||||||
|
@ -50,6 +51,7 @@ label.letter.msdH=Črkovni nizi bodo prešteti samo v besedah z določeno oznako
|
||||||
label.letter.taxonomyH=Črkovni nizi bodo prešteti samo v izbranih vrstah besedil.
|
label.letter.taxonomyH=Črkovni nizi bodo prešteti samo v izbranih vrstah besedil.
|
||||||
label.letter.minimalOccurrencesH=Črkovni nizi z manj pojavitvami ne bodo vključeni v izpis.
|
label.letter.minimalOccurrencesH=Črkovni nizi z manj pojavitvami ne bodo vključeni v izpis.
|
||||||
label.letter.minimalTaxonomyH=Črkovni nizi, prisotni v manj taksonomskih vejah, ne bodo vključeni v izpis.
|
label.letter.minimalTaxonomyH=Črkovni nizi, prisotni v manj taksonomskih vejah, ne bodo vključeni v izpis.
|
||||||
|
label.letter.taxonomySetOperationH=Izpisuj iz besedil, ki ustrezajo vsaj eni od izbranih vej (unija) ali vsem izbranim vejam (presek)
|
||||||
|
|
||||||
# word part tab
|
# word part tab
|
||||||
label.alsoVisualize=Also filter
|
label.alsoVisualize=Also filter
|
||||||
|
@ -114,6 +116,10 @@ label.ngramValue=N-gram level
|
||||||
label.notePunctuations=Note punctuations
|
label.notePunctuations=Note punctuations
|
||||||
label.collocability=Collocability
|
label.collocability=Collocability
|
||||||
|
|
||||||
|
# taxonomy set operations
|
||||||
|
taxonomySetOperation.UNION=union
|
||||||
|
taxonomySetOperation.INTERSECTION=intersection
|
||||||
|
|
||||||
# filtersSolar
|
# filtersSolar
|
||||||
filter.solarRegijaL=Region
|
filter.solarRegijaL=Region
|
||||||
filter.solarPredmetL=Subject
|
filter.solarPredmetL=Subject
|
||||||
|
@ -207,6 +213,7 @@ exportHeader.minTaxonomies=Min. n. taxonomies:
|
||||||
exportHeader.additionalFilters=Additional filters:
|
exportHeader.additionalFilters=Additional filters:
|
||||||
exportHeader.yes=yes
|
exportHeader.yes=yes
|
||||||
exportHeader.no=no
|
exportHeader.no=no
|
||||||
|
exportHeader.taxonomySetOperation=Filter taxonomy by:
|
||||||
|
|
||||||
# export table header translations
|
# export table header translations
|
||||||
exportTable.skippedWords=Skipped words
|
exportTable.skippedWords=Skipped words
|
||||||
|
|
|
@ -39,6 +39,7 @@ label.msd=Oblikoskladenjska oznaka
|
||||||
label.taxonomy=Filtriranje po taksonomiji
|
label.taxonomy=Filtriranje po taksonomiji
|
||||||
label.minimalOccurrences=Min. št. pojavitev
|
label.minimalOccurrences=Min. št. pojavitev
|
||||||
label.minimalTaxonomy=Min. št. taksonomskih vej
|
label.minimalTaxonomy=Min. št. taksonomskih vej
|
||||||
|
label.taxonomySetOperation=Filtriraj taksonomijo po
|
||||||
label.solarFilters=Izbrani filtri:
|
label.solarFilters=Izbrani filtri:
|
||||||
string.lemma=lema
|
string.lemma=lema
|
||||||
string.word=oblika
|
string.word=oblika
|
||||||
|
@ -50,6 +51,7 @@ label.letter.msdH=Črkovni nizi bodo prešteti samo v besedah z določeno oznako
|
||||||
label.letter.taxonomyH=Črkovni nizi bodo prešteti samo v izbranih vrstah besedil.
|
label.letter.taxonomyH=Črkovni nizi bodo prešteti samo v izbranih vrstah besedil.
|
||||||
label.letter.minimalOccurrencesH=Črkovni nizi z manj pojavitvami ne bodo vključeni v izpis.
|
label.letter.minimalOccurrencesH=Črkovni nizi z manj pojavitvami ne bodo vključeni v izpis.
|
||||||
label.letter.minimalTaxonomyH=Črkovni nizi, prisotni v manj taksonomskih vejah, ne bodo vključeni v izpis.
|
label.letter.minimalTaxonomyH=Črkovni nizi, prisotni v manj taksonomskih vejah, ne bodo vključeni v izpis.
|
||||||
|
label.letter.taxonomySetOperationH=Izpisuj iz besedil, ki ustrezajo vsaj eni od izbranih vej (unija) ali vsem izbranim vejam (presek)
|
||||||
|
|
||||||
# word part tab
|
# word part tab
|
||||||
label.alsoVisualize=Upoštevaj tudi
|
label.alsoVisualize=Upoštevaj tudi
|
||||||
|
@ -107,6 +109,10 @@ calculateFor.WORD_TYPE=besedne vrste
|
||||||
calculateFor.DIST_WORDS=oblike
|
calculateFor.DIST_WORDS=oblike
|
||||||
calculateFor.DIST_LEMMAS=leme
|
calculateFor.DIST_LEMMAS=leme
|
||||||
|
|
||||||
|
# taxonomy set operations
|
||||||
|
taxonomySetOperation.UNION=uniji
|
||||||
|
taxonomySetOperation.INTERSECTION=preseku
|
||||||
|
|
||||||
# n-grams
|
# n-grams
|
||||||
label.skipValue=Preskok besed
|
label.skipValue=Preskok besed
|
||||||
label.slowSpeedWarning=* IZBIRA PREDHODNEGA FILTRA LAHKO MOČNO UPOČASNI DELOVANJE
|
label.slowSpeedWarning=* IZBIRA PREDHODNEGA FILTRA LAHKO MOČNO UPOČASNI DELOVANJE
|
||||||
|
@ -128,7 +134,6 @@ filter.solarLeto=leto
|
||||||
filter.solarSola=sola
|
filter.solarSola=sola
|
||||||
filter.solarVrstaBesedila=tip
|
filter.solarVrstaBesedila=tip
|
||||||
|
|
||||||
|
|
||||||
# messages
|
# messages
|
||||||
message.WARNING_CORPUS_NOT_FOUND=V izbranem direktoriju ni ustreznih korpusnih datotek.
|
message.WARNING_CORPUS_NOT_FOUND=V izbranem direktoriju ni ustreznih korpusnih datotek.
|
||||||
message.WARNING_RESULTS_DIR_NOT_VALID=Za dostop do izbranega direktorija nimate potrebnih pravic.
|
message.WARNING_RESULTS_DIR_NOT_VALID=Za dostop do izbranega direktorija nimate potrebnih pravic.
|
||||||
|
@ -208,6 +213,7 @@ exportHeader.minTaxonomies=Min. št. taksonomskih vej:
|
||||||
exportHeader.additionalFilters=Dodatni filtri:
|
exportHeader.additionalFilters=Dodatni filtri:
|
||||||
exportHeader.yes=da
|
exportHeader.yes=da
|
||||||
exportHeader.no=ne
|
exportHeader.no=ne
|
||||||
|
exportHeader.taxonomySetOperation=Filtriranje taksonomije po:
|
||||||
|
|
||||||
# export table header translations
|
# export table header translations
|
||||||
exportTable.skippedWords=Izpuščene besede
|
exportTable.skippedWords=Izpuščene besede
|
||||||
|
|
Loading…
Reference in New Issue
Block a user