Révision 3838

TXM/trunk/bundles/org.txm.ca.rcp/src/org/txm/ca/rcp/messages/CAUIMessages.java (revision 3838)
37 37
	public static String canNotComputeFactorialAnalysisWithOnlyP0PartsTheMinimumIs4Parts; 
38 38
	public static String loadingCorrespondenceAnalysisResults; 
39 39
	
40
	
41 40
	public static String eigenvalues; 
42 41
	public static String CorrespondanceAnalysisEditorInput_11;
43 42
	public static String factPlan; 
......
56 55

  
57 56
	public static String errorWhileOpeningCAEditorColonP0; 
58 57

  
59
	
60 58
	public static String error_cannot_compute_with;
61 59
	public static String error_cannot_compute_with_selection;
62 60
	public static String error_opening;
63 61

  
62
	public static String SupplementaryRowNames;
64 63

  
64
	public static String SupplementaryColNames;
65

  
65 66
	static {
66 67
		Utf8NLS.initializeMessages(BUNDLE_NAME, CAUIMessages.class);
67 68
	}
TXM/trunk/bundles/org.txm.ca.rcp/src/org/txm/ca/rcp/messages/messages_fr.properties (revision 3838)
37 37
showTheColumns=Afficher les colonnes
38 38
showTheRows=Afficher les lignes
39 39
wrongInput=Entrée erronée
40
SupplementaryRowNames=Nom des lignes illustratives
41
SupplementaryColNames=Nom des colonnes illustratives
TXM/trunk/bundles/org.txm.ca.rcp/src/org/txm/ca/rcp/messages/messages.properties (revision 3838)
37 37
showTheColumns=Show columns
38 38
showTheRows=Show rows
39 39
wrongInput=Wrong input
40

  
41
SupplementaryRowNames=Supplementary row names
42
SupplementaryColNames=Supplementary col names
TXM/trunk/bundles/org.txm.ca.rcp/src/org/txm/ca/rcp/editors/CAFactorialMapChartEditor.java (revision 3838)
368 368
		}
369 369
		
370 370
		Label l = new Label(this.getExtendedParametersGroup(), SWT.NONE);
371
		l.setText("Supplementary row names:");
371
		l.setText(CAUIMessages.SupplementaryRowNames);
372 372
		
373 373
		supRowNamesText = new Text(this.getExtendedParametersGroup(), SWT.BORDER);
374 374
		
375 375
		l = new Label(this.getExtendedParametersGroup(), SWT.NONE);
376
		l.setText("Supplementary col names:");
376
		l.setText(CAUIMessages.SupplementaryColNames);
377 377
		
378 378
		supColNamesText = new Text(this.getExtendedParametersGroup(), SWT.BORDER);
379 379
		
TXM/trunk/bundles/org.txm.ca.rcp/src/org/txm/ca/rcp/handlers/ComputeCA.java (revision 3838)
110 110
					lexicalTable = new LexicalTable(index);
111 111
					
112 112
					if (index.getPartition().getPartsCount() < 4) {
113
						MessageDialog.openError(window.getShell(), "Error", CAUIMessages.canNotComputeCAOnLexicalTableWithLessThan4Columns);
113
						MessageDialog.openError(window.getShell(), TXMCoreMessages.error_error2, CAUIMessages.canNotComputeCAOnLexicalTableWithLessThan4Columns);
114 114
						return null;
115 115
					}
116 116
					// FIXME: SJ: problem here because we need the index has been computed to make this check
117 117
					if (index.hasBeenComputedOnce() && index.getAllLines().size() < 4) {
118
						MessageDialog.openError(window.getShell(), "Error", CAUIMessages.canNotComputeCAWithLessThan4RowsInTheTable);
118
						MessageDialog.openError(window.getShell(), TXMCoreMessages.error_error2, CAUIMessages.canNotComputeCAWithLessThan4RowsInTheTable);
119 119
						return null;
120 120
					}
121 121
					
......
127 127
					
128 128
					// FIXME: SJ: problem here because we need the LT has been computed to make this check
129 129
					if (lexicalTable.hasBeenComputedOnce() && lexicalTable.getNColumns() < 4) {
130
						MessageDialog.openError(window.getShell(), "Error", CAUIMessages.canNotComputeCAOnLexicalTableWithLessThan4Columns);
130
						MessageDialog.openError(window.getShell(), TXMCoreMessages.error_error2, CAUIMessages.canNotComputeCAOnLexicalTableWithLessThan4Columns);
131 131
						return null;
132 132
					}
133 133
					// FIXME: SJ: problem here because we need the LT has been computed to make this check
134 134
					if (lexicalTable.hasBeenComputedOnce() && lexicalTable.getNRows() < 4) {
135
						MessageDialog.openError(window.getShell(), "Error", CAUIMessages.canNotComputeCAWithLessThan4RowsInTheTable);
135
						MessageDialog.openError(window.getShell(), TXMCoreMessages.error_error2, CAUIMessages.canNotComputeCAWithLessThan4RowsInTheTable);
136 136
						return null;
137 137
					}
138 138
					

Formats disponibles : Unified diff